SessionPlayerComponentSystem.cs 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. namespace ET.Server
  5. {
  6. [FriendOf(typeof (SessionPlayerComponent))]
  7. public static class SessionPlayerComponentSystem
  8. {
  9. public class SessionPlayerComponentAwakeSystem: AwakeSystem<SessionPlayerComponent, PlayerInfo>
  10. {
  11. protected override void Awake(SessionPlayerComponent self, PlayerInfo playerInfo)
  12. {
  13. Log.Info($"创建session玩家绑定组件...");
  14. self.PlayerInfo = playerInfo;
  15. self.PlayerId = playerInfo.Id;
  16. }
  17. }
  18. public class SessionPlayerComponentDestroySystem: DestroySystem<SessionPlayerComponent>
  19. {
  20. protected override void Destroy(SessionPlayerComponent self)
  21. {
  22. WNPlayer player = self.GetMyPlayer();
  23. if (player == null)
  24. {
  25. return;
  26. }
  27. Log.Info($"处理玩家下线逻辑, playerId={self.PlayerId}, name={player.GetName()}, mapId={player.Map.MapId}");
  28. // todo 玩家各组件下线相关处理
  29. Map map = player.Map;
  30. if (map != null)
  31. {
  32. try
  33. {
  34. // 玩家离开
  35. if (map.Actors.TryGetValue(player.GetId(), out Struct.Actor actor))
  36. {
  37. actor.Ready = false;
  38. }
  39. // 记录玩家历史
  40. map.SyncPlayerHistoryData(player);
  41. }
  42. catch (Exception e)
  43. {
  44. Log.Error($"处理玩家下线逻辑, 出错: catch 1 - {e}");
  45. }
  46. finally
  47. {
  48. try
  49. {
  50. map.OnPlayerLogout(player);
  51. }
  52. catch (Exception e)
  53. {
  54. Log.Error($"处理玩家下线逻辑, 出错: catch 2 - {e}");
  55. }
  56. }
  57. }
  58. player.Dispose();
  59. }
  60. }
  61. /// <summary>
  62. /// 绑定玩家id
  63. /// </summary>
  64. /// <param name="self"></param>
  65. /// <param name="player"></param>
  66. public static void BindPlayerId(this SessionPlayerComponent self, WNPlayer player)
  67. {
  68. Log.Debug($"session玩家绑定组件 绑定玩家id={player.GetId()}");
  69. self.PlayerId = player.GetId();
  70. // 添加本地玩家数据
  71. self.DomainScene().GetComponent<GamePlayerComponent>().Add(player.GetId(), player);
  72. }
  73. /// <summary>
  74. /// 获取当前玩家实体
  75. /// </summary>
  76. /// <param name="self"></param>
  77. /// <returns></returns>
  78. public static WNPlayer GetMyPlayer(this SessionPlayerComponent self)
  79. {
  80. return self.DomainScene().GetComponent<GamePlayerComponent>().Get(self.PlayerId);
  81. }
  82. }
  83. }