/jyqp_netty/src/main/java/com/zk/netty/redis/RedisRoomService.java

https://bitbucket.org/shiyun3210/jyqp · Java · 320 lines · 249 code · 13 blank · 58 comment · 28 complexity · 00d7cdd29338554b6c719c04c91021ae MD5 · raw file

  1. package com.zk.netty.redis;
  2. import java.util.Map;
  3. import java.util.Set;
  4. import redis.clients.jedis.Jedis;
  5. import redis.clients.jedis.Tuple;
  6. import redis.clients.jedis.params.sortedset.ZAddParams;
  7. import com.alibaba.fastjson.JSONObject;
  8. import com.zk.netty.enums.GameRoom;
  9. import com.zk.netty.redis.db.JedisManager;
  10. /**
  11. * 房间列表 加入房间控制
  12. * @author syf
  13. */
  14. public class RedisRoomService {
  15. public static void main(String[] args) {
  16. Jedis jedis = null;
  17. jedis = JedisManager.getJedis();
  18. Set<String> aa = jedis.keys("sjroom_*");
  19. for(String a : aa){
  20. System.out.println(a);
  21. jedis.del(a);
  22. }
  23. Set<String> aaa = jedis.keys("user_in_room_*");
  24. for(String a : aaa){
  25. System.out.println(a);
  26. jedis.del(a);
  27. }
  28. JedisManager.closeConn(jedis);
  29. }
  30. /**
  31. * 获取房间信息
  32. * @param roomKey
  33. * @return
  34. */
  35. public static Set<Tuple> getRoomInfo(String roomKey){
  36. Jedis jedis = null;
  37. try {
  38. jedis = JedisManager.getJedis();
  39. return jedis.zrangeWithScores(roomKey, 0, 100);
  40. } catch (Exception e) {
  41. e.printStackTrace();
  42. }finally{
  43. JedisManager.closeConn(jedis);
  44. }
  45. return null;
  46. }
  47. /**
  48. * 获取房间用户channelId
  49. * @param roomKey
  50. * @return
  51. */
  52. public static Set<Tuple> getRoomChannelId(String roomChannelIdKey){
  53. Jedis jedis = null;
  54. try {
  55. jedis = JedisManager.getJedis();
  56. return jedis.zrangeByScoreWithScores(roomChannelIdKey, "-inf", "+inf");
  57. } catch (Exception e) {
  58. e.printStackTrace();
  59. }finally{
  60. JedisManager.closeConn(jedis);
  61. }
  62. return null;
  63. }
  64. /**
  65. * 四人房间列表 加入房间
  66. * @param gameRoomType
  67. * @param user
  68. * @return
  69. */
  70. public static String joinFourRoom(GameRoom gameRoom,int uid,Map<String,Object> user,String userInRoom){
  71. Jedis jedis = null;
  72. try {
  73. jedis = JedisManager.getJedis();
  74. String roomListKey = gameRoom.getRoomListCacheCode();
  75. String returnRoomKey = "";
  76. Set<String> threePeopleRoomKeys = jedis.zrangeByScore(roomListKey, 3, 3);
  77. if(threePeopleRoomKeys.isEmpty()){
  78. Set<String> twoPeopleRoomKeys = jedis.zrangeByScore(roomListKey, 2, 2);
  79. if(twoPeopleRoomKeys.isEmpty()){
  80. Set<String> onePeopleRoomKeys = jedis.zrangeByScore(roomListKey, 1, 1);
  81. if(onePeopleRoomKeys.isEmpty()){
  82. //游戏房间数+1
  83. long size = jedis.incr(gameRoom.getRoomListSize());
  84. //生成新游戏房间
  85. String roomKey = gameRoom.getRoomCacheCode()+size;
  86. //新房间 加入房间列表
  87. jedis.zadd(roomListKey, 1, roomKey);
  88. //将用户加入游戏房间
  89. jedis.zadd(roomKey, uid,JSONObject.toJSONString(user));
  90. //标记用户在当前房间 座位号
  91. RedisUserService.setUserInRoom(uid+"", roomKey);
  92. return roomKey;
  93. }else{
  94. for(String roomKey : onePeopleRoomKeys){
  95. if(roomKey.equals(userInRoom)){
  96. continue;
  97. }
  98. double result = jedis.zincrby(roomListKey, 1, roomKey);
  99. if(result<=4){
  100. jedis.zadd(roomKey, uid, JSONObject.toJSONString(user));
  101. RedisUserService.setUserInRoom(uid+"", roomKey);
  102. returnRoomKey = roomKey;
  103. break;
  104. }else{
  105. jedis.zadd(roomListKey, 4, roomKey,ZAddParams.zAddParams().xx());
  106. continue;
  107. }
  108. }
  109. }
  110. }else{
  111. for(String roomKey : twoPeopleRoomKeys){
  112. if(roomKey.equals(userInRoom)){
  113. continue;
  114. }
  115. double result = jedis.zincrby(roomListKey, 1, roomKey);
  116. if(result<=4){
  117. jedis.zadd(roomKey, uid, JSONObject.toJSONString(user));
  118. RedisUserService.setUserInRoom(uid+"", roomKey);
  119. returnRoomKey = roomKey;
  120. break;
  121. }else{
  122. jedis.zadd(roomListKey, 4, roomKey,ZAddParams.zAddParams().xx());
  123. continue;
  124. }
  125. }
  126. }
  127. }else{
  128. for(String roomKey : threePeopleRoomKeys){
  129. if(roomKey.equals(userInRoom)){
  130. continue;
  131. }
  132. double result = jedis.zincrby(roomListKey, 1, roomKey);
  133. if(result==4){
  134. jedis.zadd(roomKey, uid, JSONObject.toJSONString(user));
  135. RedisUserService.setUserInRoom(uid+"", roomKey);
  136. returnRoomKey = roomKey;
  137. break;
  138. }else if(result>4){
  139. jedis.zadd(roomListKey, 4, roomKey,ZAddParams.zAddParams().xx());
  140. continue;
  141. }
  142. }
  143. }
  144. if(returnRoomKey.equals("")){
  145. //游戏房间数+1
  146. long size = jedis.incr(gameRoom.getRoomListSize());
  147. //生成新游戏房间
  148. String roomKey = gameRoom.getRoomCacheCode()+size;
  149. //新房间 加入房间列表
  150. jedis.zadd(roomListKey, 1, roomKey);
  151. //将用户加入游戏房间
  152. jedis.zadd(roomKey, uid,JSONObject.toJSONString(user));
  153. RedisUserService.setUserInRoom(uid+"", roomKey);
  154. return roomKey;
  155. }
  156. return returnRoomKey;
  157. } catch (Exception e) {
  158. e.printStackTrace();
  159. }finally{
  160. JedisManager.closeConn(jedis);
  161. }
  162. return null;
  163. }
  164. public static String getRoomNum(String roomKey){
  165. return roomKey.substring(roomKey.lastIndexOf("_")+1, roomKey.length());
  166. }
  167. /**
  168. * 三人房间列表 加入房间
  169. * @param gameRoomType
  170. * @param user
  171. * @return
  172. */
  173. public static String joinThreeRoom(GameRoom gameRoom,int uid,Map<String,Object> user,String userInRoom){
  174. Jedis jedis = null;
  175. try {
  176. jedis = JedisManager.getJedis();
  177. String roomListKey = gameRoom.getRoomListCacheCode();
  178. String returnRoomKey = "";
  179. Set<String> twoPeopleRoomKeys = jedis.zrangeByScore(roomListKey, 2, 2);
  180. if(twoPeopleRoomKeys.isEmpty()){
  181. Set<String> onePeopleRoomKeys = jedis.zrangeByScore(roomListKey, 1, 1);
  182. if(onePeopleRoomKeys.isEmpty()){
  183. //游戏房间数+1
  184. long size = jedis.incr(gameRoom.getRoomListSize());
  185. //生成新游戏房间
  186. String roomKey = gameRoom.getRoomCacheCode()+size;
  187. //新房间 加入房间列表
  188. jedis.zadd(roomListKey, 1, roomKey);
  189. //将用户加入游戏房间
  190. jedis.zadd(roomKey, uid,JSONObject.toJSONString(user));
  191. RedisUserService.setUserInRoom(uid+"", roomKey);
  192. return roomKey;
  193. }else{
  194. for(String roomKey : onePeopleRoomKeys){
  195. if(roomKey.equals(userInRoom)){
  196. continue;
  197. }
  198. double result = jedis.zincrby(roomListKey, 1, roomKey);
  199. if(result<=3){
  200. jedis.zadd(roomKey, uid, JSONObject.toJSONString(user));
  201. RedisUserService.setUserInRoom(uid+"", roomKey);
  202. returnRoomKey = roomKey;
  203. break;
  204. }else{
  205. jedis.zadd(roomListKey, 3, roomKey,ZAddParams.zAddParams().xx());
  206. continue;
  207. }
  208. }
  209. }
  210. }else{
  211. for(String roomKey : twoPeopleRoomKeys){
  212. if(roomKey.equals(userInRoom)){
  213. continue;
  214. }
  215. double result = jedis.zincrby(roomListKey, 1, roomKey);
  216. if(result==3){
  217. jedis.zadd(roomKey, uid, JSONObject.toJSONString(user));
  218. RedisUserService.setUserInRoom(uid+"", roomKey);
  219. returnRoomKey = roomKey;
  220. break;
  221. }else{
  222. jedis.zadd(roomListKey, 3, roomKey,ZAddParams.zAddParams().xx());
  223. continue;
  224. }
  225. }
  226. }
  227. if(returnRoomKey.equals("")){
  228. //游戏房间数+1
  229. long size = jedis.incr(gameRoom.getRoomListSize());
  230. //生成新游戏房间
  231. String roomKey = gameRoom.getRoomCacheCode()+size;
  232. //新房间 加入房间列表
  233. jedis.zadd(roomListKey, 1, roomKey);
  234. //将用户加入游戏房间
  235. jedis.zadd(roomKey, uid,JSONObject.toJSONString(user));
  236. RedisUserService.setUserInRoom(uid+"", roomKey);
  237. return roomKey;
  238. }
  239. return returnRoomKey;
  240. } catch (Exception e) {
  241. e.printStackTrace();
  242. }finally{
  243. JedisManager.closeConn(jedis);
  244. }
  245. return null;
  246. }
  247. /**
  248. * 房间准备数
  249. * @param roomId
  250. * @return
  251. */
  252. public static int setRoomReady(String roomId,String uid,int num){
  253. Jedis jedis = null;
  254. try {
  255. jedis = JedisManager.getJedis();
  256. if(num==0){
  257. int result = jedis.hdel(RedisCommonKey.ROOM_READY_HASH_FLAG+roomId, uid).intValue();
  258. if(result>0){//已准备
  259. return jedis.incrBy(RedisCommonKey.ROOM_READY_FLAG+roomId,-1).intValue();
  260. }
  261. }else{
  262. int result = jedis.hset(RedisCommonKey.ROOM_READY_HASH_FLAG+roomId, uid,"1").intValue();
  263. if(result>0){
  264. return jedis.incrBy(RedisCommonKey.ROOM_READY_FLAG+roomId,1).intValue();
  265. }
  266. }
  267. } catch (Exception e) {
  268. e.printStackTrace();
  269. }finally{
  270. JedisManager.closeConn(jedis);
  271. }
  272. return -1;
  273. }
  274. /**
  275. * 删除 房间准备数
  276. * @param roomId
  277. * @return
  278. */
  279. public static void delRoomReady(String roomId){
  280. Jedis jedis = null;
  281. try {
  282. jedis = JedisManager.getJedis();
  283. jedis.del(RedisCommonKey.ROOM_READY_FLAG+roomId);
  284. } catch (Exception e) {
  285. e.printStackTrace();
  286. }finally{
  287. JedisManager.closeConn(jedis);
  288. }
  289. }
  290. /**
  291. * 获取房间已准备 用户
  292. * @param roomId
  293. * @return
  294. */
  295. public static Map<String,String> getRoomReady(String roomId){
  296. Jedis jedis = null;
  297. try {
  298. jedis = JedisManager.getJedis();
  299. return jedis.hgetAll(RedisCommonKey.ROOM_READY_HASH_FLAG+roomId);
  300. } catch (Exception e) {
  301. e.printStackTrace();
  302. }finally{
  303. JedisManager.closeConn(jedis);
  304. }
  305. return null;
  306. }
  307. }