Syntriax.Engine/Engine.Core/Abstract/BaseEntity.cs

112 lines
2.5 KiB
C#
Raw Normal View History

2024-02-02 12:11:51 +03:00
using System;
using Syntriax.Engine.Core.Exceptions;
2024-02-02 12:11:51 +03:00
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 IsInitialized
2024-02-02 12:11:51 +03:00
{
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 (IsInitialized)
2024-02-02 12:11:51 +03:00
return false;
_stateEnable = stateEnable;
_stateEnable.Assign(this);
OnStateEnableAssigned?.Invoke(this);
return true;
}
protected virtual void UnassignInternal() { }
public bool Unassign()
{
if (IsInitialized)
2024-02-02 12:11:51 +03:00
return false;
UnassignInternal();
_stateEnable = null!;
_stateEnable.Unassign();
2024-02-02 12:11:51 +03:00
OnUnassigned?.Invoke(this);
return true;
}
protected virtual void InitializeInternal() { }
public bool Initialize()
{
if (IsInitialized)
2024-02-02 12:11:51 +03:00
return false;
NotAssignedException.Check(this, _stateEnable);
2024-02-02 12:11:51 +03:00
InitializeInternal();
IsInitialized = true;
2024-02-02 12:11:51 +03:00
return true;
}
protected virtual void FinalizeInternal() { }
public bool Finalize()
{
if (!IsInitialized)
2024-02-02 12:11:51 +03:00
return false;
FinalizeInternal();
IsInitialized = false;
2024-02-02 12:11:51 +03:00
return true;
}
protected BaseEntity() => _id = Guid.NewGuid().ToString("D");
protected BaseEntity(string id) => _id = id;
}