2024-02-02 12:11:51 +03:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Syntriax.Engine.Core.Abstract;
|
|
|
|
|
|
|
|
public abstract class BaseEntity : IEntity
|
|
|
|
{
|
2024-07-15 01:13:39 +03:00
|
|
|
public event IEntity.OnIdChangedDelegate? OnIdChanged = null;
|
2024-02-02 12:11:51 +03:00
|
|
|
|
2024-07-15 01:13:39 +03:00
|
|
|
public event IInitialize.OnInitializedDelegate? OnInitialized = null;
|
|
|
|
public event IInitialize.OnFinalizedDelegate? OnFinalized = null;
|
2024-02-02 12:11:51 +03:00
|
|
|
|
2024-07-15 01:13:39 +03:00
|
|
|
public event IAssignableStateEnable.OnStateEnableAssignedDelegate? OnStateEnableAssigned = null;
|
|
|
|
public event IAssignable.OnUnassignedDelegate? OnUnassigned = null;
|
2024-02-02 12:11:51 +03:00
|
|
|
|
|
|
|
|
|
|
|
private IStateEnable _stateEnable = null!;
|
|
|
|
|
|
|
|
private bool _initialized = false;
|
|
|
|
private string _id = string.Empty;
|
|
|
|
|
|
|
|
public virtual IStateEnable StateEnable => _stateEnable;
|
|
|
|
|
|
|
|
public virtual bool IsActive => StateEnable.Enabled;
|
|
|
|
|
|
|
|
public string Id
|
|
|
|
{
|
|
|
|
get => _id;
|
|
|
|
set
|
|
|
|
{
|
|
|
|
if (value == _id)
|
|
|
|
return;
|
|
|
|
|
|
|
|
string previousId = _id;
|
|
|
|
|
|
|
|
_id = value;
|
|
|
|
OnIdChanged?.Invoke(this, previousId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool Initialized
|
|
|
|
{
|
|
|
|
get => _initialized;
|
|
|
|
private set
|
|
|
|
{
|
|
|
|
if (value == _initialized)
|
|
|
|
return;
|
|
|
|
|
|
|
|
_initialized = value;
|
|
|
|
if (value)
|
|
|
|
OnInitialized?.Invoke(this);
|
|
|
|
else
|
|
|
|
OnFinalized?.Invoke(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool Assign(IStateEnable stateEnable)
|
|
|
|
{
|
|
|
|
if (Initialized)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
_stateEnable = stateEnable;
|
|
|
|
_stateEnable.Assign(this);
|
|
|
|
OnStateEnableAssigned?.Invoke(this);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected virtual void UnassignInternal() { }
|
|
|
|
public bool Unassign()
|
|
|
|
{
|
|
|
|
if (Initialized)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
UnassignInternal();
|
|
|
|
|
|
|
|
OnUnassigned?.Invoke(this);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected virtual void InitializeInternal() { }
|
|
|
|
public bool Initialize()
|
|
|
|
{
|
|
|
|
if (Initialized)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
InitializeInternal();
|
|
|
|
|
|
|
|
Initialized = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected virtual void FinalizeInternal() { }
|
|
|
|
public bool Finalize()
|
|
|
|
{
|
|
|
|
if (!Initialized)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
FinalizeInternal();
|
|
|
|
|
|
|
|
Initialized = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected BaseEntity() => _id = Guid.NewGuid().ToString("D");
|
|
|
|
protected BaseEntity(string id) => _id = id;
|
|
|
|
}
|