Kaynağa Gözat

增加展示编辑器定义的UI事件

大爷 1 yıl önce
ebeveyn
işleme
dc577d458e

+ 18 - 33
Unity/Assets/Scripts/Codes/Hotfix/Client/battle/BattleMgr.cs

@@ -143,10 +143,6 @@ namespace ET
                     }
 
                     //Log.Debug($"OnObjectEnter: {bu.ZUnit.TemplateID}@{obj.ObjectID}");
-                    if(bu.ZUnit.Info.Properties is XmdsUnitProperties prop && prop.GameStatusType == XmdsUnitProperties.StatusType.SpecialBoss)
-                    {
-                        EventSystem.Instance.Publish(BattleMsgEvent.Static.Clone($"发现怪兽:'<font color=#fe3824>{prop.ServerData.BaseInfo.name}</font>',你过来啊!"));
-                    }
                 }
             }
         }
@@ -200,11 +196,6 @@ namespace ET
                     {
                         EventSystem.Instance.Publish(PlayEffectEvent.Static.Clone(launcheffect, unit.Id, CommonLang.Geometry.Vector3.Zero));
                     }
-
-                    if (bunit.ZUnit.Info.Properties is XmdsUnitProperties prop)
-                    {
-                        EventSystem.Instance.Publish(BattleMsgEvent.Static.Clone($"'<font color=#fe3824>{prop.ServerData.BaseInfo.name}</font>'受到了怪物的猛烈攻击"));
-                    }
                 }
             });
             eventHandler.AddListener<ShowTipsEventB2C>((ev) =>
@@ -219,7 +210,7 @@ namespace ET
                 if(unit != null && unit is BattleUnit bunit)
                 {
                     EventSystem.Instance.Publish(PlayAnimatorEvent.Clone(
-    e.ObjectID, AnimatorEventType.Dead));
+    e.ObjectID, PlayAnimatorEvent.AniType.Dead));
 
                     var launcheffect = bunit.ZUnit.Info.DeadEffect;
                     if (launcheffect != null)
@@ -242,18 +233,6 @@ namespace ET
                         vecTemp.Set(unit.ZoneObject.X, unit.ZoneObject.Y, unit.ZoneObject.Z);
                         EventSystem.Instance.Publish(PlayEffectEvent.Static.Clone(launcheffect, unit.Id, vecTemp));
                     }
-
-                    if (bunit.ZUnit.Info.Properties is XmdsUnitProperties prop)
-                    {
-                        if (prop.GameStatusType == XmdsUnitProperties.StatusType.SpecialElite)
-                        {
-                            EventSystem.Instance.Publish(BattleMsgEvent.Static.Clone($"'<font color=#ff7d00>{prop.ServerData.BaseInfo.name}</font>'失去了所有能量"));
-                        }
-                        else if(prop.GameStatusType == XmdsUnitProperties.StatusType.SpecialBoss)
-                        {
-                            EventSystem.Instance.Publish(BattleMsgEvent.Static.Clone($"'<font color=#fe3824>{prop.ServerData.BaseInfo.name}</font>',被打的倒地不起"));
-                        }
-                    }
                 }
             });
             eventHandler.AddListener<UnitRebirthEvent>((ev) =>
@@ -327,14 +306,6 @@ namespace ET
                     vecTemp.Set(unit.ZoneObject.X, unit.ZoneObject.Y, unit.ZoneObject.Z);
                 }
                 EventSystem.Instance.Publish(PlayEffectEvent.Static.Clone(e.effect, e.ObjectID, vecTemp));
