Body System Part 1 POGGERS!!! (#855)
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
|
||||
|
||||
using Robust.Shared.Interfaces.Serialization;
|
||||
using Robust.Shared.Serialization;
|
||||
using System;
|
||||
|
||||
namespace Content.Shared.BodySystem {
|
||||
|
||||
[NetSerializable, Serializable]
|
||||
class ArmLength : IExposeData {
|
||||
private float _length;
|
||||
|
||||
public void ExposeData(ObjectSerializer serializer){
|
||||
serializer.DataField(ref _length, "length", 2f);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,95 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Robust.Shared.Interfaces.Serialization;
|
||||
using Robust.Shared.Prototypes;
|
||||
using Robust.Shared.Serialization;
|
||||
using Robust.Shared.ViewVariables;
|
||||
using YamlDotNet.RepresentationModel;
|
||||
|
||||
|
||||
namespace Content.Shared.BodySystem {
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Prototype for the BodyPart class.
|
||||
/// </summary>
|
||||
[Prototype("bodyPart")]
|
||||
[NetSerializable, Serializable]
|
||||
public class BodyPartPrototype : IPrototype, IIndexedPrototype {
|
||||
private string _id;
|
||||
private string _name;
|
||||
private string _plural;
|
||||
private string _rsiPath;
|
||||
private string _rsiState;
|
||||
private BodyPartType _partType;
|
||||
private int _durability;
|
||||
private int _destroyThreshold;
|
||||
private float _resistance;
|
||||
private int _size;
|
||||
private BodyPartCompatibility _compatibility;
|
||||
private string _surgeryDataName;
|
||||
private List<IExposeData> _properties;
|
||||
private List<string> _mechanisms;
|
||||
|
||||
[ViewVariables]
|
||||
public string ID => _id;
|
||||
|
||||
[ViewVariables]
|
||||
public string Name => _name;
|
||||
|
||||
[ViewVariables]
|
||||
public string Plural => _plural;
|
||||
|
||||
[ViewVariables]
|
||||
public string RSIPath => _rsiPath;
|
||||
|
||||
[ViewVariables]
|
||||
public string RSIState => _rsiState;
|
||||
|
||||
[ViewVariables]
|
||||
public BodyPartType PartType => _partType;
|
||||
|
||||
[ViewVariables]
|
||||
public int Durability => _durability;
|
||||
|
||||
[ViewVariables]
|
||||
public int DestroyThreshold => _destroyThreshold;
|
||||
|
||||
[ViewVariables]
|
||||
public float Resistance => _resistance;
|
||||
|
||||
[ViewVariables]
|
||||
public int Size => _size;
|
||||
|
||||
[ViewVariables]
|
||||
public BodyPartCompatibility Compatibility => _compatibility;
|
||||
|
||||
[ViewVariables]
|
||||
public string SurgeryDataName => _surgeryDataName;
|
||||
|
||||
[ViewVariables]
|
||||
public List<IExposeData> Properties => _properties;
|
||||
|
||||
[ViewVariables]
|
||||
public List<string> Mechanisms => _mechanisms;
|
||||
|
||||
public virtual void LoadFrom(YamlMappingNode mapping){
|
||||
var serializer = YamlObjectSerializer.NewReader(mapping);
|
||||
|
||||
serializer.DataField(ref _name, "name", string.Empty);
|
||||
serializer.DataField(ref _id, "id", string.Empty);
|
||||
serializer.DataField(ref _plural, "plural", string.Empty);
|
||||
serializer.DataField(ref _rsiPath, "rsiPath", string.Empty);
|
||||
serializer.DataField(ref _rsiState, "rsiState", string.Empty);
|
||||
serializer.DataField(ref _partType, "partType", BodyPartType.Other);
|
||||
serializer.DataField(ref _surgeryDataName, "surgeryDataType", "BiologicalSurgeryData");
|
||||
serializer.DataField(ref _durability, "durability", 50);
|
||||
serializer.DataField(ref _destroyThreshold, "destroyThreshold", -50);
|
||||
serializer.DataField(ref _resistance, "resistance", 0f);
|
||||
serializer.DataField(ref _size, "size", 0);
|
||||
serializer.DataField(ref _compatibility, "compatibility", BodyPartCompatibility.Universal);
|
||||
serializer.DataField(ref _properties, "properties", new List<IExposeData>());
|
||||
serializer.DataField(ref _mechanisms, "mechanisms", new List<string>());
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user