Re-organize all projects (#4166)
This commit is contained in:
97
Content.Shared/Arcade/SharedSpaceVillainArcadeComponent.cs
Normal file
97
Content.Shared/Arcade/SharedSpaceVillainArcadeComponent.cs
Normal file
@@ -0,0 +1,97 @@
|
||||
#nullable enable
|
||||
using System;
|
||||
using Content.Shared.NetIDs;
|
||||
using Robust.Shared.GameObjects;
|
||||
using Robust.Shared.Serialization;
|
||||
|
||||
namespace Content.Shared.Arcade
|
||||
{
|
||||
public class SharedSpaceVillainArcadeComponent : Component
|
||||
{
|
||||
public override string Name => "SpaceVillainArcade";
|
||||
public override uint? NetID => ContentNetIDs.SPACE_VILLAIN_ARCADE;
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public enum Indicators
|
||||
{
|
||||
/// <summary>
|
||||
/// Blinks when any invincible flag is set
|
||||
/// </summary>
|
||||
HealthManager,
|
||||
/// <summary>
|
||||
/// Blinks when Overflow flag is set
|
||||
/// </summary>
|
||||
HealthLimiter
|
||||
}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public enum PlayerAction
|
||||
{
|
||||
Attack,
|
||||
Heal,
|
||||
Recharge,
|
||||
NewGame,
|
||||
RequestData
|
||||
}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public enum SpaceVillainArcadeVisualState
|
||||
{
|
||||
Normal,
|
||||
Off,
|
||||
Broken,
|
||||
Win,
|
||||
GameOver,
|
||||
}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public enum SpaceVillainArcadeUiKey
|
||||
{
|
||||
Key,
|
||||
}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public class SpaceVillainArcadePlayerActionMessage : BoundUserInterfaceMessage
|
||||
{
|
||||
public readonly PlayerAction PlayerAction;
|
||||
public SpaceVillainArcadePlayerActionMessage(PlayerAction playerAction)
|
||||
{
|
||||
PlayerAction = playerAction;
|
||||
}
|
||||
}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public class SpaceVillainArcadeMetaDataUpdateMessage : SpaceVillainArcadeDataUpdateMessage
|
||||
{
|
||||
public readonly string GameTitle;
|
||||
public readonly string EnemyName;
|
||||
public readonly bool ButtonsDisabled;
|
||||
public SpaceVillainArcadeMetaDataUpdateMessage(int playerHp, int playerMp, int enemyHp, int enemyMp, string playerActionMessage, string enemyActionMessage, string gameTitle, string enemyName, bool buttonsDisabled) : base(playerHp, playerMp, enemyHp, enemyMp, playerActionMessage, enemyActionMessage)
|
||||
{
|
||||
GameTitle = gameTitle;
|
||||
EnemyName = enemyName;
|
||||
ButtonsDisabled = buttonsDisabled;
|
||||
}
|
||||
}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public class SpaceVillainArcadeDataUpdateMessage : BoundUserInterfaceMessage
|
||||
{
|
||||
public readonly int PlayerHP;
|
||||
public readonly int PlayerMP;
|
||||
public readonly int EnemyHP;
|
||||
public readonly int EnemyMP;
|
||||
public readonly string PlayerActionMessage;
|
||||
public readonly string EnemyActionMessage;
|
||||
public SpaceVillainArcadeDataUpdateMessage(int playerHp, int playerMp, int enemyHp, int enemyMp, string playerActionMessage, string enemyActionMessage)
|
||||
{
|
||||
PlayerHP = playerHp;
|
||||
PlayerMP = playerMp;
|
||||
EnemyHP = enemyHp;
|
||||
EnemyMP = enemyMp;
|
||||
EnemyActionMessage = enemyActionMessage;
|
||||
PlayerActionMessage = playerActionMessage;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user