* Add nullable to some Content.Shared files. * Use [NotNullWhen(true)] * Undo adding now redundant !'s * Forgot one * Add a ton more nullable * You can guess * Fix some issues * It actually compiles now * Auto stash before merge of "null2" and "origin/master" * I lied * enable annotations -> enable * Revert ActionBlockerSystem.cs to original * Fix ActionBlockerSystem.cs * More nullable * Undo some added exclamation marks * Fix issues * Update Content.Shared/Maps/ContentTileDefinition.cs Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> * Resolve some issues * Remove unused method * Fix more issues * Fix more issues * Fix more issues * Fix more issues * Fix issue, rollback SharedGhostComponent.cs * Update submodule * Fix issue, invert some if-statements to reduce nesting * Revert RobustToolbox * FIx things broken by merge * Some fixes - Replaced with string.Empty - Remove some exclamation marks - Revert file * Some fixes * Trivial #nullable enable * Fix null ables Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: Metal Gear Sloth <metalgearsloth@gmail.com>
95 lines
2.6 KiB
C#
95 lines
2.6 KiB
C#
#nullable enable
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Maths;
|
|
using Robust.Shared.Prototypes;
|
|
using Robust.Shared.Serialization;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using YamlDotNet.RepresentationModel;
|
|
|
|
namespace Content.Shared.GameObjects.Components
|
|
{
|
|
public class SharedCrayonComponent : Component
|
|
{
|
|
public override string Name => "Crayon";
|
|
public override uint? NetID => ContentNetIDs.CRAYONS;
|
|
|
|
public string SelectedState { get; set; } = string.Empty;
|
|
protected string _color = "white";
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum CrayonUiKey
|
|
{
|
|
Key,
|
|
}
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public class CrayonSelectMessage : BoundUserInterfaceMessage
|
|
{
|
|
public readonly string State;
|
|
public CrayonSelectMessage(string selected)
|
|
{
|
|
State = selected;
|
|
}
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum CrayonVisuals
|
|
{
|
|
State,
|
|
Color,
|
|
Rotation
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public class CrayonComponentState : ComponentState
|
|
{
|
|
public readonly string Color;
|
|
public readonly string State;
|
|
public readonly int Charges;
|
|
public readonly int Capacity;
|
|
|
|
public CrayonComponentState(string color, string state, int charges, int capacity) : base(ContentNetIDs.CRAYONS)
|
|
{
|
|
Color = color;
|
|
State = state;
|
|
Charges = charges;
|
|
Capacity = capacity;
|
|
}
|
|
}
|
|
[Serializable, NetSerializable]
|
|
public class CrayonBoundUserInterfaceState : BoundUserInterfaceState
|
|
{
|
|
public string Selected;
|
|
public Color Color;
|
|
|
|
public CrayonBoundUserInterfaceState(string selected, Color color)
|
|
{
|
|
Selected = selected;
|
|
Color = color;
|
|
}
|
|
}
|
|
|
|
[Serializable, NetSerializable, Prototype("crayonDecal")]
|
|
public class CrayonDecalPrototype : IPrototype
|
|
{
|
|
public string ID { get; private set; } = string.Empty;
|
|
|
|
private string _spritePath = string.Empty;
|
|
public string SpritePath => _spritePath;
|
|
|
|
private List<string> _decals = new();
|
|
public List<string> Decals => _decals;
|
|
|
|
public void LoadFrom(YamlMappingNode mapping)
|
|
{
|
|
var serializer = YamlObjectSerializer.NewReader(mapping);
|
|
|
|
serializer.DataField(this, x => x.ID, "id", string.Empty);
|
|
serializer.DataField(ref _spritePath, "spritePath", string.Empty);
|
|
serializer.DataField(ref _decals, "decals", new List<string>());
|
|
}
|
|
}
|
|
}
|