Mobs auto state handlers (#26957)
* Autogenerate MobStateComponentState * changed CurrentState to DataField, updated DataField attribute for AllowedStates * Update Content.Shared/Mobs/Components/MobStateComponent.cs * Update Content.Shared/Mobs/Components/MobStateComponent.cs --------- Co-authored-by: BuildTools <unconfigured@null.spigotmc.org> Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
This commit is contained in:
@@ -13,30 +13,21 @@ namespace Content.Shared.Mobs.Components
|
||||
/// </summary>
|
||||
[RegisterComponent]
|
||||
[NetworkedComponent]
|
||||
[AutoGenerateComponentState]
|
||||
[Access(typeof(MobStateSystem), typeof(MobThresholdSystem))]
|
||||
public sealed partial class MobStateComponent : Component
|
||||
{
|
||||
//default mobstate is always the lowest state level
|
||||
[ViewVariables] public MobState CurrentState { get; set; } = MobState.Alive;
|
||||
[AutoNetworkedField, ViewVariables]
|
||||
public MobState CurrentState { get; set; } = MobState.Alive;
|
||||
|
||||
[DataField("allowedStates")] public HashSet<MobState> AllowedStates = new()
|
||||
[DataField]
|
||||
[AutoNetworkedField]
|
||||
public HashSet<MobState> AllowedStates = new()
|
||||
{
|
||||
MobState.Alive,
|
||||
MobState.Critical,
|
||||
MobState.Dead
|
||||
};
|
||||
}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public sealed class MobStateComponentState : ComponentState
|
||||
{
|
||||
public readonly MobState CurrentState;
|
||||
public readonly HashSet<MobState> AllowedStates;
|
||||
|
||||
public MobStateComponentState(MobState currentState, HashSet<MobState> allowedStates)
|
||||
{
|
||||
CurrentState = currentState;
|
||||
AllowedStates = allowedStates;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user