|
@@ -4,67 +4,67 @@ using System.Linq;
|
|
|
|
|
|
namespace ET.Server
|
|
|
{
|
|
|
- [Invoke(TimerInvokeType.HGHHMainChecker)]
|
|
|
- public class HGHHMainChecker: ATimer<HGHHMainCheckerComponent>
|
|
|
+ [FriendOf(typeof (HGHHMainCheckerComponent))]
|
|
|
+ public static class HGHHMainCheckerComponentSystem
|
|
|
{
|
|
|
- protected override void Run(HGHHMainCheckerComponent self)
|
|
|
+ [ObjectSystem]
|
|
|
+ public class HGHHMainCheckerComponentAwakeSystem: AwakeSystem<HGHHMainCheckerComponent>
|
|
|
{
|
|
|
- Room room = self.GetParent<Room>();
|
|
|
- if (room == null)
|
|
|
- {
|
|
|
- Log.Error($"黄冈晃晃主逻辑组件获取不到主实体...");
|
|
|
- return;
|
|
|
- }
|
|
|
- Log.Debug($"检测: 黄冈晃晃-房间号:{room.RoomId}, 状态:{self.State}...");
|
|
|
-
|
|
|
- try
|
|
|
+ protected override void Awake(HGHHMainCheckerComponent self)
|
|
|
{
|
|
|
- self.Check(room);
|
|
|
+ Log.Info($"创建黄冈晃晃主逻辑组件...");
|
|
|
+ self.Flag = false;
|
|
|
+ self.Time = 0;
|
|
|
+ self.State = 0;
|
|
|
+ self.Players = new Player[4];
|
|
|
+ self.CurrentRound = 0;
|
|
|
+ self.CardList = new List<int>();
|
|
|
+ // 初始化牌库
|
|
|
+ for (int i = 0; i < 4; i++)
|
|
|
+ {
|
|
|
+ foreach (int value in HghhConstValue.Values)
|
|
|
+ {
|
|
|
+ self.CardList.Add(value);
|
|
|
+ }
|
|
|
+ RandomGenerator.Shuffle(self.CardList);
|
|
|
+ }
|
|
|
}
|
|
|
- catch (Exception e)
|
|
|
+ }
|
|
|
+
|
|
|
+ [ObjectSystem]
|
|
|
+ public class HGHHMainCheckerComponentDestroySystem: DestroySystem<HGHHMainCheckerComponent>
|
|
|
+ {
|
|
|
+ protected override void Destroy(HGHHMainCheckerComponent self)
|
|
|
{
|
|
|
- Log.Error($"move timer error: {self.Id}\n{e}");
|
|
|
+ Log.Info($"销毁黄冈晃晃主逻辑组件...");
|
|
|
}
|
|
|
}
|
|
|
- }
|
|
|
-
|
|
|
- [ObjectSystem]
|
|
|
- public class HGHHMainCheckerComponentAwakeSystem: AwakeSystem<HGHHMainCheckerComponent>
|
|
|
- {
|
|
|
- protected override void Awake(HGHHMainCheckerComponent self)
|
|
|
+
|
|
|
+ [ObjectSystem]
|
|
|
+ public class HGHHMainCheckerComponentUpdateSystem: UpdateSystem<HGHHMainCheckerComponent>
|
|
|
{
|
|
|
- Log.Info($"创建黄冈晃晃主逻辑组件...");
|
|
|
- self.Flag = false;
|
|
|
- self.Time = 0;
|
|
|
- self.Players = new Player[4];
|
|
|
- self.CurrentRound = 0;
|
|
|
- self.CardList = new List<int>();
|
|
|
- // 初始化牌库
|
|
|
- for (int i = 0; i < 4; i++)
|
|
|
+ protected override void Update(HGHHMainCheckerComponent self)
|
|
|
{
|
|
|
- foreach (int value in HghhConstValue.Values)
|
|
|
+ Room room = self.GetParent<Room>();
|
|
|
+ if (room == null)
|
|
|
+ {
|
|
|
+ Log.Error($"黄冈晃晃主逻辑组件获取不到主实体...");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ Log.Debug($"检测: 黄冈晃晃-房间号:{room.RoomId}, 状态:{self.State}...");
|
|
|
+
|
|
|
+ try
|
|
|
{
|
|
|
- self.CardList.Add(value);
|
|
|
+ self.Check(room);
|
|
|
+ }
|
|
|
+ catch (Exception e)
|
|
|
+ {
|
|
|
+ Log.Error($"move timer error: {self.Id}\n{e}");
|
|
|
}
|
|
|
- RandomGenerator.Shuffle(self.CardList);
|
|
|
}
|
|
|
- self.RepeatedTimer = TimerComponent.Instance.NewRepeatedTimer(1000, TimerInvokeType.HGHHMainChecker, self);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- [ObjectSystem]
|
|
|
- public class HGHHMainCheckerComponentDestroySystem: DestroySystem<HGHHMainCheckerComponent>
|
|
|
- {
|
|
|
- protected override void Destroy(HGHHMainCheckerComponent self)
|
|
|
- {
|
|
|
- Log.Info($"销毁黄冈晃晃主逻辑组件...");
|
|
|
- TimerComponent.Instance?.Remove(ref self.RepeatedTimer);
|
|
|
}
|
|
|
- }
|
|
|
|
|
|
- public static class HGHHMainCheckerComponentSystem
|
|
|
- {
|
|
|
- public static void Check(this HGHHMainCheckerComponent self, Room room)
|
|
|
+ private static void Check(this HGHHMainCheckerComponent self, Room room)
|
|
|
{
|
|
|
Log.Debug($"检测: 黄冈晃晃-房间号:{room.RoomId}...");
|
|
|
switch (self.State)
|
|
@@ -129,7 +129,7 @@ namespace ET.Server
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
|
- /// 检测是否开始 3秒倒计时开始
|
|
|
+ /// 检测是否可开始 3秒倒计时开始
|
|
|
/// </summary>
|
|
|
/// <param name="self"></param>
|
|
|
/// <param name="room"></param>
|