2011-05-13 04:24:42 -04:00
|
|
|
package org.moparscape.msc.gs;
|
2011-04-27 01:44:26 -04:00
|
|
|
|
|
|
|
import java.io.File;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.net.InetSocketAddress;
|
|
|
|
import java.util.concurrent.Executors;
|
|
|
|
|
|
|
|
import org.apache.mina.common.IoAcceptor;
|
|
|
|
import org.apache.mina.common.IoAcceptorConfig;
|
|
|
|
import org.apache.mina.common.ThreadModel;
|
|
|
|
import org.apache.mina.transport.socket.nio.SocketAcceptor;
|
|
|
|
import org.apache.mina.transport.socket.nio.SocketAcceptorConfig;
|
|
|
|
import org.apache.mina.transport.socket.nio.SocketSessionConfig;
|
2011-05-13 04:24:42 -04:00
|
|
|
import org.moparscape.msc.config.Config;
|
|
|
|
import org.moparscape.msc.gs.connection.RSCConnectionHandler;
|
2011-06-21 19:22:37 -04:00
|
|
|
import org.moparscape.msc.gs.connection.filter.ConnectionFilter;
|
2012-01-07 14:46:26 -05:00
|
|
|
import org.moparscape.msc.gs.connection.filter.PacketThrottler;
|
2011-05-13 04:24:42 -04:00
|
|
|
import org.moparscape.msc.gs.core.GameEngine;
|
|
|
|
import org.moparscape.msc.gs.core.LoginConnector;
|
|
|
|
import org.moparscape.msc.gs.event.DelayedEvent;
|
|
|
|
import org.moparscape.msc.gs.event.SingleEvent;
|
|
|
|
import org.moparscape.msc.gs.model.World;
|
|
|
|
import org.moparscape.msc.gs.util.Logger;
|
2011-04-27 01:44:26 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The entry point for RSC server.
|
|
|
|
*/
|
|
|
|
public class Server {
|
|
|
|
|
2011-06-21 19:22:37 -04:00
|
|
|
/**
|
|
|
|
* World instance
|
|
|
|
*/
|
|
|
|
private static World world = null;
|
|
|
|
|
|
|
|
public static void main(String[] args) throws IOException {
|
2011-06-24 18:18:51 -04:00
|
|
|
String configFile = "conf" + File.separator + "world.xml";
|
2011-06-21 19:22:37 -04:00
|
|
|
if (args.length > 0) {
|
|
|
|
File f = new File(args[0]);
|
|
|
|
if (f.exists()) {
|
|
|
|
configFile = f.getName();
|
2011-11-05 13:06:03 -04:00
|
|
|
} else {
|
2012-01-08 10:06:11 -05:00
|
|
|
Logger.println("Config not found: " + f.getCanonicalPath());
|
2011-11-05 13:06:03 -04:00
|
|
|
displayConfigDefaulting(configFile);
|
2011-06-21 19:22:37 -04:00
|
|
|
}
|
2011-11-05 13:06:03 -04:00
|
|
|
} else {
|
2012-01-08 10:06:11 -05:00
|
|
|
Logger.println("No config file specified.");
|
2011-11-05 13:06:03 -04:00
|
|
|
displayConfigDefaulting(configFile);
|
2011-06-21 19:22:37 -04:00
|
|
|
}
|
2011-06-25 01:44:53 -04:00
|
|
|
|
2011-06-22 12:32:03 -04:00
|
|
|
Config.initConfig(configFile);
|
2011-06-21 19:22:37 -04:00
|
|
|
world = Instance.getWorld();
|
2011-12-19 01:27:59 -05:00
|
|
|
try {
|
2012-01-08 10:06:11 -05:00
|
|
|
Logger.println("Loading world objects.");
|
2011-12-19 01:27:59 -05:00
|
|
|
world.wl.loadObjects();
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
System.exit(0);
|
|
|
|
}
|
2011-06-21 19:22:37 -04:00
|
|
|
|
|
|
|
Logger.println(Config.SERVER_NAME + " ["
|
|
|
|
+ (Config.members ? "P2P" : "F2P") + "] "
|
|
|
|
+ "Server starting up...");
|
|
|
|
|
|
|
|
server = new Server();
|
|
|
|
}
|
|
|
|
|
|
|
|
private static Server server;
|
|
|
|
|
|
|
|
public static boolean isMembers() {
|
|
|
|
return Config.members;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The SocketAcceptor
|
|
|
|
*/
|
|
|
|
private IoAcceptor acceptor;
|
|
|
|
/**
|
|
|
|
* The login server connection
|
|
|
|
*/
|
|
|
|
private LoginConnector connector;
|
|
|
|
/**
|
|
|
|
* The game engine
|
|
|
|
*/
|
|
|
|
private GameEngine engine;
|
|
|
|
|
|
|
|
public IoAcceptor getAcceptor() {
|
|
|
|
return acceptor;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setAcceptor(IoAcceptor acceptor) {
|
|
|
|
this.acceptor = acceptor;
|
|
|
|
}
|
|
|
|
|
|
|
|
public LoginConnector getConnector() {
|
|
|
|
return connector;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setConnector(LoginConnector connector) {
|
|
|
|
this.connector = connector;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isRunning() {
|
|
|
|
return running;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setRunning(boolean running) {
|
|
|
|
this.running = running;
|
|
|
|
}
|
|
|
|
|
|
|
|
public DelayedEvent getUpdateEvent() {
|
|
|
|
return updateEvent;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setUpdateEvent(DelayedEvent updateEvent) {
|
|
|
|
this.updateEvent = updateEvent;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static World getWorld() {
|
|
|
|
return world;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setEngine(GameEngine engine) {
|
|
|
|
this.engine = engine;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Is the server running still?
|
|
|
|
*/
|
|
|
|
private boolean running;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update event - if the server is shutting down
|
|
|
|
*/
|
|
|
|
private DelayedEvent updateEvent;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new server instance, which in turn creates a new engine and
|
|
|
|
* prepares the server socket to accept connections.
|
|
|
|
*/
|
|
|
|
public Server() {
|
|
|
|
running = true;
|
|
|
|
world.setServer(this);
|
|
|
|
try {
|
|
|
|
Instance.getPluginHandler().initPlugins();
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
connector = new LoginConnector();
|
|
|
|
engine = new GameEngine();
|
|
|
|
engine.start();
|
|
|
|
while (!connector.isRegistered()) {
|
|
|
|
Thread.sleep(100);
|
|
|
|
}
|
|
|
|
|
|
|
|
acceptor = new SocketAcceptor(Runtime.getRuntime()
|
|
|
|
.availableProcessors() + 1, Executors.newCachedThreadPool());
|
2012-01-07 14:46:26 -05:00
|
|
|
acceptor.getFilterChain().addFirst("packetthrottler",
|
|
|
|
PacketThrottler.getInstance());
|
2011-06-21 19:22:37 -04:00
|
|
|
acceptor.getFilterChain().addFirst("connectionfilter",
|
|
|
|
new ConnectionFilter());
|
|
|
|
IoAcceptorConfig config = new SocketAcceptorConfig();
|
|
|
|
config.setDisconnectOnUnbind(true);
|
|
|
|
|
|
|
|
config.setThreadModel(ThreadModel.MANUAL);
|
|
|
|
SocketSessionConfig ssc = (SocketSessionConfig) config
|
|
|
|
.getSessionConfig();
|
|
|
|
ssc.setSendBufferSize(10000);
|
|
|
|
ssc.setReceiveBufferSize(10000);
|
|
|
|
acceptor.bind(new InetSocketAddress(Config.SERVER_IP,
|
|
|
|
Config.SERVER_PORT), new RSCConnectionHandler(engine),
|
|
|
|
config);
|
2011-11-05 13:06:03 -04:00
|
|
|
Runtime.getRuntime().addShutdownHook(new Thread() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
acceptor.unbindAll();
|
|
|
|
}
|
|
|
|
});
|
2011-06-21 19:22:37 -04:00
|
|
|
} catch (Exception e) {
|
|
|
|
Logger.error(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the game engine for this server
|
|
|
|
*/
|
|
|
|
public GameEngine getEngine() {
|
|
|
|
return engine;
|
|
|
|
}
|
|
|
|
|
|
|
|
public LoginConnector getLoginConnector() {
|
|
|
|
return connector;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isInitialized() {
|
|
|
|
return engine != null && connector != null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-06-22 12:32:03 -04:00
|
|
|
* Kills the game engine
|
2011-06-21 19:22:37 -04:00
|
|
|
*
|
|
|
|
* @throws InterruptedException
|
|
|
|
*/
|
|
|
|
public void kill() {
|
|
|
|
Logger.print(Config.SERVER_NAME + " shutting down...");
|
|
|
|
running = false;
|
|
|
|
engine.emptyWorld();
|
|
|
|
connector.kill();
|
|
|
|
System.exit(0);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean running() {
|
|
|
|
return running;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shutdown the server in 60 seconds
|
|
|
|
*/
|
|
|
|
public boolean shutdownForUpdate() {
|
|
|
|
if (updateEvent != null) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
updateEvent = new SingleEvent(null, 59000) {
|
|
|
|
public void action() {
|
|
|
|
kill();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
Instance.getDelayedEventHandler().add(updateEvent);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* MS till the server shuts down
|
|
|
|
*/
|
|
|
|
public int timeTillShutdown() {
|
|
|
|
if (updateEvent == null) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return updateEvent.timeTillNextRun();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unbinds the socket acceptor
|
|
|
|
*/
|
|
|
|
public void unbind() {
|
|
|
|
try {
|
|
|
|
acceptor.unbindAll();
|
|
|
|
} catch (Exception e) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Server getServer() {
|
|
|
|
return server;
|
|
|
|
}
|
2012-01-07 14:46:26 -05:00
|
|
|
|
2011-11-05 13:06:03 -04:00
|
|
|
private static void displayConfigDefaulting(String file) {
|
2012-01-08 10:06:11 -05:00
|
|
|
Logger.println("Defaulting to use " + file);
|
2011-11-05 13:06:03 -04:00
|
|
|
}
|
2011-04-27 01:44:26 -04:00
|
|
|
}
|