Skip to main content

Extract data from a .CivBeyondSwordSave file

Project description

Beyond the Sword Save File Reader

Uncompresses and decodes the data in a .CivBeyondSwordSave file. check out this example to see what data you can get.

So far I've only tested with the vanilla version of the Civ4 BTS and the slightly tweaked XML files Sullla uses in the AI survivor series. Mods like BAT/BUG/BULL change the structure of the save file and do not work. I'd like to support them but I need specific details on what changes the mods are making to the binary save format.

Thanks to this repo for hosting the Civ4 BTS source. Wouldn't have been possible to make this without it.

TODO

  • support text or json output
  • contrib module/package for ananlysis (ex. comparing starting locations in ai survivor)
  • diffing tools to tell what changed between autosaves
  • support for windows paths
  • Browse Saves/ using TUI

Usage

Install

  • Requires >= python3.10
  • If someone opens an issue requesting 3.6-3.9 I'll get to it

python -m pip install civ4save

Command line Tool

civ4save <options> <save_file>

usage: __main__.py [-h] [--max-players MAX_PLAYERS] [--gamefiles | --browse [BROWSE] | --gen-enums | --plots |
                   --settings | --player PLAYER | --list-players | --version] [--ai-survivor] [--debug]
                   [file]

Extract data from .CivBeyondSwordSave file

positional arguments:
  file                  Target save file

options:
  -h, --help            show this help message and exit
  --max-players MAX_PLAYERS
                        Needed if you have changed your MAX_PLAYERS value in CvDefines.h
  --gamefiles           Find and print relevant game files paths
  --browse [BROWSE]     Browse saves in a directory
  --gen-enums           Create enums file from XML files
  --plots               Attempt to parse the plot data. WARNING: still buggy!
  --settings            Only return the games settings. No game state or player data
  --player PLAYER       Only return the player data for a specific player idx
  --list-players        List all player idx, name, leader, civ in the game
  --version             Print version info
  --ai-survivor         Use XML settings from AI Survivor series
  --debug               Print debug info

As a Libray

from civ4save import save_file
from civ4save.structure import get_format

save_bytes = save_file.read('path/to/save')

# get_format takes 3 optional arguments
# ai_survivor: bool  -- use the tweaked XML files as seen in ai survivor
# plots: bool  -- try experimental plot parsing
# debug: bool  -- calls Construct.Probe() to print debug info
fmt = get_format()
# default max_players=19, you'll know if you changed this
data = fmt.parse(save_bytes, max_players=19)

# do whatever you want to with the data, see organize.py for ideas

Developement / Contributing

python -m pip install ".[dev]" to install all dev dependencies.

python -m pytest tests/ to run the tests.

How it Works

Games are saved in a binary format that kind of looks like a sandwich

| uncompressed data | zlib compressed data | uncompressed checksum |

with most of the data in the compressed middle part. See save_file.py to understand how the file is uncompressed.

The construct library makes it easy to declaratively define the binary format in structure.py and this gives us parsing/writing for free.

From there the functions in organize.py sort and cleanup the parsed data.

The enums defined in civ4save/enums/ are automatically generated from the game XML files using xml_files.py.

Write Order

The game calls its ::write functions in this order:

  1. CvInitCore
  2. CvGame
  3. CvMap
  4. CvPlot (incomplete/buggy)
  5. CvTeam (not implemented)
  6. CvPlayer (not implemented)

But there's issues consistently parsing CvPlot so only up to CvMap is parsed by default. I haven't drilled down the exact cause but it seems to have something to do with the size of the save file. Files under 136K (largest test save I have that works) parse fine but anything larger only makes it through ~30-80% of the plots before hitting a string of 0xff bytes followed by data I can't make any sense of.

python -m civ4save.plots_bug.py will demonstrate the bug and prints out debug info.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

civ4save-0.4.0.tar.gz (108.2 kB view hashes)

Uploaded Source

Built Distribution

civ4save-0.4.0-py3-none-any.whl (73.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page