Skip to main content

Python framework for running reproducible experiments using OpenTTD

Project description

OpenTTDLab logo

OpenTTDLab - Run reproducible experiments using OpenTTD

PyPI package Test suite Code coverage


OpenTTD is a Python framework for running reproducible experiments using OpenTTD, and extracting results from them. An experiment in OpenTTDLab terms is the combination of:

  • Exact version of OpenTTD, any AIs used, and OpenTTDLab itself
  • Ranges of values for OpenTTD config settings, command line arguments and random seed
  • Granularity of output

This can be configured/extracted for each experiment in either machine or human readable forms, for use in code or publishing respectively.

OpenTTDLab is based on TrueBrain's OpenTTD Savegame Reader, but it is not affiliated with OpenTTD.

[!NOTE] Work in progress. This README serves as a rough design spec.

Installation

python -m pip install OpenTTDLab

On macOS, OpenTTDLab requires 7-zip, but this is not installed automatically. To install 7-zip on macOS, first install Homebrew, and then use Homebrew to install the p7zip package that contains 7-zip.

brew install p7zip

Running an experiment

The core function of OpenTTD is the setup_experiment function.

from openttdlab import setup_experiment, save_config

# If necessary, this will download the latest OpenTTD
run_experiment, get_config = setup_experiment()

# Run the experiment and get results. This may take time
results = run_experiment()
print(results)

# The information needed to reproduce the experiment
config = get_config()
print(config)

# Which can be saved to a file and then shared
save_config('my-config.yml', config)

Reproducing an experiment

If you have the config from a previous experiment, you can pass it into setup_experiment to exactly reproduce

from openttdlab import setup_experiment, load_config

# Load the config from file
config = load_config('my-config.yml')

# allow_platform_difference=True will allow experiments from a platform other than the one
# the original experiments were performed on. Otherwise, setup_experiment may error because
# the exact same OpenTTD will not be able to be run on this platform
run_experiment, get_config = setup_experiment(config=config, allow_platform_difference=True)

# Run the experiment and get results
results = run_experiment()
print(results)

API design considerations

  • Mutability is avoided
  • Impure functions are avoided
  • In terms of the user-facing API, keeping it mostly OOP-free, and deliberately focused on key behaviour
  • Designed so if type checking were in place and passes, API misuse should be close to impossible

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

openttdlab-0.0.9.tar.gz (10.9 kB view hashes)

Uploaded Source

Built Distribution

openttdlab-0.0.9-py3-none-any.whl (11.5 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