diff --git a/ObservatoryBotanist/ObservatoryBotanist.csproj b/ObservatoryBotanist/ObservatoryBotanist.csproj
index b7dcb13..6ca2774 100644
--- a/ObservatoryBotanist/ObservatoryBotanist.csproj
+++ b/ObservatoryBotanist/ObservatoryBotanist.csproj
@@ -23,7 +23,7 @@
-
+
diff --git a/ObservatoryCore/App.config b/ObservatoryCore/App.config
index 6a8c1b6..b69fc93 100644
--- a/ObservatoryCore/App.config
+++ b/ObservatoryCore/App.config
@@ -70,6 +70,12 @@
False
+
+ Dark
+
+
+
+
\ No newline at end of file
diff --git a/ObservatoryCore/Assets/Resources.Designer.cs b/ObservatoryCore/Assets/Resources.Designer.cs
new file mode 100644
index 0000000..9013041
--- /dev/null
+++ b/ObservatoryCore/Assets/Resources.Designer.cs
@@ -0,0 +1,73 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace Observatory.Assets {
+ using System;
+
+
+ ///
+ /// A strongly-typed resource class, for looking up localized strings, etc.
+ ///
+ // This class was auto-generated by the StronglyTypedResourceBuilder
+ // class via a tool like ResGen or Visual Studio.
+ // To add or remove a member, edit your .ResX file then rerun ResGen
+ // with the /str option, or rebuild your VS project.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Resources {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resources() {
+ }
+
+ ///
+ /// Returns the cached ResourceManager instance used by this class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager {
+ get {
+ if (object.ReferenceEquals(resourceMan, null)) {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Observatory.Assets.Resources", typeof(Resources).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// Overrides the current thread's CurrentUICulture property for all
+ /// resource lookups using this strongly typed resource class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture {
+ get {
+ return resourceCulture;
+ }
+ set {
+ resourceCulture = value;
+ }
+ }
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon).
+ ///
+ internal static System.Drawing.Icon EOCIcon_Presized {
+ get {
+ object obj = ResourceManager.GetObject("EOCIcon_Presized", resourceCulture);
+ return ((System.Drawing.Icon)(obj));
+ }
+ }
+ }
+}
diff --git a/ObservatoryCore/Assets/Resources.resx b/ObservatoryCore/Assets/Resources.resx
new file mode 100644
index 0000000..e07a181
--- /dev/null
+++ b/ObservatoryCore/Assets/Resources.resx
@@ -0,0 +1,124 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+ EOCIcon-Presized.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
\ No newline at end of file
diff --git a/ObservatoryCore/NativeNotification/NativePopup.cs b/ObservatoryCore/NativeNotification/NativePopup.cs
index eff794e..9f35b74 100644
--- a/ObservatoryCore/NativeNotification/NativePopup.cs
+++ b/ObservatoryCore/NativeNotification/NativePopup.cs
@@ -1,5 +1,6 @@
using Observatory.Framework;
using Observatory.UI;
+using System;
namespace Observatory.NativeNotification
{
@@ -21,6 +22,11 @@ namespace Observatory.NativeNotification
notification.FormClosed += NotifyWindow_Closed;
+ foreach(var notificationForm in notifications)
+ {
+ notificationForm.Value.AdjustOffset(true);
+ }
+
notifications.Add(notificationGuid, notification);
notification.Show();
});
@@ -34,6 +40,11 @@ namespace Observatory.NativeNotification
{
var currentNotification = (NotificationForm)sender;
+ foreach (var notification in notifications.Where(n => n.Value.CreationTime < currentNotification.CreationTime))
+ {
+ notification.Value.AdjustOffset(false);
+ }
+
if (notifications.ContainsKey(currentNotification.Guid))
{
notifications.Remove(currentNotification.Guid);
diff --git a/ObservatoryCore/NativeNotification/NativeVoice.cs b/ObservatoryCore/NativeNotification/NativeVoice.cs
index 9a21fa4..fd14368 100644
--- a/ObservatoryCore/NativeNotification/NativeVoice.cs
+++ b/ObservatoryCore/NativeNotification/NativeVoice.cs
@@ -10,7 +10,7 @@ namespace Observatory.NativeNotification
{
public class NativeVoice
{
- private Queue notificationEvents;
+ private readonly Queue notificationEvents;
private bool processing;
public NativeVoice()
@@ -83,20 +83,24 @@ namespace Observatory.NativeNotification
processing = false;
}
- private string AddVoiceToSsml(string ssml, string voiceName)
+ private static string AddVoiceToSsml(string ssml, string voiceName)
{
XmlDocument ssmlDoc = new();
ssmlDoc.LoadXml(ssml);
- var ssmlNamespace = ssmlDoc.DocumentElement.NamespaceURI;
+ var ssmlNamespace = ssmlDoc.DocumentElement?.NamespaceURI;
XmlNamespaceManager ssmlNs = new(ssmlDoc.NameTable);
- ssmlNs.AddNamespace("ssml", ssmlNamespace);
+ ssmlNs.AddNamespace("ssml", ssmlNamespace ?? string.Empty);
var voiceNode = ssmlDoc.SelectSingleNode("/ssml:speak/ssml:voice", ssmlNs);
- voiceNode.Attributes.GetNamedItem("name").Value = voiceName;
-
+ var voiceNameNode = voiceNode?.Attributes?.GetNamedItem("name");
+ if (voiceNameNode != null)
+ {
+ voiceNameNode.Value = voiceName;
+ }
+
return ssmlDoc.OuterXml;
}
}
diff --git a/ObservatoryCore/ObservatoryCore.csproj b/ObservatoryCore/ObservatoryCore.csproj
index 6bd0e88..68c5174 100644
--- a/ObservatoryCore/ObservatoryCore.csproj
+++ b/ObservatoryCore/ObservatoryCore.csproj
@@ -22,8 +22,9 @@
-
-
+
+
+
@@ -33,6 +34,11 @@
+
+ True
+ True
+ Resources.resx
+
True
True
@@ -46,6 +52,10 @@
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+
ResXFileCodeGenerator
Resources.Designer.cs
@@ -58,6 +68,10 @@
Core.Designer.cs
+
+
+
+
diff --git a/ObservatoryCore/PluginManagement/PluginCore.cs b/ObservatoryCore/PluginManagement/PluginCore.cs
index 97773c2..05f1e47 100644
--- a/ObservatoryCore/PluginManagement/PluginCore.cs
+++ b/ObservatoryCore/PluginManagement/PluginCore.cs
@@ -14,11 +14,15 @@ namespace Observatory.PluginManagement
private readonly NativeVoice NativeVoice;
private readonly NativePopup NativePopup;
-
- public PluginCore()
+ private bool OverridePopup;
+ private bool OverrideAudio;
+
+ public PluginCore(bool OverridePopup = false, bool OverrideAudio = false)
{
NativeVoice = new();
NativePopup = new();
+ this.OverridePopup = OverridePopup;
+ this.OverrideAudio = OverrideAudio;
}
public string Version => System.Reflection.Assembly.GetEntryAssembly()?.GetName().Version?.ToString() ?? "0";
@@ -31,11 +35,8 @@ namespace Observatory.PluginManagement
};
}
- public Status GetStatus()
- {
- throw new NotImplementedException();
- }
-
+ public Status GetStatus() => LogMonitor.GetInstance.Status;
+
public Guid SendNotification(string title, string text)
{
return SendNotification(new NotificationArgs() { Title = title, Detail = text });
@@ -53,12 +54,12 @@ namespace Observatory.PluginManagement
handler?.Invoke(this, notificationArgs);
}
- if (Properties.Core.Default.NativeNotify && notificationArgs.Rendering.HasFlag(NotificationRendering.NativeVisual))
+ if (!OverridePopup && Properties.Core.Default.NativeNotify && notificationArgs.Rendering.HasFlag(NotificationRendering.NativeVisual))
{
guid = NativePopup.InvokeNativeNotification(notificationArgs);
}
- if (Properties.Core.Default.VoiceNotify && notificationArgs.Rendering.HasFlag(NotificationRendering.NativeVocal))
+ if (!OverrideAudio && Properties.Core.Default.VoiceNotify && notificationArgs.Rendering.HasFlag(NotificationRendering.NativeVocal))
{
NativeVoice.EnqueueAndAnnounce(notificationArgs);
}
@@ -69,14 +70,13 @@ namespace Observatory.PluginManagement
public void CancelNotification(Guid id)
{
- NativePopup.CloseNotification(id);
+ ExecuteOnUIThread(() => NativePopup.CloseNotification(id));
}
public void UpdateNotification(Guid id, NotificationArgs notificationArgs)
{
if (!IsLogMonitorBatchReading)
{
-
if (notificationArgs.Rendering.HasFlag(NotificationRendering.PluginNotifier))
{
var handler = Notification;
@@ -140,6 +140,8 @@ namespace Observatory.PluginManagement
public event EventHandler Notification;
+ internal event EventHandler PluginMessage;
+
public string PluginStorageFolder
{
get
@@ -161,25 +163,19 @@ namespace Observatory.PluginManagement
}
}
+ public async Task PlayAudioFile(string filePath)
+ {
+ await AudioHandler.PlayFile(filePath);
+ }
+
+ public void SendPluginMessage(IObservatoryPlugin plugin, object message)
+ {
+ PluginMessage?.Invoke(this, new PluginMessageArgs(plugin.Name, plugin.Version, message));
+ }
+
internal void Shutdown()
{
NativePopup.CloseAll();
}
-
- private static bool FirstRowIsAllNull(IObservatoryWorker worker)
- {
- bool allNull = true;
- Type itemType = worker.PluginUI.DataGrid[0].GetType();
- foreach (var property in itemType.GetProperties())
- {
- if (property.GetValue(worker.PluginUI.DataGrid[0], null) != null)
- {
- allNull = false;
- break;
- }
- }
-
- return allNull;
- }
}
}
diff --git a/ObservatoryCore/PluginManagement/PluginEventHandler.cs b/ObservatoryCore/PluginManagement/PluginEventHandler.cs
index 44eab77..3292896 100644
--- a/ObservatoryCore/PluginManagement/PluginEventHandler.cs
+++ b/ObservatoryCore/PluginManagement/PluginEventHandler.cs
@@ -110,6 +110,14 @@ namespace Observatory.PluginManagement
}
}
+ public void OnPluginMessageEvent(object _, PluginMessageArgs messageArgs)
+ {
+ foreach (var plugin in observatoryNotifiers.Cast().Concat(observatoryWorkers))
+ {
+ plugin.HandlePluginMessage(messageArgs.SourceName, messageArgs.SourceVersion, messageArgs.Message);
+ }
+ }
+
private void ResetTimer()
{
timer.Stop();
@@ -146,4 +154,18 @@ namespace Observatory.PluginManagement
}
}
}
+
+ internal class PluginMessageArgs
+ {
+ internal string SourceName;
+ internal string SourceVersion;
+ internal object Message;
+
+ internal PluginMessageArgs(string sourceName, string sourceVersion, object message)
+ {
+ SourceName = sourceName;
+ SourceVersion = sourceVersion;
+ Message = message;
+ }
+ }
}
diff --git a/ObservatoryCore/PluginManagement/PluginManager.cs b/ObservatoryCore/PluginManagement/PluginManager.cs
index 2df6441..f9878bc 100644
--- a/ObservatoryCore/PluginManagement/PluginManager.cs
+++ b/ObservatoryCore/PluginManagement/PluginManager.cs
@@ -50,7 +50,10 @@ namespace Observatory.PluginManagement
logMonitor.StatusUpdate += pluginHandler.OnStatusUpdate;
logMonitor.LogMonitorStateChanged += pluginHandler.OnLogMonitorStateChanged;
- core = new PluginCore();
+ var ovPopup = notifyPlugins.Any(n => n.plugin.OverridePopupNotifications);
+ var ovAudio = notifyPlugins.Any(n => n.plugin.OverrideAudioNotifications);
+
+ core = new PluginCore(ovPopup, ovAudio);
List errorPlugins = new();
@@ -97,6 +100,7 @@ namespace Observatory.PluginManagement
notifyPlugins.RemoveAll(n => errorPlugins.Contains(n.plugin));
core.Notification += pluginHandler.OnNotificationEvent;
+ core.PluginMessage += pluginHandler.OnPluginMessageEvent;
if (errorList.Any())
ErrorReporter.ShowErrorPopup("Plugin Load Error" + (errorList.Count > 1 ? "s" : String.Empty), errorList);
@@ -114,7 +118,15 @@ namespace Observatory.PluginManagement
if (!String.IsNullOrWhiteSpace(savedSettings))
{
- pluginSettings = JsonSerializer.Deserialize>(savedSettings);
+ var settings = JsonSerializer.Deserialize>(savedSettings);
+ if (settings != null)
+ {
+ pluginSettings = settings;
+ }
+ else
+ {
+ pluginSettings = new();
+ }
}
else
{
@@ -138,7 +150,7 @@ namespace Observatory.PluginManagement
var properties = settings.GetType().GetProperties();
foreach (var property in properties)
{
- var attrib = property.GetCustomAttribute();
+ var attrib = property.GetCustomAttribute();
if (attrib == null)
{
settingNames.Add(property, property.Name);
@@ -396,7 +408,7 @@ namespace Observatory.PluginManagement
if (constructor != null)
{
object instance = constructor.Invoke(Array.Empty
-
+
diff --git a/ObservatoryFramework/Attributes.cs b/ObservatoryFramework/Attributes.cs
index 05bf691..8bfd806 100644
--- a/ObservatoryFramework/Attributes.cs
+++ b/ObservatoryFramework/Attributes.cs
@@ -33,6 +33,20 @@ namespace Observatory.Framework
}
}
+ ///
+ /// Suggests default column width when building basic UI
+ ///
+ [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
+ public class ColumnSuggestedWidth : Attribute
+ {
+ public ColumnSuggestedWidth(int width)
+ {
+ Width = width;
+ }
+
+ public int Width { get; }
+ }
+
///
/// Indicates that the property should not be displayed to the user in the UI.
///
diff --git a/ObservatoryFramework/Files/Converters/ThargoidWarRemainingTimeConverter.cs b/ObservatoryFramework/Files/Converters/ThargoidWarRemainingTimeConverter.cs
new file mode 100644
index 0000000..f4a6795
--- /dev/null
+++ b/ObservatoryFramework/Files/Converters/ThargoidWarRemainingTimeConverter.cs
@@ -0,0 +1,35 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Text.Json.Serialization;
+using System.Text.Json;
+using System.Threading.Tasks;
+using System.Reflection.Metadata.Ecma335;
+
+namespace Observatory.Framework.Files.Converters
+{
+ class ThargoidWarRemainingTimeConverter : JsonConverter
+ {
+ public override int Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
+ {
+ if (reader.TokenType == JsonTokenType.String)
+ {
+ string value = reader.GetString();
+
+ int dayCount = Int32.TryParse(value.Split(' ')[0], out int days)
+ ? days
+ : 0;
+
+ return dayCount;
+ }
+ else
+ return reader.GetInt32();
+ }
+
+ public override void Write(Utf8JsonWriter writer, int value, JsonSerializerOptions options)
+ {
+ writer.WriteStringValue(value.ToString() + " Days");
+ }
+ }
+}
diff --git a/ObservatoryFramework/Files/Journal/Combat/Bounty.cs b/ObservatoryFramework/Files/Journal/Combat/Bounty.cs
index 54c4470..13e8a12 100644
--- a/ObservatoryFramework/Files/Journal/Combat/Bounty.cs
+++ b/ObservatoryFramework/Files/Journal/Combat/Bounty.cs
@@ -6,6 +6,8 @@ namespace Observatory.Framework.Files.Journal
public class Bounty : JournalBase
{
public ImmutableList Rewards { get; init; }
+ public string PilotName { get; set; }
+ public string PilotName_Localised { get; set; }
public string Target { get; init; }
public string Target_Localised { get; init; }
public string Faction { get; init; }
diff --git a/ObservatoryFramework/Files/Journal/Combat/EscapeInterdiction.cs b/ObservatoryFramework/Files/Journal/Combat/EscapeInterdiction.cs
index c917d3b..2648d25 100644
--- a/ObservatoryFramework/Files/Journal/Combat/EscapeInterdiction.cs
+++ b/ObservatoryFramework/Files/Journal/Combat/EscapeInterdiction.cs
@@ -4,5 +4,6 @@
{
public string Interdictor { get; init; }
public bool IsPlayer { get; init; }
+ public bool IsThargoid { get; init; }
}
}
diff --git a/ObservatoryFramework/Files/Journal/Combat/Interdicted.cs b/ObservatoryFramework/Files/Journal/Combat/Interdicted.cs
index 17b6121..f0cb0b9 100644
--- a/ObservatoryFramework/Files/Journal/Combat/Interdicted.cs
+++ b/ObservatoryFramework/Files/Journal/Combat/Interdicted.cs
@@ -9,5 +9,6 @@
public int CombatRank { get; init; }
public string Faction { get; init; }
public string Power { get; init; }
+ public bool IsThargoid { get; init; }
}
}
diff --git a/ObservatoryFramework/Files/Journal/Exploration/FSSSignalDiscovered.cs b/ObservatoryFramework/Files/Journal/Exploration/FSSSignalDiscovered.cs
index 2ced548..21ed41c 100644
--- a/ObservatoryFramework/Files/Journal/Exploration/FSSSignalDiscovered.cs
+++ b/ObservatoryFramework/Files/Journal/Exploration/FSSSignalDiscovered.cs
@@ -14,6 +14,10 @@
///
public string SignalName_Localised { get; init; }
///
+ /// Type of signal location.
+ ///
+ public string SignalType { get; init; }
+ ///
/// Faction state or circumstance that caused this signal to appear.
///
public string SpawningState { get; init; }
diff --git a/ObservatoryFramework/Files/Journal/FleetCarrier/CarrierJump.cs b/ObservatoryFramework/Files/Journal/FleetCarrier/CarrierJump.cs
index 4e39831..9ecc398 100644
--- a/ObservatoryFramework/Files/Journal/FleetCarrier/CarrierJump.cs
+++ b/ObservatoryFramework/Files/Journal/FleetCarrier/CarrierJump.cs
@@ -8,6 +8,10 @@ namespace Observatory.Framework.Files.Journal
public class CarrierJump : FSDJump
{
public bool Docked { get; init; }
+ public bool OnFoot { get; init; }
+ ///
+ /// Name of the station at which this event occurred.
+ ///
public string StationName { get; init; }
public string StationType { get; init; }
public ulong MarketID { get; init; }
diff --git a/ObservatoryFramework/Files/Journal/Odyssey/Disembark.cs b/ObservatoryFramework/Files/Journal/Odyssey/Disembark.cs
index 6ee667c..508cc48 100644
--- a/ObservatoryFramework/Files/Journal/Odyssey/Disembark.cs
+++ b/ObservatoryFramework/Files/Journal/Odyssey/Disembark.cs
@@ -18,6 +18,9 @@ namespace Observatory.Framework.Files.Journal
public int BodyID { get; init; }
public bool OnStation { get; init; }
public bool OnPlanet { get; init; }
+ ///
+ /// Name of the station at which this event occurred.
+ ///
public string StationName { get; init; }
public string StationType { get; init; }
public ulong MarketID { get; init; }
diff --git a/ObservatoryFramework/Files/Journal/Odyssey/ScanOrganic.cs b/ObservatoryFramework/Files/Journal/Odyssey/ScanOrganic.cs
index 7237f07..766a5e6 100644
--- a/ObservatoryFramework/Files/Journal/Odyssey/ScanOrganic.cs
+++ b/ObservatoryFramework/Files/Journal/Odyssey/ScanOrganic.cs
@@ -11,6 +11,8 @@ namespace Observatory.Framework.Files.Journal
public string Genus_Localised { get; init; }
public string Species { get; init; }
public string Species_Localised { get; init; }
+ public string Variant { get; init; }
+ public string Variant_Localised { get; init; }
public ulong SystemAddress { get; init; }
public int Body { get; init; }
}
diff --git a/ObservatoryFramework/Files/Journal/Other/ApproachSettlement.cs b/ObservatoryFramework/Files/Journal/Other/ApproachSettlement.cs
index 6ebb960..65b8a3c 100644
--- a/ObservatoryFramework/Files/Journal/Other/ApproachSettlement.cs
+++ b/ObservatoryFramework/Files/Journal/Other/ApproachSettlement.cs
@@ -1,4 +1,9 @@
-namespace Observatory.Framework.Files.Journal
+using Observatory.Framework.Files.Converters;
+using Observatory.Framework.Files.ParameterTypes;
+using System.Collections.Immutable;
+using System.Text.Json.Serialization;
+
+namespace Observatory.Framework.Files.Journal
{
public class ApproachSettlement : JournalBase
{
@@ -10,5 +15,13 @@
public float Longitude { get; init; }
public int BodyID { get; init; }
public string BodyName { get; init; }
+ public ImmutableList StationEconomies { get; init; }
+ public string StationEconomy { get; init; }
+ public string StationEconomy_Localised { get; init; }
+ public Faction StationFaction { get; init; }
+ public string StationGovernment { get; init; }
+ public string StationGovernment_Localised { get; init; }
+ [JsonConverter(typeof(StationServiceConverter))]
+ public StationService StationServices { get; init; }
}
}
diff --git a/ObservatoryFramework/Files/Journal/Startup/Passengers.cs b/ObservatoryFramework/Files/Journal/Startup/Passengers.cs
index 830e74b..eb61b94 100644
--- a/ObservatoryFramework/Files/Journal/Startup/Passengers.cs
+++ b/ObservatoryFramework/Files/Journal/Startup/Passengers.cs
@@ -1,11 +1,27 @@
using Observatory.Framework.Files.ParameterTypes;
using System.Collections.Immutable;
+using System.Text.Json.Serialization;
namespace Observatory.Framework.Files.Journal
{
public class Passengers : JournalBase
{
- public ImmutableList Manifest { get; init; }
+ [JsonPropertyName("Passengers_Missions_Accepted")]
+ public int PassengersMissionsAccepted { get; init; }
+ [JsonPropertyName("Passengers_Missions_Bulk")]
+ public int PassengersMissionsBulk { get; init; }
+
+ [JsonPropertyName("Passengers_Missions_Delivered")]
+ public int PassengersMissionsDelivered { get; init; }
+
+ [JsonPropertyName("Passengers_Missions_Disgruntled")]
+ public int PassengersMissionsDisgruntled { get; init; }
+
+ [JsonPropertyName("Passengers_Missions_Ejected")]
+ public int PassengersMissionsEjected { get; init; }
+
+ [JsonPropertyName("Passengers_Missions_VIP")]
+ public int PassengersMissionsVip { get; init; }
}
}
diff --git a/ObservatoryFramework/Files/Journal/Startup/Statistics.cs b/ObservatoryFramework/Files/Journal/Startup/Statistics.cs
index 1b26b88..da6ed6f 100644
--- a/ObservatoryFramework/Files/Journal/Startup/Statistics.cs
+++ b/ObservatoryFramework/Files/Journal/Startup/Statistics.cs
@@ -27,5 +27,6 @@ namespace Observatory.Framework.Files.Journal
public CQC CQC { get; init; }
[JsonPropertyName("FLEETCARRIER")]
public FleetCarrier FleetCarrier { get; init; }
+ public Exobiology Exobiology { get; init; }
}
}
diff --git a/ObservatoryFramework/Files/Journal/StationServices/ClearImpound.cs b/ObservatoryFramework/Files/Journal/StationServices/ClearImpound.cs
new file mode 100644
index 0000000..9951e05
--- /dev/null
+++ b/ObservatoryFramework/Files/Journal/StationServices/ClearImpound.cs
@@ -0,0 +1,11 @@
+namespace Observatory.Framework.Files.Journal
+{
+ public class ClearImpound : JournalBase
+ {
+ public string ShipType { get; init; }
+ public string ShipType_Localised { get; init; }
+ public ulong ShipID { get; init; }
+ public ulong ShipMarketID { get; init; }
+ public ulong MarketID { get; init; }
+ }
+}
diff --git a/ObservatoryFramework/Files/Journal/StationServices/Market.cs b/ObservatoryFramework/Files/Journal/StationServices/Market.cs
index 2b80fa3..de87e41 100644
--- a/ObservatoryFramework/Files/Journal/StationServices/Market.cs
+++ b/ObservatoryFramework/Files/Journal/StationServices/Market.cs
@@ -7,6 +7,9 @@ namespace Observatory.Framework.Files.Journal
public class Market : JournalBase
{
public ulong MarketID { get; init; }
+ ///
+ /// Name of the station at which this event occurred.
+ ///
public string StationName { get; init; }
public string StationType { get; init; }
public string StarSystem { get; init; }
diff --git a/ObservatoryFramework/Files/Journal/StationServices/MassModuleStore.cs b/ObservatoryFramework/Files/Journal/StationServices/MassModuleStore.cs
index b406b8d..57a989a 100644
--- a/ObservatoryFramework/Files/Journal/StationServices/MassModuleStore.cs
+++ b/ObservatoryFramework/Files/Journal/StationServices/MassModuleStore.cs
@@ -5,7 +5,7 @@ namespace Observatory.Framework.Files.Journal
{
public class MassModuleStore : JournalBase
{
- public long MarketID { get; init; }
+ public ulong MarketID { get; init; }
public string Ship { get; init; }
public ulong ShipID { get; init; }
public ImmutableList- Items { get; init; }
diff --git a/ObservatoryFramework/Files/Journal/StationServices/Outfitting.cs b/ObservatoryFramework/Files/Journal/StationServices/Outfitting.cs
index bfb406e..43765b4 100644
--- a/ObservatoryFramework/Files/Journal/StationServices/Outfitting.cs
+++ b/ObservatoryFramework/Files/Journal/StationServices/Outfitting.cs
@@ -3,6 +3,9 @@
public class Outfitting : JournalBase
{
public ulong MarketID { get; init; }
+ ///
+ /// Name of the station at which this event occurred.
+ ///
public string StationName { get; init; }
public string StarSystem { get; init; }
}
diff --git a/ObservatoryFramework/Files/Journal/StationServices/Shipyard.cs b/ObservatoryFramework/Files/Journal/StationServices/Shipyard.cs
index 8fa1b67..34457f3 100644
--- a/ObservatoryFramework/Files/Journal/StationServices/Shipyard.cs
+++ b/ObservatoryFramework/Files/Journal/StationServices/Shipyard.cs
@@ -3,6 +3,9 @@
public class Shipyard : JournalBase
{
public ulong MarketID { get; init; }
+ ///
+ /// Name of the station at which this event occurred.
+ ///
public string StationName { get; init; }
public string StarSystem { get; init; }
}
diff --git a/ObservatoryFramework/Files/Journal/StationServices/StoredModules.cs b/ObservatoryFramework/Files/Journal/StationServices/StoredModules.cs
index 6567717..646baac 100644
--- a/ObservatoryFramework/Files/Journal/StationServices/StoredModules.cs
+++ b/ObservatoryFramework/Files/Journal/StationServices/StoredModules.cs
@@ -6,6 +6,9 @@ namespace Observatory.Framework.Files.Journal
public class StoredModules : JournalBase
{
public string StarSystem { get; init; }
+ ///
+ /// Name of the station at which this event occurred.
+ ///
public string StationName { get; init; }
public ulong MarketID { get; init; }
public ImmutableList Items { get; init; }
diff --git a/ObservatoryFramework/Files/Journal/StationServices/StoredShips.cs b/ObservatoryFramework/Files/Journal/StationServices/StoredShips.cs
index 55fda63..e7294ac 100644
--- a/ObservatoryFramework/Files/Journal/StationServices/StoredShips.cs
+++ b/ObservatoryFramework/Files/Journal/StationServices/StoredShips.cs
@@ -6,6 +6,9 @@ namespace Observatory.Framework.Files.Journal
public class StoredShips : JournalBase
{
public ulong MarketID { get; init; }
+ ///
+ /// Name of the station at which this event occurred.
+ ///
public string StationName { get; init; }
public string StarSystem { get; init; }
public ImmutableList ShipsHere { get; init; }
diff --git a/ObservatoryFramework/Files/Journal/Trade/MarketBuy.cs b/ObservatoryFramework/Files/Journal/Trade/MarketBuy.cs
index 23254db..ad9bf75 100644
--- a/ObservatoryFramework/Files/Journal/Trade/MarketBuy.cs
+++ b/ObservatoryFramework/Files/Journal/Trade/MarketBuy.cs
@@ -2,7 +2,7 @@
{
public class MarketBuy : JournalBase
{
- public long MarketID { get; init; }
+ public ulong MarketID { get; init; }
public string Type { get; init; }
public string Type_Localised { get; init; }
public int Count { get; init; }
diff --git a/ObservatoryFramework/Files/Journal/Trade/MarketSell.cs b/ObservatoryFramework/Files/Journal/Trade/MarketSell.cs
index 8d479be..276be75 100644
--- a/ObservatoryFramework/Files/Journal/Trade/MarketSell.cs
+++ b/ObservatoryFramework/Files/Journal/Trade/MarketSell.cs
@@ -2,7 +2,7 @@
{
public class MarketSell : JournalBase
{
- public long MarketID { get; init; }
+ public ulong MarketID { get; init; }
public string Type { get; init; }
public string Type_Localised { get; init; }
public int Count { get; init; }
diff --git a/ObservatoryFramework/Files/Journal/Travel/Docked.cs b/ObservatoryFramework/Files/Journal/Travel/Docked.cs
index 1fa7299..93a7a4d 100644
--- a/ObservatoryFramework/Files/Journal/Travel/Docked.cs
+++ b/ObservatoryFramework/Files/Journal/Travel/Docked.cs
@@ -7,12 +7,14 @@ namespace Observatory.Framework.Files.Journal
{
public class Docked : JournalBase
{
-
+ ///
+ /// Name of the station at which this event occurred.
+ ///
public string StationName { get; init; }
public string StationType { get; init; }
public string StarSystem { get; init; }
public ulong SystemAddress { get; init; }
- public long MarketID { get; init; }
+ public ulong MarketID { get; init; }
[JsonConverter(typeof(Converters.LegacyFactionConverter))]
public Faction StationFaction { get; init; }
diff --git a/ObservatoryFramework/Files/Journal/Travel/DockingRequested.cs b/ObservatoryFramework/Files/Journal/Travel/DockingRequested.cs
index 07f19dc..8eb6a79 100644
--- a/ObservatoryFramework/Files/Journal/Travel/DockingRequested.cs
+++ b/ObservatoryFramework/Files/Journal/Travel/DockingRequested.cs
@@ -4,9 +4,12 @@ namespace Observatory.Framework.Files.Journal
{
public class DockingRequested : JournalBase
{
+ ///
+ /// Name of the station at which this event occurred.
+ ///
public string StationName { get; init; }
public string StationType { get; init; }
- public long MarketID { get; init; }
+ public ulong MarketID { get; init; }
public LandingPads LandingPads { get; init; }
}
}
diff --git a/ObservatoryFramework/Files/Journal/Travel/FSDJump.cs b/ObservatoryFramework/Files/Journal/Travel/FSDJump.cs
index 0a83152..ae4da99 100644
--- a/ObservatoryFramework/Files/Journal/Travel/FSDJump.cs
+++ b/ObservatoryFramework/Files/Journal/Travel/FSDJump.cs
@@ -49,5 +49,6 @@ namespace Observatory.Framework.Files.Journal
public string PowerplayState { get; init; }
public bool Taxi { get; init; }
public bool Multicrew { get; init; }
+ public ThargoidWar ThargoidWar { get; init; }
}
}
diff --git a/ObservatoryFramework/Files/Journal/Travel/Location.cs b/ObservatoryFramework/Files/Journal/Travel/Location.cs
index f771569..c401fbc 100644
--- a/ObservatoryFramework/Files/Journal/Travel/Location.cs
+++ b/ObservatoryFramework/Files/Journal/Travel/Location.cs
@@ -24,11 +24,14 @@ namespace Observatory.Framework.Files.Journal
//Stale Data, discard
}
}
+ ///
+ /// Name of the station at which this event occurred.
+ ///
public string StationName { get; init; }
public string StationType { get; init; }
public float Longitude { get; init; }
public float Latitude { get; init; }
- public long MarketID { get; init; }
+ public ulong MarketID { get; init; }
[JsonConverter(typeof(LegacyFactionConverter))]
public Faction StationFaction { get; init; }
@@ -68,5 +71,6 @@ namespace Observatory.Framework.Files.Journal
public bool Multicrew { get; init; }
public bool OnFoot { get; init; }
public bool InSRV { get; init; }
+ public ThargoidWar ThargoidWar { get; init; }
}
}
diff --git a/ObservatoryFramework/Files/Journal/Travel/StartJump.cs b/ObservatoryFramework/Files/Journal/Travel/StartJump.cs
index b09297b..5c24c4a 100644
--- a/ObservatoryFramework/Files/Journal/Travel/StartJump.cs
+++ b/ObservatoryFramework/Files/Journal/Travel/StartJump.cs
@@ -6,5 +6,6 @@
public string StarSystem { get; init; }
public ulong SystemAddress { get; init; }
public string StarClass { get; init; }
+ public bool Taxi { get; init; }
}
}
diff --git a/ObservatoryFramework/Files/Journal/Travel/SupercruiseDestinationDrop.cs b/ObservatoryFramework/Files/Journal/Travel/SupercruiseDestinationDrop.cs
new file mode 100644
index 0000000..245eefc
--- /dev/null
+++ b/ObservatoryFramework/Files/Journal/Travel/SupercruiseDestinationDrop.cs
@@ -0,0 +1,9 @@
+namespace Observatory.Framework.Files.Journal
+{
+ public class SupercruiseDestinationDrop : JournalBase
+ {
+ public string Type { get; init; }
+ public int Threat { get; init; }
+ public ulong MarketID { get; init; }
+ }
+}
diff --git a/ObservatoryFramework/Files/Journal/Travel/SupercruiseEntry.cs b/ObservatoryFramework/Files/Journal/Travel/SupercruiseEntry.cs
index f5c1cc5..442a47f 100644
--- a/ObservatoryFramework/Files/Journal/Travel/SupercruiseEntry.cs
+++ b/ObservatoryFramework/Files/Journal/Travel/SupercruiseEntry.cs
@@ -6,5 +6,6 @@
public ulong SystemAddress { get; init; }
public bool Taxi { get; init; }
public bool Multicrew { get; init; }
+ public bool? Wanted { get; init; }
}
}
diff --git a/ObservatoryFramework/Files/Journal/Travel/Undocked.cs b/ObservatoryFramework/Files/Journal/Travel/Undocked.cs
index 747e0d7..435fca2 100644
--- a/ObservatoryFramework/Files/Journal/Travel/Undocked.cs
+++ b/ObservatoryFramework/Files/Journal/Travel/Undocked.cs
@@ -2,6 +2,9 @@
{
public class Undocked : JournalBase
{
+ ///
+ /// Name of the station at which this event occurred.
+ ///
public string StationName { get; init; }
public string StationType { get; init; }
public ulong MarketID { get; init; }
diff --git a/ObservatoryFramework/Files/MarketFile.cs b/ObservatoryFramework/Files/MarketFile.cs
index fb22d0b..edbe655 100644
--- a/ObservatoryFramework/Files/MarketFile.cs
+++ b/ObservatoryFramework/Files/MarketFile.cs
@@ -11,7 +11,7 @@ namespace Observatory.Framework.Files
///
/// Unique ID of current market.
///
- public long MarketID { get; init; }
+ public ulong MarketID { get; init; }
///
/// Name of the station where the market is located.
///
diff --git a/ObservatoryFramework/Files/OutfittingFile.cs b/ObservatoryFramework/Files/OutfittingFile.cs
index 40600c2..7c23398 100644
--- a/ObservatoryFramework/Files/OutfittingFile.cs
+++ b/ObservatoryFramework/Files/OutfittingFile.cs
@@ -11,7 +11,7 @@ namespace Observatory.Framework.Files
///
/// Unique ID of current market.
///
- public long MarketID { get; init; }
+ public ulong MarketID { get; init; }
///
/// Name of the station where the market is located.
///
diff --git a/ObservatoryFramework/Files/ParameterTypes/BankAccount.cs b/ObservatoryFramework/Files/ParameterTypes/BankAccount.cs
index ca98037..ecf2841 100644
--- a/ObservatoryFramework/Files/ParameterTypes/BankAccount.cs
+++ b/ObservatoryFramework/Files/ParameterTypes/BankAccount.cs
@@ -27,5 +27,21 @@ namespace Observatory.Framework.Files.ParameterTypes
[JsonPropertyName("Spent_On_Insurance")]
public long SpentOnInsurance { get; init; }
+ [JsonPropertyName("Owned_Ship_Count")]
+ public int OwnedShipCount { get; init; }
+ [JsonPropertyName("Premium_Stock_Bought")]
+ public int PremiumStockBought { get; init; }
+ [JsonPropertyName("Spent_On_Premium_Stock")]
+ public long SpentOnPremiumStock { get; init; }
+ [JsonPropertyName("Spent_On_Suit_Consumables")]
+ public long SpentOnSuitConsumables { get; init; }
+ [JsonPropertyName("Spent_On_Suits")]
+ public long SpentOnSuits { get; init; }
+ [JsonPropertyName("Spent_On_Weapons")]
+ public long SpentOnWeapons { get; init; }
+ [JsonPropertyName("Suits_Owned")]
+ public int SuitsOwned { get; init; }
+ [JsonPropertyName("Weapons_Owned")]
+ public int WeaponsOwned { get; init; }
}
}
diff --git a/ObservatoryFramework/Files/ParameterTypes/BioData.cs b/ObservatoryFramework/Files/ParameterTypes/BioData.cs
index 50dbfd4..9dd5694 100644
--- a/ObservatoryFramework/Files/ParameterTypes/BioData.cs
+++ b/ObservatoryFramework/Files/ParameterTypes/BioData.cs
@@ -6,6 +6,8 @@
public string Genus_Localised { get; init; }
public string Species { get; init; }
public string Species_Localised { get; init; }
+ public string Variant { get; init; }
+ public string Variant_Localised { get; init; }
public int Value { get; init; }
public int Bonus { get; init; }
}
diff --git a/ObservatoryFramework/Files/ParameterTypes/Combat.cs b/ObservatoryFramework/Files/ParameterTypes/Combat.cs
index 39ddeea..27c0572 100644
--- a/ObservatoryFramework/Files/ParameterTypes/Combat.cs
+++ b/ObservatoryFramework/Files/ParameterTypes/Combat.cs
@@ -26,5 +26,37 @@ namespace Observatory.Framework.Files.ParameterTypes
[JsonPropertyName("Skimmers_Killed")]
public int SkimmersKilled { get; init; }
+ [JsonPropertyName("ConflictZone_High")]
+ public int ConflictZoneHigh { get; init; }
+ [JsonPropertyName("ConflictZone_High_Wins")]
+ public int ConflictZoneHighWins { get; init; }
+ [JsonPropertyName("ConflictZone_Low")]
+ public int ConflictZoneLow { get; init; }
+ [JsonPropertyName("ConflictZone_Low_Wins")]
+ public int ConflictZoneLowWins { get; init; }
+ [JsonPropertyName("ConflictZone_Medium")]
+ public int ConflictZoneMedium { get; init; }
+ [JsonPropertyName("ConflictZone_Medium_Wins")]
+ public int ConflictZoneMediumWins { get; init; }
+ [JsonPropertyName("ConflictZone_Total")]
+ public int ConflictZoneTotal { get; init; }
+ [JsonPropertyName("ConflictZone_Total_Wins")]
+ public int ConflictZoneTotalWins { get; init; }
+ [JsonPropertyName("OnFoot_Combat_Bonds")]
+ public int OnFootCombatBonds { get; init; }
+ [JsonPropertyName("OnFoot_Combat_Bonds_Profits")]
+ public int OnFootCombatBondsProfits { get; init; }
+ [JsonPropertyName("OnFoot_Scavs_Killed")]
+ public int OnFootScavsKilled { get; init; }
+ [JsonPropertyName("OnFoot_Ships_Destroyed")]
+ public int OnFootShipsDestroyed { get; init; }
+ [JsonPropertyName("OnFoot_Skimmers_Killed")]
+ public int OnFootSkimmersKilled { get; init; }
+ [JsonPropertyName("OnFoot_Vehicles_Destroyed")]
+ public int OnFootVehiclesDestroyed { get; init; }
+ [JsonPropertyName("Settlement_Conquered")]
+ public int SettlementConquered { get; init; }
+ [JsonPropertyName("Settlement_Defended")]
+ public int SettlementDefended { get; init; }
}
}
diff --git a/ObservatoryFramework/Files/ParameterTypes/Crafting.cs b/ObservatoryFramework/Files/ParameterTypes/Crafting.cs
index 2903945..b545084 100644
--- a/ObservatoryFramework/Files/ParameterTypes/Crafting.cs
+++ b/ObservatoryFramework/Files/ParameterTypes/Crafting.cs
@@ -29,6 +29,30 @@ namespace Observatory.Framework.Files.ParameterTypes
[JsonPropertyName("Recipes_Generated_Rank_5")]
public int RecipesGeneratedRank5 { get; init; }
+ [JsonPropertyName("Suit_Mods_Applied")]
+ public int SuitModsApplied { get; init; }
+
+ [JsonPropertyName("Suit_Mods_Applied_Full")]
+ public int SuitModsAppliedFull { get; init; }
+
+ [JsonPropertyName("Suits_Upgraded")]
+ public int SuitsUpgraded { get; init; }
+
+ [JsonPropertyName("Suits_Upgraded_Full")]
+ public int SuitsUpgradedFull { get; init; }
+
+ [JsonPropertyName("Weapon_Mods_Applied")]
+ public int WeaponModsApplied { get; init; }
+
+ [JsonPropertyName("Weapon_Mods_Applied_Full")]
+ public int WeaponModsAppliedFull { get; init; }
+
+ [JsonPropertyName("Weapons_Upgraded")]
+ public int WeaponsUpgraded { get; init; }
+
+ [JsonPropertyName("Weapons_Upgraded_Full")]
+ public int WeaponsUpgradedFull { get; init; }
+
[JsonPropertyName("Recipes_Applied"), Obsolete(JournalUtilities.ObsoleteMessage)]
public int RecipesApplied { get; init; }
diff --git a/ObservatoryFramework/Files/ParameterTypes/Crime.cs b/ObservatoryFramework/Files/ParameterTypes/Crime.cs
index d3c4982..e7ff2e2 100644
--- a/ObservatoryFramework/Files/ParameterTypes/Crime.cs
+++ b/ObservatoryFramework/Files/ParameterTypes/Crime.cs
@@ -19,5 +19,56 @@ namespace Observatory.Framework.Files.ParameterTypes
[JsonPropertyName("Highest_Bounty")]
public decimal HighestBounty { get; init; }
+
+ [JsonPropertyName("Citizens_Murdered")]
+ public int CitizensMurdered { get; init; }
+
+ [JsonPropertyName("Data_Stolen")]
+ public int DataStolen { get; init; }
+
+ [JsonPropertyName("Goods_Stolen")]
+ public int GoodsStolen { get; init; }
+
+ [JsonPropertyName("Guards_Murdered")]
+ public int GuardsMurdered { get; init; }
+
+ [JsonPropertyName("Malware_Uploaded")]
+ public int MalwareUploaded { get; init; }
+
+ [JsonPropertyName("Omnipol_Murdered")]
+ public int OmnipolMurdered { get; init; }
+
+ [JsonPropertyName("Production_Sabotage")]
+ public int ProductionSabotage { get; init; }
+
+ [JsonPropertyName("Production_Theft")]
+ public int ProductionTheft { get; init; }
+
+ [JsonPropertyName("Profiles_Cloned")]
+ public int ProfilesCloned { get; init; }
+
+ [JsonPropertyName("Sample_Stolen")]
+ public int SampleStolen { get; init; }
+
+ [JsonPropertyName("Settlements_State_Shutdown")]
+ public int SettlementsStateShutdown { get; init; }
+
+ [JsonPropertyName("Total_Murders")]
+ public int TotalMurders { get; init; }
+
+ [JsonPropertyName("Total_Stolen")]
+ public int TotalStolen { get; init; }
+
+ [JsonPropertyName("Turrets_Destroyed")]
+ public int TurretsDestroyed { get; init; }
+
+ [JsonPropertyName("Turrets_Overloaded")]
+ public int TurretsOverloaded { get; init; }
+
+ [JsonPropertyName("Turrets_Total")]
+ public int TurretsTotal { get; init; }
+
+ [JsonPropertyName("Value_Stolen_StateChange")]
+ public int ValueStolenStatechange { get; init; }
}
}
diff --git a/ObservatoryFramework/Files/ParameterTypes/Exobiology.cs b/ObservatoryFramework/Files/ParameterTypes/Exobiology.cs
new file mode 100644
index 0000000..9920ebe
--- /dev/null
+++ b/ObservatoryFramework/Files/ParameterTypes/Exobiology.cs
@@ -0,0 +1,45 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Text.Json.Serialization;
+using System.Threading.Tasks;
+
+namespace Observatory.Framework.Files.ParameterTypes
+{
+ public class Exobiology
+ {
+ [JsonPropertyName("First_Logged")]
+ public int FirstLogged { get; init; }
+
+ [JsonPropertyName("First_Logged_Profits")]
+ public long FirstLoggedProfits { get; init; }
+
+ [JsonPropertyName("Organic_Data")]
+ public int OrganicData { get; init; }
+
+ [JsonPropertyName("Organic_Data_Profits")]
+ public long OrganicDataProfits { get; init; }
+
+ [JsonPropertyName("Organic_Genus")]
+ public int OrganicGenus { get; init; }
+
+ [JsonPropertyName("Organic_Genus_Encountered")]
+ public int OrganicGenusEncountered { get; init; }
+
+ [JsonPropertyName("Organic_Planets")]
+ public int OrganicPlanets { get; init; }
+
+ [JsonPropertyName("Organic_Species")]
+ public int OrganicSpecies { get; init; }
+
+ [JsonPropertyName("Organic_Species_Encountered")]
+ public int OrganicSpeciesEncountered { get; init; }
+
+ [JsonPropertyName("Organic_Systems")]
+ public int OrganicSystems { get; init; }
+
+ [JsonPropertyName("Organic_Variant_Encountered")]
+ public int OrganicVariantEncountered { get; init; }
+ }
+}
diff --git a/ObservatoryFramework/Files/ParameterTypes/Exploration.cs b/ObservatoryFramework/Files/ParameterTypes/Exploration.cs
index df7fa01..c457526 100644
--- a/ObservatoryFramework/Files/ParameterTypes/Exploration.cs
+++ b/ObservatoryFramework/Files/ParameterTypes/Exploration.cs
@@ -40,5 +40,26 @@ namespace Observatory.Framework.Files.ParameterTypes
[JsonPropertyName("Efficient_Scans")]
public int EfficientScans { get; init; }
+
+ [JsonPropertyName("First_Footfalls")]
+ public int FirstFootfalls { get; init; }
+
+ [JsonPropertyName("OnFoot_Distance_Travelled")]
+ public long OnFootDistanceTravelled { get; init; }
+
+ [JsonPropertyName("Planet_Footfalls")]
+ public int PlanetFootfalls { get; init; }
+
+ [JsonPropertyName("Settlements_Visited")]
+ public int SettlementsVisited { get; init; }
+
+ [JsonPropertyName("Shuttle_Distance_Travelled")]
+ public double ShuttleDistanceTravelled { get; init; }
+
+ [JsonPropertyName("Shuttle_Journeys")]
+ public int ShuttleJourneys { get; init; }
+
+ [JsonPropertyName("Spent_On_Shuttles")]
+ public long SpentOnShuttles { get; init; }
}
}
diff --git a/ObservatoryFramework/Files/ParameterTypes/MaterialTrader.cs b/ObservatoryFramework/Files/ParameterTypes/MaterialTrader.cs
index 8186c75..0c4c4f6 100644
--- a/ObservatoryFramework/Files/ParameterTypes/MaterialTrader.cs
+++ b/ObservatoryFramework/Files/ParameterTypes/MaterialTrader.cs
@@ -4,6 +4,12 @@ namespace Observatory.Framework.Files.ParameterTypes
{
public class MaterialTrader
{
+ [JsonPropertyName("Assets_Traded_In")]
+ public int AssetsTradedIn { get; init; }
+
+ [JsonPropertyName("Assets_Traded_Out")]
+ public int AssetsTradedOut { get; init; }
+
[JsonPropertyName("Trades_Completed")]
public int TradesCompleted { get; init; }
diff --git a/ObservatoryFramework/Files/ParameterTypes/SearchAndRescue.cs b/ObservatoryFramework/Files/ParameterTypes/SearchAndRescue.cs
index a3e27e4..8dce88c 100644
--- a/ObservatoryFramework/Files/ParameterTypes/SearchAndRescue.cs
+++ b/ObservatoryFramework/Files/ParameterTypes/SearchAndRescue.cs
@@ -12,5 +12,29 @@ namespace Observatory.Framework.Files.ParameterTypes
[JsonPropertyName("SearchRescue_Count")]
public int Count { get; init; }
+
+ [JsonPropertyName("Maglocks_Opened")]
+ public int MaglocksOpened { get; init; }
+
+ [JsonPropertyName("Panels_Opened")]
+ public int PanelsOpened { get; init; }
+
+ [JsonPropertyName("Salvage_Illegal_POI")]
+ public int SalvageIllegalPoi { get; init; }
+
+ [JsonPropertyName("Salvage_Illegal_Settlements")]
+ public int SalvageIllegalSettlements { get; init; }
+
+ [JsonPropertyName("Salvage_Legal_POI")]
+ public int SalvageLegalPoi { get; init; }
+
+ [JsonPropertyName("Salvage_Legal_Settlements")]
+ public int SalvageLegalSettlements { get; init; }
+
+ [JsonPropertyName("Settlements_State_FireOut")]
+ public int SettlementsStateFireOut { get; init; }
+
+ [JsonPropertyName("Settlements_State_Reboot")]
+ public int SettlementsStateReboot { get; init; }
}
}
diff --git a/ObservatoryFramework/Files/ParameterTypes/Thargoid.cs b/ObservatoryFramework/Files/ParameterTypes/Thargoid.cs
index 1cb7806..3805a1e 100644
--- a/ObservatoryFramework/Files/ParameterTypes/Thargoid.cs
+++ b/ObservatoryFramework/Files/ParameterTypes/Thargoid.cs
@@ -4,6 +4,9 @@ namespace Observatory.Framework.Files.ParameterTypes
{
public class Thargoid
{
+ [JsonPropertyName("TG_ENCOUNTER_KILLED")]
+ public int EncounterKilled { get; init; }
+
[JsonPropertyName("TG_ENCOUNTER_WAKES")]
public int EncounterWakes { get; init; }
@@ -18,8 +21,5 @@ namespace Observatory.Framework.Files.ParameterTypes
[JsonPropertyName("TG_ENCOUNTER_TOTAL_LAST_SHIP")]
public string LastShip { get; init; }
-
- [JsonPropertyName("TG_SCOUT_COUNT")]
- public int ScoutCount { get; init; }
}
}
diff --git a/ObservatoryFramework/Files/ParameterTypes/ThargoidWar.cs b/ObservatoryFramework/Files/ParameterTypes/ThargoidWar.cs
new file mode 100644
index 0000000..05fbc76
--- /dev/null
+++ b/ObservatoryFramework/Files/ParameterTypes/ThargoidWar.cs
@@ -0,0 +1,16 @@
+using System.Text.Json.Serialization;
+
+namespace Observatory.Framework.Files.ParameterTypes
+{
+ public class ThargoidWar
+ {
+ public string CurrentState { get; init; }
+ public string NextStateSuccess { get; init; }
+ public string NextStateFailure { get; init; }
+ public bool SuccessStateReached { get; init; }
+ public double WarProgress { get; init; }
+ public int RemainingPorts { get; init; }
+ [JsonConverter(typeof(Converters.ThargoidWarRemainingTimeConverter))]
+ public int EstimatedRemainingTime { get; init; }
+ }
+}
diff --git a/ObservatoryFramework/Files/ParameterTypes/Trading.cs b/ObservatoryFramework/Files/ParameterTypes/Trading.cs
index f15d5ef..b347cb4 100644
--- a/ObservatoryFramework/Files/ParameterTypes/Trading.cs
+++ b/ObservatoryFramework/Files/ParameterTypes/Trading.cs
@@ -18,5 +18,14 @@ namespace Observatory.Framework.Files.ParameterTypes
[JsonPropertyName("Highest_Single_Transaction")]
public long HighestSingleTransaction { get; init; }
+
+ [JsonPropertyName("Assets_Sold")]
+ public int AssetsSold { get; init; }
+
+ [JsonPropertyName("Data_Sold")]
+ public int DataSold { get; init; }
+
+ [JsonPropertyName("Goods_Sold")]
+ public int GoodsSold { get; init; }
}
}
diff --git a/ObservatoryFramework/Interfaces.cs b/ObservatoryFramework/Interfaces.cs
index 27ee27b..e595679 100644
--- a/ObservatoryFramework/Interfaces.cs
+++ b/ObservatoryFramework/Interfaces.cs
@@ -1,6 +1,5 @@
using Observatory.Framework.Files;
using Observatory.Framework.Files.Journal;
-using System.Xml.XPath;
namespace Observatory.Framework.Interfaces
{
@@ -51,11 +50,16 @@ namespace Observatory.Framework.Interfaces
///
/// Plugin-specific object implementing the IComparer interface which is used to sort columns in the basic UI datagrid.
- /// If omitted a basic numeric compare sorter is used.
+ /// If omitted a natural sort order is used.
///
public IObservatoryComparer ColumnSorter
{ get => null; }
+ ///
+ /// Receives data sent by other plugins.
+ ///
+ public void HandlePluginMessage(string sourceName, string sourceVersion, object messageArgs)
+ { }
}
///
@@ -94,7 +98,7 @@ namespace Observatory.Framework.Interfaces
/// Used to track if a "Read All" operation is in progress or not to avoid unnecessary processing or notifications.
/// Can be omitted for plugins which do not require the distinction.
///
- [Obsolete] // Replaced by LogMonitorStateChanged
+ [Obsolete("Deprecated in favour of LogMonitorStateChanged")]
public void ReadAllStarted()
{ }
@@ -103,7 +107,7 @@ namespace Observatory.Framework.Interfaces
/// Used to track if a "Read All" operation is in progress or not to avoid unnecessary processing or notifications.
/// Can be omitted for plugins which do not require the distinction.
///
- [Obsolete] // Replaced by LogMonitorStateChanged
+ [Obsolete("Deprecated in favour of LogMonitorStateChanged")]
public void ReadAllFinished()
{ }
}
@@ -120,6 +124,20 @@ namespace Observatory.Framework.Interfaces
///
/// Details of the notification as sent from the originating worker plugin.
public void OnNotificationEvent(NotificationArgs notificationEventArgs);
+
+ ///
+ /// Property set by notification plugins to indicate to Core
+ /// that native audio notifications should be disabled/suppressed.
+ ///
+ public bool OverrideAudioNotifications
+ { get => false; }
+
+ ///
+ /// Property set by notification plugins to indicate to Core
+ /// that native popup notifications should be disabled/suppressed.
+ ///
+ public bool OverridePopupNotifications
+ { get => false; }
}
///
@@ -219,6 +237,17 @@ namespace Observatory.Framework.Interfaces
/// Retrieves and ensures creation of a location which can be used by the plugin to store persistent data.
///
public string PluginStorageFolder { get; }
+
+ ///
+ /// Plays audio file using default audio device.
+ ///
+ /// Absolute path to audio file.
+ public Task PlayAudioFile(string filePath);
+
+ ///
+ /// Sends arbitrary data to all other plugins. The full name and version of the sending plugin will be used to identify the sender to any recipients.
+ ///
+ public void SendPluginMessage(IObservatoryPlugin plugin, object message);
}
///
diff --git a/ObservatoryFramework/ObservatoryFramework.xml b/ObservatoryFramework/ObservatoryFramework.xml
index 2b3a07a..c65f353 100644
--- a/ObservatoryFramework/ObservatoryFramework.xml
+++ b/ObservatoryFramework/ObservatoryFramework.xml
@@ -20,6 +20,11 @@
Accessor to get/set displayed name.
+
+
+ Suggests default column width when building basic UI
+
+
Indicates that the property should not be displayed to the user in the UI.
@@ -489,6 +494,11 @@
Localised name of the signal type.
+
+
+ Type of signal location.
+
+
Faction state or circumstance that caused this signal to appear.
@@ -1005,6 +1015,61 @@
Total amount made from selling data.
+
+
+ Name of the station at which this event occurred.
+
+
+
+
+ Name of the station at which this event occurred.
+
+
+
+
+ Name of the station at which this event occurred.
+
+
+
+
+ Name of the station at which this event occurred.
+
+
+
+
+ Name of the station at which this event occurred.
+
+
+
+
+ Name of the station at which this event occurred.
+
+
+
+
+ Name of the station at which this event occurred.
+
+
+
+
+ Name of the station at which this event occurred.
+
+
+
+
+ Name of the station at which this event occurred.
+
+
+
+
+ Name of the station at which this event occurred.
+
+
+
+
+ Name of the station at which this event occurred.
+
+
Elite Dangerous cargo.json file. Describes the current cargo carried above the player's ship.
@@ -1352,8 +1417,13 @@
- Plugin-specific object implementing the IComparer interface which is used to sort columns in the basic UI datagrid.
- If omitted a basic string compare sorter is used.
+ Plugin-specific object implementing the IComparer interface which is used to sort columns in the basic UI datagrid.
+ If omitted a natural sort order is used.
+
+
+
+
+ Receives data sent by other plugins.
@@ -1412,6 +1482,18 @@
Details of the notification as sent from the originating worker plugin.
+
+
+ Property set by notification plugins to indicate to Core
+ that native audio notifications should be disabled/suppressed.
+
+
+
+
+ Property set by notification plugins to indicate to Core
+ that native popup notifications should be disabled/suppressed.
+
+
Interface passed by Observatory Core to plugins. Primarily used for sending notifications and UI updates back to Core.
@@ -1510,6 +1592,17 @@
Retrieves and ensures creation of a location which can be used by the plugin to store persistent data.
+
+
+ Plays audio file using default audio device.
+
+ Absolute path to audio file.
+
+
+
+ Sends arbitrary data to all other plugins. The full name and version of the sending plugin will be used to identify the sender to any recipients.
+
+
Extends the base IComparer interface with exposed values for the column ID and sort order to use.
diff --git a/ObservatoryHerald/HeraldNotifier.cs b/ObservatoryHerald/HeraldNotifier.cs
index 8c84548..a66fa28 100644
--- a/ObservatoryHerald/HeraldNotifier.cs
+++ b/ObservatoryHerald/HeraldNotifier.cs
@@ -28,6 +28,8 @@ namespace Observatory.Herald
public string ShortName => "Herald";
+ public bool OverrideAudioNotifications => true;
+
public string Version => typeof(HeraldNotifier).Assembly.GetName().Version.ToString();
public PluginUI PluginUI => new (PluginUI.UIType.None, null);
@@ -55,7 +57,7 @@ namespace Observatory.Herald
{
var speechManager = new SpeechRequestManager(
heraldSettings, observatoryCore.HttpClient, observatoryCore.PluginStorageFolder, observatoryCore.GetPluginErrorLogger(this));
- heraldSpeech = new HeraldQueue(speechManager, observatoryCore.GetPluginErrorLogger(this));
+ heraldSpeech = new HeraldQueue(speechManager, observatoryCore.GetPluginErrorLogger(this), observatoryCore);
heraldSettings.Test = TestVoice;
}
diff --git a/ObservatoryHerald/HeraldQueue.cs b/ObservatoryHerald/HeraldQueue.cs
index b0256c2..ae4dc4b 100644
--- a/ObservatoryHerald/HeraldQueue.cs
+++ b/ObservatoryHerald/HeraldQueue.cs
@@ -2,10 +2,10 @@
using System.Collections.Generic;
using System.Threading.Tasks;
using System.Linq;
-using NetCoreAudio;
using System.Threading;
using System;
using System.Diagnostics;
+using Observatory.Framework.Interfaces;
namespace Observatory.Herald
{
@@ -18,15 +18,15 @@ namespace Observatory.Herald
private string rate;
private byte volume;
private SpeechRequestManager speechManager;
- private Player audioPlayer;
private Action ErrorLogger;
+ private IObservatoryCore core;
- public HeraldQueue(SpeechRequestManager speechManager, Action errorLogger)
+ public HeraldQueue(SpeechRequestManager speechManager, Action errorLogger, IObservatoryCore core)
{
this.speechManager = speechManager;
+ this.core = core;
processing = false;
notifications = new();
- audioPlayer = new();
ErrorLogger = errorLogger;
}
@@ -74,7 +74,7 @@ namespace Observatory.Herald
{
while (notifications.Any())
{
- audioPlayer.SetVolume(volume).Wait();
+ // audioPlayer.SetVolume(volume).Wait();
notification = notifications.Dequeue();
Debug.WriteLine("Processing notification: {0} - {1}", notification.Title, notification.Detail);
@@ -118,7 +118,7 @@ namespace Observatory.Herald
return await speechManager.GetAudioFileFromSsml(ssml, voice, style, rate);
}
- private void PlayAudioRequestsSequentially(List> requestTasks)
+ private async void PlayAudioRequestsSequentially(List> requestTasks)
{
foreach (var request in requestTasks)
{
@@ -126,19 +126,20 @@ namespace Observatory.Herald
try
{
Debug.WriteLine($"Playing audio file: {file}");
- audioPlayer.Play(file).Wait();
+ await core.PlayAudioFile(file);
+ // audioPlayer.Play(file).Wait();
} catch (Exception ex)
{
Debug.WriteLine($"Failed to play {file}: {ex.Message}");
ErrorLogger(ex, $"while playing: {file}");
}
- while (audioPlayer.Playing)
- Thread.Sleep(50);
+ //while (audioPlayer.Playing)
+ // Thread.Sleep(50);
- // Explicit stop to ensure device is ready for next file.
- // ...hopefully.
- audioPlayer.Stop(true).Wait();
+ //// Explicit stop to ensure device is ready for next file.
+ //// ...hopefully.
+ //audioPlayer.Stop(true).Wait();
}
speechManager.CommitCache();
diff --git a/ObservatoryHerald/NetCoreAudio/Interfaces/IPlayer.cs b/ObservatoryHerald/NetCoreAudio/Interfaces/IPlayer.cs
deleted file mode 100644
index ed38bdb..0000000
--- a/ObservatoryHerald/NetCoreAudio/Interfaces/IPlayer.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using System;
-using System.Threading.Tasks;
-
-namespace NetCoreAudio.Interfaces
-{
- public interface IPlayer : IDisposable
- {
- event EventHandler PlaybackFinished;
-
- bool Playing { get; }
- bool Paused { get; }
-
- Task Play(string fileName);
- Task Pause();
- Task Resume();
- Task Stop(bool force);
- Task SetVolume(byte percent);
- }
-}
diff --git a/ObservatoryHerald/NetCoreAudio/Player.cs b/ObservatoryHerald/NetCoreAudio/Player.cs
deleted file mode 100644
index f38707c..0000000
--- a/ObservatoryHerald/NetCoreAudio/Player.cs
+++ /dev/null
@@ -1,98 +0,0 @@
-using NetCoreAudio.Interfaces;
-using NetCoreAudio.Players;
-using System;
-using System.Runtime.InteropServices;
-using System.Threading.Tasks;
-
-namespace NetCoreAudio
-{
- public class Player : IPlayer
- {
- private readonly IPlayer _internalPlayer;
-
- ///
- /// Internally, sets Playing flag to false. Additional handlers can be attached to it to handle any custom logic.
- ///
- public event EventHandler PlaybackFinished;
-
- ///
- /// Indicates that the audio is currently playing.
- ///
- public bool Playing => _internalPlayer.Playing;
-
- ///
- /// Indicates that the audio playback is currently paused.
- ///
- public bool Paused => _internalPlayer.Paused;
-
- public Player()
- {
- if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
- _internalPlayer = new WindowsPlayer();
- else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
- _internalPlayer = new LinuxPlayer();
- else if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX))
- _internalPlayer = new MacPlayer();
- else
- throw new Exception("No implementation exist for the current OS");
-
- _internalPlayer.PlaybackFinished += OnPlaybackFinished;
- }
-
- ///
- /// Will stop any current playback and will start playing the specified audio file. The fileName parameter can be an absolute path or a path relative to the directory where the library is located. Sets Playing flag to true. Sets Paused flag to false.
- ///
- ///
- ///
- public async Task Play(string fileName)
- {
- await _internalPlayer.Play(fileName);
- }
-
- ///
- /// Pauses any ongong playback. Sets Paused flag to true. Doesn't modify Playing flag.
- ///
- ///
- public async Task Pause()
- {
- await _internalPlayer.Pause();
- }
-
- ///
- /// Resumes any paused playback. Sets Paused flag to false. Doesn't modify Playing flag.
- ///
- ///
- public async Task Resume()
- {
- await _internalPlayer.Resume();
- }
-
- ///
- /// Stops any current playback and clears the buffer. Sets Playing and Paused flags to false.
- ///
- ///
- public async Task Stop(bool force = false)
- {
- await _internalPlayer.Stop(force);
- }
-
- private void OnPlaybackFinished(object sender, EventArgs e)
- {
- PlaybackFinished?.Invoke(this, e);
- }
-
- ///
- /// Sets the playing volume as percent
- ///
- ///
- public async Task SetVolume(byte percent)
- {
- await _internalPlayer.SetVolume(percent);
- }
-
- public void Dispose()
- {
- _internalPlayer.Dispose();
- }
- }
-}
diff --git a/ObservatoryHerald/NetCoreAudio/Players/LinuxPlayer.cs b/ObservatoryHerald/NetCoreAudio/Players/LinuxPlayer.cs
deleted file mode 100644
index 425b0e4..0000000
--- a/ObservatoryHerald/NetCoreAudio/Players/LinuxPlayer.cs
+++ /dev/null
@@ -1,33 +0,0 @@
-using System;
-using System.IO;
-using System.Threading.Tasks;
-using NetCoreAudio.Interfaces;
-
-namespace NetCoreAudio.Players
-{
- internal class LinuxPlayer : UnixPlayerBase, IPlayer
- {
- protected override string GetBashCommand(string fileName)
- {
- if (Path.GetExtension(fileName).ToLower().Equals(".mp3"))
- {
- return "mpg123 -q";
- }
- else
- {
- return "aplay -q";
- }
- }
-
- public override Task SetVolume(byte percent)
- {
- if (percent > 100)
- throw new ArgumentOutOfRangeException(nameof(percent), "Percent can't exceed 100");
-
- var tempProcess = StartBashProcess($"amixer -M set 'Master' {percent}%");
- tempProcess.WaitForExit();
-
- return Task.CompletedTask;
- }
- }
-}
diff --git a/ObservatoryHerald/NetCoreAudio/Players/MacPlayer.cs b/ObservatoryHerald/NetCoreAudio/Players/MacPlayer.cs
deleted file mode 100644
index 708c8bc..0000000
--- a/ObservatoryHerald/NetCoreAudio/Players/MacPlayer.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-using System;
-using System.Threading.Tasks;
-using NetCoreAudio.Interfaces;
-
-namespace NetCoreAudio.Players
-{
- internal class MacPlayer : UnixPlayerBase, IPlayer
- {
- protected override string GetBashCommand(string fileName)
- {
- return "afplay";
- }
-
- public override Task SetVolume(byte percent)
- {
- if (percent > 100)
- throw new ArgumentOutOfRangeException(nameof(percent), "Percent can't exceed 100");
-
- var tempProcess = StartBashProcess($"osascript -e \"set volume output volume {percent}\"");
- tempProcess.WaitForExit();
-
- return Task.CompletedTask;
- }
- }
-}
diff --git a/ObservatoryHerald/NetCoreAudio/Players/UnixPlayerBase.cs b/ObservatoryHerald/NetCoreAudio/Players/UnixPlayerBase.cs
deleted file mode 100644
index 32ce4cf..0000000
--- a/ObservatoryHerald/NetCoreAudio/Players/UnixPlayerBase.cs
+++ /dev/null
@@ -1,110 +0,0 @@
-using NetCoreAudio.Interfaces;
-using System;
-using System.Diagnostics;
-using System.Threading.Tasks;
-
-namespace NetCoreAudio.Players
-{
- internal abstract class UnixPlayerBase : IPlayer
- {
- private Process _process = null;
-
- internal const string PauseProcessCommand = "kill -STOP {0}";
- internal const string ResumeProcessCommand = "kill -CONT {0}";
-
- public event EventHandler PlaybackFinished;
-
- public bool Playing { get; private set; }
-
- public bool Paused { get; private set; }
-
- protected abstract string GetBashCommand(string fileName);
-
- public async Task Play(string fileName)
- {
- await Stop();
- var BashToolName = GetBashCommand(fileName);
- _process = StartBashProcess($"{BashToolName} '{fileName}'");
- _process.EnableRaisingEvents = true;
- _process.Exited += HandlePlaybackFinished;
- _process.ErrorDataReceived += HandlePlaybackFinished;
- _process.Disposed += HandlePlaybackFinished;
- Playing = true;
- }
-
- public Task Pause()
- {
- if (Playing && !Paused && _process != null)
- {
- var tempProcess = StartBashProcess(string.Format(PauseProcessCommand, _process.Id));
- tempProcess.WaitForExit();
- Paused = true;
- }
-
- return Task.CompletedTask;
- }
-
- public Task Resume()
- {
- if (Playing && Paused && _process != null)
- {
- var tempProcess = StartBashProcess(string.Format(ResumeProcessCommand, _process.Id));
- tempProcess.WaitForExit();
- Paused = false;
- }
-
- return Task.CompletedTask;
- }
-
- public Task Stop(bool force = false)
- {
- if (_process != null)
- {
- _process.Kill();
- _process.Dispose();
- _process = null;
- }
-
- Playing = false;
- Paused = false;
-
- return Task.CompletedTask;
- }
-
- protected Process StartBashProcess(string command)
- {
- var escapedArgs = command.Replace("\"", "\\\"");
-
- var process = new Process()
- {
- StartInfo = new ProcessStartInfo
- {
- FileName = "/bin/bash",
- Arguments = $"-c \"{escapedArgs}\"",
- RedirectStandardOutput = true,
- RedirectStandardInput = true,
- UseShellExecute = false,
- CreateNoWindow = true,
- }
- };
- process.Start();
- return process;
- }
-
- internal void HandlePlaybackFinished(object sender, EventArgs e)
- {
- if (Playing)
- {
- Playing = false;
- PlaybackFinished?.Invoke(this, e);
- }
- }
-
- public abstract Task SetVolume(byte percent);
-
- public void Dispose()
- {
- Stop().Wait();
- }
- }
-}
diff --git a/ObservatoryHerald/NetCoreAudio/Players/WindowsPlayer.cs b/ObservatoryHerald/NetCoreAudio/Players/WindowsPlayer.cs
deleted file mode 100644
index c92c1ed..0000000
--- a/ObservatoryHerald/NetCoreAudio/Players/WindowsPlayer.cs
+++ /dev/null
@@ -1,141 +0,0 @@
-using NetCoreAudio.Interfaces;
-using System;
-using System.Diagnostics;
-using System.Runtime.InteropServices;
-using System.Text;
-using System.Threading.Tasks;
-using System.Timers;
-
-namespace NetCoreAudio.Players
-{
- internal class WindowsPlayer : IPlayer
- {
- [DllImport("winmm.dll")]
- private static extern int mciSendString(string command, StringBuilder stringReturn, int returnLength, IntPtr hwndCallback);
-
- [DllImport("winmm.dll")]
- private static extern int mciGetErrorString(int errorCode, StringBuilder errorText, int errorTextSize);
-
- [DllImport("winmm.dll")]
- public static extern int waveOutSetVolume(IntPtr hwo, uint dwVolume);
-
- private System.Timers.Timer _playbackTimer;
- private Stopwatch _playStopwatch;
-
- private string _fileName;
-
- public event EventHandler PlaybackFinished;
-
- public bool Playing { get; private set; }
- public bool Paused { get; private set; }
-
- public Task Play(string fileName)
- {
- _fileName = $"\"{fileName}\"";
- _playbackTimer = new System.Timers.Timer
- {
- AutoReset = false
- };
- _playStopwatch = new Stopwatch();
-
- ExecuteMciCommand($"Status {_fileName} Length");
- ExecuteMciCommand($"Play {_fileName}");
- Paused = false;
- Playing = true;
- _playbackTimer.Elapsed += HandlePlaybackFinished;
- _playbackTimer.Start();
- _playStopwatch.Start();
-
- return Task.CompletedTask;
- }
-
- public Task Pause()
- {
- if (Playing && !Paused)
- {
- ExecuteMciCommand($"Pause {_fileName}");
- Paused = true;
- _playbackTimer.Stop();
- _playStopwatch.Stop();
- _playbackTimer.Interval -= _playStopwatch.ElapsedMilliseconds;
- }
-
- return Task.CompletedTask;
- }
-
- public Task Resume()
- {
- if (Playing && Paused)
- {
- ExecuteMciCommand($"Resume {_fileName}");
- Paused = false;
- _playbackTimer.Start();
- _playStopwatch.Reset();
- _playStopwatch.Start();
- }
- return Task.CompletedTask;
- }
-
- public Task Stop(bool force = false)
- {
- if (Playing || force)
- {
- ExecuteMciCommand($"Stop {_fileName}");
- Playing = false;
- Paused = false;
- _playbackTimer?.Stop();
- _playStopwatch?.Stop();
- }
- return Task.CompletedTask;
- }
-
- private void HandlePlaybackFinished(object sender, ElapsedEventArgs e)
- {
- Playing = false;
- PlaybackFinished?.Invoke(this, e);
- _playbackTimer?.Dispose();
- _playbackTimer = null;
- }
-
- private Task ExecuteMciCommand(string commandString)
- {
- var sb = new StringBuilder();
-
- var result = mciSendString(commandString, sb, 1024 * 1024, IntPtr.Zero);
-
- if (result != 0)
- {
- var errorSb = new StringBuilder($"Error executing MCI command '{commandString}'. Error code: {result}.");
- var sb2 = new StringBuilder(128);
-
- mciGetErrorString(result, sb2, 128);
- errorSb.Append($" Message: {sb2}");
-
- throw new Exception(errorSb.ToString());
- }
-
- if (commandString.ToLower().StartsWith("status") && int.TryParse(sb.ToString(), out var length))
- _playbackTimer.Interval = length + 75;
-
- return Task.CompletedTask;
- }
-
- public Task SetVolume(byte percent)
- {
- // Calculate the volume that's being set
- int NewVolume = ushort.MaxValue / 100 * percent;
- // Set the same volume for both the left and the right channels
- uint NewVolumeAllChannels = ((uint)NewVolume & 0x0000ffff) | ((uint)NewVolume << 16);
- // Set the volume
- waveOutSetVolume(IntPtr.Zero, NewVolumeAllChannels);
-
- return Task.CompletedTask;
- }
-
- public void Dispose()
- {
- Stop().Wait();
- ExecuteMciCommand("Close All");
- }
- }
-}
diff --git a/ObservatoryHerald/ObservatoryHerald.csproj b/ObservatoryHerald/ObservatoryHerald.csproj
index 312ef56..71c8d2b 100644
--- a/ObservatoryHerald/ObservatoryHerald.csproj
+++ b/ObservatoryHerald/ObservatoryHerald.csproj
@@ -37,12 +37,8 @@
-
-
-
-
-
+
diff --git a/README.md b/README.md
index e86f21d..b6198c8 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,12 @@
# Elite Observatory *Core*
-Tool for reading/monitoring Elite Dangerous journals for interesting objects. Successor to the original Elite Observatory, rewritten from scratch using .NET 6.0 and AvaloniaUI.
+Tool for reading/monitoring Elite Dangerous journals for interesting objects. Successor to the original Elite Observatory, rewritten from scratch using .NET 6.0.
## *IMPORTANT*
-Observatory Core and it's associated plugins are currently in an alpha state and are neither feature-complete nor using a finalised UI. A major update to the UI is expected soon, which will likely break compatibility with all current plugins.
+Observatory Core and it's associated plugins are currently in a state of ongoing development and are neither feature-complete nor using a finalised UI.
Omissions to current functionality include:
* Integration with Frontier's Companion API
* Data submission to IGAU
-* Sortable columns in plugin data grids
* Non-grid plugin UI options
* Light mode
* *And more...*
@@ -32,8 +31,9 @@ If you want to chat or collaborate with other users of Observatory you can find
For information on how to create a plugin, refer to this article about [ObservatoryFramework](https://github.com/Xjph/ObservatoryCore/wiki/Framework).
## Prerequisites for use
-.NET 6, and by extension one of its [supported OSes](https://github.com/dotnet/core/blob/main/release-notes/6.0/supported-os.md).
-(This will be installed automatically by the Observatory Core installer.)
+All you need is .NET 6, which should be installed automatically by the Observatory Core installer.
+
+The portable build has no prerequisites due to bundling the .NET runtime along with the program, though this does make the exe commensurately larger.
## Prerequisites for building
-C# 9.0, .NET 6.0, [AvaloniaUI ~~0.10.3~~](https://github.com/AvaloniaUI/Avalonia) (specific version in flux during UI rewrite), and of course [ObservatoryFramework](https://github.com/Xjph/ObservatoryFramework).
+C# 9.0, .NET 6.0, and [ObservatoryFramework](https://github.com/Xjph/ObservatoryFramework).
diff --git a/SignObservatory.ps1 b/SignObservatory.ps1
new file mode 100644
index 0000000..b9cab31
--- /dev/null
+++ b/SignObservatory.ps1
@@ -0,0 +1,39 @@
+$cert = Get-ChildItem Cert:\LocalMachine\My -CodeSigningCert
+Set-AuthenticodeSignature -FilePath ./ObservatoryCore/bin/Release/net6.0-windows/ObservatoryCore.exe -Certificate $cert
+Set-AuthenticodeSignature -FilePath ./ObservatoryCore/bin/Release/net6.0-windows/plugins/ObservatoryExplorer.dll -Certificate $cert
+Set-AuthenticodeSignature -FilePath ./ObservatoryCore/bin/Release/net6.0-windows/plugins/ObservatoryBotanist.dll -Certificate $cert
+Set-AuthenticodeSignature -FilePath ./ObservatoryCore/bin/Release/net6.0-windows/plugins/ObservatoryHerald.dll -Certificate $cert
+# SIG # Begin signature block
+# MIIF0AYJKoZIhvcNAQcCoIIFwTCCBb0CAQExCzAJBgUrDgMCGgUAMGkGCisGAQQB
+# gjcCAQSgWzBZMDQGCisGAQQBgjcCAR4wJgIDAQAABBAfzDtgWUsITrck0sYpfvNR
+# AgEAAgEAAgEAAgEAAgEAMCEwCQYFKw4DAhoFAAQUjqIsfdT62QvQPP+a5YOXVRCf
+# 3o6gggNKMIIDRjCCAi6gAwIBAgIQQbRFPs6oPodFBj0fsFanmzANBgkqhkiG9w0B
+# AQsFADA7MRgwFgYDVQQDDA9Kb25hdGhhbiBNaWxsZXIxHzAdBgkqhkiG9w0BCQEW
+# EGptaWxsZXJAeGpwaC5uZXQwHhcNMjMwMzI4MTgxNTM3WhcNMjQwMzI4MTgzNTM3
+# WjA7MRgwFgYDVQQDDA9Kb25hdGhhbiBNaWxsZXIxHzAdBgkqhkiG9w0BCQEWEGpt
+# aWxsZXJAeGpwaC5uZXQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCv
+# eeKY2sY4SAMLgjE+sm1lj8Tje5QArsuSqLFC0gpWzHFq2HZYHLGR5l9Kz1Jm4iNm
+# bdkQiEtt5o6e48L2GLqftM0XklmkNVzyuj6SqL99K1JCuO/kLRVorqRV/88NpOOe
+# Bpn1W5FTA7m1PVCYXbz3a6l93hNY6mI4yb9MV8nKFDnmmAtiwIsKgXuNf81sU8bg
+# 4A7mB9A7Jgvx1/Gs7rFu0m1qWIGpfhsh8EQtpJaiVvzCBqdpIvDEnMwlVd6S0nkj
+# jCCB7s12oiXKYjBS1Vm1YfwoaPkHe9E+z7zgHnhZ5hrTt8g/TZM+cS2o+5JQYTr9
+# RZUjQ3EmsUfZMAuSekERAgMBAAGjRjBEMA4GA1UdDwEB/wQEAwIFoDATBgNVHSUE
+# DDAKBggrBgEFBQcDAzAdBgNVHQ4EFgQUCeFpbq5cQi1Z5DQydkmiF8MIfyMwDQYJ
+# KoZIhvcNAQELBQADggEBAHF/lRtemEggwTFiwTI01Z3erV6YGNT2miD4NrUrnQEe
+# kI+Ezh/MLj2vRmqeVz7XX1ePZX0sd7sViRMnPm+LTl8UltZqhTWV/h7qmi/2Vf74
+# QHLE/Ht3olWBdGOVzeeP5XLMBqqg7HWPHGpTA8lx0ApI4YhYu7w/SgwzYUj2NF2O
+# GRmV78kcHeYf+h5lZzAKjc+dgH+ucsqpKgDxCk8lBhUkd102YGMUZophz0L8RTD4
+# k/CAliVZo3m8ENsR6pMnjsgifeZ8Q9ydpBXawIdcqW9xtZanvYN9+GAHMYeFWWBf
+# 0fBcoPAy4X5bcvQmK/0d7znpgDmgm4jYywF5ptHXoAIxggHwMIIB7AIBATBPMDsx
+# GDAWBgNVBAMMD0pvbmF0aGFuIE1pbGxlcjEfMB0GCSqGSIb3DQEJARYQam1pbGxl
+# ckB4anBoLm5ldAIQQbRFPs6oPodFBj0fsFanmzAJBgUrDgMCGgUAoHgwGAYKKwYB
+# BAGCNwIBDDEKMAigAoAAoQKAADAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAc
+# BgorBgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAjBgkqhkiG9w0BCQQxFgQUfXa2
+# HgFmPrFbD6PqO1Z7s6yzLkowDQYJKoZIhvcNAQEBBQAEggEASEcYW2MnOLX+dMin
+# lEVxL8fTOrf/XuE05QwqQSHOBqqO4GMuR+IeBjE2R4EjxQsZMQVok1dK302ByHA9
+# OVv37xG4exqP/vkP3NX/z2s1Cl2PE1gzxVNgdGlbkzIQF9EiMXr9P/QGifCg2TLV
+# 2mk4Vt+mA1/tU066tNXahbL9N9b+yLcB3VNfru/SnvO/ZPzKCmjNZW54mnNKnRCE
+# PJDVKEKla/ufh8iMR+SiIaaXrwypvdz8CYK9OSs9qr0Cjp9jY1TXLxgNZiTenUoY
+# n+sVQzv+N1PAy2nvSXlnesbxlO3T2XPp6fYkpj1uYCoun3Ztpr2MoKRKBgzybo7Z
+# GYn3QA==
+# SIG # End signature block
diff --git a/buildAllComponents b/buildAllComponents
deleted file mode 100755
index dfe5b86..0000000
--- a/buildAllComponents
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/bash
-dotnet build ./ObservatoryFramework/ObservatoryFramework.csproj "$@"
-dotnet build ./ObservatoryExplorer/ObservatoryExplorer.csproj "$@"
-dotnet build ./ObservatoryBotanist/ObservatoryBotanist.csproj "$@"
-if [ -f ../NetCoreAudio/NetCoreAudio/NetCoreAudio.csproj ]; then
- dotnet build ../NetCoreAudio/NetCoreAudio/NetCoreAudio.csproj -c Release
- dotnet build ./ObservatoryHerald/ObservatoryHerald.csproj "$@"
-fi
diff --git a/buildAllComponents.cmd b/buildAllComponents.cmd
deleted file mode 100644
index 0102a06..0000000
--- a/buildAllComponents.cmd
+++ /dev/null
@@ -1,7 +0,0 @@
-dotnet build ./ObservatoryFramework/ObservatoryFramework.csproj %*
-dotnet build ./ObservatoryExplorer/ObservatoryExplorer.csproj %*
-dotnet build ./ObservatoryBotanist/ObservatoryBotanist.csproj %*
-IF EXIST ..\NetCoreAudio\NetCoreAudio\NetCoreAudio.csproj (
- dotnet build ../NetCoreAudio/NetCoreAudio/NetCoreAudio.csproj -c Release
- dotnet build ./ObservatoryHerald/ObservatoryHerald.csproj %*
-)