-
-                if(e.effect.Name == "chuanyunjian01")
-                {
-                    if (unit is BattleUnit bu && bu.ZUnit.Info.Properties is XmdsUnitProperties prop)
-                    {
-                        EventSystem.Instance.Publish(BattleMsgEvent.Static.Clone($"'<font color=#fe3824>{prop.ServerData.BaseInfo.name}</font>'快要支撑不住了,宝宝们快来注入能量"));
-                    }
-                }
             });
             eventHandler.AddListener<XmdsUnitPropEventB2C>((ev) =>
             {
@@ -368,10 +339,24 @@ namespace ET
             eventHandler.AddListener<ClientMsgEvent>((ev) =>
             {
                 var e = ev as ClientMsgEvent;
-                Log.Debug($">>>Battle client event: {e.Message}");
-                /*if(e.Message == BattleNotify.CameraOk.ToString() )
+                var msg = e.Message;
+                Log.Debug($">>>Battle event message: {msg}");
+
+                if (msg.StartsWith("item:"))
                 {
-                }*/
+                    EventSystem.Instance.Publish(ShowUIAnimation.Clone(ShowUIAnimation.AniType.Gift, System.Convert.ToInt32(msg[5..])));
+                    return;
+                }
+                else if(msg.StartsWith("bosscome:"))
+                {
+                    EventSystem.Instance.Publish(ShowUIAnimation.Clone(ShowUIAnimation.AniType.Monster, System.Convert.ToInt32(msg[9..])));
+                    return;
+                }
+                else if(msg.StartsWith("towerhp"))
+                {
+                    EventSystem.Instance.Publish(ShowUIAnimation.Clone(ShowUIAnimation.AniType.Tower, 0));
+                    return;
+                }
             });
             /*BubbleTalkEvent
             AddEffectEvent

+ 34 - 28
Unity/Assets/Scripts/Codes/HotfixView/Client/UI/HUD/CreateHUD.cs

@@ -112,44 +112,50 @@ namespace ET.Client
             await ETTask.CompletedTask;
         }
     }
-
     [Event]
-    public class BattleMsgHandler : BEvent<BattleMsgEvent>
+    public class ShowUIAnimationHandler : BEvent<ShowUIAnimation>
     {
-        int CurIndex = 0;
-        protected override async ETTask OnEvent(BattleMsgEvent a)
+        protected override async ETTask OnEvent(ShowUIAnimation a)
         {
             var view = UIHelper.GetUI("HUD") as GComponent;
-            if (view != null)
-            {
-                var list = view.GetChild("InfoList").asList;
-
-                if (CurIndex >= list.numChildren)
-                {
-                    CurIndex = 0;
-                }
+            if (view == null) return;
 
-                var comp = list.GetChildAt(CurIndex).asCom;
-                var txt = comp.GetChild("text");
-                txt.text = a.msg;
+            switch(a.Type)
+            {
+                case ShowUIAnimation.AniType.Gift:
+                    var trans = view.GetTransition($"t_gift_00{a.Param1}");
+                    if (trans != null)
+                    {
+                        trans.Play();
+                    }
+                    else
+                    {
+                        Log.Error($"NotFound UIAni: {a.Type},{a.Param1}");
+                    }
+                    break;
+                case ShowUIAnimation.AniType.Monster:
+                    trans = view.GetTransition("t_warning");
+                    trans.Play();
 
-                ++CurIndex;
+                    trans = view.GetTransition($"t_warning_00{a.Param1}");
+                    if (trans != null)
+                    {
+                        trans.Play();
+                    }
+                    else
+                    {
+                        Log.Error($"NotFound UIAni: {a.Type},{a.Param1}");
+                    }
+                    break;
+                case ShowUIAnimation.AniType.Tower:
+                    trans = view.GetTransition("t_help");
+                    trans.Play();
+                    break;
             }
-            await ETTask.CompletedTask;
-        }
-    }
-
-    /*[Event]
-    public class CameraOkHandler : BEvent<CameraOkEvent>
-    {
-        protected override async ETTask OnEvent(CameraOkEvent a)
-        {
-            var view = UIHelper.GetUI("HUD") as GComponent;
-            view.GetChild("btn_start").visible = true;
 
             await ETTask.CompletedTask;
         }
-    }*/
+    }
     
 
     public static class HUDMgr