|
@@ -1,11 +1,14 @@
|
|
|
using CommonAI.Zone;
|
|
|
using CommonAI.ZoneClient;
|
|
|
+using CommonLang;
|
|
|
using CommonLang.Geometry;
|
|
|
using ET.Client;
|
|
|
using ET.EventType;
|
|
|
+using ET.Server;
|
|
|
using Sirenix.Utilities;
|
|
|
using System;
|
|
|
using System.IO;
|
|
|
+using System.Linq;
|
|
|
using XmdsCommon.Message;
|
|
|
|
|
|
namespace ET
|
|
@@ -18,6 +21,7 @@ namespace ET
|
|
|
private readonly MemoryStream writeBuffer = new MemoryStream(2048);
|
|
|
private EventDispatcher<Event> eventHandler;
|
|
|
private static CommonLang.Geometry.Vector3 vecTemp = new();
|
|
|
+ private HashMap<int, BattleUnit> UnitTemplateIdHash = new();
|
|
|
|
|
|
public void Awake()
|
|
|
{
|
|
@@ -111,6 +115,20 @@ namespace ET
|
|
|
UnitMgr.Instance.Actor = unit as BattleActor;
|
|
|
}
|
|
|
unit.OnAwake(obj);
|
|
|
+
|
|
|
+ if (unit is BattleUnit bu)
|
|
|
+ {
|
|
|
+ var tid = (obj as ZoneUnit).TemplateID;
|
|
|
+ if (ConstGame.TowerTemplateIDs.Contains(tid))
|
|
|
+ {
|
|
|
+ if (UnitTemplateIdHash.ContainsKey((tid)))
|
|
|
+ {
|
|
|
+ Log.Error($"Already exist unit({tid}) @{obj.ObjectID}");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ UnitTemplateIdHash.Add(tid, bu);
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
else
|
|
|
{
|
|
@@ -132,6 +150,15 @@ namespace ET
|
|
|
|
|
|
unit.OnSleep();
|
|
|
UnitMgr.Instance.RemoveUnit(obj.ObjectID);
|
|
|
+ if (unit is BattleUnit bu)
|
|
|
+ {
|
|
|
+ UnitTemplateIdHash.Remove(bu.ZUnit.TemplateID);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public BattleUnit GetUnitByTemplateID(int tid)
|
|
|
+ {
|
|
|
+ return UnitTemplateIdHash.ContainsKey(tid) ? UnitTemplateIdHash[tid] : null;
|
|
|
}
|
|
|
|
|
|
private void registerEventHandler()
|
|
@@ -154,6 +181,7 @@ namespace ET
|
|
|
{
|
|
|
var e = ev as UnitDeadEvent;
|
|
|
Log.Debug($"Unit({e.object_id}) dead");
|
|
|
+
|
|
|
EventSystem.Instance.Publish<PlayAnimatorEvent>(PlayAnimatorEvent.Static.Clone(
|
|
|
e.ObjectID, AnimatorEventType.Dead));
|
|
|
|