MapEventComponentSystem.cs 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  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. /** 玩家进场景后推的消息 **/
  35. public static void OnReady(this MapEventComponent self, WNPlayer player)
  36. {
  37. }
  38. /** 玩家登录事件 **/
  39. public static void OnPlayerLogin(this MapEventComponent self, WNPlayer player)
  40. {
  41. }
  42. /** 角色成功进入场景 **/
  43. public static void OnPlayerEntered(this MapEventComponent self, WNPlayer player)
  44. {
  45. }
  46. /** 单位死亡事件 **/
  47. public static void OnUnitDead(this MapEventComponent self, Map map, JObject msg)
  48. {
  49. Log.Debug($"单位死亡...");
  50. int unitType = Convert.ToInt32(msg.SelectToken("unitType"));
  51. // 攻击者
  52. long hitFinalPlayerId = msg.SelectToken("hitFinal").ToString() == ""? 0 : Convert.ToInt64(msg.SelectToken("hitFinal"));
  53. long belongPlayerId = msg.SelectToken("belongPlayerId").ToString() == ""? 0 : Convert.ToInt64(msg.SelectToken("belongPlayerId"));
  54. long[] atkAssistantList = JsonConvert.DeserializeObject<long[]>(Convert.ToString(msg.SelectToken("atkAssistantList")) ?? string.Empty);
  55. WNPlayer hitFinalPlayer = null;
  56. // 默认使用第一个摸怪玩家
  57. if (belongPlayerId > 0)
  58. {
  59. hitFinalPlayer = map.GetPlayer(belongPlayerId);
  60. }
  61. if (hitFinalPlayer == null && hitFinalPlayerId > 0)
  62. {
  63. hitFinalPlayer = map.GetPlayer(hitFinalPlayerId);
  64. }
  65. switch (unitType)
  66. {
  67. case 0:
  68. // 怪物死亡
  69. int unitTemplateId = Convert.ToInt32(msg.SelectToken("unitTemplateId"));
  70. Monster monsterProp = MonsterCategory.Instance.Get(unitTemplateId);
  71. if (monsterProp == null)
  72. {
  73. Log.Error($"unitDead not fount montster : {unitTemplateId}, {map.MapId}, {msg}");
  74. return;
  75. }
  76. // todo 怪物死亡处理逻辑
  77. Log.Debug($"怪物死亡处理...");
  78. break;
  79. case 1:
  80. // 玩家死亡
  81. long unitPlayerId = Convert.ToInt64(msg.SelectToken("unitPlayerId"));
  82. if (hitFinalPlayerId <= 0)
  83. {
  84. // 被boss杀死
  85. int attackerTemplateId = Convert.ToInt32(msg.SelectToken("attackerTemplateId"));
  86. Log.Debug($"玩家死亡...被boss杀死...playerId={unitPlayerId}, bossId={attackerTemplateId}");
  87. }
  88. else
  89. {
  90. // 被玩家杀死
  91. Log.Debug($"玩家死亡...被玩家杀死...playerId={unitPlayerId}, 攻击者={hitFinalPlayerId}");
  92. }
  93. // 复活
  94. WNPlayer unitPlayer = map.GetPlayer(unitPlayerId);
  95. if (unitPlayer == null)
  96. {
  97. return;
  98. }
  99. unitPlayer.AddComponent<PlayerReliveTimeComponent, WNPlayer>(unitPlayer);
  100. break;
  101. case 2:
  102. // 宠物死亡
  103. break;
  104. }
  105. }
  106. /** 副本消息 **/
  107. public static void OnMessageEvent(this MapEventComponent self, JObject msg)
  108. {
  109. }
  110. /** 场景结算事件 **/
  111. public static void OnGameOver(this MapEventComponent self, Map map)
  112. {
  113. if (map?.Players is not { Count: > 0 })
  114. {
  115. return;
  116. }
  117. foreach (WNPlayer player in map.Players.Values.Where(player => player != null))
  118. {
  119. // 记录玩家历史
  120. map.SyncPlayerHistoryData(player);
  121. // 战斗服场景玩家离开
  122. map.PlayerLeaveRequest(player, false);
  123. // 本地场景移除玩家
  124. map.RemovePlayer(player, false);
  125. // 战斗服结束场景
  126. map.GetZoneManager().destroyZoneRequest(map.Id.ToString());
  127. player.Map = null;
  128. }
  129. }
  130. /** 拾取道具 **/
  131. public static void OnPickItem(this MapEventComponent self, JObject msg)
  132. {
  133. }
  134. /** 击杀boss **/
  135. public static void OnKillBoss(this MapEventComponent self, JObject msg)
  136. {
  137. }
  138. /** 战斗统计 **/
  139. public static void OnBattleReport(this MapEventComponent self, Map map, JObject msg)
  140. {
  141. string data = Convert.ToString(msg.SelectToken("data"));
  142. if (string.IsNullOrEmpty(data))
  143. {
  144. return;
  145. }
  146. List<Struct.BattleReports> list = new List<Struct.BattleReports>();
  147. var battleReports = JsonConvert.DeserializeObject<List<Struct.BattleReports>>(data);
  148. if (battleReports is { Count: > 0 })
  149. {
  150. foreach (Struct.BattleReports report in battleReports)
  151. {
  152. // 过滤一下非我方单位
  153. if (report.Force != 1)
  154. {
  155. continue;
  156. }
  157. uint ID = report.ID;
  158. long PlayerUUID = string.IsNullOrEmpty(report.PlayerUUID)? 0 : Convert.ToInt64(report.PlayerUUID);
  159. int TemplateID = report.TemplateId;
  160. int Force = report.Force;
  161. int TotalDamage = report.TotalDamage;
  162. string name = "";
  163. if (PlayerUUID > 0)
  164. {
  165. name = "玩家-" + TemplateID;
  166. }
  167. else
  168. {
  169. if (TemplateID > 0)
  170. {
  171. Monster prop = MonsterCategory.Instance.Get(TemplateID);
  172. if (prop != null)
  173. {
  174. name = prop.Name;
  175. }
  176. }
  177. }
  178. list.Add(new Struct.BattleReports(ID, report.PlayerUUID, TemplateID, name, Force, TotalDamage));
  179. }
  180. }
  181. map.GetComponent<MapRankComponent>().UpdateRank(list, map);
  182. }
  183. }
  184. }