arkparser 0.3.0__tar.gz → 0.3.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. {arkparser-0.3.0 → arkparser-0.3.2}/PKG-INFO +4 -1
  2. {arkparser-0.3.0 → arkparser-0.3.2}/README.md +596 -593
  3. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/__init__.py +1 -1
  4. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/export.py +93 -2
  5. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/properties/base.py +17 -9
  6. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/properties/byte_property.py +5 -4
  7. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/properties/compound.py +17 -15
  8. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/properties/primitives.py +3 -3
  9. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser.egg-info/PKG-INFO +4 -1
  10. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser.egg-info/SOURCES.txt +2 -0
  11. {arkparser-0.3.0 → arkparser-0.3.2}/pyproject.toml +1 -1
  12. arkparser-0.3.2/tests/test_asa_header_position.py +97 -0
  13. {arkparser-0.3.0 → arkparser-0.3.2}/tests/test_binary_reader_layouts.py +52 -52
  14. arkparser-0.3.2/tests/test_current_stats.py +133 -0
  15. {arkparser-0.3.0 → arkparser-0.3.2}/tests/test_export.py +92 -92
  16. {arkparser-0.3.0 → arkparser-0.3.2}/tests/test_v13_property_layouts.py +255 -255
  17. {arkparser-0.3.0 → arkparser-0.3.2}/LICENSE +0 -0
  18. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/common/__init__.py +0 -0
  19. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/common/binary_reader.py +0 -0
  20. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/common/exceptions.py +0 -0
  21. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/common/map_config.py +0 -0
  22. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/common/normalization.py +0 -0
  23. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/common/types.py +0 -0
  24. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/common/version_detection.py +0 -0
  25. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/data_models.py +0 -0
  26. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/files/__init__.py +0 -0
  27. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/files/base.py +0 -0
  28. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/files/cloud_inventory.py +0 -0
  29. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/files/profile.py +0 -0
  30. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/files/tribe.py +0 -0
  31. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/files/world_save.py +0 -0
  32. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/game_objects/__init__.py +0 -0
  33. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/game_objects/container.py +0 -0
  34. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/game_objects/game_object.py +0 -0
  35. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/game_objects/location.py +0 -0
  36. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/properties/__init__.py +0 -0
  37. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/properties/registry.py +0 -0
  38. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/structs/__init__.py +0 -0
  39. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/structs/base.py +0 -0
  40. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/structs/colors.py +0 -0
  41. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/structs/misc.py +0 -0
  42. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/structs/property_list.py +0 -0
  43. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/structs/registry.py +0 -0
  44. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser/structs/vectors.py +0 -0
  45. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser.egg-info/dependency_links.txt +0 -0
  46. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser.egg-info/requires.txt +0 -0
  47. {arkparser-0.3.0 → arkparser-0.3.2}/arkparser.egg-info/top_level.txt +0 -0
  48. {arkparser-0.3.0 → arkparser-0.3.2}/setup.cfg +0 -0
  49. {arkparser-0.3.0 → arkparser-0.3.2}/tests/test_binary_reader.py +0 -0
  50. {arkparser-0.3.0 → arkparser-0.3.2}/tests/test_cloud_inventory.py +0 -0
  51. {arkparser-0.3.0 → arkparser-0.3.2}/tests/test_data_models.py +0 -0
  52. {arkparser-0.3.0 → arkparser-0.3.2}/tests/test_game_objects.py +0 -0
  53. {arkparser-0.3.0 → arkparser-0.3.2}/tests/test_profile.py +0 -0
  54. {arkparser-0.3.0 → arkparser-0.3.2}/tests/test_tribe.py +0 -0
  55. {arkparser-0.3.0 → arkparser-0.3.2}/tests/test_version_detection.py +0 -0
  56. {arkparser-0.3.0 → arkparser-0.3.2}/tests/test_world_save.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: arkparser
3
- Version: 0.3.0
3
+ Version: 0.3.2
4
4
  Summary: Pure Python parser for ARK: Survival Evolved and ARK: Survival Ascended save files
5
5
  Author: Vertyco
6
6
  License-Expression: MIT
@@ -250,6 +250,7 @@ The legacy ASVExport.exe emitted only the visible 8 stats (`hp`, `stam`, `melee`
250
250
  | `last_baby_age_update` | added | ISO 8601 datetime of `LastUpdatedBabyAgeAtTime`. |
251
251
  | `last_gestation_update` | added | ISO 8601 datetime of `LastUpdatedGestationAtTime`. |
252
252
  | `next_cuddle` | added | ISO 8601 datetime of `BabyNextCuddleTime`. |
253
+ | `current_stats` | added | Live in-world stat values from the dino's status component (`CurrentStatusValues[0..11]`) as a `{hp, stam, torp, oxy, food, water, temp, weight, melee, speed, fort, craft}` dict of floats. These are the *current* values (e.g. `hp: 11013.62` = current HP, drops as the dino takes damage). Max values are NOT persisted by ARK — compute downstream from species stat tables + `*-w`/`*-t` points + `imprint` + server multipliers if you need them. `null` when the status component carries no `CurrentStatusValues` entries (e.g. uninitialised baby actor). |
253
254
 
254
255
  #### `ASV_Wild` schema
255
256
 
@@ -267,6 +268,7 @@ The legacy ASVExport.exe emitted only the visible 8 stats (`hp`, `stam`, `melee`
267
268
  | `trait` | legacy | first entry of `CreatureTraits` (or empty string) |
268
269
  | `traits` | added | full `CreatureTraits` list |
269
270
  | `wild_spawn_region` | added | `OriginalNPCVolumeName` — `NPCZoneVolume` the creature spawned in. |
271
+ | `current_stats` | added | Live in-world stat values from the creature's status component (`CurrentStatusValues[0..11]`) as a `{hp, stam, torp, oxy, food, water, temp, weight, melee, speed, fort, craft}` dict of floats. Max values are NOT in the save (would need species stat tables). `null` when uninitialised. |
270
272
 
271
273
  #### Player data: `.arkprofile` vs in-world pawn
272
274
 
@@ -318,6 +320,7 @@ For the richest output, hand `export_players` **both** — assemble a wrapper fo
318
320
  | `corpse_destruction` | added | ISO 8601 datetime of `CorpseDestructionTime`. |
319
321
  | `chibi_levels` | added | `NumChibiLevelUps` — bonus levels from chibi pets. |
320
322
  | `ascensions_scorched` | added | `NumAscensionsScorched` — ASE ascension counter (legacy `ContentPlayer` parses the ASA ascension block differently; this is the ASE-specific field). |
323
+ | `current_stats` | added | Live in-world stat values for the player from the pawn's `MyCharacterStatusComponent` (`CurrentStatusValues[0..11]`) as a `{hp, stam, torp, oxy, food, water, temp, weight, melee, speed, fort, craft}` dict of floats. For profile-sourced records the parser joins on `PlayerDataID == LinkedPlayerDataID` to find the spawned pawn in the world save. `null` when the player has no in-world pawn (never spawned this server / corpse cleared) or the status component has no values — only currently / recently spawned characters have live stats. Max values are NOT persisted by ARK. |
321
324
 
322
325
  #### `ASV_Tribes` schema
323
326