MapEventComponentSystem.cs 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  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 msg)
  41. {
  42. string str = Convert.ToString(msg.SelectToken("msg"));
  43. string[] parames = str.Split(":");
  44. switch (parames[0])
  45. {
  46. case "Dead":
  47. {
  48. if ("Tower1".Equals(parames[1]))
  49. {
  50. Log.Debug($"塔1死亡事件...");
  51. Map map = self.GetParent<Map>();
  52. map.CurBattleIndex = 1;
  53. map.TransferUnitsToNewTower();
  54. }
  55. else if ("Tower2".Equals(parames[1]))
  56. {
  57. Log.Debug($"塔2死亡事件...");
  58. Map map = self.GetParent<Map>();
  59. map.CurBattleIndex = 2;
  60. map.TransferUnitsToNewTower();
  61. }
  62. else if ("Tower3".Equals(parames[1]))
  63. {
  64. Log.Debug($"塔3死亡事件...");
  65. }
  66. else
  67. {
  68. int objId = int.Parse(parames[1]);
  69. if (objId > 0 && objId != 1 && objId != 2 && objId != 3)
  70. {
  71. Map map = self.GetParent<Map>();
  72. Struct.UnitPlayerData unitPlayerData = map.GetUnitPlayerByObjId(objId);
  73. if (unitPlayerData != null)
  74. {
  75. unitPlayerData.DeadState = 1;
  76. if (!map.DeadUnitPlayer.Exists(o => o == unitPlayerData.ObjId))
  77. {
  78. map.DeadUnitPlayer.Add(unitPlayerData.ObjId);
  79. }
  80. }
  81. }
  82. }
  83. break;
  84. }
  85. case "Revive":
  86. {
  87. int objId = int.Parse(parames[1]);
  88. if (objId > 0)
  89. {
  90. Map map = self.GetParent<Map>();
  91. Struct.UnitPlayerData unitPlayerData = map.GetUnitPlayerByObjId(objId);
  92. if (unitPlayerData != null)
  93. {
  94. unitPlayerData.DeadState = 0;
  95. if (map.DeadUnitPlayer.Exists(o => o == unitPlayerData.ObjId))
  96. {
  97. map.DeadUnitPlayer.Remove(unitPlayerData.ObjId);
  98. }
  99. }
  100. }
  101. break;
  102. }
  103. }
  104. }
  105. /// <summary>
  106. /// 场景结算事件
  107. /// </summary>
  108. /// <param name="self"></param>
  109. public static void OnGameOver(this MapEventComponent self)
  110. {
  111. Map map = self.GetParent<Map>();
  112. map.IsGameOver = true;
  113. if (map.Player == null)
  114. {
  115. return;
  116. }
  117. // 场景结束排行榜逻辑
  118. map.GetComponent<MapRankComponent>().OnGameOver();
  119. // 玩家离开
  120. map.Player.GetComponent<PlayerTempDataComponent>().MapData.ready = false;
  121. // 记录玩家历史
  122. map.SyncPlayerHistoryData(map.Player);
  123. // 战斗服场景玩家离开
  124. map.PlayerLeaveRequest(map.Player, false);
  125. // 本地场景移除玩家
  126. map.RemovePlayer(map.Player, false);
  127. // 移除本地玩家数据
  128. // self.DomainScene().GetComponent<GamePlayerComponent>().Remove(map.Player.GetId());
  129. // 战斗服结束场景
  130. map.DestroyZoneRequest();
  131. // 移除本地场景数据
  132. map.DomainScene().GetComponent<GameMapComponent>().Remove(map.Id, map.RoomId);
  133. map.Player.Map = null;
  134. map.Dispose();
  135. }
  136. /// <summary>
  137. /// 拾取道具
  138. /// </summary>
  139. /// <param name="self"></param>
  140. /// <param name="msg"></param>
  141. public static void OnPickItem(this MapEventComponent self, JObject msg)
  142. {
  143. }
  144. /// <summary>
  145. /// 击杀boss
  146. /// </summary>
  147. /// <param name="self"></param>
  148. /// <param name="msg"></param>
  149. public static void OnKillBoss(this MapEventComponent self, JObject msg)
  150. {
  151. }
  152. /// <summary>
  153. /// 战报统计
  154. /// </summary>
  155. /// <param name="self"></param>
  156. /// <param name="msg"></param>
  157. public static void OnBattleReport(this MapEventComponent self, JObject msg)
  158. {
  159. }
  160. }
  161. }