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

239 Commits

Author SHA1 Message Date
Xjph
12d274ffcc remove sorting from list views while reading all 2024-01-25 23:19:20 -03:30
F K
666f91cfd3 [Core] Fix: Convert Decimal control values to int32 for Int settings (#134)
Attempting to set decimal values to int properties tends to throw errors. ;-)
2024-01-25 23:19:20 -03:30
F K
64d7b0e072 [ObservatoryCore] Add Statistics and OnFoot CarrierJumps to preread data (#129)
CarrierJump w/ OnFoot is needed for many location tracking things -- ATTN MattG as this is causing problems with BioInsights.

I'm requesting Statistics for use by StatsScanner.
2024-01-25 23:19:20 -03:30
F K
100d5e290a [Framework] Add 3 new properties to NotificationArgs to expand detail (#131)
The new properties are:

* string Sender: The name of the plugin sending the notification.
* string ExtendedDetails: Even more detail than Title and Detail convey. This value will not be spoken nor included in pop-up notifications. However, other notifier plugins may use this value.
* int ColescingId: An id which can be used to correlate multiple notifications together (ie. for sorting/grouping) without depending on arbitrary string values. I recommend reserving -1 for system, 0 .. 1000 for system bodies and anything else is arbitrary and can be agreed upon between Core and Plugin authors, as desired.

While the motivating use is a new notifier plugin I am authoring (my Aggregator plugin, see GitHub), I have tried to make this as general purpose as possible.

I have modified Explorer as an example of usage. After this is merged, I'll follow up with another PR to use this in Botanist as well (I have other changes pending for Botanist; see #120).

Comments welcomed!
2024-01-25 23:19:20 -03:30
F K
c6cabd724c [Herald] Force Herald to act as NativeVocal notification target (#132)
This makes Herald, a plugin ONLY react to NativeVocal notifications so notifications can be sent silently by using `Rendering = NotificationRendering.PluginNotifier` on NotificationArgs. These notifications will be picked up by other notification listeners (eg. Aggregator).
2024-01-25 23:19:20 -03:30
F K
3ed93818fb [Core] Improve(?) Plugin List column sizing (#133)
After populating the list of plugins, auto-size the columns once. In the Resize event handler, do what you did before but account for the scrollbar width too. Prevents horizontal scrollbar appearing except for really fast resize movements.

I didn't try it yet with fewer than a scrollable # of plugins yet.

This cleans up my commented out code from #128.
2024-01-25 23:19:20 -03:30
Xjph
b42b124884 missing crime types 2024-01-25 23:18:02 -03:30
Xjph
c5f863c098 suspend main window draw during read all 2024-01-25 23:18:02 -03:30
Fred K
a2add94e72 [ObservatoryCore] UI tweaks
Polishing a few rough edges:
* Enable scrolling on the Plugin List view. It only fit 6 or 7. I have 13.
* I fiddled a bit with column auto-sizing (left it commented out, see comment).
* A whole bunch of tweaks to the settings view:
  * first row of controls was cut off at the top (under the window title bar)
  * fixing that revealed uneven spacing between columns
  * action buttons were teensy tiny and unreadable
  * settings view columns were too narrow (200 px).
  * added some spacing to help with readability
  * settings windows now start in center of current screen rather than some random place.
2024-01-25 23:18:02 -03:30
Xjph
b6d013b3ae add collidedWithDamage crime type 2024-01-25 23:18:02 -03:30
Xjph
97da4c71d2 wire up donate and github links 2024-01-25 23:18:02 -03:30
Xjph
97e981bae2 ready for testing 2024-01-25 23:18:02 -03:30
Xjph
d99a190869 WIP: observatory UI overhaul 2024-01-25 23:18:01 -03:30
Xjph
1d62a0ec1d Winforms overhal in progress 2024-01-25 23:18:01 -03:30
Xjph
4dba621d7c New UI framework changes 2024-01-25 23:18:01 -03:30
Xjph
e2c6816d45 Initial overhaul work 2024-01-25 23:18:01 -03:30
Xjph
523710ce25 Update to avalonia 11 preview 2024-01-25 23:18:01 -03:30
F K
ff784b31d1
[Framework] Add a DateTime property for CarrierJumpRequest DepartureTime (#119)
Refactored out the logic backing the JournalBase TimestampDateTime property so it can be used for any DateTime type property, providing a standardized json String -> DateTime conversion for any date-time property. Implemented as an `internal static` method on JournalBase so journal objects which inherit from JournalBase or don't inherit from it can use it.

Used this to provide a DepatureTimeDateTime on CarrierJumpRequest (this property was added in Update 14) and to implement the existing ExpiryDateTime on CurrentGoal.

From a quick search in the journal documentation, I don't see any other applications for this.
2023-08-14 09:35:00 -02:30
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
Xjph
5bbf2f50de Remove unused variables from catch 2023-03-01 16:31:18 -03:30
Xjph
cff7f0c7cb Updated framework xml 2023-03-01 16:30:58 -03:30
Xjph
0246d772af Minor README updates 2023-03-01 16:29:36 -03:30
Maximilian Dorn
35a0cfdcbd
Update position when window is shown (#107) 2023-03-01 16:23:14 -03:30
Maximilian Dorn
5ada0e41d8
Implement click-through windows for X11 (Linux) (#106)
* Implement click-through windows for X11

* Adjust the "platform specific" comment

* Get rid of accidental whitespace

* Move else declaration into next line
2023-03-01 16:22:47 -03:30
F K
3f2f11bdf3
[Framework + Core] Feature: Add support for adding multiple grid items (#105)
For plugin developers: Adds a new method to the IObservatoryCore interface to add multiple grid items in 1 call -- which only invokes the UI thread once (and potentially only scrolls to bottom once) providing a small performance improvement and providing some modest convenience.
2023-03-01 16:22:20 -03:30
F K
7e401adb6f
Handle disposed timer object in ResetTimer() (#104)
I've had this occur a number of times (twice in a row yesterday) where if you receive new records while doing a long read-all, this exception crashes ObsCore.

So may need some further digging, but in the meantime, it won't crash here.
2023-03-01 16:21:23 -03:30
F K
6298316c94
Implement Tab separated export format (#103)
Tab separated output facilitates much more efficient opening of exported content in a spreadsheet for further data analysis, furthermore, it vastly reduces file size at the cost of human-readability. However, for the spreadsheet junkies among us, this is a welcome option.

To complement this, there is now an "Export Options" expander in the Core settings panel. Here one can select their preferred export style (default remains Fixed width) and now one can pre-select the export folder.

With this change, clicking export *will not* prompt for an export folder if one is already set. It will simply immediately export data.

Enjoy!
2023-02-26 11:20:59 -03:30
Xjph
f1790608e8 Avoid default null as collection key. 2023-01-19 19:34:34 -03:30
Xjph
c20af38a2e Always attempt properties upgrade 2023-01-19 19:28:31 -03:30
Xjph
e3e019e3f7 Handle missing effect full range of "+"s 2023-01-19 19:24:56 -03:30
Xjph
565aaf0838 Apply same test for string length for both ordinal operations 2023-01-19 19:20:58 -03:30
Xjph
52aa9fb1e5 Handle exceptions during async http requests. 2023-01-18 21:38:24 -03:30
Xjph
cacaa98033 Fix barycentre naming logic 2023-01-17 19:06:30 -03:30
Xjph
7a7c110b45 Skip property upgrade if no version present 2023-01-17 19:06:08 -03:30
Jonathan Miller
f9341c8cd3
Allow omit of explicit true in complex criteria (#101) 2022-12-21 10:02:06 -03:30
Xjph
229e76b87d Add SRV to VehicleSwitchTo 2022-12-13 19:12:34 -03:30
Xjph
c4309b204c Update innosetup for .NET 6 2022-12-12 21:50:06 -03:30
Xjph
eeae99dc2a Migrate to .NET 6 2022-12-04 15:01:56 -03:30
Xjph
388b7110cf U14 Status change 2022-12-04 15:01:24 -03:30
Xjph
e4049d67c1 Update 14 jounal changes 2022-12-04 11:00:07 -03:30
F K
9b34d50d32
Disable ShowActivated on notifications to avoid focus stealing (#98)
The recently updated avalonia seemed to change behavior in a way that caused notifications to steal focus from the game (often at at inopportune times). Not all users experienced this.
2022-12-04 10:41:30 -03:30
Xjph
3a9b4da2b7 Update framework xml doc 2022-10-30 19:17:01 -02:30
Xjph
62dd6730e8 Handle general exceptions during plugin loading. 2022-10-30 19:16:47 -02:30
Xjph
95db12de72 Additional custom criteria convenience functions. 2022-09-04 19:20:49 -02:30
Xjph
796819617b Odyssey Update 13 journal changes 2022-08-29 10:03:51 -02:30
Xjph
428b44cc2b Make file browse result check nullsafe 2022-08-29 09:48:15 -02:30
F K
11a2dcb819
Adds ring/belt helper functions, improved criteria debuggability (#96)
Adds new functions to the Lua environment available to custom criteria for handling rings and belts:
- the existing `rings(scan.Rings)` function behavior is unchanged
- NEW: `ringsOnly(scan.Rings)` and `beltsOnly(scan.Rings)` functions return ONLY rings or belts, respectively, and shortcuts the `scan.Rings` check
- NEW: `hasRings(scan.Rings)` and `hasBelts(scan.Rings)` functions return true if there are one or more proper rings or belts, respectively, in scan.Rings and shortcuts the check, too

Furthermore, this adds a debugging aid that identifies what custom criteria caused an error/crash. For simple criteria, ie:
`::Hot Landable::`
... the description "Hot Landable" is used. For complex criteria, you can now annotate the `::Criteria::` line with a description used for debugging like so:
`::Criteria=Hot Landable::`. Criteria errors are logged like this:

```
Error encountered in Elite Observatory from plugin Explorer while processing custom criteria 'Criteria14=I just crash' on scan:
```

Duplicates are avoided by prepending the user-provided description with a generated name (ie. `Criteria14`, in the example above).

Finally, the Detail expression for simple criteria can now safely reference values checked as part of the criteria condition. In particular, the Detail expression is now conditionally evaluated if the result is true. So the following will now work (previously it failed for non-star bodies when StarType was nil):

```
::Ringed Star::
scan.StarType and hasRings(scan.Rings)
::Detail::
'Star type: ' .. scan.StarType
```
2022-08-29 09:45:51 -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