123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- package com.gmail.nossr50;
- import java.io.*;
- import java.util.Properties;
- import java.util.logging.Level;
- import java.util.logging.Logger;
- import java.util.HashMap;
- import org.bukkit.entity.*;
- import com.gmail.nossr50.datatypes.PlayerProfile;
- public class Users {
- private static volatile Users instance;
- protected static final Logger log = Logger.getLogger("Minecraft");
- String location = "plugins/mcMMO/FlatFileStuff/mcmmo.users";
- String directory = "plugins/mcMMO/FlatFileStuff/";
- String directoryb = "plugins/mcMMO/FlatFileStuff/Leaderboards/";
-
- //public static ArrayList<PlayerProfile> players;
- public static HashMap<Player, PlayerProfile> players = new HashMap<Player, PlayerProfile>();
- private Properties properties = new Properties();
-
- //To load
- public void load() throws IOException {
- properties.load(new FileInputStream(location));
- }
- //To save
- public void save()
- {
- try
- {
- properties.store(new FileOutputStream(location), null);
- }catch(IOException ex) {
- }
- }
-
-
- public void loadUsers()
- {
- new File(directory).mkdir();
- new File(directoryb).mkdir();
- File theDir = new File(location);
- if(!theDir.exists())
- {
- //properties = new PropertiesFile(location);
- FileWriter writer = null;
- try {
- writer = new FileWriter(location);
- //writer.write("#Storage place for user information\r\n");
- } catch (Exception e)
- {
- log.log(Level.SEVERE, "Exception while creating " + location, e);
- } finally {
- try {
- if (writer != null) {
- writer.close();
- }
- } catch (IOException e) {
- log.log(Level.SEVERE, "Exception while closing writer for " + location, e);
- }
- }
- } else {
- try {
- load();
- } catch (IOException e) {
- log.log(Level.SEVERE, "Exception while loading " + location, e);
- }
- }
- }
-
- public static void addUser(Player player)
- {
- players.put(player, new PlayerProfile(player));
- }
- public static void clearUsers()
- {
- players.clear();
- }
- public static HashMap<Player, PlayerProfile> getProfiles(){
- return players;
- }
-
- public static void removeUser(Player player)
- {
- PlayerProfile PP = Users.getProfile(player);
-
- if(PP != null)
- {
- PP.save();
- if(players.containsKey(player))
- players.remove(player);
- }
- }
- public static PlayerProfile getProfile(Player player){
- if(players.get(player) != null)
- return players.get(player);
- else
- {
- players.put(player, new PlayerProfile(player));
- return players.get(player);
- }
- }
-
- public static Users getInstance() {
- if (instance == null) {
- instance = new Users();
- }
- return instance;
- }
- }
|