using System.Collections.Immutable; using System.Text.Json.Serialization; using Observatory.Framework.Files.Converters; using Observatory.Framework.Files.ParameterTypes; namespace Observatory.Framework.Files.Journal.Exploration; /// /// Journal "Scan" event generated when directly FSS scanning, from automatic proximity scans, or nav beacon data. /// public class Scan : ScanBaryCentre { /// /// Type of scan which generated the event. Possible options include "Detailed", "AutoScan", and "NavBeaconDetail" (non-exhaustive). /// public string ScanType { get; init; } /// /// Name of scanned body. /// public string BodyName { get; init; } /// /// List which reflects Frontier's JSON structure for the "Parents" object. Use of Parent property is recommended instead. /// public ImmutableList Parents { get => _Parents; init { _Parents = value; var ParentList = new List<(ParentType ParentType, int Body)>(); foreach (var parent in value) { if (parent.Null != null) { ParentList.Add((ParentType.Null, parent.Null.GetValueOrDefault(0))); } else if (parent.Planet != null) { ParentList.Add((ParentType.Planet, parent.Planet.GetValueOrDefault(0))); } else if (parent.Star != null) { ParentList.Add((ParentType.Star, parent.Star.GetValueOrDefault(0))); } } Parent = ParentList.ToImmutableList(); } } /// /// "Parents" object rearranged into more intuitive structure for ease of use. /// [JsonIgnore] public ImmutableList<(ParentType ParentType, int Body)> Parent { get; init; } private ImmutableList _Parents; /// /// Body distance from system arrival point in light-seconds. /// public double DistanceFromArrivalLS { get; init; } /// /// Indicates if body is tidally locked to another body (parent, child, or binary partner). /// public bool TidalLock { get; init; } /// /// Whether the planet can be or has been terraformed. Options include "Terraformable", "Terraformed", or "" (non-terraformable or naturally earth-like). /// public string TerraformState { get; init; } /// /// Class of planet. Consult your preferred source of journal documentation for all possible values. /// public string PlanetClass { get; init; } /// /// Descriptive string for body atmosphere, e.g. "hot thick sulfur dioxide atmosphere". /// public string Atmosphere { get; init; } /// /// Simple string indicating dominant atmosphere type, e.g. "SulfurDioxide". /// public string AtmosphereType { get; init; } /// /// List containing full breakdown of atmospheric components and their relative percentages. /// public ImmutableList AtmosphereComposition { get; init; } /// /// Descriptive string for type of volcanism present, or an empty string for none, e.g. "major silicate vapour geysers volcanism". /// public string Volcanism { get; init; } /// /// Mass of body in multiples of Earth's mass (5.972e24 kg). /// public float MassEM { get; init; } /// /// Radius of body in metres. /// public float Radius { get; init; } /// /// Surface gravity in m/s². /// public float SurfaceGravity { get; init; } /// /// Average surface temperature in Kelvin. /// public float SurfaceTemperature { get; init; } /// /// Average surface pressure in Pascals. /// public float SurfacePressure { get; init; } /// /// Whether the body in landable in the player's current version of Elite Dangerous. /// public bool Landable { get; init; } /// /// List containing full breakdown of prospectable surface materials and their relative percentages. /// [JsonConverter(typeof(MaterialCompositionConverter))] public ImmutableList Materials { get; init; } /// /// Overall composition of body, expressed as percentages of ice, rock, and metal. /// public Composition Composition { get; init; } /// /// Rotation period of body in seconds. /// public float RotationPeriod { get; init; } /// /// Axial tilt of body in radians. /// public float AxialTilt { get; init; } /// /// List of all planetary or stellar ring systems around the body. /// public ImmutableList Rings { get; init; } /// /// Description of the minable material abundance.
Possible values inclue "PristineResources", "MajorResources", "CommonResources", "LowResources", and "DepletedResources". ///
public string ReserveLevel { get; init; } /// /// Type of star. Consult your preferred source of journal documentation for all possible values. /// public string StarType { get; init; } /// /// Subclass of star. Consult your preferred source of journal documentation for all possible values. /// public int Subclass { get; init; } /// /// Mass of star in multiples of The Sun's mass (1.989e30 kg). /// public float StellarMass { get; init; } /// /// Absolute magnitude of star. /// public float AbsoluteMagnitude { get; init; } /// /// Age of body in millions of years. /// public int Age_MY { get; init; } /// /// Yerkes luminosity class of star. /// public string Luminosity { get; init; } /// /// Whether the body has been previously discovered by a player. /// public bool WasDiscovered { get; init; } /// /// Whether the body has been previously mapped by a player. /// public bool WasMapped { get; init; } }