mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
Added framework xml documentation for all "exploration" events.
This commit is contained in:
parent
9586e37be7
commit
0c218ed52b
@ -1,8 +1,17 @@
|
|||||||
namespace Observatory.Framework.Files.Journal
|
namespace Observatory.Framework.Files.Journal
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Journal event generated when buying system data from the galaxy map while docked.
|
||||||
|
/// </summary>
|
||||||
public class BuyExplorationData : JournalBase
|
public class BuyExplorationData : JournalBase
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Name of the system for which data was purchased.
|
||||||
|
/// </summary>
|
||||||
public string System { get; init; }
|
public string System { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Amount paid for the data.
|
||||||
|
/// </summary>
|
||||||
public int Cost { get; init; }
|
public int Cost { get; init; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,27 +2,90 @@
|
|||||||
|
|
||||||
namespace Observatory.Framework.Files.Journal
|
namespace Observatory.Framework.Files.Journal
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Event generated when an item in the codex is scanned.
|
||||||
|
/// </summary>
|
||||||
public class CodexEntry : JournalBase
|
public class CodexEntry : JournalBase
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Unique ID of the entry.
|
||||||
|
/// </summary>
|
||||||
public ulong EntryID { get; init; }
|
public ulong EntryID { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Name of the item scanned.
|
||||||
|
/// </summary>
|
||||||
public string Name { get; init; }
|
public string Name { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Localised name of the item scanned.
|
||||||
|
/// </summary>
|
||||||
public string Name_Localised { get; init; }
|
public string Name_Localised { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Codex sub category of the item scanned.
|
||||||
|
/// </summary>
|
||||||
public string SubCategory { get; init; }
|
public string SubCategory { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Localised sub category name of the item scanned.
|
||||||
|
/// </summary>
|
||||||
public string SubCategory_Localised { get; init; }
|
public string SubCategory_Localised { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Codex category of the item scanned.
|
||||||
|
/// </summary>
|
||||||
public string Category { get; init; }
|
public string Category { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Localised category name of the item scanned.
|
||||||
|
/// </summary>
|
||||||
public string Category_Localised { get; init; }
|
public string Category_Localised { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Codex region the scan occured in.
|
||||||
|
/// </summary>
|
||||||
public string Region { get; init; }
|
public string Region { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Localised name of the region.
|
||||||
|
/// </summary>
|
||||||
public string Region_Localised { get; init; }
|
public string Region_Localised { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Name of the system in which the scan occured.
|
||||||
|
/// </summary>
|
||||||
public string System { get; init; }
|
public string System { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Unique ID of the system in which the scan occured.
|
||||||
|
/// </summary>
|
||||||
public ulong SystemAddress { get; init; }
|
public ulong SystemAddress { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Name of the nearest surface signal.
|
||||||
|
/// </summary>
|
||||||
public string NearestDestination { get; init; }
|
public string NearestDestination { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Localised name of hte nearest surface signal.
|
||||||
|
/// </summary>
|
||||||
public string NearestDestination_Localised { get; init; }
|
public string NearestDestination_Localised { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Indicator that this codex entry hasn't been previously scanned by the CMDR.
|
||||||
|
/// </summary>
|
||||||
public bool IsNewEntry { get; init; }
|
public bool IsNewEntry { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Indicator that htis codex entry has a trait not previously seen by the CMDR.
|
||||||
|
/// </summary>
|
||||||
public bool NewTraitsDiscovered { get; init; }
|
public bool NewTraitsDiscovered { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// List of trais of the scanned item.
|
||||||
|
/// </summary>
|
||||||
public ImmutableList<string> Traits { get; init; }
|
public ImmutableList<string> Traits { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Value of the codex entry when sold to Universal Cartographics.
|
||||||
|
/// </summary>
|
||||||
public int VoucherAmount { get; init; }
|
public int VoucherAmount { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Surface latitude where the scan occured.
|
||||||
|
/// </summary>
|
||||||
public float Latitude { get; init; }
|
public float Latitude { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Surface longitude where the scan occured.
|
||||||
|
/// </summary>
|
||||||
public float Longitude { get; init; }
|
public float Longitude { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Body ID of the system body where the scan occured.
|
||||||
|
/// </summary>
|
||||||
public int BodyID { get; init; }
|
public int BodyID { get; init; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,17 @@
|
|||||||
namespace Observatory.Framework.Files.Journal
|
namespace Observatory.Framework.Files.Journal
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Event generated when using the discovery scanner (honk) to initially scan system. No longer used in live game client, will be found only in historical data.
|
||||||
|
/// </summary>
|
||||||
public class DiscoveryScan : JournalBase
|
public class DiscoveryScan : JournalBase
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Unique ID of system.
|
||||||
|
/// </summary>
|
||||||
public ulong SystemAddress { get; init; }
|
public ulong SystemAddress { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Number of bodies in system.
|
||||||
|
/// </summary>
|
||||||
public int Bodies { get; init; }
|
public int Bodies { get; init; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,21 @@
|
|||||||
namespace Observatory.Framework.Files.Journal
|
namespace Observatory.Framework.Files.Journal
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Event generated when all bodies within a system have been scanned.
|
||||||
|
/// </summary>
|
||||||
public class FSSAllBodiesFound : JournalBase
|
public class FSSAllBodiesFound : JournalBase
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Name of the system.
|
||||||
|
/// </summary>
|
||||||
public string SystemName { get; init; }
|
public string SystemName { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Unique ID of the system.
|
||||||
|
/// </summary>
|
||||||
public ulong SystemAddress { get; init; }
|
public ulong SystemAddress { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Count of all scanned bodies in system.
|
||||||
|
/// </summary>
|
||||||
public int Count { get; init; }
|
public int Count { get; init; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
namespace Observatory.Framework.Files.Journal
|
namespace Observatory.Framework.Files.Journal
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Event generated when the full spectrum scanner finds surface signals on a body.
|
||||||
|
/// </summary>
|
||||||
public class FSSBodySignals : SAASignalsFound
|
public class FSSBodySignals : SAASignalsFound
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,29 @@
|
|||||||
namespace Observatory.Framework.Files.Journal
|
namespace Observatory.Framework.Files.Journal
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Event generated when using the discovery scanner (honk) to initially scan system.
|
||||||
|
/// </summary>
|
||||||
public class FSSDiscoveryScan : JournalBase
|
public class FSSDiscoveryScan : JournalBase
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Name of the current system.
|
||||||
|
/// </summary>
|
||||||
public string SystemName { get; init; }
|
public string SystemName { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Unique ID of the current system.
|
||||||
|
/// </summary>
|
||||||
public ulong SystemAddress { get; init; }
|
public ulong SystemAddress { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Percentage of current system already scanned.
|
||||||
|
/// </summary>
|
||||||
public float Progress { get; init; }
|
public float Progress { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Number of scannable bodies in system.
|
||||||
|
/// </summary>
|
||||||
public int BodyCount { get; init; }
|
public int BodyCount { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Number of scannable non-body locations in system.
|
||||||
|
/// </summary>
|
||||||
public int NonBodyCount { get; init; }
|
public int NonBodyCount { get; init; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,18 +1,57 @@
|
|||||||
namespace Observatory.Framework.Files.Journal
|
namespace Observatory.Framework.Files.Journal
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Event generated when a signal source is identified or scanned.
|
||||||
|
/// </summary>
|
||||||
public class FSSSignalDiscovered : JournalBase
|
public class FSSSignalDiscovered : JournalBase
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Name of the signal type.
|
||||||
|
/// </summary>
|
||||||
public string SignalName { get; init; }
|
public string SignalName { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Localised name of the signal type.
|
||||||
|
/// </summary>
|
||||||
public string SignalName_Localised { get; init; }
|
public string SignalName_Localised { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Faction state or circumstance that caused this signal to appear.
|
||||||
|
/// </summary>
|
||||||
public string SpawningState { get; init; }
|
public string SpawningState { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Localised description of spawning state.
|
||||||
|
/// </summary>
|
||||||
public string SpawningState_Localised { get; init; }
|
public string SpawningState_Localised { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Faction name which is associated with this signal.
|
||||||
|
/// </summary>
|
||||||
public string SpawningFaction { get; init; }
|
public string SpawningFaction { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Localised name of the associated faction.
|
||||||
|
/// </summary>
|
||||||
public string SpawningFaction_Localised { get; init; }
|
public string SpawningFaction_Localised { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Time until the signal despawns, in seconds.
|
||||||
|
/// </summary>
|
||||||
public float TimeRemaining { get; init; }
|
public float TimeRemaining { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Unique ID of current system.
|
||||||
|
/// </summary>
|
||||||
public ulong SystemAddress { get; init; }
|
public ulong SystemAddress { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Numeric representation of the signal threat level.
|
||||||
|
/// </summary>
|
||||||
public int ThreatLevel { get; init; }
|
public int ThreatLevel { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Type of signal.
|
||||||
|
/// </summary>
|
||||||
public string USSType { get; init; }
|
public string USSType { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Localised name of signal type.
|
||||||
|
/// </summary>
|
||||||
public string USSType_Localised { get; init; }
|
public string USSType_Localised { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Indicator if the signal is a station which can be docked with.
|
||||||
|
/// </summary>
|
||||||
public bool IsStation { get; init; }
|
public bool IsStation { get; init; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,10 +1,25 @@
|
|||||||
namespace Observatory.Framework.Files.Journal
|
namespace Observatory.Framework.Files.Journal
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Event generated when a material resource is collected.
|
||||||
|
/// </summary>
|
||||||
public class MaterialCollected : JournalBase
|
public class MaterialCollected : JournalBase
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Category to which the material belongs.
|
||||||
|
/// </summary>
|
||||||
public string Category { get; init; }
|
public string Category { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Name of the material.
|
||||||
|
/// </summary>
|
||||||
public string Name { get; init; }
|
public string Name { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Localised name of the material.
|
||||||
|
/// </summary>
|
||||||
public string Name_Localised { get; init; }
|
public string Name_Localised { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Count of the material.
|
||||||
|
/// </summary>
|
||||||
public int Count { get; init; }
|
public int Count { get; init; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
namespace Observatory.Framework.Files.Journal
|
namespace Observatory.Framework.Files.Journal
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Event generated when discarding held material resources.
|
||||||
|
/// </summary>
|
||||||
public class MaterialDiscarded : MaterialCollected
|
public class MaterialDiscarded : MaterialCollected
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@ -1,10 +1,25 @@
|
|||||||
namespace Observatory.Framework.Files.Journal
|
namespace Observatory.Framework.Files.Journal
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Event generated the first time a CMDR finds a particular material resource.
|
||||||
|
/// </summary>
|
||||||
public class MaterialDiscovered : JournalBase
|
public class MaterialDiscovered : JournalBase
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Category of the material.
|
||||||
|
/// </summary>
|
||||||
public string Category { get; init; }
|
public string Category { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Name of the material.
|
||||||
|
/// </summary>
|
||||||
public string Name { get; init; }
|
public string Name { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Localised name of the material.
|
||||||
|
/// </summary>
|
||||||
public string Name_Localised { get; init; }
|
public string Name_Localised { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Count of the number of discovered items in that category by the CMDR.
|
||||||
|
/// </summary>
|
||||||
public int DiscoveryNumber { get; init; }
|
public int DiscoveryNumber { get; init; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3,11 +3,26 @@ using System.Collections.Immutable;
|
|||||||
|
|
||||||
namespace Observatory.Framework.Files.Journal
|
namespace Observatory.Framework.Files.Journal
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Event generated when discovery data for multiple systems are sold at once.
|
||||||
|
/// </summary>
|
||||||
public class MultiSellExplorationData : JournalBase
|
public class MultiSellExplorationData : JournalBase
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// List of all sold first discoveries.
|
||||||
|
/// </summary>
|
||||||
public ImmutableList<Discovered> Discovered { get; init; }
|
public ImmutableList<Discovered> Discovered { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Base value of total sold data.
|
||||||
|
/// </summary>
|
||||||
public long BaseValue { get; init; }
|
public long BaseValue { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Bonus value added to base amount.
|
||||||
|
/// </summary>
|
||||||
public long Bonus { get; init; }
|
public long Bonus { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Total amount earned by CMDR for data sale.
|
||||||
|
/// </summary>
|
||||||
public long TotalEarnings { get; init; }
|
public long TotalEarnings { get; init; }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,17 @@
|
|||||||
namespace Observatory.Framework.Files.Journal
|
namespace Observatory.Framework.Files.Journal
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Event generated when scanned a populated system's navigation beacon.
|
||||||
|
/// </summary>
|
||||||
public class NavBeaconScan : JournalBase
|
public class NavBeaconScan : JournalBase
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Number of bodies in system.
|
||||||
|
/// </summary>
|
||||||
public int NumBodies { get; init; }
|
public int NumBodies { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Unique ID of system.
|
||||||
|
/// </summary>
|
||||||
public ulong SystemAddress { get; init; }
|
public ulong SystemAddress { get; init; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,20 +2,38 @@
|
|||||||
|
|
||||||
namespace Observatory.Framework.Files.Journal
|
namespace Observatory.Framework.Files.Journal
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Event generated when a body surface scan is completed.
|
||||||
|
/// </summary>
|
||||||
public class SAAScanComplete : JournalBase
|
public class SAAScanComplete : JournalBase
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Unique ID of current system.
|
||||||
|
/// </summary>
|
||||||
public ulong SystemAddress { get; init; }
|
public ulong SystemAddress { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Name of the scanned body.
|
||||||
|
/// </summary>
|
||||||
public string BodyName { get; init; }
|
public string BodyName { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// ID of the scanned body within the system.
|
||||||
|
/// </summary>
|
||||||
public int BodyID { get; init; }
|
public int BodyID { get; init; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// This property is indicated with strikethrough in Frontier's documentation and may be deprecated.
|
/// This property is indicated with strikethrough in Frontier's documentation and is likely unused.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public ImmutableList<string> Discoverers { get; init; }
|
public ImmutableList<string> Discoverers { get; init; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// This property is indicated with strikethrough in Frontier's documentation and may be deprecated.
|
/// This property is indicated with strikethrough in Frontier's documentation and is likely unused.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public ImmutableList<string> Mappers { get; init; }
|
public ImmutableList<string> Mappers { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Number of probes fired to complete the surface scan.
|
||||||
|
/// </summary>
|
||||||
public int ProbesUsed { get; init; }
|
public int ProbesUsed { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Maximum number of probes which can be used to get efficiency bonus.
|
||||||
|
/// </summary>
|
||||||
public int EfficiencyTarget { get; init; }
|
public int EfficiencyTarget { get; init; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3,11 +3,26 @@ using System.Collections.Immutable;
|
|||||||
|
|
||||||
namespace Observatory.Framework.Files.Journal
|
namespace Observatory.Framework.Files.Journal
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Event written when the surface scan finds signals on the body.
|
||||||
|
/// </summary>
|
||||||
public class SAASignalsFound : JournalBase
|
public class SAASignalsFound : JournalBase
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Unique ID of current system.
|
||||||
|
/// </summary>
|
||||||
public ulong SystemAddress { get; init; }
|
public ulong SystemAddress { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Name of the scanned body.
|
||||||
|
/// </summary>
|
||||||
public string BodyName { get; init; }
|
public string BodyName { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// ID of the body within the system.
|
||||||
|
/// </summary>
|
||||||
public int BodyID { get; init; }
|
public int BodyID { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// List of signals found.
|
||||||
|
/// </summary>
|
||||||
public ImmutableList<Signal> Signals { get; init; }
|
public ImmutableList<Signal> Signals { get; init; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,15 +1,46 @@
|
|||||||
namespace Observatory.Framework.Files.Journal
|
namespace Observatory.Framework.Files.Journal
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Event generated when the player takes a screenshot.
|
||||||
|
/// </summary>
|
||||||
public class Screenshot : JournalBase
|
public class Screenshot : JournalBase
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// <para>Filename of the screenshot taken in the form of "\\ED Pictures\\filename"</para>
|
||||||
|
/// <para>"\\ED Pictures\\" corresponds to "%userprofile%\Pictures\Frontier Developments\Elite Dangerous\"</para>
|
||||||
|
/// </summary>
|
||||||
public string Filename { get; init; }
|
public string Filename { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Pixel width of the saved image.
|
||||||
|
/// </summary>
|
||||||
public int Width { get; init; }
|
public int Width { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Pixel height of the saved image.
|
||||||
|
/// </summary>
|
||||||
public int Height { get; init; }
|
public int Height { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// System name of the current system.
|
||||||
|
/// </summary>
|
||||||
public string System { get; init; }
|
public string System { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Body name of the current location.
|
||||||
|
/// </summary>
|
||||||
public string Body { get; init; }
|
public string Body { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Current latitude if applicable.
|
||||||
|
/// </summary>
|
||||||
public float Latitude { get; init; }
|
public float Latitude { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Current longitude if applicable.
|
||||||
|
/// </summary>
|
||||||
public float Longitude { get; init; }
|
public float Longitude { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Current altitude if applicable.
|
||||||
|
/// </summary>
|
||||||
public float Altitude { get; init; }
|
public float Altitude { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Current heading if applicable.
|
||||||
|
/// </summary>
|
||||||
public int Heading { get; init; }
|
public int Heading { get; init; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,12 +2,30 @@
|
|||||||
|
|
||||||
namespace Observatory.Framework.Files.Journal
|
namespace Observatory.Framework.Files.Journal
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Event generated when selling exploration data. Historically also written for multi-selling, but used only for single system sales in current live game client.
|
||||||
|
/// </summary>
|
||||||
public class SellExplorationData : JournalBase
|
public class SellExplorationData : JournalBase
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// List of systems for which data was sold.
|
||||||
|
/// </summary>
|
||||||
public ImmutableList<string> Systems { get; init; }
|
public ImmutableList<string> Systems { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// List of first discovered bodies.
|
||||||
|
/// </summary>
|
||||||
public ImmutableList<string> Discovered { get; init; }
|
public ImmutableList<string> Discovered { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Base value of sold data.
|
||||||
|
/// </summary>
|
||||||
public long BaseValue { get; init; }
|
public long BaseValue { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Extra amount from bonuses.
|
||||||
|
/// </summary>
|
||||||
public long Bonus { get; init; }
|
public long Bonus { get; init; }
|
||||||
|
/// <summary>
|
||||||
|
/// Total amount made from selling data.
|
||||||
|
/// </summary>
|
||||||
public long TotalEarnings { get; init; }
|
public long TotalEarnings { get; init; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -284,14 +284,419 @@
|
|||||||
List of all data currently stored by the player.
|
List of all data currently stored by the player.
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="T:Observatory.Framework.Files.Journal.BuyExplorationData">
|
||||||
|
<summary>
|
||||||
|
Journal event generated when buying system data from the galaxy map while docked.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.BuyExplorationData.System">
|
||||||
|
<summary>
|
||||||
|
Name of the system for which data was purchased.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.BuyExplorationData.Cost">
|
||||||
|
<summary>
|
||||||
|
Amount paid for the data.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:Observatory.Framework.Files.Journal.CodexEntry">
|
||||||
|
<summary>
|
||||||
|
Event generated when an item in the codex is scanned.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.CodexEntry.EntryID">
|
||||||
|
<summary>
|
||||||
|
Unique ID of the entry.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.CodexEntry.Name">
|
||||||
|
<summary>
|
||||||
|
Name of the item scanned.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.CodexEntry.Name_Localised">
|
||||||
|
<summary>
|
||||||
|
Localised name of the item scanned.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.CodexEntry.SubCategory">
|
||||||
|
<summary>
|
||||||
|
Codex sub category of the item scanned.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.CodexEntry.SubCategory_Localised">
|
||||||
|
<summary>
|
||||||
|
Localised sub category name of the item scanned.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.CodexEntry.Category">
|
||||||
|
<summary>
|
||||||
|
Codex category of the item scanned.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.CodexEntry.Category_Localised">
|
||||||
|
<summary>
|
||||||
|
Localised category name of the item scanned.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.CodexEntry.Region">
|
||||||
|
<summary>
|
||||||
|
Codex region the scan occured in.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.CodexEntry.Region_Localised">
|
||||||
|
<summary>
|
||||||
|
Localised name of the region.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.CodexEntry.System">
|
||||||
|
<summary>
|
||||||
|
Name of the system in which the scan occured.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.CodexEntry.SystemAddress">
|
||||||
|
<summary>
|
||||||
|
Unique ID of the system in which the scan occured.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.CodexEntry.NearestDestination">
|
||||||
|
<summary>
|
||||||
|
Name of the nearest surface signal.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.CodexEntry.NearestDestination_Localised">
|
||||||
|
<summary>
|
||||||
|
Localised name of hte nearest surface signal.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.CodexEntry.IsNewEntry">
|
||||||
|
<summary>
|
||||||
|
Indicator that this codex entry hasn't been previously scanned by the CMDR.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.CodexEntry.NewTraitsDiscovered">
|
||||||
|
<summary>
|
||||||
|
Indicator that htis codex entry has a trait not previously seen by the CMDR.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.CodexEntry.Traits">
|
||||||
|
<summary>
|
||||||
|
List of trais of the scanned item.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.CodexEntry.VoucherAmount">
|
||||||
|
<summary>
|
||||||
|
Value of the codex entry when sold to Universal Cartographics.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.CodexEntry.Latitude">
|
||||||
|
<summary>
|
||||||
|
Surface latitude where the scan occured.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.CodexEntry.Longitude">
|
||||||
|
<summary>
|
||||||
|
Surface longitude where the scan occured.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.CodexEntry.BodyID">
|
||||||
|
<summary>
|
||||||
|
Body ID of the system body where the scan occured.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:Observatory.Framework.Files.Journal.DiscoveryScan">
|
||||||
|
<summary>
|
||||||
|
Event generated when using the discovery scanner (honk) to initially scan system. No longer used in live game client, will be found only in historical data.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.DiscoveryScan.SystemAddress">
|
||||||
|
<summary>
|
||||||
|
Unique ID of system.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.DiscoveryScan.Bodies">
|
||||||
|
<summary>
|
||||||
|
Number of bodies in system.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:Observatory.Framework.Files.Journal.FSSAllBodiesFound">
|
||||||
|
<summary>
|
||||||
|
Event generated when all bodies within a system have been scanned.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.FSSAllBodiesFound.SystemName">
|
||||||
|
<summary>
|
||||||
|
Name of the system.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.FSSAllBodiesFound.SystemAddress">
|
||||||
|
<summary>
|
||||||
|
Unique ID of the system.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.FSSAllBodiesFound.Count">
|
||||||
|
<summary>
|
||||||
|
Count of all scanned bodies in system.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:Observatory.Framework.Files.Journal.FSSBodySignals">
|
||||||
|
<summary>
|
||||||
|
Event generated when the full spectrum scanner finds surface signals on a body.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:Observatory.Framework.Files.Journal.FSSDiscoveryScan">
|
||||||
|
<summary>
|
||||||
|
Event generated when using the discovery scanner (honk) to initially scan system.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.FSSDiscoveryScan.SystemName">
|
||||||
|
<summary>
|
||||||
|
Name of the current system.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.FSSDiscoveryScan.SystemAddress">
|
||||||
|
<summary>
|
||||||
|
Unique ID of the current system.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.FSSDiscoveryScan.Progress">
|
||||||
|
<summary>
|
||||||
|
Percentage of current system already scanned.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.FSSDiscoveryScan.BodyCount">
|
||||||
|
<summary>
|
||||||
|
Number of scannable bodies in system.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.FSSDiscoveryScan.NonBodyCount">
|
||||||
|
<summary>
|
||||||
|
Number of scannable non-body locations in system.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:Observatory.Framework.Files.Journal.FSSSignalDiscovered">
|
||||||
|
<summary>
|
||||||
|
Event generated when a signal source is identified or scanned.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.FSSSignalDiscovered.SignalName">
|
||||||
|
<summary>
|
||||||
|
Name of the signal type.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.FSSSignalDiscovered.SignalName_Localised">
|
||||||
|
<summary>
|
||||||
|
Localised name of the signal type.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.FSSSignalDiscovered.SpawningState">
|
||||||
|
<summary>
|
||||||
|
Faction state or circumstance that caused this signal to appear.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.FSSSignalDiscovered.SpawningState_Localised">
|
||||||
|
<summary>
|
||||||
|
Localised description of spawning state.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.FSSSignalDiscovered.SpawningFaction">
|
||||||
|
<summary>
|
||||||
|
Faction name which is associated with this signal.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.FSSSignalDiscovered.SpawningFaction_Localised">
|
||||||
|
<summary>
|
||||||
|
Localised name of the associated faction.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.FSSSignalDiscovered.TimeRemaining">
|
||||||
|
<summary>
|
||||||
|
Time until the signal despawns, in seconds.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.FSSSignalDiscovered.SystemAddress">
|
||||||
|
<summary>
|
||||||
|
Unique ID of current system.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.FSSSignalDiscovered.ThreatLevel">
|
||||||
|
<summary>
|
||||||
|
Numeric representation of the signal threat level.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.FSSSignalDiscovered.USSType">
|
||||||
|
<summary>
|
||||||
|
Type of signal.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.FSSSignalDiscovered.USSType_Localised">
|
||||||
|
<summary>
|
||||||
|
Localised name of signal type.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.FSSSignalDiscovered.IsStation">
|
||||||
|
<summary>
|
||||||
|
Indicator if the signal is a station which can be docked with.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:Observatory.Framework.Files.Journal.MaterialCollected">
|
||||||
|
<summary>
|
||||||
|
Event generated when a material resource is collected.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.MaterialCollected.Category">
|
||||||
|
<summary>
|
||||||
|
Category to which the material belongs.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.MaterialCollected.Name">
|
||||||
|
<summary>
|
||||||
|
Name of the material.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.MaterialCollected.Name_Localised">
|
||||||
|
<summary>
|
||||||
|
Localised name of the material.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.MaterialCollected.Count">
|
||||||
|
<summary>
|
||||||
|
Count of the material.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:Observatory.Framework.Files.Journal.MaterialDiscarded">
|
||||||
|
<summary>
|
||||||
|
Event generated when discarding held material resources.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:Observatory.Framework.Files.Journal.MaterialDiscovered">
|
||||||
|
<summary>
|
||||||
|
Event generated the first time a CMDR finds a particular material resource.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.MaterialDiscovered.Category">
|
||||||
|
<summary>
|
||||||
|
Category of the material.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.MaterialDiscovered.Name">
|
||||||
|
<summary>
|
||||||
|
Name of the material.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.MaterialDiscovered.Name_Localised">
|
||||||
|
<summary>
|
||||||
|
Localised name of the material.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.MaterialDiscovered.DiscoveryNumber">
|
||||||
|
<summary>
|
||||||
|
Count of the number of discovered items in that category by the CMDR.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:Observatory.Framework.Files.Journal.MultiSellExplorationData">
|
||||||
|
<summary>
|
||||||
|
Event generated when discovery data for multiple systems are sold at once.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.MultiSellExplorationData.Discovered">
|
||||||
|
<summary>
|
||||||
|
List of all sold first discoveries.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.MultiSellExplorationData.BaseValue">
|
||||||
|
<summary>
|
||||||
|
Base value of total sold data.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.MultiSellExplorationData.Bonus">
|
||||||
|
<summary>
|
||||||
|
Bonus value added to base amount.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.MultiSellExplorationData.TotalEarnings">
|
||||||
|
<summary>
|
||||||
|
Total amount earned by CMDR for data sale.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:Observatory.Framework.Files.Journal.NavBeaconScan">
|
||||||
|
<summary>
|
||||||
|
Event generated when scanned a populated system's navigation beacon.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.NavBeaconScan.NumBodies">
|
||||||
|
<summary>
|
||||||
|
Number of bodies in system.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.NavBeaconScan.SystemAddress">
|
||||||
|
<summary>
|
||||||
|
Unique ID of system.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:Observatory.Framework.Files.Journal.SAAScanComplete">
|
||||||
|
<summary>
|
||||||
|
Event generated when a body surface scan is completed.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.SAAScanComplete.SystemAddress">
|
||||||
|
<summary>
|
||||||
|
Unique ID of current system.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.SAAScanComplete.BodyName">
|
||||||
|
<summary>
|
||||||
|
Name of the scanned body.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.SAAScanComplete.BodyID">
|
||||||
|
<summary>
|
||||||
|
ID of the scanned body within the system.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
<member name="P:Observatory.Framework.Files.Journal.SAAScanComplete.Discoverers">
|
<member name="P:Observatory.Framework.Files.Journal.SAAScanComplete.Discoverers">
|
||||||
<summary>
|
<summary>
|
||||||
This property is indicated with strikethrough in Frontier's documentation and may be deprecated.
|
This property is indicated with strikethrough in Frontier's documentation and is likely unused.
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="P:Observatory.Framework.Files.Journal.SAAScanComplete.Mappers">
|
<member name="P:Observatory.Framework.Files.Journal.SAAScanComplete.Mappers">
|
||||||
<summary>
|
<summary>
|
||||||
This property is indicated with strikethrough in Frontier's documentation and may be deprecated.
|
This property is indicated with strikethrough in Frontier's documentation and is likely unused.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.SAAScanComplete.ProbesUsed">
|
||||||
|
<summary>
|
||||||
|
Number of probes fired to complete the surface scan.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.SAAScanComplete.EfficiencyTarget">
|
||||||
|
<summary>
|
||||||
|
Maximum number of probes which can be used to get efficiency bonus.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:Observatory.Framework.Files.Journal.SAASignalsFound">
|
||||||
|
<summary>
|
||||||
|
Event written when the surface scan finds signals on the body.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.SAASignalsFound.SystemAddress">
|
||||||
|
<summary>
|
||||||
|
Unique ID of current system.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.SAASignalsFound.BodyName">
|
||||||
|
<summary>
|
||||||
|
Name of the scanned body.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.SAASignalsFound.BodyID">
|
||||||
|
<summary>
|
||||||
|
ID of the body within the system.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.SAASignalsFound.Signals">
|
||||||
|
<summary>
|
||||||
|
List of signals found.
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="T:Observatory.Framework.Files.Journal.Scan">
|
<member name="T:Observatory.Framework.Files.Journal.Scan">
|
||||||
@ -514,6 +919,87 @@
|
|||||||
Mean anomaly in degrees.
|
Mean anomaly in degrees.
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="T:Observatory.Framework.Files.Journal.Screenshot">
|
||||||
|
<summary>
|
||||||
|
Event generated when the player takes a screenshot.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.Screenshot.Filename">
|
||||||
|
<summary>
|
||||||
|
<para>Filename of the screenshot taken in the form of "\\ED Pictures\\filename"</para>
|
||||||
|
<para>"\\ED Pictures\\" corresponds to "%userprofile%\Pictures\Frontier Developments\Elite Dangerous\"</para>
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.Screenshot.Width">
|
||||||
|
<summary>
|
||||||
|
Pixel width of the saved image.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.Screenshot.Height">
|
||||||
|
<summary>
|
||||||
|
Pixel height of the saved image.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.Screenshot.System">
|
||||||
|
<summary>
|
||||||
|
System name of the current system.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.Screenshot.Body">
|
||||||
|
<summary>
|
||||||
|
Body name of the current location.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.Screenshot.Latitude">
|
||||||
|
<summary>
|
||||||
|
Current latitude if applicable.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.Screenshot.Longitude">
|
||||||
|
<summary>
|
||||||
|
Current longitude if applicable.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.Screenshot.Altitude">
|
||||||
|
<summary>
|
||||||
|
Current altitude if applicable.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.Screenshot.Heading">
|
||||||
|
<summary>
|
||||||
|
Current heading if applicable.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="T:Observatory.Framework.Files.Journal.SellExplorationData">
|
||||||
|
<summary>
|
||||||
|
Event generated when selling exploration data. Historically also written for multi-selling, but used only for single system sales in current live game client.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.SellExplorationData.Systems">
|
||||||
|
<summary>
|
||||||
|
List of systems for which data was sold.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.SellExplorationData.Discovered">
|
||||||
|
<summary>
|
||||||
|
List of first discovered bodies.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.SellExplorationData.BaseValue">
|
||||||
|
<summary>
|
||||||
|
Base value of sold data.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.SellExplorationData.Bonus">
|
||||||
|
<summary>
|
||||||
|
Extra amount from bonuses.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:Observatory.Framework.Files.Journal.SellExplorationData.TotalEarnings">
|
||||||
|
<summary>
|
||||||
|
Total amount made from selling data.
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
<member name="T:Observatory.Framework.Files.CargoFile">
|
<member name="T:Observatory.Framework.Files.CargoFile">
|
||||||
<summary>
|
<summary>
|
||||||
Elite Dangerous cargo.json file. Describes the current cargo carried above the player's ship.
|
Elite Dangerous cargo.json file. Describes the current cargo carried above the player's ship.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user