using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; using Newtonsoft.Json; using Newtonsoft.Json.Linq; namespace ET.Server { [FriendOf(typeof (MapEventComponent))] [FriendOf(typeof (Map))] public static class MapEventComponentSystem { public class MapEventComponentAwakeSystem: AwakeSystem { /// /// 场景事件组件创建 /// /// protected override void Awake(MapEventComponent self) { Log.Info($"创建战斗服事件组件..."); } } public class MapEventComponentDestroySystem: DestroySystem { /// /// 场景事件组件销毁 /// /// protected override void Destroy(MapEventComponent self) { Log.Info($"销毁战斗服事件组件..."); } } /// /// 副本消息 /// /// /// public static void OnMessage(this MapEventComponent self, JObject msg) { string str = Convert.ToString(msg.SelectToken("msg")); string[] parames = str.Split(":"); switch (parames[0]) { case "Dead": { if ("Tower1".Equals(parames[1])) { Log.Debug($"塔1死亡事件..."); } else if ("Tower2".Equals(parames[1])) { Log.Debug($"塔2死亡事件..."); } else if ("Tower3".Equals(parames[1])) { Log.Debug($"塔3死亡事件..."); } else { int objId = int.Parse(parames[1]); Log.Debug($"场景单位死亡...objId:{objId}"); } break; } case "Revive": { int objId = int.Parse(parames[1]); if (objId > 0) { Log.Debug($"场景单位复活...objId:{objId}"); } break; } } } /// /// 场景结算事件 /// /// public static void OnGameOver(this MapEventComponent self) { Map map = self.GetParent(); if (map == null) { return; } Log.Debug($"场景结算事件..."); } /// /// 拾取道具 /// /// /// public static void OnPickItem(this MapEventComponent self, JObject msg) { } /// /// 击杀boss /// /// /// public static void OnKillBoss(this MapEventComponent self, JObject msg) { } /// /// 战报统计 /// /// /// public static void OnBattleReport(this MapEventComponent self, JObject msg) { } } }