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.gameengine.*;
import mrdev023.network.common.*;
import mrdev023.network.packet.main.*;
public class PingClientPacket implements IPacket{
public long current;
public PingClientPacket(){
}
public PingClientPacket(long current){
this.current = current;
}
public void write(DataBuffer buff) throws Exception {
buff.put(current);
}
public void read(DataBuffer buff) throws Exception {
this.current = buff.getLong();
}
public void manage(Client client, IPacket packet) throws Exception {
GameEngine.setPing((System.currentTimeMillis() - current));
}
public void manage(Client client, IPacket packet, DatagramSocket server) throws Exception {
client.send(packet);
}
}