2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00

175 Commits

Author SHA1 Message Date
Xjph
921f3867fa Add herald build api key to gitignore 2022-05-09 11:17:21 -02:30
Phil Chuang
9708a5fbc7
added HighValueMappable checks (#81)
* added HighValueMappable checks

* added high value mappable details
2022-05-09 11:12:17 -02:30
Jonathan Miller
fb45b5c3e2
Export, plugin archive install, and herald cache race condition fixes (#82)
* WIP: Grid export and plugin extraction

* Tweak export process

* Check for recursion of the same assembly load.

* Individual screens aren't always primary?

* Wait for cache to be writable

* Export selection only.

* Update built xml docs

* Ignore invalid archives.

* Need to ensure task is started.
2022-05-09 11:11:57 -02:30
Xjph
a67cf7f6bb Merge branch 'master' of https://github.com/Xjph/ObservatoryCore 2022-05-03 19:03:43 -02:30
Xjph
ee5833e58e Remove azure libraries from installer. 2022-05-03 19:03:41 -02:30
F K
ab365cd322
Expose core error logger to plugins and report custom criteria errors (#78)
* Expose core error logger to plugins and report custom criteria errors

Fixes #77

This adds an error logging method on the IObservatoryCore interface that writes the exception details to ObservatoryCore's central error log (found in `${Documents}/ObservatoryErrorLog.txt`). In addition, added a timestamp to each error log.

Also updates the Explorer to report Custom Criteria file load errors and execution errors to the log. Also updates HeraldNotifier to report CacheIndex.json parse failures to the error log as well.

* Expand debugging/error logging in Herald; cleanup empty mp3 files

Herald crashes if attempting to play 0-byte mp3s so if detected, delete, re-request (empty files can occur in some azure failure cases (ie. out of quota). Trap and log errors in other places in HeraldQueue to avoid hard crashes due to weird and wonderful unexpected stuff.
2022-05-03 19:02:31 -02:30
Xjph
7fe11b8094 fix monitor crash on no journals 2022-04-08 15:51:43 -02:30
Xjph
e7f7250c08 Correcting version check 2022-04-04 21:22:51 -02:30
Xjph
3fe3ef9901 Updated versioning 2022-04-04 12:29:59 -02:30
Jonathan Miller
1950d477fd
Herald v2 (#74)
* Add speech rate setting

* Add volume slider

* New speech manager skeleton

* User API key from resx

* Implement voice list retrieve via new api

* Rewrite to use ObAPI, remove all dependancies

* Use volume setting

* Clean up using statements

* Volume and timing adjustments

* Lookup rate value

* Use numeric rates for tighter spread

* Manage plugin data folder via core interface

* Add check that nullable settings are not null.

* Get file size before it's deleted.

* Improve old settings migration.

* Ignore cache sizes below 1MB

* Re-index orphaned files in cache, purge legacy wav files.

* Call top level error logging for native voice exception.

* Async title and detail requests to remove pause

* Remove NetCoreAudio use of temp files.

* Remove orphan using.
2022-04-04 11:58:30 -02:30
F K
3cc8cc3abe
Fix a "Call from invalid thread" exception. (#72)
Random occurrence triggered by a plugin's grid update. It's either fairly rare (related to something I was doing in-app) or new with a recent update to the plugin that caused it (just updated it last night).
2022-03-25 08:47:28 -02:30
F K
a6408814f7
Add colony distance support to Botanist grid and notification (#69)
Fixes Xjph/ObservatoryCore/67.

Tested via read-all and realtime while collecting a sample. 

Required a bit of refactoring to use discrete classes for the main data structure vs. tuples. I think  worked out nicely though.
2022-03-23 08:17:34 -02:30
F K
fcf6f71abf
Distinguish Close Belt proximity and Close Ring proximity criteria (#70)
If it's a belt, report it as a belt instead of a ring.

See 7c209efb9f1e4eeb248b36d65463aa10e6f2f70e for context.
2022-03-23 08:14:42 -02:30
F K
0c86590f75
Use HasFlag in another spot. (#68)
Just a tiny cleanup.
2022-03-23 08:12:28 -02:30
Xjph
3e202d6ac7 Use HasFlag 2022-03-16 17:59:43 -02:30
Xjph
ffd218a341 LogMonitor fixes 2022-03-16 08:55:10 -02:30
F K
7d56a2b91b
Fix file ordering assumptions which were broken by U11 (#66)
* Fix file ordering assumptions which were broken by U11

With U11's new filename format for journal files, files don't sort right anymore and so the incorrect context was read during pre-reading, journals were read out-of-order during read-all or the wrong file was poked by JournalPoke for real-time. It seems that real-time still worked well enough (presumably the game client flushes journals semi reliably?)

Either way, ordering can be better guaranteed now.

* Update ObservatoryCore/LogMonitor.cs

Co-authored-by: Jonathan Miller <jmiller@xjph.net>
2022-03-16 08:50:39 -02:30
Xjph
1e7da8eae3 Forgot the journal poker 2022-03-15 13:20:44 -02:30
Xjph
f8eee18d78 Widen journal file filters for Odyssey Update 11 2022-03-15 12:15:18 -02:30
Xjph
e4f90d5a62 Merge branch 'master' of https://github.com/Xjph/ObservatoryCore 2022-03-15 11:15:53 -02:30
Xjph
3af9e3ec7b Update 11 journal changes 2022-03-15 11:15:44 -02:30
F K
fa5c978b34
Revert PluginCore use of event listening for current LogMonitor state (#64)
The order that listeners get notified isn't deterministic and as a result plugins which read the current state from PluginCore during the handling of a state change event may read a stale state resulting in unexpected results. PluginCore now reads a property directly from LogMonitor to avoid such inconsistencies.
2022-03-15 11:14:20 -02:30
F K
4f4ba88878
Add event-based LogMonitor state changes to better handle batch reads (#59)
* Add event-based LogMonitor state changes to better handle batch reads

Pre-reading hackily used read-all to suppress notifications. But that broke some assumptions about what read-all meant. Furthermore, the Core UI told plugins about read-all rather than the log monitor telling them -- which is really what should be telling them.

To address these concerns, LogMonitor now provides an event that both the PluginCore and PluginEventHandler listens to or tracking logging state allowing more granular information about the activities of LogMonitor, including distinguishing between ReadAll and Pre-read batches. Plugins no longer need to track if LogMonitor is in batch-read mode or not -- PluginCore now provides it. 

I've also converted all built-in plugins to use the new event-based system. The old system is marked deprecated and will go away once other known contributed plugins have converted to the new system.

* Change LogMonitorState enum to [Flags], drop 'None' state

As requested, and did associated simplifications and cleanup that followed.
2022-03-03 16:39:49 -03:30
Xjph
7c54d6dd65 On linux try Steam/Proton default journal location 2022-03-02 17:09:35 -03:30
Xjph
7c209efb9f
Revert "Close Ring Proximity criteria: Prevent it from triggering on a belt (#56)" (#58)
This reverts commit d9fbdd5269c53cc196b3a7fc0c18077d6060f06d.
2022-02-26 20:10:29 -03:30
Xjph
2915045ba9 Create solution containing all projects for dev purposes 2022-02-26 18:17:59 -03:30
F K
d9fbdd5269
Close Ring Proximity criteria: Prevent it from triggering on a belt (#56)
I actually had this recently, which is how I found it.
2022-02-26 17:18:49 -03:30
F K
b465b3d886
Add missing docs for new NotificationArgs.Rendering enum (#57)
This functionality was originally added in #47.
2022-02-26 17:18:40 -03:30
Xjph
b765e9f09e Ignore local build output and setup package 2022-02-26 17:15:21 -03:30
Xjph
5043060ee2
Add top level error logging. (#55)
* Add top level error logging.

* Remove test exception, chain stringbuilders.
2022-02-22 12:00:01 -05:00
Xjph
2d65123d28 Merge branch 'master' of https://github.com/Xjph/ObservatoryCore 2022-02-22 08:26:34 -03:30
Xjph
18f3e3bb89 Incoke error popup on UI thread. 2022-02-22 08:26:04 -03:30
F K
6dcec0404b
Show notification with genetic sampling status while in progress (#53)
When first sample is taken, the notification is displayed showing what was sampled and number of samples taken. Number of samples taken is updated on the second sample. Notification is removed when the final sample is taken.
2022-02-05 17:23:15 -03:30
xjph
0e065a6fa8 Scripts to build component projects used by Core 2022-01-23 11:24:32 -03:30
F K
9367114cff
Show notification with genetic sampling status while in progress (#51)
* Show notification with genetic sampling status while in progress

When first sample is taken, the notification is displayed showing what was sampled and number of samples taken. Number of samples taken is updated on the second sample. Notification is removed when the final sample is taken.

* Add setting and additional notification cleanup conditions

As requested:
- Added a setting to control the genetic sampler overlay.
- Added a few  more conditions (FSDJump, LeaveBody, Shutdown) to clean up the notification.
2022-01-23 11:04:52 -03:30
F K
fcf60f6776
For some reason this check failed and resulted in a stack overflow (#52)
Added a second condition to the Observatory.Framework assembly loading check to prevent a stack overflow condition.
2022-01-21 08:16:03 -03:30
F K
1e1aeef958
Fix incorrect type for the Cargo.Inventory property (#49)
Discovered when attempting to handle this event for an in-progress plugin.
2022-01-01 03:51:30 -03:30
F K
701f6f0b1c
Add new Rendering controls for notifications, add missing forwarding (#47)
Plugins authors can now optionally specify what ways their notifications are rendered (subject, of course, to user preferences/settings). The default is to render notifications in all available channels. Examples:
- Show native pop-up window only (ie. no voice/plugin notifiers)
- Disallow other plugin notifiers

This does not support selection of notifier plugins.

Furthermore, persistent notification updates were not previously being forwarded to anything but the native popup notifier. Now plugins and native voice are also supported (subject to user preferences) and respect the new rendering controls added here. There is currently no concept of closing notifications for the native voice or plugin-based notifiers.
2021-12-18 17:57:23 -03:30
F K
8c26193aa6
Add missing using (#46)
Caused local build to fail after syncing to commit 714537e58a.
2021-12-18 17:51:46 -03:30
F K
44dfbe4b7e
When pre-reading current system context, consider docked Carrier jumps (#45)
System context pre-reading logic previously assumed the player jumped into the current system in their own ship as a pilot. Arriving docked on their carrier was thus missed and may have resulted in processing more than one systems worth of context (or simply failing to pre-read context).
2021-12-18 17:51:18 -03:30
F K
177707f6ae
Fix a couple of invalid thread exceptions in NativePopup notifications (#43)
Manipulating active notifications must be done on the Avalonia UI thread. UpdateNotification and CloseNotification were not properly doing this.

Any plugin attempting to use persistent notifications would have encountered these errors.

NOTE: There is not yet hooks for cleaning up persistent/infinite timeout notifications when the APP is closed.
2021-12-18 15:16:57 -03:30
Xjph
b2d0637146 handle nil values in lua iterators 2021-12-18 13:23:05 -03:30
Xjph
714537e58a corrected powerplayvoucher systems type 2021-12-18 13:10:04 -03:30
Xjph
889825275d
New feature: Monitor on start (#42)
* Implement monitor on start

* finish implementation of monitor on start
2021-12-18 12:21:07 -03:30
Xjph
d3315c5c65 docs updated to latest xml tags 2021-11-25 17:21:20 -03:30
Xjph
333e5054a1 another missing on foot crime type 2021-11-25 17:20:40 -03:30
Xjph
d5e73d7414 more id fields changed to uint64 2021-11-25 17:20:27 -03:30
Xjph
9fd9f4dd03 Merge branch 'master' of https://github.com/Xjph/ObservatoryCore 2021-11-24 19:42:46 -03:30
Xjph
1bf3927aca Add missing on foot crime type 2021-11-24 19:42:43 -03:30
Xjph
8094820ffd Add missing converter for micro resource trade 2021-11-24 19:42:32 -03:30