|
@@ -0,0 +1,35 @@
|
|
|
+package eu.tankernn.game.server;
|
|
|
+
|
|
|
+import java.net.InetSocketAddress;
|
|
|
+import java.util.concurrent.Executors;
|
|
|
+
|
|
|
+import org.jboss.netty.bootstrap.ServerBootstrap;
|
|
|
+import org.jboss.netty.channel.ChannelFactory;
|
|
|
+import org.jboss.netty.channel.ChannelPipeline;
|
|
|
+import org.jboss.netty.channel.ChannelPipelineFactory;
|
|
|
+import org.jboss.netty.channel.Channels;
|
|
|
+import org.jboss.netty.channel.socket.nio.NioServerSocketChannelFactory;
|
|
|
+
|
|
|
+public class Launcher {
|
|
|
+ public static void main(String[] args) {
|
|
|
+ listenForClients();
|
|
|
+ }
|
|
|
+
|
|
|
+ private static void listenForClients() {
|
|
|
+ ChannelFactory factory = new NioServerSocketChannelFactory(Executors.newCachedThreadPool(),
|
|
|
+ Executors.newCachedThreadPool());
|
|
|
+
|
|
|
+ ServerBootstrap bootstrap = new ServerBootstrap(factory);
|
|
|
+
|
|
|
+ bootstrap.setPipelineFactory(new ChannelPipelineFactory() {
|
|
|
+ public ChannelPipeline getPipeline() {
|
|
|
+ return Channels.pipeline(new GameServerHandler());
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ bootstrap.setOption("child.tcpNoDelay", true);
|
|
|
+ bootstrap.setOption("child.keepAlive", true);
|
|
|
+
|
|
|
+ bootstrap.bind(new InetSocketAddress(8080));
|
|
|
+ }
|
|
|
+}
|