PlayerTempDataComponentSystem.cs 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. using System.Collections.Generic;
  2. using BattleIce;
  3. namespace ET.Server
  4. {
  5. [FriendOf(typeof (PlayerTempDataComponent))]
  6. public static class PlayerTempDataComponentSystem
  7. {
  8. public class PlayerTempDataComponentAwakeSystem: AwakeSystem<PlayerTempDataComponent, WNPlayer>
  9. {
  10. /// <summary>
  11. /// 玩家临时数据组件创建
  12. /// </summary>
  13. /// <param name="self"></param>
  14. /// <param name="player"></param>
  15. protected override void Awake(PlayerTempDataComponent self, WNPlayer player)
  16. {
  17. Log.Info($"创建玩家临时数据组件...");
  18. self.Player = player;
  19. }
  20. }
  21. public class PlayerTempDataComponentDestroySystem: DestroySystem<PlayerTempDataComponent>
  22. {
  23. /// <summary>
  24. /// 玩家临时数据组件销毁
  25. /// </summary>
  26. /// <param name="self"></param>
  27. protected override void Destroy(PlayerTempDataComponent self)
  28. {
  29. // todo 暂时去掉数据落地逻辑
  30. // Log.Debug($"玩家临时数据保存");
  31. // self?.Save();
  32. }
  33. }
  34. /// <summary>
  35. /// 初始化
  36. /// </summary>
  37. /// <param name="self"></param>
  38. public static void Init(this PlayerTempDataComponent self)
  39. {
  40. self.MapData = new PlayerMapInfo();
  41. self.MapData.mapId = 10098;
  42. self.MapData.x = 230;
  43. self.MapData.y = 100;
  44. self.MapData.direction = System.MathF.PI / 2;
  45. self.MapData.hp = PLAYER.initHp;
  46. self.MapData.mp = PLAYER.initMp;
  47. self.ToJson4BattleServerTempData = self.GetBattleServerTempData();
  48. // self?.Save();
  49. }
  50. private static async ETTask Save(this PlayerTempDataComponent self)
  51. {
  52. if (self.MapData == null)
  53. {
  54. Log.Debug($"保存玩家临时数据组件数据, Data is null");
  55. return;
  56. }
  57. self.MapData.Id = self.Player.GetId();
  58. await DBManagerComponent.Instance.GetZoneDB(self.DomainZone()).Save(self.Player.GetId(), self.MapData);
  59. }
  60. /** 同步场景出生数据 **/
  61. public static void SyncBornData(this PlayerTempDataComponent self, float bornX, float bornY, int bornAreaId)
  62. {
  63. self.MapData.bornX = bornX;
  64. self.MapData.bornY = bornY;
  65. self.MapData.bornMapId = bornAreaId;
  66. }
  67. /** 同步场景临时数据 **/
  68. public static void SyncNowData(this PlayerTempDataComponent self, int areaId, long instanceId, GetPlayerData data)
  69. {
  70. self.MapData.x = data.x;
  71. self.MapData.y = data.y;
  72. self.MapData.direction = data.direction;
  73. self.MapData.hp = data.hp;
  74. self.MapData.mp = data.mp;
  75. self.MapData.mapId = areaId;
  76. self.MapData.mapInstanceId = instanceId;
  77. }
  78. /** 同步场景历史数据 **/
  79. public static void SyncHistoryData(this PlayerTempDataComponent self, MapConfig prop, long instanceId, GetPlayerData data)
  80. {
  81. self.MapData.historyX = data.x;
  82. self.MapData.historyY = data.y;
  83. self.MapData.historyDirection = data.direction;
  84. self.MapData.historyMapId = prop.Id;
  85. self.MapData.historyMapInstanceId = instanceId;
  86. }
  87. /// <summary>
  88. /// 发送给场景服的数据
  89. /// </summary>
  90. /// <param name="self"></param>
  91. /// <returns></returns>
  92. private static Dictionary<string, object> GetBattleServerTempData(this PlayerTempDataComponent self)
  93. {
  94. Dictionary<string, object> data = new Dictionary<string, object>();
  95. data.Add("x", self.MapData.x);
  96. data.Add("y", self.MapData.y);
  97. data.Add("direction", self.MapData.direction);
  98. data.Add("hp", self.MapData.hp > 0 ? self.MapData.hp : self.Player.GetComponent<PlayerBtlComponent>().GetAllInflus(PlayerBtlData.MaxHP));
  99. data.Add("mp", self.MapData.mp);
  100. return data;
  101. }
  102. }
  103. }