|
@@ -20,7 +20,7 @@ namespace ET
|
|
|
#if ENABLE_VIEW && UNITY_EDITOR
|
|
|
private UnityEngine.GameObject viewGO;
|
|
|
#endif
|
|
|
-
|
|
|
+
|
|
|
[BsonIgnore]
|
|
|
public long InstanceId
|
|
|
{
|
|
@@ -72,7 +72,7 @@ namespace ET
|
|
|
this.status &= ~EntityStatus.IsRegister;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+
|
|
|
if (!value)
|
|
|
{
|
|
|
Root.Instance.Remove(this.InstanceId);
|
|
@@ -88,7 +88,7 @@ namespace ET
|
|
|
{
|
|
|
this.viewGO = new UnityEngine.GameObject(this.ViewName);
|
|
|
this.viewGO.AddComponent<ComponentView>().Component = this;
|
|
|
- this.viewGO.transform.SetParent(this.Parent == null?
|
|
|
+ this.viewGO.transform.SetParent(this.Parent == null?
|
|
|
UnityEngine.GameObject.Find("Global").transform : this.Parent.viewGO.transform);
|
|
|
}
|
|
|
else
|
|
@@ -98,12 +98,12 @@ namespace ET
|
|
|
#endif
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
protected virtual string ViewName
|
|
|
{
|
|
|
get
|
|
|
{
|
|
|
- return this.GetType().Name;
|
|
|
+ return this.GetType().Name;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -140,7 +140,7 @@ namespace ET
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
[BsonIgnore]
|
|
|
protected bool IsNew
|
|
|
{
|
|
@@ -175,7 +175,7 @@ namespace ET
|
|
|
{
|
|
|
throw new Exception($"cant set parent null: {this.GetType().Name}");
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
if (value == this)
|
|
|
{
|
|
|
throw new Exception($"cant set parent self: {this.GetType().Name}");
|
|
@@ -197,7 +197,7 @@ namespace ET
|
|
|
}
|
|
|
this.parent.RemoveFromChildren(this);
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
this.parent = value;
|
|
|
this.IsComponent = false;
|
|
|
this.parent.AddToChildren(this);
|
|
@@ -215,18 +215,18 @@ namespace ET
|
|
|
{
|
|
|
throw new Exception($"cant set parent null: {this.GetType().Name}");
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
if (value == this)
|
|
|
{
|
|
|
throw new Exception($"cant set parent self: {this.GetType().Name}");
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
// 严格限制parent必须要有domain,也就是说parent必须在数据树上面
|
|
|
if (value.Domain == null)
|
|
|
{
|
|
|
throw new Exception($"cant set parent because parent domain is null: {this.GetType().Name} {value.GetType().Name}");
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
if (this.parent != null) // 之前有parent
|
|
|
{
|
|
|
// parent相同,不设置
|
|
@@ -276,20 +276,20 @@ namespace ET
|
|
|
{
|
|
|
throw new Exception($"domain cant set null: {this.GetType().Name}");
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
if (this.domain == value)
|
|
|
{
|
|
|
return;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
Entity preDomain = this.domain;
|
|
|
this.domain = value;
|
|
|
-
|
|
|
+
|
|
|
if (preDomain == null)
|
|
|
{
|
|
|
this.InstanceId = IdGenerater.Instance.GenerateInstanceId();
|
|
|
this.IsRegister = true;
|
|
|
-
|
|
|
+
|
|
|
// 反序列化出来的需要设置父子关系
|
|
|
if (this.componentsDB != null)
|
|
|
{
|
|
@@ -436,30 +436,6 @@ namespace ET
|
|
|
this.IsRegister = false;
|
|
|
this.InstanceId = 0;
|
|
|
|
|
|
- // 清理Component
|
|
|
- if (this.components != null)
|
|
|
- {
|
|
|
- foreach (KeyValuePair<Type, Entity> kv in this.components)
|
|
|
- {
|
|
|
- kv.Value.Dispose();
|
|
|
- }
|
|
|
-
|
|
|
- this.components.Clear();
|
|
|
- ObjectPool.Instance.Recycle(this.components);
|
|
|
- this.components = null;
|
|
|
-
|
|
|
- // 创建的才需要回到池中,从db中不需要回收
|
|
|
- if (this.componentsDB != null)
|
|
|
- {
|
|
|
- this.componentsDB.Clear();
|
|
|
- if (this.IsNew)
|
|
|
- {
|
|
|
- ObjectPool.Instance.Recycle(this.componentsDB);
|
|
|
- this.componentsDB = null;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
// 清理Children
|
|
|
if (this.children != null)
|
|
|
{
|
|
@@ -484,6 +460,30 @@ namespace ET
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ // 清理Component
|
|
|
+ if (this.components != null)
|
|
|
+ {
|
|
|
+ foreach (KeyValuePair<Type, Entity> kv in this.components)
|
|
|
+ {
|
|
|
+ kv.Value.Dispose();
|
|
|
+ }
|
|
|
+
|
|
|
+ this.components.Clear();
|
|
|
+ ObjectPool.Instance.Recycle(this.components);
|
|
|
+ this.components = null;
|
|
|
+
|
|
|
+ // 创建的才需要回到池中,从db中不需要回收
|
|
|
+ if (this.componentsDB != null)
|
|
|
+ {
|
|
|
+ this.componentsDB.Clear();
|
|
|
+ if (this.IsNew)
|
|
|
+ {
|
|
|
+ ObjectPool.Instance.Recycle(this.componentsDB);
|
|
|
+ this.componentsDB = null;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
// 触发Destroy事件
|
|
|
if (this is IDestroy)
|
|
|
{
|
|
@@ -507,7 +507,7 @@ namespace ET
|
|
|
this.parent = null;
|
|
|
|
|
|
base.Dispose();
|
|
|
-
|
|
|
+
|
|
|
if (this.IsFromPool)
|
|
|
{
|
|
|
ObjectPool.Instance.Recycle(this);
|
|
@@ -521,7 +521,7 @@ namespace ET
|
|
|
{
|
|
|
return;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
this.componentsDB ??= ObjectPool.Instance.Fetch<HashSet<Entity>>();
|
|
|
this.componentsDB.Add(component);
|
|
|
}
|
|
@@ -532,7 +532,7 @@ namespace ET
|
|
|
{
|
|
|
return;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
if (this.componentsDB == null)
|
|
|
{
|
|
|
return;
|
|
@@ -579,7 +579,7 @@ namespace ET
|
|
|
this.children.TryGetValue(id, out Entity child);
|
|
|
return child as K;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public void RemoveChild(long id)
|
|
|
{
|
|
|
if (this.children == null)
|
|
@@ -591,7 +591,7 @@ namespace ET
|
|
|
{
|
|
|
return;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
this.children.Remove(id);
|
|
|
child.Dispose();
|
|
|
}
|
|
@@ -697,7 +697,7 @@ namespace ET
|
|
|
{
|
|
|
return null;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
// 如果有IGetComponent接口,则触发GetComponentSystem
|
|
|
if (this is IGetComponent)
|
|
|
{
|
|
@@ -706,7 +706,7 @@ namespace ET
|
|
|
|
|
|
return component;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
private static Entity Create(Type type, bool isFromPool)
|
|
|
{
|
|
|
Entity component;
|
|
@@ -753,7 +753,7 @@ namespace ET
|
|
|
component.Id = this.Id;
|
|
|
component.ComponentParent = this;
|
|
|
EventSystem.Instance.Awake(component);
|
|
|
-
|
|
|
+
|
|
|
if (this is IAddComponent)
|
|
|
{
|
|
|
EventSystem.Instance.AddComponent(this, component);
|
|
@@ -773,7 +773,7 @@ namespace ET
|
|
|
component.Id = this.Id;
|
|
|
component.ComponentParent = this;
|
|
|
EventSystem.Instance.Awake(component);
|
|
|
-
|
|
|
+
|
|
|
if (this is IAddComponent)
|
|
|
{
|
|
|
EventSystem.Instance.AddComponent(this, component);
|
|
@@ -793,7 +793,7 @@ namespace ET
|
|
|
component.Id = this.Id;
|
|
|
component.ComponentParent = this;
|
|
|
EventSystem.Instance.Awake(component, p1);
|
|
|
-
|
|
|
+
|
|
|
if (this is IAddComponent)
|
|
|
{
|
|
|
EventSystem.Instance.AddComponent(this, component);
|
|
@@ -813,7 +813,7 @@ namespace ET
|
|
|
component.Id = this.Id;
|
|
|
component.ComponentParent = this;
|
|
|
EventSystem.Instance.Awake(component, p1, p2);
|
|
|
-
|
|
|
+
|
|
|
if (this is IAddComponent)
|
|
|
{
|
|
|
EventSystem.Instance.AddComponent(this, component);
|
|
@@ -833,14 +833,14 @@ namespace ET
|
|
|
component.Id = this.Id;
|
|
|
component.ComponentParent = this;
|
|
|
EventSystem.Instance.Awake(component, p1, p2, p3);
|
|
|
-
|
|
|
+
|
|
|
if (this is IAddComponent)
|
|
|
{
|
|
|
EventSystem.Instance.AddComponent(this, component);
|
|
|
}
|
|
|
return component as K;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
public Entity AddChild(Entity entity)
|
|
|
{
|
|
|
entity.Parent = this;
|