MapEventComponentSystem.cs 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text.RegularExpressions;
  5. using Newtonsoft.Json;
  6. using Newtonsoft.Json.Linq;
  7. namespace ET.Server
  8. {
  9. [FriendOf(typeof (MapEventComponent))]
  10. [FriendOf(typeof (Map))]
  11. public static class MapEventComponentSystem
  12. {
  13. public class MapEventComponentAwakeSystem: AwakeSystem<MapEventComponent>
  14. {
  15. /// <summary>
  16. /// 场景事件组件创建
  17. /// </summary>
  18. /// <param name="self"></param>
  19. protected override void Awake(MapEventComponent self)
  20. {
  21. Log.Info($"创建战斗服事件组件...");
  22. }
  23. }
  24. public class MapEventComponentDestroySystem: DestroySystem<MapEventComponent>
  25. {
  26. /// <summary>
  27. /// 场景事件组件销毁
  28. /// </summary>
  29. /// <param name="self"></param>
  30. protected override void Destroy(MapEventComponent self)
  31. {
  32. Log.Info($"销毁战斗服事件组件...");
  33. }
  34. }
  35. /// <summary>
  36. /// 副本消息
  37. /// </summary>
  38. /// <param name="self"></param>
  39. /// <param name="msg"></param>
  40. public static void OnMessage(this MapEventComponent self, JObject json)
  41. {
  42. string msg = Convert.ToString(json.SelectToken("msg"));
  43. string[] parames = msg.Split(":");
  44. switch (parames[0])
  45. {
  46. case "Dead":
  47. {
  48. if ("Tower1".Equals(parames[1]))
  49. {
  50. return;
  51. }
  52. else if ("Tower2".Equals(parames[1]))
  53. {
  54. Log.Debug($"塔2死亡事件...");
  55. self.GetParent<Map>().DeadUnits.Add(1002);
  56. return;
  57. } else if ("Tower3".Equals(parames[1]))
  58. {
  59. Log.Debug($"塔3死亡事件...");
  60. self.GetParent<Map>().DeadUnits.Add(1003);
  61. return;
  62. }
  63. else
  64. {
  65. int objId = int.Parse(parames[1]);
  66. if (objId > 0)
  67. {
  68. Log.Debug($"单位:{objId}死亡事件...");
  69. Map map = self.GetParent<Map>();
  70. Struct.UnitPlayerData unitPlayerData = map.GetUnitPlayerByObjId(objId);
  71. if (unitPlayerData != null)
  72. {
  73. unitPlayerData.DeadState = 1;
  74. }
  75. return;
  76. }
  77. }
  78. return;
  79. }
  80. case "Revive":
  81. {
  82. int objId = int.Parse(parames[1]);
  83. if (objId > 0)
  84. {
  85. Log.Debug($"单位:{objId}复活事件...");
  86. Map map = self.GetParent<Map>();
  87. Struct.UnitPlayerData unitPlayerData = map.GetUnitPlayerByObjId(objId);
  88. if (unitPlayerData != null)
  89. {
  90. unitPlayerData.DeadState = 0;
  91. }
  92. return;
  93. }
  94. return;
  95. }
  96. }
  97. }
  98. private static void TransferUnitsToNewTower(this MapEventComponent self)
  99. {
  100. Map map = self.GetParent<Map>();
  101. int cnt = 0;
  102. foreach(Struct.UnitPlayerData player in map.UnitPlayers.Values)
  103. {
  104. //TODO: 转移坐标为当前战斗区域中的随机位置
  105. map.GetXmdsManager().transferUnit(map.Id.ToString(), player.ObjId, 178f + (cnt++), 139f);
  106. }
  107. Log.Debug($"transfer unit: {cnt}");
  108. }
  109. /// <summary>
  110. /// 场景结算事件
  111. /// </summary>
  112. /// <param name="self"></param>
  113. public static void OnGameOver(this MapEventComponent self)
  114. {
  115. Map map = self.GetParent<Map>();
  116. map.IsGameOver = true;
  117. if (map.Player == null)
  118. {
  119. return;
  120. }
  121. // 场景结束逻辑
  122. map.GetComponent<MapRankComponent>().OnGameOver();
  123. // 记录玩家历史
  124. map.SyncPlayerHistoryData(map.Player);
  125. // 战斗服场景玩家离开
  126. map.PlayerLeaveRequest(map.Player, false);
  127. // 本地场景移除玩家
  128. map.RemovePlayer(map.Player, false);
  129. // 战斗服结束场景
  130. map.GetZoneManager().destroyZoneRequest(map.Id.ToString());
  131. map.Player.Map = null;
  132. }
  133. /// <summary>
  134. /// 拾取道具
  135. /// </summary>
  136. /// <param name="self"></param>
  137. /// <param name="msg"></param>
  138. public static void OnPickItem(this MapEventComponent self, JObject msg)
  139. {
  140. }
  141. /// <summary>
  142. /// 击杀boss
  143. /// </summary>
  144. /// <param name="self"></param>
  145. /// <param name="msg"></param>
  146. public static void OnKillBoss(this MapEventComponent self, JObject msg)
  147. {
  148. }
  149. /// <summary>
  150. /// 战报统计
  151. /// </summary>
  152. /// <param name="self"></param>
  153. /// <param name="msg"></param>
  154. public static void OnBattleReport(this MapEventComponent self, JObject msg)
  155. {
  156. }
  157. }
  158. }