using System.Collections.Generic; using System.Linq; namespace ET.Server { [FriendOf(typeof(Room))] public static class RoomSystem { [ObjectSystem] public class RoomAwakeSystem : AwakeSystem { protected override void Awake(Room self, Player owner) { Log.Info($"创建房间实体..."); self.RoomId = RandomGenerator.RandRoomId(); // todo 暂时2个人先测试 self.MaxNum = 2; self.Type = 1; self.OwnerId = owner.Id; // todo 暂时8局先测试 self.MaxRound = 8; self.CreateTime = TimeHelper.ServerNow(); // 添加房间玩家集合 self.Players.Add(owner.Id, owner); // 添加麻将主逻辑组件 switch (self.Type) { case 1: // 黄冈晃晃 self.AddComponent(); break; case 2: break; } // 添加本地房间数据 self.DomainScene().GetComponent().Add(self); } } [ObjectSystem] public class RoomDestroySystem : DestroySystem { protected override void Destroy(Room self) { Log.Info($"销毁房间实体..."); // 移除本地房间数据 self.DomainScene().GetComponent()?.Remove(self.RoomId); } } /// /// 玩家是否已满 /// /// public static bool PlayerIsMax(this Room self) { if (self.Players.Count >= self.MaxNum) { return true; } return false; } /// /// 获取房间内所有玩家 /// /// /// public static Dictionary GetAllPlayers(this Room self) { return self.Players; } /// /// 加入一个玩家 /// /// /// public static void Add(this Room self, Player player) { self.Players.Add(player.Id, player); HGHHComponent hgHuangHuangComponent = self.GetComponent(); if (hgHuangHuangComponent == null) { return; } // 初始化玩家座位 int index = 0; foreach (Player p in self.GetAllPlayers().Values.Where(p => p != null)) { p.Pos = index; hgHuangHuangComponent.Players[index] = p; index += 1; } } /// /// 移除一个玩家 /// /// /// public static void Remove(this Room self, long playerId) { self.Players.Remove(playerId); } /// /// 获取房间内玩家 /// /// /// /// public static Player GetPlayer(this Room self, long playerId) { return self.Players.GetValueOrDefault(playerId); } /// /// 是否玩家都已准备,可开始 /// /// /// public static bool IsStart(this Room self) { int cnt = 0; foreach (Player player in self.Players.Values) { if (player is { State: 1 }) { cnt += 1; } } if (cnt >= self.MaxNum) { return true; } return false; } /// /// 根据当前玩家位置,获取另外三家位置顺序 /// /// /// /// public static int[] GetSorcPos(this Room self, int pos) { int[] nextPos = pos switch { // 3 => new [] { 0, 1, 2 }, // 2 => new [] { 3, 0, 1 }, // 1 => new [] { 2, 3, 0 }, // 0 => new [] { 1, 2, 3 }, // todo 正式版此处改为4人 1 => new [] { 0 }, 0 => new [] { 1 }, _ => null }; return nextPos; } } }