1
0
Fork 0

Add Network

This commit is contained in:
Florian Richer (MrDev023) 2015-12-25 13:29:35 +01:00
parent 9505d4e887
commit a00f214911
15 changed files with 782 additions and 5 deletions

View file

@ -0,0 +1,38 @@
package mrdev023.network.packet;
import java.net.*;
import mrdev023.*;
import mrdev023.network.client.*;
import mrdev023.network.common.*;
import mrdev023.network.packet.main.*;
public class ChangePseudoPacket implements IPacket{
private String pseudo;
public ChangePseudoPacket(){}
public ChangePseudoPacket(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{
MainClient.pseudo = pseudo;
}
public void manage(Client client, IPacket packet, DatagramSocket server) throws Exception {
client.setPseudo(pseudo);
client.send(packet);
}
}