2022-07-05 19:49:04 +00:00
|
|
|
package nl.andrewl.aos2_server;
|
|
|
|
|
2022-07-06 22:55:26 +00:00
|
|
|
import nl.andrewl.aos_core.model.World;
|
2022-07-09 18:09:57 +00:00
|
|
|
import nl.andrewl.aos_core.model.Worlds;
|
2022-07-06 18:20:15 +00:00
|
|
|
import nl.andrewl.aos_core.net.UdpReceiver;
|
2022-07-07 14:51:29 +00:00
|
|
|
import nl.andrewl.aos_core.net.udp.ClientInputState;
|
|
|
|
import nl.andrewl.aos_core.net.udp.ClientOrientationState;
|
2022-07-06 18:20:15 +00:00
|
|
|
import nl.andrewl.aos_core.net.udp.DatagramInit;
|
2022-07-07 14:51:29 +00:00
|
|
|
import nl.andrewl.aos_core.net.udp.PlayerUpdateMessage;
|
2022-07-06 18:20:15 +00:00
|
|
|
import nl.andrewl.record_net.Message;
|
2022-07-07 14:51:29 +00:00
|
|
|
import org.slf4j.Logger;
|
|
|
|
import org.slf4j.LoggerFactory;
|
2022-07-06 18:20:15 +00:00
|
|
|
|
2022-07-05 19:49:04 +00:00
|
|
|
import java.io.IOException;
|
2022-07-06 18:20:15 +00:00
|
|
|
import java.net.*;
|
2022-07-06 22:55:26 +00:00
|
|
|
import java.util.concurrent.ForkJoinPool;
|
2022-07-05 19:49:04 +00:00
|
|
|
|
|
|
|
public class Server implements Runnable {
|
2022-07-07 14:51:29 +00:00
|
|
|
private static final Logger log = LoggerFactory.getLogger(Server.class);
|
|
|
|
|
2022-07-05 19:49:04 +00:00
|
|
|
private final ServerSocket serverSocket;
|
|
|
|
private final DatagramSocket datagramSocket;
|
|
|
|
private volatile boolean running;
|
|
|
|
|
2022-07-07 14:51:29 +00:00
|
|
|
private final PlayerManager playerManager;
|
2022-07-06 22:55:26 +00:00
|
|
|
private final World world;
|
2022-07-07 14:51:29 +00:00
|
|
|
private final WorldUpdater worldUpdater;
|
2022-07-05 19:49:04 +00:00
|
|
|
|
|
|
|
public Server() throws IOException {
|
2022-07-09 18:09:57 +00:00
|
|
|
this.serverSocket = new ServerSocket(25565, 5);
|
2022-07-05 19:49:04 +00:00
|
|
|
this.serverSocket.setReuseAddress(true);
|
2022-07-09 18:09:57 +00:00
|
|
|
this.datagramSocket = new DatagramSocket(25565);
|
2022-07-05 19:49:04 +00:00
|
|
|
this.datagramSocket.setReuseAddress(true);
|
2022-07-07 14:51:29 +00:00
|
|
|
this.playerManager = new PlayerManager();
|
|
|
|
this.worldUpdater = new WorldUpdater(this, 20);
|
2022-07-09 18:09:57 +00:00
|
|
|
this.world = Worlds.testingWorld();
|
2022-07-05 19:49:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
running = true;
|
2022-07-06 18:20:15 +00:00
|
|
|
new Thread(new UdpReceiver(datagramSocket, this::handleUdpMessage)).start();
|
2022-07-07 14:51:29 +00:00
|
|
|
new Thread(worldUpdater).start();
|
|
|
|
log.info("Started AoS2 Server on TCP/UDP port {}; now accepting connections.", serverSocket.getLocalPort());
|
2022-07-05 19:49:04 +00:00
|
|
|
while (running) {
|
|
|
|
acceptClientConnection();
|
|
|
|
}
|
2022-07-07 14:51:29 +00:00
|
|
|
playerManager.deregisterAll();
|
|
|
|
worldUpdater.shutdown();
|
|
|
|
datagramSocket.close(); // Shuts down the UdpReceiver.
|
2022-07-06 22:55:26 +00:00
|
|
|
try {
|
|
|
|
serverSocket.close();
|
|
|
|
} catch (IOException e) {
|
|
|
|
throw new RuntimeException(e);
|
|
|
|
}
|
2022-07-06 18:20:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void handleUdpMessage(Message msg, DatagramPacket packet) {
|
|
|
|
if (msg instanceof DatagramInit init) {
|
2022-07-07 14:51:29 +00:00
|
|
|
playerManager.handleUdpInit(init, packet);
|
|
|
|
} else if (msg instanceof ClientInputState inputState) {
|
|
|
|
ServerPlayer player = playerManager.getPlayer(inputState.clientId());
|
|
|
|
if (player != null) {
|
|
|
|
player.setLastInputState(inputState);
|
2022-07-09 18:09:57 +00:00
|
|
|
playerManager.broadcastUdpMessage(new PlayerUpdateMessage(
|
|
|
|
player.getId(),
|
|
|
|
player.getPosition().x, player.getPosition().y, player.getPosition().z,
|
|
|
|
player.getVelocity().x, player.getVelocity().y, player.getVelocity().z,
|
|
|
|
player.getOrientation().x, player.getOrientation().y,
|
|
|
|
player.getLastInputState().crouching()
|
|
|
|
));
|
2022-07-07 14:51:29 +00:00
|
|
|
}
|
|
|
|
} else if (msg instanceof ClientOrientationState orientationState) {
|
|
|
|
ServerPlayer player = playerManager.getPlayer(orientationState.clientId());
|
|
|
|
if (player != null) {
|
|
|
|
player.setOrientation(orientationState.x(), orientationState.y());
|
2022-07-09 18:09:57 +00:00
|
|
|
playerManager.broadcastUdpMessageToAllBut(new PlayerUpdateMessage(
|
|
|
|
player.getId(),
|
|
|
|
player.getPosition().x, player.getPosition().y, player.getPosition().z,
|
|
|
|
player.getVelocity().x, player.getVelocity().y, player.getVelocity().z,
|
|
|
|
player.getOrientation().x, player.getOrientation().y,
|
|
|
|
player.getLastInputState().crouching()
|
|
|
|
), player);
|
2022-07-06 18:20:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-05 19:49:04 +00:00
|
|
|
private void acceptClientConnection() {
|
|
|
|
try {
|
|
|
|
Socket clientSocket = serverSocket.accept();
|
2022-07-06 22:55:26 +00:00
|
|
|
var handler = new ClientCommunicationHandler(this, clientSocket, datagramSocket);
|
2022-07-07 14:51:29 +00:00
|
|
|
// Establish the connection in a separate thread so that we can continue accepting clients.
|
2022-07-06 22:55:26 +00:00
|
|
|
ForkJoinPool.commonPool().submit(() -> {
|
|
|
|
try {
|
|
|
|
handler.establishConnection();
|
|
|
|
} catch (IOException e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
});
|
2022-07-05 19:49:04 +00:00
|
|
|
} catch (IOException e) {
|
|
|
|
if (e instanceof SocketException && !this.running && e.getMessage().equalsIgnoreCase("Socket closed")) {
|
|
|
|
return; // Ignore this exception, since it is expected on shutdown.
|
|
|
|
}
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
}
|
2022-07-06 18:20:15 +00:00
|
|
|
|
2022-07-07 14:51:29 +00:00
|
|
|
public World getWorld() {
|
|
|
|
return world;
|
|
|
|
}
|
|
|
|
|
|
|
|
public PlayerManager getPlayerManager() {
|
|
|
|
return playerManager;
|
|
|
|
}
|
|
|
|
|
2022-07-06 18:20:15 +00:00
|
|
|
public static void main(String[] args) throws IOException {
|
|
|
|
new Server().run();
|
|
|
|
}
|
2022-07-05 19:49:04 +00:00
|
|
|
}
|