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

34 Commits

Author SHA1 Message Date
F K
639ad72fb4
2 Bug Fixes (#112)
Add a try-catch in ReadAllLines to handle a read failure if a file is locked.
Add a check for a non-existing export folder when exporting and prompt for new path if it doesn't exist.
2023-04-30 13:19:22 -02:30
F K
be6ef85fa4
Fix boolean logic bug that slows ancillary file reading to a crawl (#93)
Symptoms: App takes a very long time to start up, sluggish response to events because it's reading and processing every ancillary file 10x instead of just once when successful.
2022-07-24 18:47:18 -02:30
Jonathan Miller
342d5af11c
Error handling improvements (#92)
* Consolidate plugin errors into single window.

* Handle error aggregation and loggin inside error reporter.

* Minor logging corrections.

* Error popup tweaking
2022-07-24 15:48:55 -02:30
Jonathan Miller
d8d5f2794b
Limited retries when ancillary files are locked. (#90)
* Limited retries when anciliary files are locked.

* Move sleep to top of loop.
2022-07-24 09:54:31 -02:30
Xjph
750cb5bec4 Handle anciliary files. 2022-06-09 21:10:35 -02:30
F K
6616b54852
Suppress pre-reading if read-all is also selected (as it is redundant) (#84) 2022-05-28 10:24:10 -02:30
Xjph
7fe11b8094 fix monitor crash on no journals 2022-04-08 15:51:43 -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
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
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
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
Xjph
554948534e
observatory herald (#30)
* WIP: initial commit for observatory herald

* Plugin error handling refactor

* make error window non-modal

* tidy up plugin error handling

* first pass for basic herald functionality

* corrections for linux env

* Use FNV hash directly instead of managing through dictionary/index file

* resolve audio queuing issue, switch to personal NetCoreAudio fork

* merge cleanup

* add enable setting, populate defaults

* framework xml doc update

* Adjust settings, add style selection, replace locale with demonym in dropdown list.

* Test is position is on screen before saving/loading.

* use a default that's actually in the list
2021-11-15 10:57:46 -03:30
Xjph
5eb6a7761d Handle errors during monitoring. 2021-10-27 22:07:41 -02:30
Xjph
c0cc115545 more reliable fallback for default directory 2021-10-26 19:36:57 -02:30
Xjph
4c1031b8f9
Reorganize all observatory core projects into monorepo (#25)
* chore: move all observatory repos to core

* only save journal folder on change, don't constantly re-check during monitoring

* chore: monorepo project changes

* chore: monorepo migration
2021-10-21 19:31:32 -02:30
Xjph
7bb5a97696 include file name in error report 2021-09-06 18:18:54 -02:30
Fred Kuipers
453ff2f793 Make Pre-read act similarly to "Read All"
This has the effect of suppressing notifications when restoring current system context after initial click on "Start Monitor".
2021-08-15 17:19:13 -04:00
Xjph
51c9dc6c52
Update LogMonitor.cs
fix minor spelling error
2021-07-21 08:33:45 -02:30
Fred Kuipers
13fecfa395 Add a setting to control pre-reading behavior
Also makes adding new rows to the settings grid a little more dynamic.
2021-07-20 19:35:33 -04:00
Fred Kuipers
1ce63c40fc Implement "Pre-reading" of current system context when starting monitor
The first time you click "Start monitor" (assuming you haven't read-all), we read the last 2 log files to find the journal entries for the last system jumped into (if we can find the FSDJump entry) in order to re-populate the information in all interested plugins. Its much faster than reading all to restore current system context.

- For Botanist plugin, this will display what plants/planets you've already sampled and avoids placeholder planet entries with incorrect bio counts.
- For Explorer, it re-lists interesting items, in case you weren't done exploring the system.

See https://github.com/Xjph/ObservatoryCore/issues/5
2021-07-06 02:24:40 -04:00
Xjph
93d691a1f6 Watchers being a little overzealous. 2021-06-30 08:35:18 -02:30
Xjph
ce250e4f84 Don't throw exception when journal path doesn't exist. 2021-06-08 19:26:55 -02:30
Xjph
7d3f7c50de Add error reporting dialog during Read All. 2021-06-08 17:26:40 -02:30
Xjph
a408e802d4 Use same process to determine journal path in JournalPoke method. 2021-06-07 09:20:53 -02:30
Xjph
23ab4f593d Improve tracking of line position in files. Added JournalPoke method. 2021-06-06 10:33:38 -02:30
Xjph
a5154996ee Add project files. 2021-06-03 22:25:32 -02:30