Refactoring and add travis ant compilation
This commit is contained in:
parent
c2e793be12
commit
0b9fb6e127
68 changed files with 383 additions and 400 deletions
|
@ -1,40 +0,0 @@
|
|||
package mrdev023.network.packet;
|
||||
|
||||
import java.net.*;
|
||||
|
||||
import mrdev023.entities.*;
|
||||
import mrdev023.gameengine.gamestate.*;
|
||||
import mrdev023.network.common.*;
|
||||
import mrdev023.network.packet.main.*;
|
||||
import mrdev023.network.server.*;
|
||||
import mrdev023.opengl.gui.*;
|
||||
|
||||
public class ClientDisconnect implements IPacket{
|
||||
|
||||
public String pseudo;
|
||||
|
||||
public ClientDisconnect(){}
|
||||
public ClientDisconnect(String pseudo){this.pseudo = pseudo;}
|
||||
|
||||
public void write(DataBuffer buff) throws Exception {
|
||||
buff.put(pseudo);
|
||||
}
|
||||
|
||||
public void read(DataBuffer buff) throws Exception {
|
||||
this.pseudo = buff.getString();
|
||||
}
|
||||
|
||||
public void manage(Client client, IPacket packet) throws Exception {
|
||||
MainState.messages.add(new Message(pseudo + " has disconnected !"));
|
||||
Entity e = Client.getEntityByName(pseudo);
|
||||
if(e != null)Client.entities.remove(e);
|
||||
}
|
||||
|
||||
public void manage(Client client, IPacket packet, DatagramSocket server) throws Exception {
|
||||
System.out.println(client.getPseudo() + " has diconnected " + client.getAddress().getHostName() + ":" + client.getPort());
|
||||
MainServer.sendToClients(new ClientDisconnect((client.isAdmin()?"<admin>":"")+client.getPseudo()));
|
||||
client.setRunning(false);
|
||||
MainServer.clients.remove(client);
|
||||
}
|
||||
|
||||
}
|
Reference in a new issue