mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-04-17 17:42:20 +03:00
ShipLockerJSON: Ensure initialised, and document it.
This commit is contained in:
parent
7051aba656
commit
937aaccec4
@ -603,6 +603,7 @@ Content of `state` (updated to the current journal entry):
|
|||||||
| `Data` | `dict` | 'Data' MicroResources in Odyssey, `int` count each. |
|
| `Data` | `dict` | 'Data' MicroResources in Odyssey, `int` count each. |
|
||||||
| `BackPack` | `dict` | `dict` of Odyssey MicroResources in backpack. |
|
| `BackPack` | `dict` | `dict` of Odyssey MicroResources in backpack. |
|
||||||
| `BackpackJSON` | `dict` | Content of Backpack.json as of last read. |
|
| `BackpackJSON` | `dict` | Content of Backpack.json as of last read. |
|
||||||
|
| `ShipLockerJSON` | `dict` | Content of ShipLocker.json as of last read. |
|
||||||
| `SuitCurrent` | `dict` | CAPI-returned data of currently worn suit. NB: May be `None` if no data. |
|
| `SuitCurrent` | `dict` | CAPI-returned data of currently worn suit. NB: May be `None` if no data. |
|
||||||
| `Suits` | `dict`[1] | CAPI-returned data of owned suits. NB: May be `None` if no data. |
|
| `Suits` | `dict`[1] | CAPI-returned data of owned suits. NB: May be `None` if no data. |
|
||||||
| `SuitLoadoutCurrent` | `dict` | CAPI-returned data of current Suit Loadout. NB: May be `None` if no data. |
|
| `SuitLoadoutCurrent` | `dict` | CAPI-returned data of current Suit Loadout. NB: May be `None` if no data. |
|
||||||
@ -672,6 +673,11 @@ New in version 5.1.0:
|
|||||||
|
|
||||||
`state` entries added for Taxi, Dropship, Body and BodyType.
|
`state` entries added for Taxi, Dropship, Body and BodyType.
|
||||||
|
|
||||||
|
New in version 5.1.1:
|
||||||
|
|
||||||
|
`state` now has a `ShipLockerJSON` member containing the un-changed, loaded,
|
||||||
|
JSON from the `ShipLockerJSON.json` file.
|
||||||
|
|
||||||
##### Synthetic Events
|
##### Synthetic Events
|
||||||
|
|
||||||
A special "StartUp" entry is sent if EDMC is started while the game is already
|
A special "StartUp" entry is sent if EDMC is started while the game is already
|
||||||
|
@ -157,6 +157,7 @@ class EDLogs(FileSystemEventHandler): # type: ignore # See below
|
|||||||
'Data': defaultdict(int), # Backpack Data
|
'Data': defaultdict(int), # Backpack Data
|
||||||
},
|
},
|
||||||
'BackpackJSON': None, # Raw JSON from `Backpack.json` file, if available
|
'BackpackJSON': None, # Raw JSON from `Backpack.json` file, if available
|
||||||
|
'ShipLockerJSON': None, # Raw JSON from the `ShipLocker.json` file, if available
|
||||||
'SuitCurrent': None,
|
'SuitCurrent': None,
|
||||||
'Suits': {},
|
'Suits': {},
|
||||||
'SuitLoadoutCurrent': None,
|
'SuitLoadoutCurrent': None,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user