Merge pull request #74 from Anuken/custom-serialization

Custom Serialization + HTML5 Multiplayer
This commit is contained in:
Anuken
2018-01-17 19:14:45 -05:00
committed by GitHub
32 changed files with 1280 additions and 219 deletions

View File

@@ -61,6 +61,8 @@ project(":html") {
compile "com.badlogicgames.gdx:gdx-controllers:$gdxVersion:sources" compile "com.badlogicgames.gdx:gdx-controllers:$gdxVersion:sources"
compile "com.badlogicgames.gdx:gdx-controllers-gwt:$gdxVersion" compile "com.badlogicgames.gdx:gdx-controllers-gwt:$gdxVersion"
compile "com.badlogicgames.gdx:gdx-controllers-gwt:$gdxVersion:sources" compile "com.badlogicgames.gdx:gdx-controllers-gwt:$gdxVersion:sources"
compile "com.sksamuel.gwt:gwt-websockets:1.0.4"
compile "com.sksamuel.gwt:gwt-websockets:1.0.4:sources"
} }
} }
@@ -116,6 +118,7 @@ project(":kryonet") {
dependencies { dependencies {
compile project(":core") compile project(":core")
compile 'com.github.crykn:kryonet:2.22.1' compile 'com.github.crykn:kryonet:2.22.1'
compile "org.java-websocket:Java-WebSocket:1.3.7"
} }
} }

View File

@@ -16,6 +16,7 @@ text.about.button=About
text.name=Name: text.name=Name:
text.public=Public text.public=Public
text.players={0} players online text.players={0} players online
text.server.player.host={0} (host)
text.players.single={0} player online text.players.single={0} player online
text.server.mismatch=Packet error: possible client/server version mismatch.\nMake sure you and the host have the\nlatest version of Mindustry! text.server.mismatch=Packet error: possible client/server version mismatch.\nMake sure you and the host have the\nlatest version of Mindustry!
text.server.closing=[accent]Closing server... text.server.closing=[accent]Closing server...
@@ -45,6 +46,7 @@ text.connecting=[accent]Connecting...
text.connecting.data=[accent]Loading world data... text.connecting.data=[accent]Loading world data...
text.connectfail=[crimson]Failed to connect to server: [orange]{0} text.connectfail=[crimson]Failed to connect to server: [orange]{0}
text.server.port=Port: text.server.port=Port:
text.server.addressinuse=Address already in use!
text.server.invalidport=Invalid port number! text.server.invalidport=Invalid port number!
text.server.error=[crimson]Error hosting server: [orange]{0} text.server.error=[crimson]Error hosting server: [orange]{0}
text.tutorial.back=< Prev text.tutorial.back=< Prev

View File

@@ -7,4 +7,7 @@
<extend-configuration-property name="gdx.reflect.include" value="io.anuke.mindustry.game.EnemySpawn" /> <extend-configuration-property name="gdx.reflect.include" value="io.anuke.mindustry.game.EnemySpawn" />
<extend-configuration-property name="gdx.reflect.include" value="io.anuke.mindustry.io.SaveFileVersion" /> <extend-configuration-property name="gdx.reflect.include" value="io.anuke.mindustry.io.SaveFileVersion" />
<extend-configuration-property name="gdx.reflect.include" value="io.anuke.mindustry.resource.Recipe" /> <extend-configuration-property name="gdx.reflect.include" value="io.anuke.mindustry.resource.Recipe" />
<extend-configuration-property name="gdx.reflect.include" value="io.anuke.mindustry.net.Packets" />
<extend-configuration-property name="gdx.reflect.include" value="io.anuke.mindustry.net.Packet" />
<extend-configuration-property name="gdx.reflect.include" value="io.anuke.mindustry.net.Streamable" />
</module> </module>

View File

