-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
All schemas: New gameversion
*header* field
#197
Comments
Maybe use a Pseudo-Version like |
This idea definitely has merit. I can't see that ever clashing with a Journal->LoadGame->gameversion value. It does feel slightly like inching towards "we should just add that |
There are events written to a journal before Horizons has all of these events between Odyssey: So nothing game-breaking for the purposes of EDDN. |
Okay, why are we not setting gameversion to the FileHeader value. That comes first, should be the same as LoadGame, and copes with any events that might occur before LoadGame in the future. |
If we mandate that then it doesn't work for any Sender using CAPI I'd rather just say "from |
I'll review all my journals to be extra sure there are no instances of differences between
|
I would think that any program that wants to link journal entries to commanders would already do something like this - e.g. in the journal entry stream, EDDiscovery queues up events until it sees a |
And Horizons Journals, still, don't have That means we can't make this new field mandatory until that changes. We can absolutely still add it ASAP as optional, with documentation saying that anyone using direct Journal files MUST add it. { "timestamp":"2022-09-14T15:16:36Z", "event":"Fileheader", "part":1, "language":"English\\UK", "Odyssey":false, "gameversion":"3.8.0.407", "build":"r285813/r0 " }
...
{ "timestamp":"2022-09-14T15:16:59Z", "event":"LoadGame", "FID":"F32434", "Commander":"Athanasius", "Horizons":true, "Ship":"Python", "ShipID":6, "ShipName":"Dobbin", "ShipIdent":"CH-WHS", "FuelLevel":32.000000, "FuelCapacity":32.000000, "GameMode":"Solo", "Credits":499928296, "Loan":0 } |
The adjusted schemas, having been tested on beta with and without the new fields, are now up on the live service. |
NB: Keep discussion of any changes to
horizons
andodyssey
flags semantics/requirements over in #196As 4.0 Horizons client is launching soon we need to be sure Listeners can distinguish what game client and game mode a message has come from.
Rather than rely on some tweaks to the
horizons
andodyssey
flag requirements (which have always been optional), let's just add an, initially optional (to give Senders time to update),gameversion
header key:value to theheader
of all messages.As per #196 the one place this might be problematic is in CAPI-sourced, non-Journal, messages, i.e. commodity, shipyard, outfitting. But those might be in less need of the disambiguation anyway.
The text was updated successfully, but these errors were encountered: