ソースを参照

增加法术触发法术回环检测,避免因为编辑器配置错误导致StackOverflowException

大爷 1 年間 前
コミット
27e412bf60

+ 17 - 9
Unity/Assets/Scripts/Codes/HotfixView/Client/Scene/GameObjectPool.cs

@@ -147,7 +147,7 @@ namespace ET.Client
                 await CachePrefab($"Effect_{ef}");
             }
 
-            foreach(var sound in soundlist)
+            foreach (var sound in soundlist)
             {
                 var key = sound;
                 var m = Regex.Match(key, "/?res/sound/.*/([\\w_\\d]+)\\.assetbundles$");
@@ -155,7 +155,7 @@ namespace ET.Client
                 {
                     key = m.Groups[1].Value.ToLower();
                 }
-                if(audioPool.ContainsKey(key))
+                if (audioPool.ContainsKey(key))
                 {
                     continue;
                 }
@@ -179,18 +179,26 @@ namespace ET.Client
             }
         }
 
-        private void CacheSpellEffect(TemplateManager templates, int spellid, ref List<string> effectlist, ref List<string> soundlist)
+        private void CacheSpellEffect(TemplateManager templates, int spellid, ref List<string> effectlist, ref List<string> soundlist, int loopbackCheckid = 0)
         {
+            if(spellid == loopbackCheckid)
+            {
+                Log.Error($"found spell loopback: {loopbackCheckid}");
+                return;
+            }
+
             var spell = templates.getSpell(spellid);
             if (spell == null)
             {
                 Log.Error($"spell({spellid}) not exist");
                 return;
             }
+
             if (!spell.FileName.IsNullOrWhitespace())
             {
                 effectlist.Add(spell.FileName);
             }
+            Log.Debug($"cache spell :{spell.TemplateID}");
 
             var frame = spell.HitIntervalKeyFrame;
             if (frame != null)
@@ -201,7 +209,7 @@ namespace ET.Client
                 }
                 if (frame.Spell != null && frame.Spell.SpellID != 0)
                 {
-                    CacheSpellEffect(templates, frame.Spell.SpellID, ref effectlist, ref soundlist);
+                    CacheSpellEffect(templates, frame.Spell.SpellID, ref effectlist, ref soundlist, spellid);
                 }
                 if (frame.Attack != null)
                 {
@@ -212,7 +220,7 @@ namespace ET.Client
                     }
                     if (attack.Spell != null && attack.Spell.SpellID != 0)
                     {
-                        CacheSpellEffect(templates, attack.Spell.SpellID, ref effectlist, ref soundlist);
+                        CacheSpellEffect(templates, attack.Spell.SpellID, ref effectlist, ref soundlist, spellid);
                     }
                 }
             }
@@ -226,7 +234,7 @@ namespace ET.Client
                 }
                 if (frame.Spell != null && frame.Spell.SpellID != 0)
                 {
-                    CacheSpellEffect(templates, frame.Spell.SpellID, ref effectlist, ref soundlist);
+                    CacheSpellEffect(templates, frame.Spell.SpellID, ref effectlist, ref soundlist, spellid);
                 }
                 if (frame.Attack != null)
                 {
@@ -237,7 +245,7 @@ namespace ET.Client
                     }
                     if (attack.Spell != null && attack.Spell.SpellID != 0)
                     {
-                        CacheSpellEffect(templates, attack.Spell.SpellID, ref effectlist, ref soundlist);
+                        CacheSpellEffect(templates, attack.Spell.SpellID, ref effectlist, ref soundlist, spellid);
                     }
                 }
             }
@@ -250,7 +258,7 @@ namespace ET.Client
                 }
                 if (frm.Spell != null && frm.Spell.SpellID != 0)
                 {
-                    CacheSpellEffect(templates, frm.Spell.SpellID, ref effectlist, ref soundlist);
+                    CacheSpellEffect(templates, frm.Spell.SpellID, ref effectlist, ref soundlist, spellid);
                 }
                 if (frm.Attack != null)
                 {
@@ -261,7 +269,7 @@ namespace ET.Client
                     }
                     if (attack.Spell != null && attack.Spell.SpellID != 0)
                     {
-                        CacheSpellEffect(templates, attack.Spell.SpellID, ref effectlist, ref soundlist);
+                        CacheSpellEffect(templates, attack.Spell.SpellID, ref effectlist, ref soundlist, spellid);
                     }
                 }
             }