@@ -38,6 +38,7 @@ public class Mindustry extends ModuleCore {
@Override @Override
public void dispose() { public void dispose() {
platforms.onGameExit(); platforms.onGameExit();
Net.dispose();
super.dispose(); super.dispose();
} }

View File

@@ -75,6 +75,7 @@ public class Vars{
//server port //server port
public static final int port = 6567; public static final int port = 6567;
public static final int webPort = 6568;
public static Control control; public static Control control;
public static Renderer renderer; public static Renderer renderer;

View File

@@ -546,7 +546,6 @@ public class Control extends Module{
@Override @Override
public void update(){ public void update(){
//UCore.log(input.placeMode, input.breakMode, input.lastPlaceMode);
if(Gdx.input != proxy){ if(Gdx.input != proxy){
Gdx.input = proxy; Gdx.input = proxy;

View File

@@ -272,12 +272,21 @@ public class NetClient extends Module {
} }
}); });
Net.handle(Player.class, player -> { Net.handle(PlayerSpawnPacket.class, packet -> {
Gdx.app.postRunnable(() -> { Gdx.app.postRunnable(() -> {
//duplicates. //duplicates.
if(Vars.control.enemyGroup.getByID(player.id) != null || if(Vars.control.enemyGroup.getByID(packet.id) != null ||
recieved.contains(player.id)) return; recieved.contains(packet.id)) return;
recieved.add(player.id); recieved.add(packet.id);
Player player = new Player();
player.x = packet.x;
player.y = packet.y;
player.isAndroid = packet.android;
player.name = packet.name;
player.id = packet.id;
player.weaponLeft = (Weapon) Upgrade.getByID(packet.weaponleft);
player.weaponRight = (Weapon) Upgrade.getByID(packet.weaponright);
player.interpolator.last.set(player.x, player.y); player.interpolator.last.set(player.x, player.y);
player.interpolator.target.set(player.x, player.y); player.interpolator.target.set(player.x, player.y);
@@ -291,7 +300,7 @@ public class NetClient extends Module {
kicked = true; kicked = true;
Net.disconnect(); Net.disconnect();
GameState.set(State.menu); GameState.set(State.menu);
Gdx.app.postRunnable(() -> Vars.ui.showError("$text.server.kicked." + KickReason.values()[packet.reason].name())); Gdx.app.postRunnable(() -> Vars.ui.showError("$text.server.kicked." + packet.reason.name()));
}); });
Net.handle(WeaponSwitchPacket.class, packet -> { Net.handle(WeaponSwitchPacket.class, packet -> {

View File

@@ -9,6 +9,7 @@ import io.anuke.mindustry.entities.Player;
import io.anuke.mindustry.entities.SyncEntity; import io.anuke.mindustry.entities.SyncEntity;
import io.anuke.mindustry.entities.TileEntity; import io.anuke.mindustry.entities.TileEntity;
import io.anuke.mindustry.entities.enemies.Enemy; import io.anuke.mindustry.entities.enemies.Enemy;
import io.anuke.mindustry.net.NetConnection;
import io.anuke.mindustry.net.NetworkIO; import io.anuke.mindustry.net.NetworkIO;
import io.anuke.mindustry.net.Net; import io.anuke.mindustry.net.Net;
import io.anuke.mindustry.net.Net.SendMode; import io.anuke.mindustry.net.Net.SendMode;
@@ -190,7 +191,16 @@ public class NetServer extends Module{
int dest = Net.getLastConnection(); int dest = Net.getLastConnection();
Gdx.app.postRunnable(() -> { Gdx.app.postRunnable(() -> {
if(Vars.control.playerGroup.getByID(id) != null){ if(Vars.control.playerGroup.getByID(id) != null){
Net.sendTo(dest, Vars.control.playerGroup.getByID(id), SendMode.tcp); Player player = Vars.control.playerGroup.getByID(id);
PlayerSpawnPacket p = new PlayerSpawnPacket();
p.x = player.x;
p.y = player.y;
p.id = player.id;
p.name = player.name;
p.weaponleft = player.weaponLeft.id;
p.weaponright = player.weaponRight.id;
p.android = player.isAndroid;
Net.sendTo(dest, p, SendMode.tcp);
Gdx.app.error("Mindustry", "Replying to entity request ("+Net.getLastConnection()+"): player, " + id); Gdx.app.error("Mindustry", "Replying to entity request ("+Net.getLastConnection()+"): player, " + id);
}else if (Vars.control.enemyGroup.getByID(id) != null){ }else if (Vars.control.enemyGroup.getByID(id) != null){
Enemy enemy = Vars.control.enemyGroup.getByID(id); Enemy enemy = Vars.control.enemyGroup.getByID(id);
@@ -361,10 +371,10 @@ public class NetServer extends Module{
if(Timers.get("serverBlockSync", blockSyncTime)){ if(Timers.get("serverBlockSync", blockSyncTime)){
IntArray connections = Net.getConnections(); Array<NetConnection> connections = new Array<>();
for(int i = 0; i < connections.size; i ++){ for(int i = 0; i < connections.size; i ++){
int id = connections.get(i); int id = connections.get(i).id;
Player player = this.connections.get(id); Player player = this.connections.get(id);
if(player == null) continue; if(player == null) continue;
int x = Mathf.scl2(player.x, Vars.tilesize); int x = Mathf.scl2(player.x, Vars.tilesize);

View File

@@ -352,7 +352,7 @@ public abstract class BulletType extends BaseBulletType<Bullet>{
public void draw(Bullet b){ public void draw(Bullet b){
Draw.thick(2f); Draw.thick(2f);
Draw.color(lightOrange, Color.WHITE, 0.4f); Draw.color(lightOrange, Color.WHITE, 0.4f);
Draw.polygon(b.y, b.x, 3, 1.6f, b.angle()); Draw.polygon(b.x, b.y, 3, 1.6f, b.angle());
Draw.thick(1f); Draw.thick(1f);
Draw.color(Color.WHITE, lightOrange, b.ifract()/2f); Draw.color(Color.WHITE, lightOrange, b.ifract()/2f);
Draw.alpha(b.ifract()); Draw.alpha(b.ifract());

View File

@@ -84,7 +84,7 @@ public class EMP extends TimedEntity{
} }
Draw.thick(fract()*2f); Draw.thick(fract()*2f);
Draw.polygon(y, x, 34, radius * Vars.tilesize); Draw.polygon(x, y, 34, radius * Vars.tilesize);
Draw.reset(); Draw.reset();
} }

View File

@@ -1,21 +1,17 @@
package io.anuke.mindustry.graphics; package io.anuke.mindustry.graphics;
import static io.anuke.mindustry.Vars.*;
import static io.anuke.ucore.core.Core.camera;
import java.util.Arrays;
import com.badlogic.gdx.Gdx; import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.graphics.Color; import com.badlogic.gdx.graphics.Color;
import com.badlogic.gdx.graphics.GL20; import com.badlogic.gdx.graphics.GL20;
import com.badlogic.gdx.graphics.OrthographicCamera; import com.badlogic.gdx.graphics.OrthographicCamera;
import com.badlogic.gdx.utils.Array; import com.badlogic.gdx.utils.Array;
import io.anuke.mindustry.Vars; import io.anuke.mindustry.Vars;
import io.anuke.mindustry.core.GameState; import io.anuke.mindustry.core.GameState;
import io.anuke.mindustry.core.GameState.State; import io.anuke.mindustry.core.GameState.State;
import io.anuke.mindustry.game.SpawnPoint; import io.anuke.mindustry.game.SpawnPoint;
import io.anuke.mindustry.world.*; import io.anuke.mindustry.world.Block;
import io.anuke.mindustry.world.Layer;
import io.anuke.mindustry.world.Tile;
import io.anuke.mindustry.world.blocks.Blocks; import io.anuke.mindustry.world.blocks.Blocks;
import io.anuke.mindustry.world.blocks.types.StaticBlock; import io.anuke.mindustry.world.blocks.types.StaticBlock;
import io.anuke.ucore.core.Core; import io.anuke.ucore.core.Core;
@@ -24,6 +20,11 @@ import io.anuke.ucore.core.Graphics;
import io.anuke.ucore.graphics.CacheBatch; import io.anuke.ucore.graphics.CacheBatch;
import io.anuke.ucore.util.Mathf; import io.anuke.ucore.util.Mathf;
import java.util.Arrays;
import static io.anuke.mindustry.Vars.*;
import static io.anuke.ucore.core.Core.camera;
public class BlockRenderer{ public class BlockRenderer{
private final static int chunksize = 32; private final static int chunksize = 32;
private final static int initialRequests = 32*32; private final static int initialRequests = 32*32;
@@ -269,6 +270,6 @@ public class BlockRenderer{
cache = null; cache = null;
if(cbatch != null) if(cbatch != null)
cbatch.dispose(); cbatch.dispose();
cbatch = new CacheBatch(Vars.world.width() * Vars.world.height() * 3); cbatch = new CacheBatch(Vars.world.width() * Vars.world.height() * 4);
} }
} }

View File

@@ -121,7 +121,7 @@ public class Fx{
nuclearShockwave = new Effect(10f, 200f, e -> { nuclearShockwave = new Effect(10f, 200f, e -> {
Draw.color(Color.WHITE, Color.LIGHT_GRAY, e.ifract()); Draw.color(Color.WHITE, Color.LIGHT_GRAY, e.ifract());
Draw.thick(e.fract()*3f + 0.2f); Draw.thick(e.fract()*3f + 0.2f);
Draw.polygon(e.y, e.x, 40, e.ifract()*140f); Draw.polygon(e.x, e.y, 40, e.ifract()*140f);
Draw.reset(); Draw.reset();
}), }),
@@ -452,7 +452,7 @@ public class Fx{
clusterbomb = new Effect(10f, e -> { clusterbomb = new Effect(10f, e -> {
Draw.color(Color.WHITE, lightOrange, e.ifract()); Draw.color(Color.WHITE, lightOrange, e.ifract());
Draw.thick(e.fract()*1.5f); Draw.thick(e.fract()*1.5f);
Draw.polygon(e.y, e.x, 4, e.fract()*8f); Draw.polygon(e.x, e.y, 4, e.fract()*8f);
Draw.circle(e.x, e.y, e.ifract()*14f); Draw.circle(e.x, e.y, e.ifract()*14f);
Draw.reset(); Draw.reset();
}), }),

View File

@@ -92,7 +92,7 @@ public class DesktopInput extends InputHandler{
for(int i = 1; i <= 6 && i <= control.getWeapons().size; i ++){ for(int i = 1; i <= 6 && i <= control.getWeapons().size; i ++){
if(Inputs.keyTap("weapon_" + i)){ if(Inputs.keyTap("weapon_" + i)){
player.weaponLeft = player.weaponRight = control.getWeapons().get(i - 1); player.weaponLeft = player.weaponRight = control.getWeapons().get(i - 1);
Vars.netClient.handleWeaponSwitch(); if(Net.active()) Vars.netClient.handleWeaponSwitch();
Vars.ui.hudfrag.updateWeapons(); Vars.ui.hudfrag.updateWeapons();
} }
} }

View File

@@ -96,7 +96,7 @@ public enum PlaceMode{
if(android && control.getInput().breaktime > 0){ if(android && control.getInput().breaktime > 0){
Draw.color(Colors.get("breakStart"), Colors.get("break"), fract); Draw.color(Colors.get("breakStart"), Colors.get("break"), fract);
Draw.polygon(tile.worldx() + offset.y, tile.worldy() + offset.x, 25, 4 + (1f - fract) * 26); Draw.polygon(tile.worldx() + offset.x, tile.worldy() + offset.y, 25, 4 + (1f - fract) * 26);
} }
Draw.reset(); Draw.reset();
} }

View File

@@ -238,9 +238,9 @@ public class MapView extends Element implements GestureListener{
Draw.thick(Unit.dp.scl(3f * zoom)); Draw.thick(Unit.dp.scl(3f * zoom));
Draw.line(sx, sy, v2.x, v2.y); Draw.line(sx, sy, v2.x, v2.y);
Draw.polygon(sy, sx, 40, editor.getBrushSize() * zoom * 3); Draw.polygon(sx, sy, 40, editor.getBrushSize() * zoom * 3);
Draw.polygon(v2.y, v2.x, 40, editor.getBrushSize() * zoom * 3); Draw.polygon(v2.x, v2.y, 40, editor.getBrushSize() * zoom * 3);
} }
batch.flush(); batch.flush();

View File

@@ -2,7 +2,6 @@ package io.anuke.mindustry.net;
import com.badlogic.gdx.Gdx; import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.utils.Array; import com.badlogic.gdx.utils.Array;
import com.badlogic.gdx.utils.IntArray;
import com.badlogic.gdx.utils.IntMap; import com.badlogic.gdx.utils.IntMap;
import com.badlogic.gdx.utils.ObjectMap; import com.badlogic.gdx.utils.ObjectMap;
import com.badlogic.gdx.utils.async.AsyncExecutor; import com.badlogic.gdx.utils.async.AsyncExecutor;
@@ -85,7 +84,7 @@ public class Net{
} }
/**Returns a list of all connections IDs.*/ /**Returns a list of all connections IDs.*/
public static IntArray getConnections(){ public static Array<? extends NetConnection> getConnections(){
return serverProvider.getConnections(); return serverProvider.getConnections();
} }
@@ -206,8 +205,8 @@ public class Net{
} }
public static void dispose(){ public static void dispose(){
clientProvider.dispose(); if(clientProvider != null) clientProvider.dispose();
serverProvider.dispose(); if(serverProvider != null) serverProvider.dispose();
executor.dispose(); executor.dispose();
} }
@@ -218,51 +217,51 @@ public class Net{
} }
/**Client implementation.*/ /**Client implementation.*/
public static interface ClientProvider { public interface ClientProvider {
/**Connect to a server.*/ /**Connect to a server.*/
public void connect(String ip, int port) throws IOException; void connect(String ip, int port) throws IOException;
/**Send an object to the server.*/ /**Send an object to the server.*/
public void send(Object object, SendMode mode); void send(Object object, SendMode mode);
/**Update the ping. Should be done every second or so.*/ /**Update the ping. Should be done every second or so.*/
public void updatePing(); void updatePing();
/**Get ping in milliseconds. Will only be valid after a call to updatePing.*/ /**Get ping in milliseconds. Will only be valid after a call to updatePing.*/
public int getPing(); int getPing();
/**Disconnect from the server.*/ /**Disconnect from the server.*/
public void disconnect(); void disconnect();
/**Discover servers. This should block for a certain amount of time, and will most likely be run in a different thread.*/ /**Discover servers. This should block for a certain amount of time, and will most likely be run in a different thread.*/
public Array<Host> discover(); Array<Host> discover();
/**Ping a host. If an error occured, failed() should be called with the exception. */ /**Ping a host. If an error occured, failed() should be called with the exception. */
public void pingHost(String address, int port, Consumer<Host> valid, Consumer<IOException> failed); void pingHost(String address, int port, Consumer<Host> valid, Consumer<IOException> failed);
/**Register classes to be sent.*/ /**Register classes to be sent.*/
public void register(Class<?>... types); void register(Class<?>... types);
/**Close all connections.*/ /**Close all connections.*/
public void dispose(); void dispose();
} }
/**Server implementation.*/ /**Server implementation.*/
public static interface ServerProvider { public interface ServerProvider {
/**Host a server at specified port.*/ /**Host a server at specified port.*/
public void host(int port) throws IOException; void host(int port) throws IOException;
/**Sends a large stream of data to a specific client.*/ /**Sends a large stream of data to a specific client.*/
public void sendStream(int id, Streamable stream); void sendStream(int id, Streamable stream);
/**Send an object to everyone connected.*/ /**Send an object to everyone connected.*/
public void send(Object object, SendMode mode); void send(Object object, SendMode mode);
/**Send an object to a specific client ID.*/ /**Send an object to a specific client ID.*/
public void sendTo(int id, Object object, SendMode mode); void sendTo(int id, Object object, SendMode mode);
/**Send an object to everyone <i>except</i> a client ID.*/ /**Send an object to everyone <i>except</i> a client ID.*/
public void sendExcept(int id, Object object, SendMode mode); void sendExcept(int id, Object object, SendMode mode);
/**Close the server connection.*/ /**Close the server connection.*/
public void close(); void close();
/**Return all connected users.*/ /**Return all connected users.*/
public IntArray getConnections(); Array<? extends NetConnection> getConnections();
/**Kick a certain connection.*/ /**Kick a certain connection.*/
public void kick(int connection); void kick(int connection);
/**Returns the ping for a certain connection.*/ /**Returns the ping for a certain connection.*/
public int getPingFor(int connection); int getPingFor(NetConnection connection);
/**Register classes to be sent.*/ /**Register classes to be sent.*/
public void register(Class<?>... types); void register(Class<?>... types);
/**Close all connections.*/ /**Close all connections.*/
public void dispose(); void dispose();
} }
public enum SendMode{ public enum SendMode{

View File

@@ -0,0 +1,16 @@
package io.anuke.mindustry.net;
import io.anuke.mindustry.net.Net.SendMode;
public abstract class NetConnection {
public final int id;
public final String address;
public NetConnection(int id, String address){
this.id = id;
this.address = address;
}
public abstract void send(Object object, SendMode mode);
public abstract void close();
}

View File

@@ -0,0 +1,8 @@
package io.anuke.mindustry.net;
import java.nio.ByteBuffer;
public interface Packet {
void read(ByteBuffer buffer);
void write(ByteBuffer buffer);
}

View File

@@ -1,9 +1,15 @@
package io.anuke.mindustry.net; package io.anuke.mindustry.net;
import io.anuke.mindustry.entities.Player;
import io.anuke.mindustry.entities.SyncEntity;
import io.anuke.mindustry.resource.Item;
import java.nio.ByteBuffer;
/**Class for storing all packets.*/ /**Class for storing all packets.*/
public class Packets { public class Packets {
public static class Connect { public static class Connect{
public int id; public int id;
public String addressTCP; public String addressTCP;
} }
@@ -17,128 +23,477 @@ public class Packets {
} }
public static class SyncPacket{ public static class SyncPacket implements Packet{
public byte[] data; public byte[] data;
@Override
public void write(ByteBuffer buffer) {
buffer.putShort((short)data.length);
buffer.put(data);
}
@Override
public void read(ByteBuffer buffer) {
data = new byte[buffer.getShort()];
buffer.get(data);
}
} }
public static class BlockSyncPacket extends Streamable{ public static class BlockSyncPacket extends Streamable{
} }
public static class ConnectPacket{ public static class ConnectPacket implements Packet{
public String name; public String name;
public boolean android; public boolean android;
@Override
public void write(ByteBuffer buffer) {
buffer.put((byte)name.length());
buffer.put(name.getBytes());
buffer.put(android ? (byte)1 : 0);
}
@Override
public void read(ByteBuffer buffer) {
byte length = buffer.get();
byte[] bytes = new byte[length];
buffer.get(bytes);
name = new String(bytes);
android = buffer.get() == 1;
}
} }
public static class ConnectConfirmPacket{ public static class ConnectConfirmPacket implements Packet{
@Override
public void write(ByteBuffer buffer) { }
@Override
public void read(ByteBuffer buffer) { }
} }
public static class DisconnectPacket{ public static class DisconnectPacket implements Packet{
public int playerid; public int playerid;
@Override
public void write(ByteBuffer buffer) {
buffer.putInt(playerid);
}
@Override
public void read(ByteBuffer buffer) {
playerid = buffer.getInt();
}
} }
public static class StateSyncPacket{ public static class StateSyncPacket implements Packet{
public int[] items; public int[] items;
public float countdown, time; public float countdown, time;
public int enemies, wave; public int enemies, wave;
public long timestamp; public long timestamp;
@Override
public void write(ByteBuffer buffer) {
for(int i = 0; i < items.length; i ++){
buffer.putInt(items[i]);
}
buffer.putFloat(countdown);
buffer.putFloat(time);
buffer.putShort((short)enemies);
buffer.putShort((short)wave);
buffer.putLong(timestamp);
}
@Override
public void read(ByteBuffer buffer) {
items = new int[Item.getAllItems().size];
for(int i = 0; i < items.length; i ++){
items[i] = buffer.getInt();
}
countdown = buffer.getFloat();
time = buffer.getFloat();
enemies = buffer.getShort();
wave = buffer.getShort();
timestamp = buffer.getLong();
}
} }
public static class PositionPacket{ public static class PositionPacket implements Packet{
public byte[] data; public byte[] data;
@Override
public void write(ByteBuffer buffer) {
buffer.put(data);
}
@Override
public void read(ByteBuffer buffer) {
data = new byte[SyncEntity.getWriteSize(Player.class)];
buffer.get(data);
}
} }
//not a real packet.
public static class EffectPacket{ public static class EffectPacket{
public int id; public int id;
public float x, y, rotation; public float x, y, rotation;
public int color; public int color;
} }
public static class ShootPacket{ public static class ShootPacket implements Packet{
public byte weaponid; public byte weaponid;
public float x, y, rotation; public float x, y, rotation;
public int playerid; public int playerid;
@Override
public void write(ByteBuffer buffer) {
buffer.put(weaponid);
buffer.putFloat(x);
buffer.putFloat(y);
buffer.putFloat(rotation);
buffer.putInt(playerid);
}
@Override
public void read(ByteBuffer buffer) {
weaponid = buffer.get();
x = buffer.getFloat();
y = buffer.getFloat();
rotation = buffer.getFloat();
playerid = buffer.getInt();
}
} }
public static class BulletPacket{ public static class BulletPacket implements Packet{
public int type, owner; public int type, owner;
public float x, y, angle; public float x, y, angle;
public short damage; public short damage;
@Override
public void write(ByteBuffer buffer) {
buffer.putShort((short)type);
buffer.putInt(owner);
buffer.putFloat(x);
buffer.putFloat(y);
buffer.putFloat(angle);
buffer.putShort(damage);
}
@Override
public void read(ByteBuffer buffer) {
type = buffer.getShort();
owner = buffer.getInt();
x = buffer.getFloat();
y = buffer.getFloat();
angle = buffer.getFloat();
damage = buffer.getShort();
}
} }
public static class PlacePacket{ public static class PlacePacket implements Packet{
public int playerid; public int playerid;
public byte rotation; public byte rotation;
public short x, y; public short x, y;
public int block; public int block;
@Override
public void write(ByteBuffer buffer) {
buffer.putInt(playerid);
buffer.put(rotation);
buffer.putShort(x);
buffer.putShort(y);
buffer.putInt(block);
}
@Override
public void read(ByteBuffer buffer) {
playerid = buffer.getInt();
rotation = buffer.get();
x = buffer.getShort();
y = buffer.getShort();
block = buffer.getInt();
}
} }
public static class BreakPacket{ public static class BreakPacket implements Packet{
public int playerid; public int playerid;
public short x, y; public short x, y;
@Override
public void write(ByteBuffer buffer) {
buffer.putInt(playerid);
buffer.putShort(x);
buffer.putShort(y);
}
@Override
public void read(ByteBuffer buffer) {
playerid = buffer.getInt();
x = buffer.getShort();
y = buffer.getShort();
}
} }
public static class EnemySpawnPacket{ public static class EnemySpawnPacket implements Packet{
public byte type, lane, tier; public byte type, lane, tier;
public float x, y; public float x, y;
public short health; public short health;
public int id; public int id;
@Override
public void write(ByteBuffer buffer) {
buffer.put(type);
buffer.put(lane);
buffer.put(tier);
buffer.putFloat(x);
buffer.putFloat(y);
buffer.putShort(health);
buffer.putInt(id);
}
@Override
public void read(ByteBuffer buffer) {
type = buffer.get();
lane = buffer.get();
tier = buffer.get();
x = buffer.getFloat();
y = buffer.getFloat();
health = buffer.getShort();
id = buffer.getInt();
}
} }
public static class EnemyDeathPacket{ public static class PlayerSpawnPacket implements Packet{
public byte weaponleft, weaponright;
public boolean android;
public String name;
public float x, y;
public int id; public int id;
@Override
public void write(ByteBuffer buffer) {
buffer.put((byte)name.length());
buffer.put(name.getBytes());
buffer.put(weaponleft);
buffer.put(weaponright);
buffer.put(android ? 1 : (byte)0);
buffer.putFloat(x);
buffer.putFloat(y);
buffer.putInt(id);
}
@Override
public void read(ByteBuffer buffer) {
byte nlength = buffer.get();
byte[] n = new byte[nlength];
buffer.get(n);
name = new String(n);
weaponleft = buffer.get();
weaponright = buffer.get();
android = buffer.get() == 1;
x = buffer.getFloat();
y = buffer.getFloat();
id = buffer.getInt();
}
} }
public static class BlockDestroyPacket{ public static class EnemyDeathPacket implements Packet{
public int id;
@Override
public void write(ByteBuffer buffer) {
buffer.putInt(id);
}
@Override
public void read(ByteBuffer buffer) {
id = buffer.getInt();
}
}
public static class BlockDestroyPacket implements Packet{
public int position; public int position;
@Override
public void write(ByteBuffer buffer) {
buffer.putInt(position);
}
@Override
public void read(ByteBuffer buffer) {
position = buffer.getInt();
}
} }
public static class BlockUpdatePacket{ public static class BlockUpdatePacket implements Packet{
public int health, position; public int health, position;
@Override
public void write(ByteBuffer buffer) {
buffer.putShort((short)health);
buffer.putInt(position);
}
@Override
public void read(ByteBuffer buffer) {
health = buffer.getShort();
position = buffer.getInt();
}
} }
public static class ChatPacket{ public static class ChatPacket implements Packet{
public String name; public String name;
public String text; public String text;
public int id; public int id;
@Override
public void write(ByteBuffer buffer) {
if(name != null) {
buffer.putShort((short) name.length());
buffer.put(name.getBytes());
}else{
buffer.putShort((short)-1);
}
buffer.putShort((short)text.length());
buffer.put(text.getBytes());
buffer.putInt(id);
}
@Override
public void read(ByteBuffer buffer) {
short nlength = buffer.getShort();
if(nlength != -1) {
byte[] n = new byte[nlength];
buffer.get(n);
name = new String(n);
}
short tlength = buffer.getShort();
byte[] t = new byte[tlength];
buffer.get(t);
id = buffer.getInt();
text = new String(t);
}
} }
public static class KickPacket{ public static class KickPacket implements Packet{
public byte reason; public KickReason reason;
@Override
public void write(ByteBuffer buffer) {
buffer.put((byte)reason.ordinal());
}
@Override
public void read(ByteBuffer buffer) {
reason = KickReason.values()[buffer.get()];
}
} }
public enum KickReason{ public enum KickReason{
kick, invalidPassword kick, invalidPassword
} }
public static class UpgradePacket{ public static class UpgradePacket implements Packet{
public byte id; //weapon ID only, currently public byte id; //weapon ID only, currently
@Override
public void write(ByteBuffer buffer) {
buffer.put(id);
}
@Override
public void read(ByteBuffer buffer) {
id = buffer.get();
}
} }
public static class WeaponSwitchPacket{ public static class WeaponSwitchPacket implements Packet{
public int playerid; public int playerid;
public byte left, right; public byte left, right;
@Override
public void write(ByteBuffer buffer) {
buffer.putInt(playerid);
buffer.put(left);
buffer.put(right);
}
@Override
public void read(ByteBuffer buffer) {
playerid = buffer.getInt();
left = buffer.get();
right = buffer.get();
}
} }
public static class BlockTapPacket{ public static class BlockTapPacket implements Packet{
public int position; public int position;
@Override
public void write(ByteBuffer buffer) {
buffer.putInt(position);
}
@Override
public void read(ByteBuffer buffer) {
position = buffer.getInt();
}
} }
public static class BlockConfigPacket{ public static class BlockConfigPacket implements Packet{
public int position; public int position;
public byte data; public byte data;
@Override
public void write(ByteBuffer buffer) {
buffer.putInt(position);
buffer.put(data);
}
@Override
public void read(ByteBuffer buffer) {
position = buffer.getInt();
data = buffer.get();
}
} }
public static class EntityRequestPacket{ public static class EntityRequestPacket implements Packet{
public int id; public int id;
@Override
public void write(ByteBuffer buffer) {
buffer.putInt(id);
}
@Override
public void read(ByteBuffer buffer) {
id = buffer.getInt();
}
} }
public static class GameOverPacket{ public static class GameOverPacket implements Packet{
@Override
public void write(ByteBuffer buffer) { }
@Override
public void read(ByteBuffer buffer) { }
} }
public static class FriendlyFireChangePacket{ public static class FriendlyFireChangePacket implements Packet{
public boolean enabled; public boolean enabled;
@Override
public void write(ByteBuffer buffer) {
buffer.put(enabled ? 1 : (byte)0);
}
@Override
public void read(ByteBuffer buffer) {
enabled = buffer.get() == 1;
}
} }
} }

View File

@@ -1,59 +1,62 @@
package io.anuke.mindustry.net; package io.anuke.mindustry.net;
import com.badlogic.gdx.math.Vector2; import com.badlogic.gdx.utils.ObjectIntMap;
import com.badlogic.gdx.utils.Array; import com.badlogic.gdx.utils.reflect.ClassReflection;
import io.anuke.mindustry.entities.Player;
import io.anuke.mindustry.entities.enemies.Enemy;
import io.anuke.mindustry.net.Packets.*; import io.anuke.mindustry.net.Packets.*;
import io.anuke.mindustry.net.Streamable.StreamBegin; import io.anuke.mindustry.net.Streamable.StreamBegin;
import io.anuke.mindustry.net.Streamable.StreamChunk; import io.anuke.mindustry.net.Streamable.StreamChunk;
import io.anuke.ucore.entities.Entity;
public class Registrator { public class Registrator {
private static Class<?>[] classes = {
StreamBegin.class,
StreamChunk.class,
WorldData.class,
SyncPacket.class,
PositionPacket.class,
ShootPacket.class,
PlacePacket.class,
BreakPacket.class,
StateSyncPacket.class,
BlockSyncPacket.class,
EnemySpawnPacket.class,
PlayerSpawnPacket.class,
BulletPacket.class,
EnemyDeathPacket.class,
BlockUpdatePacket.class,
BlockDestroyPacket.class,
ConnectPacket.class,
DisconnectPacket.class,
ChatPacket.class,
KickPacket.class,
UpgradePacket.class,
WeaponSwitchPacket.class,
BlockTapPacket.class,
BlockConfigPacket.class,
EntityRequestPacket.class,
ConnectConfirmPacket.class,
GameOverPacket.class,
FriendlyFireChangePacket.class,
};
private static ObjectIntMap<Class<?>> ids = new ObjectIntMap<>();
static{
if(classes.length > 127) throw new RuntimeException("Can't have more than 127 registered classes!");
for(int i = 0; i < classes.length; i ++){
if(!ClassReflection.isAssignableFrom(Packet.class, classes[i]) &&
!ClassReflection.isAssignableFrom(Streamable.class, classes[i])) throw new RuntimeException("Not a packet: " + classes[i]);
ids.put(classes[i], i);
}
}
public static Class<?> getByID(byte id){
return classes[id];
}
public static byte getID(Class<?> type){
return (byte)ids.get(type, -1);
}
public static Class<?>[] getClasses(){ public static Class<?>[] getClasses(){
return new Class<?>[]{ return classes;
StreamBegin.class,
StreamChunk.class,
WorldData.class,
SyncPacket.class,
PositionPacket.class,
ShootPacket.class,
PlacePacket.class,
BreakPacket.class,
StateSyncPacket.class,
BlockSyncPacket.class,
EnemySpawnPacket.class,
BulletPacket.class,
EnemyDeathPacket.class,
BlockUpdatePacket.class,
BlockDestroyPacket.class,
ConnectPacket.class,
DisconnectPacket.class,
ChatPacket.class,
KickPacket.class,
UpgradePacket.class,
WeaponSwitchPacket.class,
BlockTapPacket.class,
BlockConfigPacket.class,
EntityRequestPacket.class,
ConnectConfirmPacket.class,
GameOverPacket.class,
FriendlyFireChangePacket.class,
Class.class,
byte[].class,
float[].class,
float[][].class,
int[].class,
int[][].class,
Entity[].class,
Array.class,
Vector2.class,
Entity.class,
Player.class,
Enemy.class
};
} }
} }

View File

@@ -6,23 +6,51 @@ import com.badlogic.gdx.utils.reflect.ReflectionException;
import java.io.ByteArrayInputStream; import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream; import java.io.ByteArrayOutputStream;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream; import java.nio.ByteBuffer;
public class Streamable { public class Streamable{
public transient ByteArrayInputStream stream; public transient ByteArrayInputStream stream;
/**Marks the beginning of a stream.*/ /**Marks the beginning of a stream.*/
public static class StreamBegin{ public static class StreamBegin implements Packet{
private static int lastid; private static int lastid;
public int id = lastid ++; public int id = lastid ++;
public int total; public int total;
public Class<? extends Streamable> type; public Class<? extends Streamable> type;
@Override
public void write(ByteBuffer buffer) {
buffer.putInt(id);
buffer.putInt(total);
buffer.put(Registrator.getID(type));
}
@Override
public void read(ByteBuffer buffer) {
id = buffer.getInt();
total = buffer.getInt();
type = (Class<? extends Streamable>)Registrator.getByID(buffer.get());
}
} }
public static class StreamChunk{ public static class StreamChunk implements Packet{
public int id; public int id;
public byte[] data; public byte[] data;
@Override
public void write(ByteBuffer buffer) {
buffer.putInt(id);
buffer.putShort((short)data.length);
buffer.put(data);
}
@Override
public void read(ByteBuffer buffer) {
id = buffer.getInt();
data = new byte[buffer.getShort()];
buffer.get(data);
}
} }
public static class StreamBuilder{ public static class StreamBuilder{

View File

@@ -11,7 +11,6 @@ import io.anuke.ucore.scene.style.Drawable;
import io.anuke.ucore.scene.ui.Dialog; import io.anuke.ucore.scene.ui.Dialog;
import io.anuke.ucore.scene.ui.ScrollPane; import io.anuke.ucore.scene.ui.ScrollPane;
import io.anuke.ucore.scene.ui.TextButton; import io.anuke.ucore.scene.ui.TextButton;
import io.anuke.ucore.scene.ui.TextField.TextFieldFilter.DigitsOnlyFilter;
import io.anuke.ucore.scene.ui.layout.Table; import io.anuke.ucore.scene.ui.layout.Table;
import io.anuke.ucore.util.Bundles; import io.anuke.ucore.util.Bundles;
import io.anuke.ucore.util.Strings; import io.anuke.ucore.util.Strings;
@@ -33,19 +32,20 @@ public class JoinDialog extends FloatingDialog {
addCloseButton(); addCloseButton();
join = new FloatingDialog("$text.joingame.title"); join = new FloatingDialog("$text.joingame.title");
join.content().add("$text.joingame.ip").left(); join.content().add("$text.joingame.ip").padRight(5f).left();
Mindustry.platforms.addDialog(join.content().addField(Settings.getString("ip"),text ->{ Mindustry.platforms.addDialog(join.content().addField(Settings.getString("ip"),text ->{
Settings.putString("ip", text); Settings.putString("ip", text);
Settings.save(); Settings.save();
}).size(240f, 54f).get(), 100); }).size(240f, 54f).get(), 100);
join.content().row(); join.content().row();
/*
join.content().add("$text.server.port").left(); join.content().add("$text.server.port").left();
Mindustry.platforms.addDialog(join.content() Mindustry.platforms.addDialog(join.content()
.addField(Settings.getString("port"), new DigitsOnlyFilter(), text ->{ .addField(Settings.getString("port"), new DigitsOnlyFilter(), text ->{
Settings.putString("port", text); Settings.putString("port", text);
Settings.save(); Settings.save();
}).size(240f, 54f).get()); }).size(240f, 54f).get());*/
join.buttons().defaults().size(140f, 60f).pad(4f); join.buttons().defaults().size(140f, 60f).pad(4f);
join.buttons().addButton("$text.cancel", join::hide); join.buttons().addButton("$text.cancel", join::hide);
join.buttons().addButton("$text.ok", () -> { join.buttons().addButton("$text.ok", () -> {
@@ -56,14 +56,14 @@ public class JoinDialog extends FloatingDialog {
setupRemote(); setupRemote();
refreshRemote(); refreshRemote();
}else{ }else{
renaming.port = Strings.parseInt(Settings.getString("port")); //renaming.port = Strings.parseInt(Settings.getString("port"));
renaming.ip = Settings.getString("ip"); renaming.ip = Settings.getString("ip");
saveServers(); saveServers();
setupRemote(); setupRemote();
refreshRemote(); refreshRemote();
} }
join.hide(); join.hide();
}).disabled(b -> Settings.getString("ip").isEmpty() || Strings.parseInt(Settings.getString("port")) == Integer.MIN_VALUE || Net.active()); }).disabled(b -> Settings.getString("ip").isEmpty() || Net.active());
join.shown(() -> { join.shown(() -> {
join.getTitleLabel().setText(renaming != null ? "$text.server.edit" : "$text.server.add"); join.getTitleLabel().setText(renaming != null ? "$text.server.edit" : "$text.server.add");
@@ -83,8 +83,8 @@ public class JoinDialog extends FloatingDialog {
//why are java lambdas this bad //why are java lambdas this bad
TextButton[] buttons = {null}; TextButton[] buttons = {null};
TextButton button = buttons[0] = remote.addButton("[accent]"+server.ip + " / " + server.port, "clear", () -> { TextButton button = buttons[0] = remote.addButton("[accent]"+server.ip, "clear", () -> {
if(!buttons[0].childrenPressed()) connect(server.ip, server.port); if(!buttons[0].childrenPressed()) connect(server.ip, Vars.port);
}).width(w).height(120f).pad(4f).get(); }).width(w).height(120f).pad(4f).get();
button.getLabel().setWrap(true); button.getLabel().setWrap(true);
@@ -145,10 +145,12 @@ public class JoinDialog extends FloatingDialog {
} }
void refreshLocal(){ void refreshLocal(){
local.clear(); if(!Vars.gwt) {
local.background("button"); local.clear();
local.label(() -> "[accent]" + Bundles.get("text.hosts.discovering") + new String(new char[(int)(Timers.time() / 10) % 4]).replace("\0", ".")).pad(10f); local.background("button");
Net.discoverServers(this::addLocalHosts); local.label(() -> "[accent]" + Bundles.get("text.hosts.discovering") + new String(new char[(int) (Timers.time() / 10) % 4]).replace("\0", ".")).pad(10f);
Net.discoverServers(this::addLocalHosts);
}
} }
void setup(){ void setup(){
@@ -201,7 +203,7 @@ public class JoinDialog extends FloatingDialog {
button.add("[lightgray]" + (a.players != 1 ? Bundles.format("text.players", a.players) : button.add("[lightgray]" + (a.players != 1 ? Bundles.format("text.players", a.players) :
Bundles.format("text.players.single", a.players))); Bundles.format("text.players.single", a.players)));
button.row(); button.row();
button.add("[lightgray]" + a.address + " / " + Vars.port).pad(4).left(); button.add("[lightgray]" + a.address).pad(4).left();
local.row(); local.row();
local.background((Drawable) null); local.background((Drawable) null);

View File

@@ -28,10 +28,9 @@ public class MenuFragment implements Fragment{
add(new MenuButton("$text.play", group, ui.levels::show)); add(new MenuButton("$text.play", group, ui.levels::show));
row(); row();
if(!gwt){ add(new MenuButton("$text.joingame", group, ui.join::show));
add(new MenuButton("$text.joingame", group, ui.join::show)); row();
row();
}
add(new MenuButton("$text.tutorial", group, ()-> control.playMap(world.maps().getMap("tutorial")))); add(new MenuButton("$text.tutorial", group, ()-> control.playMap(world.maps().getMap("tutorial"))));
row(); row();

View File

@@ -120,6 +120,7 @@ public class DesktopLauncher {
Mindustry.args = Array.with(arg); Mindustry.args = Array.with(arg);
//Net.setClientProvider(new JavaWebsocketClient());
Net.setClientProvider(new KryoClient()); Net.setClientProvider(new KryoClient());
Net.setServerProvider(new KryoServer()); Net.setServerProvider(new KryoServer());

View File

@@ -6,6 +6,7 @@
<inherits name='com.badlogic.gdx.controllers.controllers-gwt' /> <inherits name='com.badlogic.gdx.controllers.controllers-gwt' />
<inherits name='Mindustry' /> <inherits name='Mindustry' />
<inherits name='uCore' /> <inherits name='uCore' />
<inherits name="com.sksamuel.gwt.GwtWebsockets" />
<entry-point class='io.anuke.mindustry.client.HtmlLauncher' /> <entry-point class='io.anuke.mindustry.client.HtmlLauncher' />
<set-configuration-property name='xsiframe.failIfScriptTag' value='FALSE'/> <set-configuration-property name='xsiframe.failIfScriptTag' value='FALSE'/>

View File

@@ -17,6 +17,7 @@ import com.google.gwt.user.client.Window;
import com.google.gwt.user.client.ui.*; import com.google.gwt.user.client.ui.*;
import io.anuke.mindustry.Mindustry; import io.anuke.mindustry.Mindustry;
import io.anuke.mindustry.io.PlatformFunction; import io.anuke.mindustry.io.PlatformFunction;
import io.anuke.mindustry.net.Net;
import java.util.Date; import java.util.Date;
@@ -91,6 +92,8 @@ public class HtmlLauncher extends GwtApplication {
} }
}); });
Net.setClientProvider(new WebsocketClient());
Mindustry.platforms = new PlatformFunction(){ Mindustry.platforms = new PlatformFunction(){
DateTimeFormat format = DateTimeFormat.getFormat("EEE, dd MMM yyyy HH:mm:ss"); DateTimeFormat format = DateTimeFormat.getFormat("EEE, dd MMM yyyy HH:mm:ss");

View File

@@ -0,0 +1,146 @@
package io.anuke.mindustry.client;
import com.badlogic.gdx.utils.Array;
import com.badlogic.gdx.utils.Base64Coder;
import com.badlogic.gdx.utils.reflect.ClassReflection;
import com.badlogic.gdx.utils.reflect.ReflectionException;
import com.sksamuel.gwt.websockets.Websocket;
import com.sksamuel.gwt.websockets.WebsocketListener;
import io.anuke.mindustry.Vars;
import io.anuke.mindustry.net.Host;
import io.anuke.mindustry.net.Net;
import io.anuke.mindustry.net.Net.ClientProvider;
import io.anuke.mindustry.net.Net.SendMode;
import io.anuke.mindustry.net.Packet;
import io.anuke.mindustry.net.Packets.Connect;
import io.anuke.mindustry.net.Packets.Disconnect;
import io.anuke.mindustry.net.Registrator;
import io.anuke.ucore.core.Timers;
import io.anuke.ucore.function.Consumer;
import io.anuke.ucore.util.Strings;
import java.io.IOException;
import java.nio.ByteBuffer;
public class WebsocketClient implements ClientProvider {
Websocket socket;
ByteBuffer buffer = ByteBuffer.allocate(1024);
@Override
public void connect(String ip, int port) throws IOException {
socket = new Websocket("ws://" + ip + ":" + Vars.webPort);
socket.addListener(new WebsocketListener() {
public void onMessage(byte[] bytes) {
try {
ByteBuffer buffer = ByteBuffer.wrap(bytes);
byte id = buffer.get();
if(id == -2){
//this is a framework message... do nothing yet?
}else {
Class<?> type = Registrator.getByID(id);
Packet packet = (Packet) ClassReflection.newInstance(type);
packet.read(buffer);
Net.handleClientReceived(packet);
}
}catch (ReflectionException e){
throw new RuntimeException(e);
}
}
@Override
public void onClose() {
Disconnect disconnect = new Disconnect();
Net.handleClientReceived(disconnect);
}
@Override
public void onMessage(String msg) {
onMessage(Base64Coder.decode(msg));
}
@Override
public void onOpen() {
Connect connect = new Connect();
Net.handleClientReceived(connect);
}
});
socket.open();
}
@Override
public void send(Object object, SendMode mode) {
if(!(object instanceof Packet)) throw new RuntimeException("All sent objects must be packets!");
Packet p = (Packet)object;
buffer.position(0);
buffer.put(Registrator.getID(object.getClass()));
p.write(buffer);
int pos = buffer.position();
buffer.position(0);
byte[] out = new byte[pos];
buffer.get(out);
String string = new String(Base64Coder.encode(out));
socket.send(string);
}
@Override
public void updatePing() {
}
@Override
public int getPing() {
return 0;
}
@Override
public void disconnect() {
socket.close();
}
@Override
public Array<Host> discover() {
return new Array<>();
}
@Override
public void pingHost(String address, int port, Consumer<Host> valid, Consumer<IOException> failed) {
failed.accept(new IOException());
Websocket socket = new Websocket("ws://" + address + ":" + Vars.webPort);
final boolean[] accepted = {false};
socket.addListener(new WebsocketListener() {
@Override
public void onClose() {
if(!accepted[0]) failed.accept(new IOException("Failed to connect to host."));
}
@Override
public void onMessage(String msg) {
String[] text = msg.split("\\|");
Host host = new Host(text[1], address, Strings.parseInt(text[0]));
valid.accept(host);
accepted[0] = true;
socket.close();
}
@Override
public void onOpen() {
socket.send("_ping_");
}
});
socket.open();
Timers.runTask(60f*5, () -> {
if(!accepted[0]){
failed.accept(new IOException("Failed to connect to host."));
socket.close();
}
});
}
@Override
public void register(Class<?>... types) { }
@Override
public void dispose() {
socket.close();
}
}

View File

@@ -0,0 +1,61 @@
package io.anuke.kryonet;
import com.badlogic.gdx.utils.reflect.ClassReflection;
import com.badlogic.gdx.utils.reflect.ReflectionException;
import com.esotericsoftware.kryonet.FrameworkMessage;
import com.esotericsoftware.kryonet.serialization.Serialization;
import io.anuke.mindustry.net.Packet;
import io.anuke.mindustry.net.Registrator;
import java.nio.ByteBuffer;
public class ByteSerializer implements Serialization {
@Override
public void write(ByteBuffer byteBuffer, Object o) {
if(o instanceof FrameworkMessage){
byteBuffer.put((byte)-2); //code for framework message
FrameworkSerializer.write(byteBuffer, (FrameworkMessage)o);
}else {
if (!(o instanceof Packet))
throw new RuntimeException("All sent objects must implement be Packets! Class: " + o.getClass());
byte id = Registrator.getID(o.getClass());
if (id == -1)
throw new RuntimeException("Unregistered class: " + ClassReflection.getSimpleName(o.getClass()));
byteBuffer.put(id);
((Packet) o).write(byteBuffer);
}
}
@Override
public Object read(ByteBuffer byteBuffer) {
try {
byte id = byteBuffer.get();
if(id == -2){
return FrameworkSerializer.read(byteBuffer);
}else {
Class<?> type = Registrator.getByID(id);
Packet packet = (Packet) ClassReflection.newInstance(type);
packet.read(byteBuffer);
return packet;
}
}catch (ReflectionException e){
throw new RuntimeException(e);
}
}
@Override
public int getLengthLength() {
return 2;
}
@Override
public void writeLength(ByteBuffer byteBuffer, int i) {
byteBuffer.putShort((short)i);
}
@Override
public int readLength(ByteBuffer byteBuffer) {
return byteBuffer.getShort();
}
}

View File

@@ -0,0 +1,69 @@
package io.anuke.kryonet;
import com.esotericsoftware.kryonet.FrameworkMessage;
import com.esotericsoftware.kryonet.FrameworkMessage.*;
import java.nio.ByteBuffer;
public class FrameworkSerializer {
public static void write(ByteBuffer buffer, FrameworkMessage message){
if(message instanceof Ping){
Ping p = (Ping)message;
buffer.put((byte)0);
buffer.putInt(p.id);
buffer.put(p.isReply ? 1 : (byte)0);
}else if(message instanceof DiscoverHost){
DiscoverHost p = (DiscoverHost)message;
buffer.put((byte)1);
}else if(message instanceof KeepAlive){
KeepAlive p = (KeepAlive)message;
buffer.put((byte)2);
}else if(message instanceof RegisterUDP){
RegisterUDP p = (RegisterUDP)message;
buffer.put((byte)3);
buffer.putInt(p.connectionID);
}else if(message instanceof RegisterTCP){
RegisterTCP p = (RegisterTCP)message;
buffer.put((byte)4);
buffer.putInt(p.connectionID);
}
}
public static FrameworkMessage read(ByteBuffer buffer){
byte id = buffer.get();
if(id == 0){
Ping p = new Ping();
p.id = buffer.getInt();
p.isReply = buffer.get() == 1;
return p;
}else if(id == 1){
DiscoverHost p = new DiscoverHost();
return p;
}else if(id == 2){
KeepAlive p = new KeepAlive();
return p;
}else if(id == 3){
RegisterUDP p = new RegisterUDP();
p.connectionID = buffer.getInt();
return p;
}else if(id == 4){
RegisterTCP p = new RegisterTCP();
p.connectionID = buffer.getInt();
return p;
}else{
throw new RuntimeException("Unknown framework message!");
}
}
}

View File

@@ -0,0 +1,147 @@
package io.anuke.kryonet;
import com.badlogic.gdx.utils.Array;
import com.badlogic.gdx.utils.Base64Coder;
import com.badlogic.gdx.utils.reflect.ClassReflection;
import io.anuke.mindustry.Vars;
import io.anuke.mindustry.net.Host;
import io.anuke.mindustry.net.Net;
import io.anuke.mindustry.net.Net.ClientProvider;
import io.anuke.mindustry.net.Net.SendMode;
import io.anuke.mindustry.net.Packet;
import io.anuke.mindustry.net.Packets.Connect;
import io.anuke.mindustry.net.Packets.Disconnect;
import io.anuke.mindustry.net.Registrator;
import io.anuke.ucore.UCore;
import io.anuke.ucore.function.Consumer;
import org.java_websocket.client.WebSocketClient;
import org.java_websocket.drafts.Draft_6455;
import org.java_websocket.handshake.ServerHandshake;
import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
import java.nio.ByteBuffer;
public class JavaWebsocketClient implements ClientProvider {
WebSocketClient socket;
ByteBuffer buffer = ByteBuffer.allocate(1024);
boolean debug = false;
@Override
public void connect(String ip, int port) throws IOException {
try {
URI i = new URI("ws://" + ip + ":" + Vars.webPort);
UCore.log("Connecting: " + i);
socket = new WebSocketClient(i, new Draft_6455(), null, 5000) {
Thread thread;
@Override
public void connect() {
if(thread != null )
throw new IllegalStateException( "WebSocketClient objects are not reuseable" );
thread = new Thread(this);
thread.setDaemon(true);
thread.start();
}
@Override
public void onOpen(ServerHandshake handshakedata) {
UCore.log("Connected!");
Connect connect = new Connect();
Net.handleClientReceived(connect);
}
@Override
public void onMessage(String message) {
if(debug) UCore.log("Got message: " + message);
try {
byte[] bytes = Base64Coder.decode(message);
ByteBuffer buffer = ByteBuffer.wrap(bytes);
byte id = buffer.get();
if (id == -2) {
//this is a framework message... do nothing yet?
} else {
Class<?> type = Registrator.getByID(id);
if(debug) UCore.log("Got class ID: " + type);
Packet packet = (Packet) ClassReflection.newInstance(type);
packet.read(buffer);
Net.handleClientReceived(packet);
}
} catch (Exception e) {
e.printStackTrace();
//throw new RuntimeException(e);
}
}
@Override
public void onClose(int code, String reason, boolean remote) {
if(debug) UCore.log("Closed.");
Disconnect disconnect = new Disconnect();
Net.handleClientReceived(disconnect);
}
@Override
public void onError(Exception ex) {
onClose(0, null, true);
ex.printStackTrace();
}
};
socket.connect();
}catch (URISyntaxException e){
throw new IOException(e);
}
}
@Override
public void send(Object object, SendMode mode) {
if(!(object instanceof Packet)) throw new RuntimeException("All sent objects must be packets!");
Packet p = (Packet)object;
buffer.position(0);
buffer.put(Registrator.getID(object.getClass()));
p.write(buffer);
int pos = buffer.position();
buffer.position(0);
byte[] out = new byte[pos];
buffer.get(out);
String string = new String(Base64Coder.encode(out));
if(debug) UCore.log("Sending string: " + string);
socket.send(string);
}
@Override
public void updatePing() {
}
@Override
public int getPing() {
return 0;
}
@Override
public void disconnect() {
socket.close();
}
@Override
public Array<Host> discover() {
return new Array<>();
}
@Override
public void pingHost(String address, int port, Consumer<Host> valid, Consumer<IOException> failed) {
failed.accept(new IOException());
}
@Override
public void register(Class<?>... types) { }
@Override
public void dispose() {
if(socket != null) socket.close();
for(Thread thread : Thread.getAllStackTraces().keySet()){
if(thread.getName().equals("WebsocketWriteThread")) thread.interrupt();
}
}
}

View File

@@ -52,7 +52,7 @@ public class KryoClient implements ClientProvider{
} }
}; };
client = new Client(8192, 2048); client = new Client(8192, 2048, connection -> new ByteSerializer());
client.setDiscoveryHandler(handler); client.setDiscoveryHandler(handler);
Listener listener = new Listener(){ Listener listener = new Listener(){
@@ -211,12 +211,7 @@ public class KryoClient implements ClientProvider{
} }
@Override @Override
public void register(Class<?>... types) { public void register(Class<?>... types) { }
for(Class<?> c : types){
client.getKryo().register(c);
}
KryoRegistrator.register(client.getKryo());
}
@Override @Override
public void dispose(){ public void dispose(){

View File

@@ -1,16 +1,19 @@
package io.anuke.kryonet; package io.anuke.kryonet;
import com.badlogic.gdx.Gdx; import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.utils.IntArray; import com.badlogic.gdx.utils.Array;
import com.badlogic.gdx.utils.Base64Coder;
import com.esotericsoftware.kryonet.Connection; import com.esotericsoftware.kryonet.Connection;
import com.esotericsoftware.kryonet.FrameworkMessage; import com.esotericsoftware.kryonet.FrameworkMessage;
import com.esotericsoftware.kryonet.Listener; import com.esotericsoftware.kryonet.Listener;
import com.esotericsoftware.kryonet.Listener.LagListener; import com.esotericsoftware.kryonet.Listener.LagListener;
import com.esotericsoftware.kryonet.Server; import com.esotericsoftware.kryonet.Server;
import com.esotericsoftware.kryonet.util.InputStreamSender; import com.esotericsoftware.kryonet.util.InputStreamSender;
import io.anuke.mindustry.Vars;
import io.anuke.mindustry.net.Net; import io.anuke.mindustry.net.Net;
import io.anuke.mindustry.net.Net.SendMode; import io.anuke.mindustry.net.Net.SendMode;
import io.anuke.mindustry.net.Net.ServerProvider; import io.anuke.mindustry.net.Net.ServerProvider;
import io.anuke.mindustry.net.NetConnection;
import io.anuke.mindustry.net.Packets.Connect; import io.anuke.mindustry.net.Packets.Connect;
import io.anuke.mindustry.net.Packets.Disconnect; import io.anuke.mindustry.net.Packets.Disconnect;
import io.anuke.mindustry.net.Packets.KickPacket; import io.anuke.mindustry.net.Packets.KickPacket;
@@ -21,16 +24,30 @@ import io.anuke.mindustry.net.Streamable.StreamBegin;
import io.anuke.mindustry.net.Streamable.StreamChunk; import io.anuke.mindustry.net.Streamable.StreamChunk;
import io.anuke.ucore.UCore; import io.anuke.ucore.UCore;
import io.anuke.ucore.core.Timers; import io.anuke.ucore.core.Timers;
import org.java_websocket.WebSocket;
import org.java_websocket.handshake.ClientHandshake;
import org.java_websocket.server.WebSocketServer;
import java.io.IOException; import java.io.IOException;
import java.net.BindException;
import java.net.InetSocketAddress;
import java.nio.ByteBuffer; import java.nio.ByteBuffer;
import java.util.Arrays;
import java.util.concurrent.CopyOnWriteArrayList;
public class KryoServer implements ServerProvider { public class KryoServer implements ServerProvider {
Server server; final boolean debug = false;
IntArray connections = new IntArray(); final Server server;
final ByteSerializer serializer = new ByteSerializer();
final ByteBuffer buffer = ByteBuffer.allocate(4096);
final CopyOnWriteArrayList<KryoConnection> connections = new CopyOnWriteArrayList<>();
final Array<KryoConnection> array = new Array<>();
SocketServer webServer;
int lastconnection = 0;
public KryoServer(){ public KryoServer(){
server = new Server(4096*2, 2048); //TODO tweak server = new Server(4096*2, 2048, connection -> new ByteSerializer()); //TODO tweak
server.setDiscoveryHandler((datagramChannel, fromAddress) -> { server.setDiscoveryHandler((datagramChannel, fromAddress) -> {
ByteBuffer buffer = KryoRegistrator.writeServerData(); ByteBuffer buffer = KryoRegistrator.writeServerData();
UCore.log("Replying to discover request with buffer of size " + buffer.capacity()); UCore.log("Replying to discover request with buffer of size " + buffer.capacity());
@@ -43,13 +60,15 @@ public class KryoServer implements ServerProvider {
@Override @Override
public void connected (Connection connection) { public void connected (Connection connection) {
KryoConnection kn = new KryoConnection(lastconnection ++, connection.getRemoteAddressTCP().toString(), connection);
Connect c = new Connect(); Connect c = new Connect();
c.id = connection.getID(); c.id = kn.id;
c.addressTCP = connection.getRemoteAddressTCP().toString(); c.addressTCP = connection.getRemoteAddressTCP().toString();
try { try {
Net.handleServerReceived(c, c.id); Net.handleServerReceived(c, kn.id);
connections.add(c.id); connections.add(kn);
}catch (Exception e){ }catch (Exception e){
Gdx.app.postRunnable(() -> {throw new RuntimeException(e);}); Gdx.app.postRunnable(() -> {throw new RuntimeException(e);});
} }
@@ -57,10 +76,12 @@ public class KryoServer implements ServerProvider {
@Override @Override
public void disconnected (Connection connection) { public void disconnected (Connection connection) {
connections.removeValue(connection.getID()); KryoConnection k = getByKryoID(connection.getID());
if(k == null) return;
connections.remove(k);
Disconnect c = new Disconnect(); Disconnect c = new Disconnect();
c.id = connection.getID(); c.id = k.id;
try{ try{
Net.handleServerReceived(c, c.id); Net.handleServerReceived(c, c.id);
@@ -71,14 +92,13 @@ public class KryoServer implements ServerProvider {
@Override @Override
public void received (Connection connection, Object object) { public void received (Connection connection, Object object) {
if(object instanceof FrameworkMessage) return; KryoConnection k = getByKryoID(connection.getID());
if(object instanceof FrameworkMessage || k == null) return;
try{ try{
Net.handleServerReceived(object, connection.getID()); Net.handleServerReceived(object, k.id);
}catch (Exception e){ }catch (Exception e){
//...do absolutely nothing.
e.printStackTrace(); e.printStackTrace();
//Gdx.app.postRunnable(() -> {throw new RuntimeException(e);});
} }
} }
}; };
@@ -93,33 +113,31 @@ public class KryoServer implements ServerProvider {
} }
@Override @Override
public IntArray getConnections() { public Array<KryoConnection> getConnections() {
return connections; array.clear();
for(KryoConnection c : connections){
array.add(c);
}
return array;
} }
@Override @Override
public void kick(int connection) { public void kick(int connection) {
Connection conn = getByID(connection); KryoConnection con = getByID(connection);
if(conn == null){
connections.removeValue(connection);
return;
}
KickPacket p = new KickPacket(); KickPacket p = new KickPacket();
p.reason = (byte)KickReason.kick.ordinal(); p.reason = KickReason.kick;
conn.sendTCP(p); con.send(p, SendMode.tcp);
Timers.runTask(1f, () -> { Timers.runTask(1f, con::close);
if(conn.isConnected()){
conn.close();
}
});
} }
@Override @Override
public void host(int port) throws IOException { public void host(int port) throws IOException {
lastconnection = 0;
server.bind(port, port); server.bind(port, port);
webServer = new SocketServer(Vars.webPort);
webServer.start();
Thread thread = new Thread(() -> { Thread thread = new Thread(() -> {
try{ try{
@@ -136,80 +154,116 @@ public class KryoServer implements ServerProvider {
public void close() { public void close() {
UCore.setPrivate(server, "shutdown", true); UCore.setPrivate(server, "shutdown", true);
new Thread(() -> server.close()).run(); Thread thread = new Thread(() ->{
try {
server.close();
if(webServer != null) webServer.stop(1); //please die, right now
//kill them all
for(Thread worker : Thread.getAllStackTraces().keySet()){
if(worker.getName().contains("WebSocketWorker")){
worker.interrupt();
}
}
}catch (Exception e){
Gdx.app.postRunnable(() -> {throw new RuntimeException(e);});
}
});
thread.setDaemon(true);
thread.start();
} }
@Override @Override
public void sendStream(int id, Streamable stream) { public void sendStream(int id, Streamable stream) {
Connection connection = getByID(id); KryoConnection connection = getByID(id);
if(connection == null) return; if(connection == null) return;
try {
connection.addListener(new InputStreamSender(stream.stream, 512) { if (connection.connection != null) {
int id;
protected void start () { connection.connection.addListener(new InputStreamSender(stream.stream, 512) {
//send an object so the receiving side knows how to handle the following chunks int id;
protected void start() {
//send an object so the receiving side knows how to handle the following chunks
StreamBegin begin = new StreamBegin();
begin.total = stream.stream.available();
begin.type = stream.getClass();
connection.connection.sendTCP(begin);
id = begin.id;
}
protected Object next(byte[] bytes) {
StreamChunk chunk = new StreamChunk();
chunk.id = id;
chunk.data = bytes;
return chunk; //wrap the byte[] with an object so the receiving side knows how to handle it.
}
});
} else {
int cid;
StreamBegin begin = new StreamBegin(); StreamBegin begin = new StreamBegin();
begin.total = stream.stream.available(); begin.total = stream.stream.available();
begin.type = stream.getClass(); begin.type = stream.getClass();
connection.sendTCP(begin); connection.send(begin, SendMode.tcp);
id = begin.id; cid = begin.id;
}
protected Object next (byte[] bytes) { while (stream.stream.available() > 0) {
StreamChunk chunk = new StreamChunk(); byte[] bytes = new byte[Math.min(512, stream.stream.available())];
chunk.id = id; stream.stream.read(bytes);
chunk.data = bytes;
return chunk; //wrap the byte[] with an object so the receiving side knows how to handle it. StreamChunk chunk = new StreamChunk();
chunk.id = cid;
chunk.data = bytes;
connection.send(chunk, SendMode.tcp);
}
} }
}); }catch (IOException e){
throw new RuntimeException(e);
}
} }
@Override @Override
public void send(Object object, SendMode mode) { public void send(Object object, SendMode mode) {
if(mode == SendMode.tcp){ for(int i = 0; i < connections.size(); i ++){
server.sendToAllTCP(object); connections.get(i).send(object, mode);
}else{
server.sendToAllUDP(object);
} }
} }
@Override @Override
public void sendTo(int id, Object object, SendMode mode) { public void sendTo(int id, Object object, SendMode mode) {
if(mode == SendMode.tcp){ NetConnection conn = getByID(id);
server.sendToTCP(id, object); conn.send(object, mode);
}else{
server.sendToUDP(id, object);
}
} }
@Override @Override
public void sendExcept(int id, Object object, SendMode mode) { public void sendExcept(int id, Object object, SendMode mode) {
if(mode == SendMode.tcp){ for(int i = 0; i < connections.size(); i ++){
server.sendToAllExceptTCP(id, object); KryoConnection conn = connections.get(i);
}else{ if(conn.id != id) conn.send(object, mode);
server.sendToAllExceptUDP(id, object);
} }
} }
@Override @Override
public int getPingFor(int connection) { public int getPingFor(NetConnection con) {
return getByID(connection).getReturnTripTime(); KryoConnection k = (KryoConnection)con;
return k.connection == null ? 0 : k.connection.getReturnTripTime();
} }
@Override @Override
public void register(Class<?>... types) { public void register(Class<?>... types) { }
for(Class<?> c : types){
server.getKryo().register(c);
}
KryoRegistrator.register(server.getKryo());
}
@Override @Override
public void dispose(){ public void dispose(){
try { try {
server.dispose(); server.dispose();
}catch (IOException e){ if(webServer != null) webServer.stop(1);
//kill them all
for(Thread thread : Thread.getAllStackTraces().keySet()){
if(thread.getName().contains("WebSocketWorker")){
thread.interrupt();
}
}
}catch (Exception e){
throw new RuntimeException(e); throw new RuntimeException(e);
} }
} }
@@ -218,13 +272,158 @@ public class KryoServer implements ServerProvider {
Gdx.app.postRunnable(() -> { throw new RuntimeException(e);}); Gdx.app.postRunnable(() -> { throw new RuntimeException(e);});
} }
Connection getByID(int id){ KryoConnection getByID(int id){
for(Connection con : server.getConnections()){ for(int i = 0; i < connections.size(); i ++){
if(con.getID() == id){ KryoConnection con = connections.get(i);
if(con.id == id){
return con; return con;
} }
} }
return null; return null;
} }
KryoConnection getByKryoID(int id){
for(int i = 0; i < connections.size(); i ++){
KryoConnection con = connections.get(i);
if(con.connection != null && con.connection.getID() == id){
return con;
}
}
return null;
}
KryoConnection getBySocket(WebSocket socket){
for(int i = 0; i < connections.size(); i ++){
KryoConnection con = connections.get(i);
if(con.socket == socket){
return con;
}
}
return null;
}
class KryoConnection extends NetConnection{
public final WebSocket socket;
public final Connection connection;
public KryoConnection(int id, String address, WebSocket socket) {
super(id, address);
this.socket = socket;
this.connection = null;
}
public KryoConnection(int id, String address, Connection connection) {
super(id, address);
this.socket = null;
this.connection = connection;
}
@Override
public void send(Object object, SendMode mode){
if(socket != null){
try {
synchronized (buffer) {
buffer.position(0);
if(debug) UCore.log("Sending object with ID " + Registrator.getID(object.getClass()));
serializer.write(buffer, object);
int pos = buffer.position();
buffer.position(0);
byte[] out = new byte[pos];
buffer.get(out);
String string = new String(Base64Coder.encode(out));
if(debug) UCore.log("Sending string: " + string);
socket.send(string);
}
}catch (Exception e){
e.printStackTrace();
connections.remove(this);
}
}else if (connection != null) {
if (mode == SendMode.tcp) {
connection.sendTCP(object);
} else {
connection.sendUDP(object);
}
}
}
@Override
public void close(){
if(socket != null){
if(socket.isOpen()) socket.close();
}else if (connection != null) {
if(connection.isConnected()) connection.close();
}
}
}
class SocketServer extends WebSocketServer {
public SocketServer(int port) {
super(new InetSocketAddress(port));
}
@Override
public void onOpen(WebSocket conn, ClientHandshake handshake) {
Connect connect = new Connect();
connect.addressTCP = conn.getRemoteSocketAddress().toString();
UCore.log("Websocket connection recieved: " + connect.addressTCP);
KryoConnection kn = new KryoConnection(lastconnection ++, connect.addressTCP, conn);
connections.add(kn);
}
@Override
public void onClose(WebSocket conn, int code, String reason, boolean remote) {
if (conn == null) return;
KryoConnection k = getBySocket(conn);
if(k == null) return;
Disconnect disconnect = new Disconnect();
disconnect.id = k.id;
Net.handleServerReceived(disconnect, k.id);
}
@Override
public void onMessage(WebSocket conn, String message) {
try {
KryoConnection k = getBySocket(conn);
if (k == null) return;
if(message.equals("_ping_")){
conn.send(connections.size() + "|" + Vars.player.name);
connections.remove(k);
}else {
if (debug) UCore.log("Got message: " + message);
byte[] out = Base64Coder.decode(message);
if (debug) UCore.log("Decoded: " + Arrays.toString(out));
ByteBuffer buffer = ByteBuffer.wrap(out);
Object o = serializer.read(buffer);
Net.handleServerReceived(o, k.id);
}
}catch (Exception e){
UCore.log("Error reading message!");
e.printStackTrace();
}
}
@Override
public void onError(WebSocket conn, Exception ex) {
UCore.log("WS error:");
ex.printStackTrace();
if(ex instanceof BindException){
Net.closeServer();
Vars.ui.showError("$text.server.addressinuse");
}
}
@Override
public void onStart() {
UCore.log("Web server started.");
}
}
} }