MapEventComponentSystem.cs 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using Newtonsoft.Json;
  5. using Newtonsoft.Json.Linq;
  6. namespace ET.Server
  7. {
  8. [FriendOf(typeof (MapEventComponent))]
  9. [FriendOfAttribute(typeof (Map))]
  10. public static class MapEventComponentSystem
  11. {
  12. public class MapEventComponentAwakeSystem: AwakeSystem<MapEventComponent>
  13. {
  14. /// <summary>
  15. /// 场景事件组件创建
  16. /// </summary>
  17. /// <param name="self"></param>
  18. protected override void Awake(MapEventComponent self)
  19. {
  20. Log.Info($"创建事件组件...");
  21. }
  22. }
  23. public class MapEventComponentDestroySystem: DestroySystem<MapEventComponent>
  24. {
  25. /// <summary>
  26. /// 场景事件组件销毁
  27. /// </summary>
  28. /// <param name="self"></param>
  29. protected override void Destroy(MapEventComponent self)
  30. {
  31. Log.Info($"销毁事件组件...");
  32. }
  33. }
  34. /// <summary>
  35. /// 玩家进场景后推的消息
  36. /// </summary>
  37. /// <param name="self"></param>
  38. /// <param name="player"></param>
  39. public static void OnReady(this MapEventComponent self, WNPlayer player)
  40. {
  41. }
  42. /// <summary>
  43. /// 玩家登录事件
  44. /// </summary>
  45. /// <param name="self"></param>
  46. /// <param name="player"></param>
  47. public static void OnPlayerLogin(this MapEventComponent self, WNPlayer player)
  48. {
  49. }
  50. /// <summary>
  51. /// 角色成功进入场景
  52. /// </summary>
  53. /// <param name="self"></param>
  54. /// <param name="player"></param>
  55. public static void OnPlayerEntered(this MapEventComponent self, WNPlayer player)
  56. {
  57. }
  58. /// <summary>
  59. /// 单位死亡事件
  60. /// </summary>
  61. /// <param name="self"></param>
  62. /// <param name="msg"></param>
  63. public static void OnUnitDead(this MapEventComponent self, JObject msg)
  64. {
  65. }
  66. /// <summary>
  67. /// 塔死亡事件
  68. /// </summary>
  69. /// <param name="self"></param>
  70. /// <param name="msg"></param>
  71. public static void OnDead(this MapEventComponent self, JObject msg)
  72. {
  73. Log.Debug($"塔死亡事件...");
  74. }
  75. /// <summary>
  76. /// 副本消息
  77. /// </summary>
  78. /// <param name="self"></param>
  79. /// <param name="msg"></param>
  80. public static void OnMessageEvent(this MapEventComponent self, JObject msg)
  81. {
  82. }
  83. /// <summary>
  84. /// 场景结算事件
  85. /// </summary>
  86. /// <param name="self"></param>
  87. public static void OnGameOver(this MapEventComponent self)
  88. {
  89. Map map = self.GetParent<Map>();
  90. map.IsGameOver = true;
  91. if (map?.Players is not { Count: > 0 })
  92. {
  93. return;
  94. }
  95. foreach (WNPlayer player in map.Players.Values.Where(player => player != null))
  96. {
  97. // 记录玩家历史
  98. map.SyncPlayerHistoryData(player);
  99. // 战斗服场景玩家离开
  100. map.PlayerLeaveRequest(player, false);
  101. // 本地场景移除玩家
  102. map.RemovePlayer(player, false);
  103. // 战斗服结束场景
  104. map.GetZoneManager().destroyZoneRequest(map.Id.ToString());
  105. player.Map = null;
  106. }
  107. }
  108. /// <summary>
  109. /// 拾取道具
  110. /// </summary>
  111. /// <param name="self"></param>
  112. /// <param name="msg"></param>
  113. public static void OnPickItem(this MapEventComponent self, JObject msg)
  114. {
  115. }
  116. /// <summary>
  117. /// 击杀boss
  118. /// </summary>
  119. /// <param name="self"></param>
  120. /// <param name="msg"></param>
  121. public static void OnKillBoss(this MapEventComponent self, JObject msg)
  122. {
  123. }
  124. /// <summary>
  125. /// 战报统计
  126. /// </summary>
  127. /// <param name="self"></param>
  128. /// <param name="msg"></param>
  129. public static void OnBattleReport(this MapEventComponent self, JObject msg)
  130. {
  131. string data = Convert.ToString(msg.SelectToken("data"));
  132. if (string.IsNullOrEmpty(data))
  133. {
  134. return;
  135. }
  136. List<Struct.BattleReports> battleReports = JsonConvert.DeserializeObject<List<Struct.BattleReports>>(data);
  137. if (battleReports is not { Count: > 0 })
  138. {
  139. return;
  140. }
  141. Map map = self.GetParent<Map>();
  142. List<Struct.BattleReports> list = (from report in battleReports
  143. where report.Force == 1
  144. let ID = report.ID
  145. let PlayerUUID = string.IsNullOrEmpty(report.PlayerUUID)? "0" : report.PlayerUUID
  146. let TemplateID = report.TemplateId
  147. let Name = "玩家" + ID + "." + TemplateID
  148. let Force = report.Force
  149. let TotalDamage = report.TotalDamage
  150. select new Struct.BattleReports(ID, PlayerUUID, TemplateID, Name, Force, TotalDamage)).ToList();
  151. map.GetComponent<MapRankComponent>().UpdateRank(list, map);
  152. }
  153. }
  154. }