MapSystem.cs 6.9 KB

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