| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375 | 
							- import java.io.*;
 
- import java.util.ArrayList;
 
- import java.util.logging.Level;
 
- import java.util.logging.Logger;
 
- import java.util.Scanner;
 
- public class vMinecraftUsers {
 
-     private static volatile vMinecraftUsers instance;
 
-     protected static final Logger log = Logger.getLogger("Minecraft");
 
-     String file = "vminecraftusers.txt";
 
-     private PropertiesFile properties;
 
-     String location = "vminecraftusers.txt";
 
-     
 
-     ArrayList<PlayerList> players = new ArrayList<PlayerList>();
 
-     
 
-     
 
-     public void loadUsers(){
 
-         File theDir = new File("vminecraftusers.txt");
 
- 		if(!theDir.exists()){
 
- 			properties = new PropertiesFile("vminecraftusers.txt");
 
- 			FileWriter writer = null;
 
- 			try {
 
- 				writer = new FileWriter(location);
 
- 				writer.write("#Storage place for user information\r\n");
 
-                                 writer.write("#username:nickname:suffix:tag:ignore,list,names:alias,commands,here\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 {
 
- 			properties = new PropertiesFile("vminecraftusers.txt");
 
- 			try {
 
- 				properties.load();
 
- 			} catch (IOException e) {
 
- 				log.log(Level.SEVERE, "Exception while loading vminecraftusers.txt", e);
 
- 			}
 
- 		}
 
-     }
 
-         public boolean doesPlayerExist(String player) {
 
-         try {
 
-             Scanner scanner = new Scanner(new File(location));
 
-             while (scanner.hasNextLine()) {
 
-                 String line = scanner.nextLine();
 
-                 if (line.startsWith("#") || line.equals("") || line.startsWith("")) {
 
-                     continue;
 
-                 }
 
-                 String[] split = line.split(":");
 
-                 if (!split[0].equalsIgnoreCase(player)) {
 
-                     continue;
 
-                 }
 
-                 return true;
 
-             }
 
-             scanner.close();
 
-         } catch (Exception e) {
 
-             log.log(Level.SEVERE, "Exception while reading " + location + " (Are you sure you formatted it correctly?)", e);
 
-         }
 
-         return false;
 
-     }
 
-     public static void addUser(Player player){
 
-         FileWriter writer = null;
 
-         String location = "vminecraftusers.txt";
 
-         String playerName = player.getName();
 
-         if (!vMinecraftUsers.getInstance().doesPlayerExist(playerName)){ //Check to see if the player exists before writing
 
-         try {
 
-             BufferedWriter bw = new BufferedWriter(new FileWriter(location, true));
 
-             bw.append(player.getName()+":::::\r");
 
-             bw.newLine();
 
-             bw.close();
 
-         } catch (Exception e) {
 
-             log.log(Level.SEVERE, "Exception while trying to add user with BufferedWriter to " + location, e);
 
- 		} finally {
 
- 			try {
 
- 				if (writer != null) {
 
- 					writer.close();
 
- 				}
 
- 			} catch (IOException e) {
 
- 				log.log(Level.SEVERE, "Exception while closing BufferedWriter to " + location, e);
 
- 			}
 
- 		}
 
-     }
 
-     }
 
-     public static vMinecraftUsers getInstance() {
 
- 		if (instance == null) {
 
- 			instance = new vMinecraftUsers();
 
- 		}
 
- 		return instance;
 
- 	}
 
-     public static void getRow(){
 
-     }
 
- }
 
- //=====================================================================
 
- //Class:	PlayerList
 
- //Use:		Encapsulates the player list
 
- //Author:	cerevisiae
 
- //=====================================================================
 
- class PlayerList
 
- {       
 
- 	ArrayList<PlayerProfile> players;
 
- 	
 
- 	//=====================================================================
 
- 	//Function:	PlayerList
 
- 	//Input:	Player player: The player to create a profile object for
 
- 	//Output:	none
 
- 	//Use:		Initializes the ArrayList
 
- 	//=====================================================================
 
- 	public PlayerList() { players = new ArrayList<PlayerProfile>(); }
 
- 	//=====================================================================
 
- 	//Function:	addPlayer
 
- 	//Input:	Player player: The player to add
 
- 	//Output:	None
 
- 	//Use:		Add a profile of the specified player
 
- 	//=====================================================================
 
- 	public void addPlayer(Player player)
 
- 	{
 
- 		players.add(new PlayerProfile(player));
 
- 	}
 
- 	//=====================================================================
 
- 	//Function:	removePlayer
 
- 	//Input:	Player player: The player to remove
 
- 	//Output:	None
 
- 	//Use:		Remove the profile of the specified player
 
- 	//=====================================================================
 
- 	public void removePlayer(Player player)
 
- 	{
 
- 		players.remove(findProfile(player));
 
- 	}
 
- 	//=====================================================================
 
- 	//Function:	findProfile
 
- 	//Input:	Player player: The player to find's profile
 
- 	//Output:	PlayerProfile: The profile of the specified player
 
- 	//Use:		Get the profile for the specified player
 
- 	//=====================================================================
 
- 	private PlayerProfile findProfile(Player player)
 
- 	{
 
- 		for(PlayerProfile ply : players)
 
- 		{
 
- 			if(ply.getPlayer().equals(player))
 
- 				return ply;
 
- 		}
 
- 		return null;
 
- 	}
 
- 	
 
- 	//=====================================================================
 
- 	//Class:	PlayerProfile
 
- 	//Use:		Encapsulates all commands for player options
 
- 	//Author:	cerevisiae
 
- 	//=====================================================================
 
- 	class PlayerProfile
 
- 	{
 
- 	    protected final Logger log = Logger.getLogger("Minecraft");
 
- 		private Player playerName;
 
- 		private String nickName;
 
- 		private String tag;
 
-                 private String suffix;
 
- 		private ArrayList<Player> ignoreList;
 
- 		private commandList aliasList;
 
- 		
 
- 	    static final int EXIT_FAIL		= 0,
 
- 			 			 EXIT_SUCCESS	= 1,
 
- 			 			 EXIT_CONTINUE	= 2;
 
- 		//=====================================================================
 
- 		//Function:	PlayerProfile
 
- 		//Input:	Player player: The player to create a profile object for
 
- 		//Output:	none
 
- 		//Use:		Loads settings for the player or creates them if they don't
 
- 		//			exist.
 
- 		//=====================================================================
 
- 		public PlayerProfile(Player player)
 
- 		{
 
-                         //Declare things
 
- 			ignoreList = new ArrayList<Player>();
 
-             aliasList = new commandList();
 
-             nickName = new String();
 
-             tag = new String();
 
-             suffix = new String();
 
-             String location = "vminecraftusers.txt";
 
-             //Try to apply what we can
 
-             try {
 
-                 Scanner scanner = new Scanner(new File(location));
 
-                 while (scanner.hasNextLine()) {
 
- 	                String line = scanner.nextLine();
 
- 	                if (line.startsWith("#") || line.equals("") || line.startsWith("")) {
 
- 	                    continue;
 
- 	                }
 
- 	                String[] split = line.split(":");
 
- 	                if (!split[0].equalsIgnoreCase(player.getName())) {
 
- 	                    continue;
 
- 	                }
 
- 	                nickName = (split[1].split(",").toString());
 
- 	
 
- 	                if (split.length >= 4) {
 
- 	                    tag = (split[3]);
 
- 	                }
 
- 	                
 
- 	                //Add all the ignored people to the player's ignore list
 
- 	                if (split.length >= 5) {
 
- 	                	for(String name : split[4].split(","))
 
- 	                		ignoreList.add(etc.getServer().getPlayer(name));
 
- 	                }
 
- 	                if (split.length >= 6) {
 
- 	                	//Loop through all the aliases
 
- 	                	for(String alias : split[5].split(","))
 
- 	                	{
 
- 	                		//Break apart the two parts of the alias
 
- 	                		String[] parts = alias.split("@");
 
- 	                		if(parts.length > 1)
 
- 	                		{
 
- 	                			//Get the arguments for the alias if there are any
 
- 	                			String[] command = parts[1].split(" ");
 
- 	                			String[] args = null;
 
- 	                			if(command.length > 1)
 
- 	                				System.arraycopy(command, 1, args, 0, command.length - 2);
 
- 	                			
 
- 	                			//Register the alias to the player's aliasList
 
- 	                			aliasList.registerAlias(parts[0], command[0], args);
 
- 	                		}
 
- 	                	}
 
- 	                }
 
- 	            }
 
- 	            scanner.close();
 
- 	        } catch (Exception e) {
 
- 	            log.log(Level.SEVERE, "Exception while reading " + location + " (Are you sure you formatted it correctly?)", e);
 
- 	        }
 
- 		}
 
- 		
 
-         //=====================================================================
 
-         // Function:    save
 
-         // Input:       none
 
-         // Output:      None
 
-         // Use:         Writes current values of PlayerProfile to disk
 
- 		//				Call this function to save current values
 
-         //=====================================================================
 
-         public void save(){
 
-             try {
 
-                 String location = "vminecraftusers.txt";
 
-                 BufferedWriter bw = new BufferedWriter(new FileWriter(location, true));
 
-                 Scanner scanner = new Scanner(new File(location));
 
-                 while (scanner.hasNextLine()) {
 
- 	                String line = scanner.nextLine();
 
- 	                if (line.startsWith("#") || line.equals("") || line.startsWith("")) {
 
- 	                    continue;
 
- 	                }
 
- 	                String[] split = line.split(":");
 
- 	                if (!split[0].equalsIgnoreCase(playerName.toString())) {
 
- 	                    continue;
 
- 	                }
 
- 	                bw.write(playerName + ":" + nickName + ":" + suffix + ":" + tag + ":" + ignoreList + ":" + aliasList);
 
- 	            }
 
- 	            scanner.close();
 
- 	        } catch (Exception e) {
 
- 	            String location = "vminecraftusers.txt";
 
-                     log.log(Level.SEVERE, "Exception while writing to " + location + " (Are you sure you formatted it correctly?)", e);
 
- 	        }
 
- 		}
 
- 		//=====================================================================
 
- 		//Function:	getPlayer
 
- 		//Input:	None
 
- 		//Output:	Player: The player this profile belongs to
 
- 		//Use:		Finds if the specified player is in the ignore list
 
- 		//=====================================================================
 
- 		public Player getPlayer(){return playerName;}
 
- 		//=====================================================================
 
- 		//Function:	isIgnored
 
- 		//Input:	Player player: Checks if a player is ignored
 
- 		//Output:	boolean: If they're ignored
 
- 		//Use:		Finds if the specified player is in the ignore list
 
- 		//=====================================================================
 
- 		public boolean isIgnored(Player player){return ignoreList.contains(player);}
 
- 		//=====================================================================
 
- 		//Function:	addIgnore
 
- 		//Input:	Player name: The player to ignore
 
- 		//Output:	None
 
- 		//Use:		Ignores a player.
 
- 		//=====================================================================
 
- 		public void addIgnore(Player name)
 
- 		{
 
- 			if(!ignoreList.contains(name))
 
- 				ignoreList.add(name);
 
- 		}
 
- 		//=====================================================================
 
- 		//Function:	removeIgnore
 
- 		//Input:	Player name: The player to ignore
 
- 		//Output:	None
 
- 		//Use:		Ignores a player.
 
- 		//=====================================================================
 
- 		public void removeIgnore(Player name)
 
- 		{
 
- 			if(ignoreList.contains(name))
 
- 				ignoreList.remove(name);
 
- 		}
 
- 		//=====================================================================
 
- 		//Function:	addAlias
 
- 		//Input:	String command: The command to try to call
 
- 		//			String[] args: The arguments for the command
 
- 		//Output:	None
 
- 		//Use:		Adds a command
 
- 		//=====================================================================
 
- 		public void addAlias(String name, String callCommand)
 
- 		{
 
- 			aliasList.registerAlias(name, callCommand);
 
- 		}
 
- 		//=====================================================================
 
- 		//Function:	addAlias
 
- 		//Input:	String command: The command to try to call
 
- 		//			String[] args: The arguments for the command
 
- 		//Output:	None
 
- 		//Use:		Adds a command
 
- 		//=====================================================================
 
- 		public void addAlias(String name, String callCommand, String[] args)
 
- 		{
 
- 			aliasList.registerAlias(name, callCommand, args);
 
- 		}
 
- 		//=====================================================================
 
- 		//Function:	callAlias
 
- 		//Input:	String command: The command to try to call
 
- 		//			Player player: Checks if a player is ignored
 
- 		//			String[] args: The arguments for the command
 
- 		//Output:	int: Exit code
 
- 		//Use:		Attempts to call a command
 
- 		//=====================================================================
 
- 		public int callAlias(String command, Player player, String[] args)
 
- 		{
 
- 			try
 
- 			{
 
- 				//Attemt to call the function
 
- 				return aliasList.call(command, player, args);
 
- 			}
 
- 			catch (Throwable e)
 
- 			{
 
- 				//The function wasn't found, returns fail
 
- 				return EXIT_FAIL;
 
- 			}
 
- 		}
 
- 		//=====================================================================
 
- 		//Function:	setTag
 
- 		//Input:	String newTag: The tag to set for the player
 
- 		//Output:	None
 
- 		//Use:		Sets a player tag
 
- 		//=====================================================================
 
- 		public void setTag(String newTag){ tag = newTag; }
 
- 		//=====================================================================
 
- 		//Function:	getTag
 
- 		//Input:	None
 
- 		//Output:	String: The player tag
 
- 		//Use:		Gets a player tag
 
- 		//=====================================================================
 
- 		public String getTag() { return tag; }
 
- 	}
 
- }
 
 
  |