| | 1 | | using System; |
| | 2 | | using Newtonsoft.Json; |
| | 3 | | using Newtonsoft.Json.Converters; |
| | 4 | |
|
| | 5 | | [Serializable] |
| | 6 | | public class StaticAgentConfig { |
| | 7 | | public string name; |
| | 8 | | public string agentClass; |
| | 9 | | public string symbolPresent; |
| | 10 | | public string symbolDestroyed; |
| | 11 | | public float unitCost; |
| | 12 | |
|
| | 13 | | [Serializable] |
| | 14 | | public class AccelerationConfig { |
| 38 | 15 | | public float maxReferenceNormalAcceleration = 300f; |
| 38 | 16 | | public float referenceSpeed = 1000f; |
| 38 | 17 | | public float maxForwardAcceleration = 50f; |
| | 18 | | } |
| | 19 | |
|
| | 20 | | [Serializable] |
| | 21 | | public class BoostConfig { |
| 32 | 22 | | public float boostTime = 0.3f; |
| 32 | 23 | | public float boostAcceleration = 350f; |
| | 24 | | } |
| | 25 | |
|
| | 26 | | [Serializable] |
| | 27 | | public class LiftDragConfig { |
| 38 | 28 | | public float liftCoefficient = 0.2f; |
| 38 | 29 | | public float dragCoefficient = 0.7f; |
| 38 | 30 | | public float liftDragRatio = 5f; |
| | 31 | | } |
| | 32 | |
|
| | 33 | | [Serializable] |
| | 34 | | public class BodyConfig { |
| 38 | 35 | | public float mass = 0.37f; |
| 38 | 36 | | public float crossSectionalArea = 3e-4f; |
| 38 | 37 | | public float finArea = 6e-4f; |
| 38 | 38 | | public float bodyArea = 1e-2f; |
| | 39 | | } |
| | 40 | |
|
| | 41 | | [Serializable] |
| | 42 | | public class HitConfig { |
| 32 | 43 | | public float hitRadius = 1f; |
| 32 | 44 | | public float killProbability = 0.9f; |
| | 45 | | } |
| | 46 | |
|
| | 47 | | [Serializable] |
| | 48 | | public class PowerTable { |
| | 49 | | public float IDLE; |
| | 50 | | public float LOW; |
| | 51 | | public float CRUISE; |
| | 52 | | public float MIL; |
| | 53 | | public float MAX; |
| | 54 | | } |
| | 55 | |
|
| | 56 | | public AccelerationConfig accelerationConfig; |
| | 57 | | public BoostConfig boostConfig; |
| | 58 | | public LiftDragConfig liftDragConfig; |
| | 59 | | public BodyConfig bodyConfig; |
| | 60 | | public HitConfig hitConfig; |
| | 61 | | public PowerTable powerTable; |
| | 62 | | } |
| | 63 | |
|
| | 64 | | [JsonConverter(typeof(StringEnumConverter))] |
| | 65 | | public enum PowerSetting { IDLE, LOW, CRUISE, MIL, MAX } |