SessionPlayerComponentSystem.cs 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. namespace ET.Server
  4. {
  5. public class SessionPlayerComponentAwakeSystem: AwakeSystem<SessionPlayerComponent>
  6. {
  7. protected override void Awake(SessionPlayerComponent self)
  8. {
  9. self?.Init();
  10. }
  11. }
  12. public class SessionPlayerComponentDestroySystem: DestroySystem<SessionPlayerComponent>
  13. {
  14. protected override void Destroy(SessionPlayerComponent self)
  15. {
  16. // 发送断线消息
  17. Log.Warning($"玩家断线了, plyerId={self.PlayerId}");
  18. }
  19. }
  20. [FriendOf(typeof (SessionPlayerComponent))]
  21. public static class SessionPlayerComponentSystem
  22. {
  23. /// <summary>
  24. /// 初始化数据
  25. /// </summary>
  26. /// <param name="self"></param>
  27. public static void Init(this SessionPlayerComponent self)
  28. {
  29. self.PlayerList = new List<PlayerInfo>();
  30. self.PlayerId = 0;
  31. }
  32. /// <summary>
  33. /// 是否存在
  34. /// </summary>
  35. /// <param name="self"></param>
  36. /// <param name="playerId"></param>
  37. /// <returns></returns>
  38. public static bool IsExist(this SessionPlayerComponent self, long playerId)
  39. {
  40. return self.PlayerList.Any(info => info != null && info.Id == playerId);
  41. }
  42. /// <summary>
  43. /// 获取
  44. /// </summary>
  45. /// <param name="self"></param>
  46. /// <param name="playerId"></param>
  47. /// <returns></returns>
  48. public static PlayerInfo Get(this SessionPlayerComponent self, long playerId)
  49. {
  50. return self.PlayerList.FirstOrDefault(info => info != null && info.Id == playerId);
  51. }
  52. /// <summary>
  53. /// 添加
  54. /// </summary>
  55. /// <param name="self"></param>
  56. /// <param name="info"></param>
  57. public static void Add(this SessionPlayerComponent self, PlayerInfo info)
  58. {
  59. if (info != null)
  60. {
  61. self.PlayerList.Add(info);
  62. }
  63. }
  64. /// <summary>
  65. /// 获取玩家实体
  66. /// </summary>
  67. /// <param name="self"></param>
  68. /// <returns></returns>
  69. public static WNPlayer GetMyPlayer(this SessionPlayerComponent self)
  70. {
  71. return self.DomainScene().GetComponent<GamePlayerComponent>().Get(self.PlayerId);
  72. }
  73. }
  74. }