Browse Source

1.优化登录数据;2.优化redis配置

johnclot69 4 months ago
parent
commit
30c9e8888e

+ 1 - 0
incubator-game/conf/db.properties

@@ -8,6 +8,7 @@ jdbc.password=root
 redis.host=123.60.58.84
 redis.port=6379
 redis.auth=
+redis.db=1
 redis.timeout=3000
 redis.maxIdle=100
 redis.maxWaitMillis=1000

+ 20 - 3
incubator-game/src/main/java/com/incubator/game/data/jedis/JedisPoolUtil.java

@@ -4,7 +4,6 @@ import com.incubator.game.GGame;
 import org.slf4j.Logger;
 import com.incubator.common.log4j.Log4jUtil;
 import com.incubator.common.util.PropertiesUtil;
-
 import redis.clients.jedis.Jedis;
 import redis.clients.jedis.JedisPool;
 import redis.clients.jedis.JedisPoolConfig;
@@ -21,6 +20,8 @@ public final class JedisPoolUtil {
 
 	private static int TIMEOUT;
 
+	private static int DEFAULT_DB = 0; // 默认 Redis 数据库为 0
+
 	static {
 		if (jedisPool == null) {
 			try {
@@ -56,6 +57,9 @@ public final class JedisPoolUtil {
 		ADDR_ARRAY = dbredis.getProperty("redis.host");
 		PORT = Integer.parseInt(dbredis.getProperty("redis.port"));
 		TIMEOUT = Integer.parseInt(dbredis.getProperty("redis.timeout"));
+		if (dbredis.getProperty("redis.db") != null) {
+			DEFAULT_DB = Integer.parseInt(dbredis.getProperty("redis.db"));
+		}
 		if (dbredis.getProperty("redis.auth") != null) {
 			String AUTH = dbredis.getProperty("redis.auth");
 			jedisPool = new JedisPool(config, ADDR_ARRAY, PORT, TIMEOUT, AUTH);
@@ -64,14 +68,27 @@ public final class JedisPoolUtil {
 		}
 	}
 
+	/**
+	 * 获取 Jedis 实例并指定数据库
+	 */
 	public synchronized static Jedis getJedis() {
-		return jedisPool.getResource();
+		Jedis jedis = jedisPool.getResource();
+		try {
+			if (DEFAULT_DB != 0) {
+				jedis.select(DEFAULT_DB); // 切换到指定的 Redis 数据库
+			}
+		} catch (Exception e) {
+			logger.error("Failed to select Redis database: " + DEFAULT_DB, e);
+		}
+		return jedis;
 	}
 
+	/**
+	 * 关闭 Jedis 连接
+	 */
 	public static void closeJedis(Jedis jedis) {
 		if (jedis != null) {
 			jedis.close();
 		}
 	}
-
 }

+ 49 - 0
incubator-game/src/main/java/com/incubator/game/handler/GetRoomRuleInfoHandler.java

@@ -0,0 +1,49 @@
+package com.incubator.game.handler;
+
+import com.incubator.common.MessageHandler;
+import com.incubator.common.net.Connection;
+import com.incubator.core.net.ws.NetHandler;
+import com.incubator.core.net.ws.WSRequest;
+import com.incubator.core.net.ws.WSResponse;
+import com.incubator.game.player.Player;
+import com.incubator.game.util.PlayerUtil;
+import com.incubator.message.proto.CommonProto;
+
+import java.util.HashMap;
+
+/**
+ * 获取玩法规则信息 请求
+ *
+ * @author johnc
+ */
+@MessageHandler(id = CommonProto.Cmd.RoomRuleInfoReq_VALUE)
+public class GetRoomRuleInfoHandler extends NetHandler {
+
+	@Override
+	public void onDate(Connection session, WSRequest request, WSResponse response) {
+		response.setCmd(CommonProto.Cmd.RoomRuleInfoRes_VALUE);
+
+		Player player = (Player) PlayerUtil.getOnlinePlayer(session.getPlayerId());
+		if (player == null) {
+			logger.info("创建房间失败,找不到玩家");
+			response.setCode(CommonProto.Code.SYSTEM_ERR_VALUE);
+			response.setMessage("操作失败...");
+			return;
+		}
+
+		// 判断参数
+		int type = request.getDataValue("type", Integer.class, 0);
+		if (type <= 0) {
+			logger.info("参数错误");
+			response.setCode(CommonProto.Code.PARAMETER_ERR_VALUE);
+			response.setMessage("参数错误");
+			return;
+		}
+
+		// 获取玩法类型规则
+
+
+		// 正常返回
+		response.setData(new HashMap<>());
+	}
+}

+ 1 - 1
incubator-game/src/main/java/com/incubator/game/handler/LoginGameHandler.java

@@ -59,7 +59,7 @@ public class LoginGameHandler extends NetHandler {
 		playerInfoPO.foca = 20;
 		playerInfoPO.ranking = 20;
 		playerInfoPO.figureId = 1;
-		playerInfoPO.realName = "习近平";
+		playerInfoPO.realName = "李晓强";
 		playerInfoPO.phoneNum = "13800000001";
 		playerInfoPO.idCard = "42100119000101000X";
 		playerInfoPO.friendMasterNum = 1000;