mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-23 21:56:47 +01:00
137 lines
3.6 KiB
Java
137 lines
3.6 KiB
Java
package com.gmail.nossr50;
|
|
|
|
import java.io.*;
|
|
import java.util.logging.Logger;
|
|
import java.util.HashMap;
|
|
|
|
import org.bukkit.entity.Player;
|
|
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 HashMap<Player, PlayerProfile> players = new HashMap<Player, PlayerProfile>();
|
|
|
|
/**
|
|
* Load users.
|
|
*/
|
|
public void loadUsers() {
|
|
new File(directory).mkdir();
|
|
new File(directoryb).mkdir();
|
|
File theDir = new File(location);
|
|
|
|
if (!theDir.exists()) {
|
|
try {
|
|
FileWriter writer = new FileWriter(theDir);
|
|
writer.close();
|
|
}
|
|
catch (IOException e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Add a new user.
|
|
*
|
|
* @param player The player to create a user record for
|
|
*/
|
|
public static void addUser(Player player) {
|
|
if (!players.containsKey(player)) {
|
|
players.put(player, new PlayerProfile(player.getName()));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Clear all users.
|
|
*/
|
|
public static void clearUsers() {
|
|
players.clear();
|
|
}
|
|
|
|
/**
|
|
* Get all PlayerProfiles.
|
|
*
|
|
* @return a HashMap containing the PlayerProfile of everyone in the database
|
|
*/
|
|
public static HashMap<Player, PlayerProfile> getProfiles() {
|
|
return players;
|
|
}
|
|
|
|
/**
|
|
* Remove a user from the database.
|
|
*
|
|
* @param player The player to remove
|
|
*/
|
|
public static void removeUser(Player player) {
|
|
|
|
//Only remove PlayerProfile if user is offline and we have it in memory
|
|
if (!player.isOnline() && players.containsKey(player)) {
|
|
players.get(player).save();
|
|
players.remove(player);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Remove a user from the DB by name.
|
|
*
|
|
* @param playerName The name of the player to remove
|
|
*/
|
|
public static void removeUserByName(String playerName) {
|
|
Player target = null;
|
|
|
|
for (Player player : players.keySet()) {
|
|
PlayerProfile PP = players.get(player);
|
|
|
|
if (PP.getPlayerName().equals(playerName)) {
|
|
target = player;
|
|
}
|
|
}
|
|
|
|
players.remove(target);
|
|
}
|
|
|
|
/**
|
|
* Get the profile of an online player.
|
|
*
|
|
* @param player The player whose profile to retrieve
|
|
* @return the player's profile
|
|
*/
|
|
public static PlayerProfile getProfile(Player player) {
|
|
if(players.get(player) != null) {
|
|
return players.get(player);
|
|
}
|
|
else {
|
|
players.put(player, new PlayerProfile(player.getName()));
|
|
return players.get(player);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get the profile of an offline player.
|
|
*
|
|
* @param playerName Name of the player whose profile to retrieve
|
|
* @return the player's profile
|
|
*/
|
|
public static PlayerProfile getOfflineProfile(String playerName) {
|
|
return new PlayerProfile(playerName, false);
|
|
}
|
|
|
|
/**
|
|
* Get an instance of this class.
|
|
*
|
|
* @return an instance of this class
|
|
*/
|
|
public static Users getInstance() {
|
|
if (instance == null) {
|
|
instance = new Users();
|
|
}
|
|
return instance;
|
|
}
|
|
}
|