using Observatory.Framework.Files; using Observatory.Framework.Files.Journal; namespace Observatory.Framework; /// /// Base plugin interface containing methods common to both notifiers and workers. /// Note: Not intended to be implemented on its own and will not define a functional plugin. Use IObservatoryWorker, IObservatoryNotifier, or both, as appropriate. /// public interface IObservatoryPlugin { /// /// This method will be called on startup by Observatory Core when a plugin is first loaded. /// Passes the Core interface to the plugin. /// /// Object implementing Observatory Core's main interface. A reference to this object should be maintained by the plugin for communication back to Core. public void Load(IObservatoryCore observatoryCore); /// /// Full name of the plugin. Displayed in the Core settings tab's plugin list. /// public string Name { get; } /// /// Short name of the plugin. Used as the tab title for the plugin UI.
/// Can be omitted, in which case the full Name will be used. ///
public string ShortName => Name; /// /// Version string displayed in the Core settings tab's plugin list.
/// Potentially used for automated version checking. (Not yet implemented) ///
public string Version { get; } /// /// Reference to plugin UI to display within its tab. /// public PluginUI PluginUI { get; } /// /// Receives data sent by other plugins. /// public void HandlePluginMessage(string sourceName, string sourceVersion, object messageArgs) { } } /// /// Interface for worker plugins which process journal data to update their UI or send notifications. /// Work required on plugin startup — for example object instantiation — can be done in the constructor or Load() method.
/// Be aware that saved settings will not be available until Load() is called.
///
public interface IObservatoryWorker : IObservatoryPlugin { /// /// Method called when new journal data is processed. Most work done by worker plugins will occur here. /// /// Specific type of journal entry being received. /// Elite Dangerous journal event, deserialized into a .NET object. /// Unhandled json values within a journal entry type will be contained in member property:
Dictionary<string, object> AdditionalProperties.
/// Unhandled journal event types will be type JournalBase with all values contained in AdditionalProperties. public void JournalEvent(TJournal journal) where TJournal : JournalBase; /// /// Method called when status.json content is updated.
/// Can be omitted for plugins which do not use this data. ///
/// Player status.json content, deserialized into a .NET object. public void StatusChange(Status status) { } /// /// Called when the LogMonitor changes state. Useful for suppressing output in certain situations /// such as batch reads (ie. "Read all") or responding to other state transitions. /// public void LogMonitorStateChanged(LogMonitorStateChangedEventArgs eventArgs) { } } /// /// Interface for notifier plugins which receive notification events from other plugins for any purpose. /// Work required on plugin startup — for example object instantiation — can be done in the constructor or Load() method.
/// Be aware that saved settings will not be available until Load() is called.
///
public interface IObservatoryNotifier : IObservatoryPlugin { /// /// Method called when other plugins send notification events to Observatory Core. /// /// Details of the notification as sent from the originating worker plugin. public void OnNotificationEvent(NotificationArgs notificationEventArgs); }