MapSystem.cs 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. using System;
  2. using System.Collections.Generic;
  3. using BattleIce;
  4. using Newtonsoft.Json;
  5. using Newtonsoft.Json.Linq;
  6. namespace ET.Server
  7. {
  8. [FriendOf(typeof (Map))]
  9. [FriendOf(typeof (BattleIceAgentComponent))]
  10. public static class MapSystem
  11. {
  12. public class MapAwakeSystem: AwakeSystem<Map, JObject>
  13. {
  14. /// <summary>
  15. /// 本地地图场景实体创建
  16. /// </summary>
  17. /// <param name="self"></param>
  18. /// <param name="opts"></param>
  19. protected override void Awake(Map self, JObject opts)
  20. {
  21. self.createTime = TimeHelper.ServerNow();
  22. Log.Debug($"create area opts:{JsonConvert.SerializeObject(opts, Formatting.Indented)}");
  23. self.LogicServerId = opts.SelectToken("logicServerId") != null? Convert.ToInt32(opts.SelectToken("logicServerId")) : 0;
  24. self.MapId = Convert.ToInt32(opts.SelectToken("areaId"));
  25. self.Prop = MapConfigCategory.Instance.Get(self.MapId);
  26. self.Type = self.Prop.Type;
  27. // 添加组件
  28. self.AddComponent<MapEventComponent, Map>(self);
  29. }
  30. }
  31. public class MapDestroySystem: DestroySystem<Map>
  32. {
  33. /// <summary>
  34. /// 本地地图场景实体销毁
  35. /// </summary>
  36. /// <param name="self"></param>
  37. protected override void Destroy(Map self)
  38. {
  39. }
  40. }
  41. public static ZoneManagerPrx GetZoneManager(this Map self)
  42. {
  43. return self.DomainScene().GetComponent<BattleIceAgentComponent>().IceZoneManager;
  44. }
  45. public static XmdsManagerPrx GetXmdsManager(this Map self)
  46. {
  47. return self.DomainScene().GetComponent<BattleIceAgentComponent>().IceXmdsManager;
  48. }
  49. public static GetPlayerData GetPlayerData(this Map self, long playerId)
  50. {
  51. string result = self.GetXmdsManager().getPlayerData(playerId.ToString().Trim(), true);
  52. return string.IsNullOrEmpty(result)? null : JsonConvert.DeserializeObject<GetPlayerData>(result);
  53. }
  54. /** 从战斗服同步角色数据 **/
  55. public static void SyncPlayerHistoryData(this Map self, WNPlayer player)
  56. {
  57. GetPlayerData result = self.GetPlayerData(player.GetId());
  58. if (result == null)
  59. {
  60. return;
  61. }
  62. player.GetComponent<PlayerTempDataComponent>().SyncNowData(self.MapId, self.InstanceId, result);
  63. player.GetComponent<PlayerTempDataComponent>().SyncHistoryData(self.Prop, self.InstanceId, result);
  64. }
  65. /** 场景添加角色 **/
  66. public static void AddPlayer(this Map self, WNPlayer player)
  67. {
  68. Log.Info($"addPlayer: playerId={player.GetId()}, mapId={self.MapId}, ip={player.Session.RemoteAddress}");
  69. self.SetForce(player);
  70. self.Players.TryAdd(player.GetId(), player);
  71. player.Map = self;
  72. }
  73. /** 获取场景角色 **/
  74. public static WNPlayer GetPlayer(this Map self, long playerId)
  75. {
  76. return self.Players.TryGetValue(playerId, out WNPlayer player) ? player : null;
  77. }
  78. /** 分配阵营 **/
  79. public static void SetForce(this Map self, WNPlayer player)
  80. {
  81. player.Force = (int)AreaForce.FORCEA;
  82. }
  83. /** 移除角色,通用框架接口 切换场景/掉线会自动调用,尽量 不要手动调用 **/
  84. public static void RemovePlayer(this Map self, WNPlayer player, bool keepObject)
  85. {
  86. Log.Info($"removePlayer: playerId={player.GetId()}, mapId={self.MapId}, ip={player.Session.RemoteAddress}");
  87. WNPlayer actorPlayer = self.GetPlayer(player.GetId());
  88. if (actorPlayer != null)
  89. {
  90. self.Players.Remove(player.GetId());
  91. }
  92. // 重置进入场景标识
  93. player.GetComponent<PlayerTempDataComponent>().MapData.ready = false;
  94. }
  95. /** 玩家进入场景请求 **/
  96. public static void PlayerEnterRequest(this Map self, WNPlayer player)
  97. {
  98. bool ready = player.GetComponent<PlayerTempDataComponent>().MapData.ready;
  99. if (ready)
  100. {
  101. Log.Info($"PlayerEnterRequest: playerId={player.GetId()}, ready={ready}");
  102. return;
  103. }
  104. try
  105. {
  106. string ToJSON4EnterScene = player.GetPlayerType() == 1 ? player.ToJSON4EnterSceneByUnitPlayer(self) : player.ToJSON4EnterScene(self);
  107. self.GetZoneManager().playerEnterRequest(player.GetId().ToString().Trim(), self.Id.ToString().Trim(), ToJSON4EnterScene);
  108. }
  109. catch (Exception e)
  110. {
  111. Log.Warning(
  112. $"playerEnterRequest: playerName={player.GetName()}, instanceId={self.Id}, mapName={self.Prop.Name}, serverID={self.BattleServerId}, e={e}");
  113. }
  114. }
  115. /** 玩家离开场景请求 **/
  116. public static void PlayerLeaveRequest(this Map self, WNPlayer player, bool keepObject)
  117. {
  118. try
  119. {
  120. self.GetZoneManager().playerLeaveRequest(player.GetId().ToString().Trim(), self.InstanceId.ToString().Trim(), keepObject);
  121. }
  122. catch (Exception e)
  123. {
  124. Log.Warning($"playerLeaveRequest: catch - {e}");
  125. }
  126. Log.Debug($"playerLeaveRequest--------------------{player.GetName()} - {self.InstanceId} - {self.Prop.Name}");
  127. }
  128. /** 绑定战斗服 **/
  129. public static void BindBattleServer(this Map self, WNPlayer player, string serverId)
  130. {
  131. self.BattleServerId = serverId;
  132. }
  133. /** 创建单位 **/
  134. public static async ETTask<int> AddUnits(this Map self, string instanceId, string data)
  135. {
  136. await ETTask.CompletedTask;
  137. return self.GetXmdsManager().addUnits(instanceId, data);
  138. }
  139. /** 创建单位 **/
  140. public static async ETTask<int> AddUnits(this Map self, Struct.MonsterUnit unit, bool needReturn)
  141. {
  142. List<Struct.MonsterUnit> listData = new List<Struct.MonsterUnit>();
  143. listData.Add(unit);
  144. int addUnitsResult = 0;
  145. if (needReturn) {
  146. addUnitsResult = self.GetXmdsManager().addUnits(self.Id.ToString().Trim(), JsonConvert.SerializeObject(listData, Formatting.Indented));
  147. Log.Info($"addUnits needReturn : mapId={self.MapId}, instanceId={self.Id.ToString().Trim()}, data={listData}, add units result={addUnitsResult}");
  148. } else
  149. {
  150. int objId = await self.AddUnits(self.Id.ToString().Trim(), JsonConvert.SerializeObject(listData, Formatting.Indented));
  151. Log.Info($"addUnits: mapId={self.MapId}, instanceId={self.Id.ToString().Trim()}, objId={objId}");
  152. }
  153. return addUnitsResult;
  154. }
  155. /** 移除单位 **/
  156. public static async ETTask RemoveUnit(this Map self, int unitId)
  157. {
  158. self.GetXmdsManager().removeUnit(self.Id.ToString().Trim(), unitId);
  159. await ETTask.CompletedTask;
  160. }
  161. /// <summary>
  162. /// 场景复活数据
  163. /// </summary>
  164. /// <param name="self"></param>
  165. /// <param name="type">1:原地复活;2:出生点复活;3:复活点复活. 4:技能复活.</param>
  166. public static string ReliveData(this Map self, ReliveType type)
  167. {
  168. JObject jsonObject = new ();
  169. jsonObject.Add("type", (int)type);
  170. jsonObject.Add("qty", 0);
  171. jsonObject.Add("itemType", "diamond");
  172. jsonObject.Add("hp", 8);
  173. jsonObject.Add("mp", 0);
  174. return JsonConvert.SerializeObject(jsonObject, Formatting.Indented);
  175. }
  176. }
  177. }