大爷 1 год назад
Родитель
Сommit
01b8ba4005

+ 2 - 6
Unity/Assets/Scripts/Codes/Hotfix/Client/battle/BattleMgr.cs

@@ -103,8 +103,6 @@ namespace ET
         //单位进入战斗  
         protected void LayerEvent_ObjectEnter(ZoneLayer layer, ZoneObject obj)
         {
-            //Log.Debug($"OnObjectEnter: {obj}@{obj.ObjectID}");
-
             var unit = BattleUnitFactory.Instance.Create(obj);
             if(unit != null )
             {
@@ -127,12 +125,10 @@ namespace ET
                         }
                         UnitTemplateIdHash.Add(tid, bu);
                     }
+
+                    Log.Debug($"OnObjectEnter: {bu.ZUnit.TemplateID}@{obj.ObjectID}");
                 }
             }
-            else
-            {
-                Log.Error($"unknow object enter:{obj.Name} ID:{obj.ObjectID}");
-            }
         }
 
         //单位离开战斗   

+ 4 - 9
Unity/Assets/Scripts/Codes/Hotfix/Client/battle/BattleMgr_Cmd.cs

@@ -13,7 +13,7 @@ namespace ET
         public override void OnEvent(BattleFunc a)
         {
             Log.Debug($"Battle Func:{a.FuncIndex}");
-            asyncHandler(a.FuncIndex).Coroutine();
+            asyncHandler(a.FuncIndex);
         }
 
         //获得当前战场focus中心(当前塔位置)
@@ -33,7 +33,7 @@ namespace ET
             return new Vector2(0, 0);
         }
 
-        private async ETTask asyncHandler(BattleFunc.Index index)
+        private void asyncHandler(BattleFunc.Index index)
         {
             var session = PlayerComponent.Instance.ClientScene().GetComponent<SessionComponent>().Session;
             switch (index)
@@ -50,18 +50,13 @@ namespace ET
                         float x = centerpos.X + (float)(r * Math.Cos(ang));
                         float y = centerpos.Y - (float)(r * Math.Sin(ang));
 
-                        var ret = await session.Call(new C2G_AddUnitsToMap()
+                        session.Call(new C2G_AddUnitsToMap()
                         {
                             UnitId = id,
                             Force = 1,
                             X = (int)x,
                             Y = (int)y
-                        });
-
-                        if (ret.Error != 0)
-                        {
-                            Log.Error(ret.Message);
-                        }
+                        }).Coroutine();
                     }
                     break;
                 default:

+ 2 - 1
Unity/Assets/Scripts/Codes/Hotfix/Client/battle/BattleUnitFactory.cs

@@ -21,13 +21,13 @@ class BattleUnitFactory : Singleton<BattleUnitFactory>//, ISingletonUpdate
                     unit = ObjectPool.Instance.Fetch<BattlePlayer>();
                     break;
                 case UnitType.TYPE_MONSTER://怪物.
+                case UnitType.TYPE_SUMMON://召唤单位.
                     unit = ObjectPool.Instance.Fetch<BattleMonster>();
                     break;
 
                 case UnitType.TYPE_BUILDING://建筑.
                 case UnitType.TYPE_NPC://NPC.
                 case UnitType.TYPE_NEUTRALITY://NPC.
-                case UnitType.TYPE_SUMMON://召唤单位.
                 case UnitType.TYPE_PET:
                 case UnitType.TYPE_TRIGGER: //触发机关
                 default:
@@ -41,6 +41,7 @@ class BattleUnitFactory : Singleton<BattleUnitFactory>//, ISingletonUpdate
         }
         else if (zo is ZoneItem)//掉落物  
         {
+            Log.Error($"items mode not implements now.");
         }
 
         return unit;