Grasscutter/src/main/java/emu/grasscutter/Grasscutter.java

143 lines
3.5 KiB
Java
Raw Normal View History

2022-04-17 12:43:07 +00:00
package emu.grasscutter;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.InputStreamReader;
import java.net.InetSocketAddress;
import emu.grasscutter.command.CommandMap;
2022-04-18 05:11:27 +00:00
import emu.grasscutter.utils.Utils;
2022-04-19 04:35:01 +00:00
import org.reflections.Reflections;
2022-04-17 12:43:07 +00:00
import org.slf4j.LoggerFactory;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import ch.qos.logback.classic.Logger;
import emu.grasscutter.data.ResourceLoader;
import emu.grasscutter.database.DatabaseManager;
import emu.grasscutter.server.dispatch.DispatchServer;
import emu.grasscutter.server.game.GameServer;
import emu.grasscutter.tools.Tools;
import emu.grasscutter.utils.Crypto;
2022-04-18 05:11:27 +00:00
public final class Grasscutter {
private static final Logger log = (Logger) LoggerFactory.getLogger(Grasscutter.class);
2022-04-17 12:43:07 +00:00
private static Config config;
2022-04-18 05:11:27 +00:00
private static final Gson gson = new GsonBuilder().setPrettyPrinting().create();
private static final File configFile = new File("./config.json");
2022-04-17 12:43:07 +00:00
public static RunMode MODE = RunMode.BOTH;
private static DispatchServer dispatchServer;
private static GameServer gameServer;
2022-04-19 04:35:01 +00:00
public static final Reflections reflector = new Reflections();
2022-04-18 05:11:27 +00:00
static {
2022-04-19 04:35:01 +00:00
// Declare logback configuration.
System.setProperty("logback.configurationFile", "src/main/resources/logback.xml");
// Load server configuration.
2022-04-18 05:11:27 +00:00
Grasscutter.loadConfig();
2022-04-18 05:11:27 +00:00
// Check server structure.
Utils.startupCheck();
}
2022-04-17 12:43:07 +00:00
public static void main(String[] args) throws Exception {
Crypto.loadKeys();
for (String arg : args) {
switch (arg.toLowerCase()) {
case "-auth":
MODE = RunMode.AUTH;
break;
case "-game":
MODE = RunMode.GAME;
break;
case "-handbook":
Tools.createGmHandbook();
return;
}
}
2022-04-18 05:11:27 +00:00
// Initialize server.
Grasscutter.getLogger().info("Starting Grasscutter...");
2022-04-17 12:43:07 +00:00
2022-04-18 05:11:27 +00:00
// Load all resources.
2022-04-17 12:43:07 +00:00
ResourceLoader.loadAll();
// Database
DatabaseManager.initialize();
2022-04-18 05:11:27 +00:00
// Start servers.
2022-04-17 12:43:07 +00:00
dispatchServer = new DispatchServer();
dispatchServer.start();
gameServer = new GameServer(new InetSocketAddress(getConfig().getGameServerOptions().Ip, getConfig().getGameServerOptions().Port));
2022-04-17 12:43:07 +00:00
gameServer.start();
2022-04-18 05:11:27 +00:00
// Open console.
2022-04-17 12:43:07 +00:00
startConsole();
}
public static void loadConfig() {
try (FileReader file = new FileReader(configFile)) {
config = gson.fromJson(file, Config.class);
} catch (Exception e) {
2022-04-18 05:11:27 +00:00
Grasscutter.config = new Config(); saveConfig();
2022-04-17 12:43:07 +00:00
}
}
public static void saveConfig() {
try (FileWriter file = new FileWriter(configFile)) {
file.write(gson.toJson(config));
} catch (Exception e) {
Grasscutter.getLogger().error("Config save error");
}
}
public static void startConsole() {
String input;
try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
while ((input = br.readLine()) != null) {
2022-04-19 04:35:01 +00:00
try {
CommandMap.getInstance().invoke(null, input);
} catch (Exception e) {
Grasscutter.getLogger().error("Command error: " + e.getMessage());
}
2022-04-17 12:43:07 +00:00
}
} catch (Exception e) {
2022-04-18 05:11:27 +00:00
Grasscutter.getLogger().error("An error occurred.", e);
2022-04-17 12:43:07 +00:00
}
}
public enum RunMode {
BOTH,
AUTH,
GAME
}
2022-04-18 05:11:27 +00:00
public static Config getConfig() {
return config;
}
public static Logger getLogger() {
return log;
}
public static Gson getGsonFactory() {
return gson;
}
public static DispatchServer getDispatchServer() {
return dispatchServer;
}
public static GameServer getGameServer() {
return gameServer;
}
2022-04-17 12:43:07 +00:00
}