SessionPlayerComponentSystem.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. namespace ET.Server
  4. {
  5. [FriendOf(typeof (SessionPlayerComponent))]
  6. public static class SessionPlayerComponentSystem
  7. {
  8. public class SessionPlayerComponentAwakeSystem: AwakeSystem<SessionPlayerComponent>
  9. {
  10. /// <summary>
  11. /// session玩家组件创建
  12. /// </summary>
  13. /// <param name="self"></param>
  14. protected override void Awake(SessionPlayerComponent self)
  15. {
  16. Log.Info($"创建session玩家绑定组件...");
  17. self.PlayerId = 0;
  18. self.PlayerList = new List<PlayerInfo>();
  19. }
  20. }
  21. public class SessionPlayerComponentDestroySystem: DestroySystem<SessionPlayerComponent>
  22. {
  23. protected override void Destroy(SessionPlayerComponent self)
  24. {
  25. WNPlayer player = self.GetMyPlayer();
  26. if (player == null)
  27. {
  28. return;
  29. }
  30. Log.Info($"玩家断线了, playerId={self.PlayerId}, name={player.GetName()}");
  31. // 玩家离开
  32. player.GetComponent<PlayerTempDataComponent>().MapData.ready = false;
  33. Map map = player.Map;
  34. if (map != null)
  35. {
  36. // 记录玩家历史
  37. map.SyncPlayerHistoryData(player);
  38. // 战斗服场景玩家离开
  39. map.PlayerLeaveRequest(player, false);
  40. // 本地场景移除玩家
  41. map.RemovePlayer(player, false);
  42. // 移除本地组件数据
  43. map.DomainScene().GetComponent<GamePlayerComponent>().Remove(player.GetId());
  44. // 战斗服结束场景
  45. map.GetZoneManager().destroyZoneRequest(map.Id.ToString());
  46. }
  47. player.Dispose();
  48. }
  49. }
  50. /// <summary>
  51. /// 绑定玩家id
  52. /// </summary>
  53. /// <param name="self"></param>
  54. /// <param name="playerId"></param>
  55. public static void BindPlayerId(this SessionPlayerComponent self, long playerId)
  56. {
  57. Log.Debug($"session玩家绑定组件 绑定玩家id={playerId}");
  58. self.PlayerId = playerId;
  59. }
  60. /// <summary>
  61. /// 是否存在
  62. /// </summary>
  63. /// <param name="self"></param>
  64. /// <param name="playerId"></param>
  65. /// <returns></returns>
  66. public static bool IsExist(this SessionPlayerComponent self, long playerId)
  67. {
  68. return self.PlayerList.Any(info => info != null && info.Id == playerId);
  69. }
  70. /// <summary>
  71. /// 获取
  72. /// </summary>
  73. /// <param name="self"></param>
  74. /// <param name="playerId"></param>
  75. /// <returns></returns>
  76. public static PlayerInfo Get(this SessionPlayerComponent self, long playerId)
  77. {
  78. return self.PlayerList.FirstOrDefault(info => info != null && info.Id == playerId);
  79. }
  80. /// <summary>
  81. /// 添加
  82. /// </summary>
  83. /// <param name="self"></param>
  84. /// <param name="info"></param>
  85. public static void Add(this SessionPlayerComponent self, PlayerInfo info)
  86. {
  87. if (info != null)
  88. {
  89. self.PlayerList.Add(info);
  90. }
  91. }
  92. /// <summary>
  93. /// 获取当前玩家实体
  94. /// </summary>
  95. /// <param name="self"></param>
  96. /// <returns></returns>
  97. public static WNPlayer GetMyPlayer(this SessionPlayerComponent self)
  98. {
  99. return self.DomainScene().GetComponent<GamePlayerComponent>().Get(self.PlayerId);
  100. }
  101. }
  102. }