Browse Source

1.优化游戏服启动类;2.优化启动日志

johnclot69 4 months ago
parent
commit
a3a0192558

+ 2 - 2
incubator-common/src/main/java/com/incubator/common/env/Environment.java

@@ -70,7 +70,7 @@ public abstract class Environment {
 				if (env == null) {
 					System.err.println("Not Found Environment");
 				} else {
-					System.out.println(env.info());
+//					System.out.println(env.info());
 				}
 			}
 		}
@@ -88,7 +88,7 @@ public abstract class Environment {
 				} catch (IllegalAccessException e) {
 					e.printStackTrace();
 				}
-				System.err.println(env.info());
+//				System.err.println(env.info());
 			}
 		}
 		return env;

+ 0 - 1
incubator-common/src/main/java/com/incubator/common/game/AbstractService.java

@@ -28,7 +28,6 @@ public abstract class AbstractService implements IService {
 				this.doStart();
 				this.daemonInit();
 				this.setState(ServiceState.ACTIVE);
-				logger.info("===== 服务器启动成功 =====");
 			} catch (Throwable e) {
 				this.setState(ServiceState.STOPED);
 				logger.error("===== 启动服务出错 : ", e);

+ 49 - 14
incubator-game/src/main/java/com/incubator/game/GameServerStart.java

@@ -1,32 +1,67 @@
 package com.incubator.game;
 
 import com.incubator.common.game.IService.ServiceState;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
 
 /**
- * Hello world!
- *
+ * 游戏服务器启动入口
  */
 public class GameServerStart {
 
+	private static final Logger logger = LoggerFactory.getLogger(GameServerStart.class);
+
+	/**
+	 * 可传两参数:
+	 * 配置文件名称 项目主目录 (如:config.properties /home/work/game-center)
+	 *
+	 * @param args 命令行参数
+	 */
+	public static void main(String[] args) {
+		logger.info("正在启动游戏服务器...");
+		try {
+			// 参数解析与初始化
+			initializeConfig(args);
+
+			// 获取游戏主实例
+			GGame main = GGame.getInstance();
+
+			// 启动服务
+			main.startService();
+
+			// 检查服务状态
+			if (main.getState() != ServiceState.ACTIVE) {
+				logger.error("游戏服务器启动失败,服务状态: {}", main.getState());
+				System.exit(1);
+			}
+
+			logger.info("游戏服务器启动成功,服务状态: {}", main.getState());
+		} catch (Exception e) {
+			logger.error("游戏服务器启动过程中发生错误: ", e);
+			System.exit(1);
+		}
+	}
+
 	/**
-	 * 可传两参数 配置文件名称 项目主目录 (如:config.properties /home/work/game-center)
+	 * 初始化配置文件和环境变量
 	 *
-	 * @throws Exception
+	 * @param args 命令行参数
+	 * @throws IllegalArgumentException 参数异常
 	 */
-	public static void main(String[] args) throws Exception {
+	private static void initializeConfig(String[] args) {
 		if (args.length > 0) {
 			GGame.CONFIG_FILE = args[0];
+			logger.info("加载配置文件: {}", GGame.CONFIG_FILE);
+
 			if (args.length > 1) {
-				GGame.env.initEnv(args[1]);
+				String envPath = args[1];
+				logger.info("初始化环境路径: {}", envPath);
+				GGame.env.initEnv(envPath);
+			} else {
+				logger.warn("未指定环境路径,将使用默认路径。");
 			}
-		}
-		// 启动服务
-		GGame main = GGame.getInstance();
-		main.startService();
-
-		if (main.getState() != ServiceState.ACTIVE) {
-			System.exit(0);
+		} else {
+			logger.warn("未指定配置文件和环境路径,使用默认配置。");
 		}
 	}
-
 }