Browse Source

Bugfixing

Fixed some bugs regarding ban times and formatting of error mesages in
client.
Also optimized the removeFirst method to properly shorten the array
aswell as moving the objects.
Changed version number to 0.3 from 0.2.
Tankernn 10 years ago
parent
commit
5b0f193f0c

+ 1 - 1
client.properties

@@ -1,5 +1,5 @@
 #Configuration for chat client
 #Configuration for chat client
-#Tue May 12 18:23:16 CEST 2015
+#Tue May 12 19:08:46 CEST 2015
 port=25566
 port=25566
 host=tankernn.eu
 host=tankernn.eu
 username=noscoper2
 username=noscoper2

+ 1 - 1
src/client/ChatWindow.java

@@ -138,7 +138,7 @@ public class ChatWindow extends JFrame implements ActionListener, Runnable{
 		try {
 		try {
 			getMessages();
 			getMessages();
 		} catch (EOFException eof) {
 		} catch (EOFException eof) {
-			chat.log(eof.getMessage() + " Disconnected from host.");
+			chat.log(eof.toString() + " Disconnected from host.");
 		} catch (ClassNotFoundException cnf) {
 		} catch (ClassNotFoundException cnf) {
 			chat.log("The message recieved from the server could not be understood. Are you using the right version?");
 			chat.log("The message recieved from the server could not be understood. Are you using the right version?");
 		} catch (IOException e) {
 		} catch (IOException e) {

+ 9 - 3
src/server/BanNote.java

@@ -1,6 +1,7 @@
 package server;
 package server;
 
 
 import java.time.LocalDateTime;
 import java.time.LocalDateTime;
+import java.time.format.DateTimeFormatter;
 import java.time.temporal.ChronoUnit;
 import java.time.temporal.ChronoUnit;
 
 
 public class BanNote {
 public class BanNote {
@@ -11,6 +12,7 @@ public class BanNote {
 		this.ip = ip;
 		this.ip = ip;
 		if (duration == -1)
 		if (duration == -1)
 			this.expiry = null;
 			this.expiry = null;
+		
 		else
 		else
 			this.expiry = LocalDateTime.now().plus(duration, ChronoUnit.SECONDS);
 			this.expiry = LocalDateTime.now().plus(duration, ChronoUnit.SECONDS);
 		this.reason = reason;
 		this.reason = reason;
@@ -30,8 +32,12 @@ public class BanNote {
 	
 	
 	@Override
 	@Override
 	public String toString() {
 	public String toString() {
-		if (expiry != null)
-			return "You are banned from this server." + "\n" + "Reason: " + reason + "\n" + "Time left: " + LocalDateTime.now().compareTo(expiry);
-		return "You are banned from this server." + "\n" + "Reason: " + reason + "\n" + "Time left: forever.";
+		String expStr;
+		if (expiry == null)
+			expStr = "Forever";
+		else
+			expStr = expiry.format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"));
+		
+		return "You are banned from this server." + "\n" + "Reason: " + reason + "\n" + "Expiry: " + expStr;
 	}
 	}
 }
 }

+ 3 - 2
src/server/CommandHandler.java

@@ -42,9 +42,10 @@ public class CommandHandler {
 	}
 	}
 	
 	
 	public static String[] removeFirst(String[] command) {
 	public static String[] removeFirst(String[] command) {
+		String[] newCommand = new String[command.length - 1];
 		for (int i = 0; i < command.length -1; i++) {
 		for (int i = 0; i < command.length -1; i++) {
-			command[i] = command[i +1];
+			newCommand[i] = command[i + 1];
 		}
 		}
-		return command;
+		return newCommand;
 	}
 	}
 }
 }

+ 1 - 1
src/server/Server.java

@@ -18,7 +18,7 @@ public class Server {
 	
 	
 	static Properties prop = new Properties();
 	static Properties prop = new Properties();
 	static int port, maxUsers = 20, maxChannels = 10;
 	static int port, maxUsers = 20, maxChannels = 10;
-	static final String version = "0.2";
+	static final String version = "0.3";
 	
 	
 	public static ArrayList<BanNote> banNotes = new ArrayList<BanNote>();
 	public static ArrayList<BanNote> banNotes = new ArrayList<BanNote>();
 	public static Channel[] channels = new Channel[maxChannels];
 	public static Channel[] channels = new Channel[maxChannels];