PlayerSystem.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System.Collections.Generic;
  2. namespace ET.Server
  3. {
  4. [FriendOf(typeof(Player))]
  5. public static class PlayerSystem
  6. {
  7. [ObjectSystem]
  8. public class PlayerAwakeSystem : AwakeSystem<Player, Session>
  9. {
  10. protected override void Awake(Player self, Session session)
  11. {
  12. Log.Info($"创建玩家实体...");
  13. self.GameSessionActorId = session.InstanceId;
  14. self.Session = session;
  15. // self.Account = a;
  16. self.IsOnline = true;
  17. self.LoginTime = TimeHelper.ServerNow();
  18. self.RemainCards = new List<int>();
  19. // 添加本地玩家数据
  20. self.DomainScene().GetComponent<GamePlayerComponent>().Add(self);
  21. }
  22. }
  23. [ObjectSystem]
  24. public class PlayerDestroySystem : DestroySystem<Player>
  25. {
  26. protected override void Destroy(Player self)
  27. {
  28. Log.Info($"销毁玩家实体...");
  29. self.IsOnline = false;
  30. self.LogoutTime = TimeHelper.ServerNow();
  31. // 移除本地玩家数据
  32. self.DomainScene().GetComponent<GamePlayerComponent>()?.Remove(self.Id);
  33. }
  34. }
  35. }
  36. }