Interact with OpenRCT2 from python!
Project description
pyrct2
Python client for OpenRCT2. Launch headless games, read state, execute actions, all in Python!
Connects to the openrct2-bridge plugin over TCP. Every game action, state query, and enum is auto-generated from OpenRCT2 C++ source by openrct2-codegen.
Install
pip install pyrct2
pyrct2 setup # finds OpenRCT2, installs the bridge plugin
Quick start
from pyrct2.client import RCT2
from pyrct2.scenarios import Scenario
# Launch a built-in scenario
with RCT2.launch(Scenario.CRAZY_CASTLE) as game:
print(f"{game.park.name}: rating {game.park.rating}, cash ${game.park.finance.cash}")
# Or load a scenario/save by path
with RCT2.launch("/path/to/my_park.park") as game:
print(game.park.name)
# Or connect to an already-running instance
with RCT2.connect() as game:
print(game.park.name)
Building a park
from pyrct2.client import RCT2
from pyrct2.enums import Direction, StaffType
from pyrct2.objects import RideObjects, FootpathAdditions, FootpathSurfaces, FootpathRailings
from pyrct2.scenarios import Scenario
from pyrct2.world import Tile
with RCT2.launch(Scenario.TEST_PARK, headless=False) as game:
game.park.cheats.build_in_pause_mode()
game.park.finance.set_entrance_fee(10)
# -- Match the scenario's path style --
game.paths.set_default_surface(FootpathSurfaces.TARMAC)
# -- Place a flat ride south of the main path --
ride = game.rides.place_flat_ride(
obj=RideObjects.gentle.MERRY_GO_ROUND,
tile=Tile(44, 34),
entrance=Tile(44, 32),
exit=Tile(46, 34),
direction=Direction.NORTH,
)
ride.set_price(30)
ride.open()
# -- Place some stalls along the main path --
burger = game.rides.place_stall(RideObjects.stall.BURGER_BAR, Tile(42, 29))
burger.open()
drink = game.rides.place_stall(RideObjects.stall.DRINKS_STALL, Tile(46, 29))
drink.open()
# -- Paths --
game.paths.place_line(Tile(44, 30), Tile(44, 31)) # branch to ride
game.paths.place(Tile(44, 31), queue=True) # queue to entrance
game.paths.place_line(Tile(46, 30), Tile(46, 34)) # exit path back
# path additions
game.paths.place_addition(Tile(43, 30), FootpathAdditions.LAMP1)
game.paths.place_addition(Tile(45, 30), FootpathAdditions.BENCH1)
game.paths.place_addition(Tile(47, 30), FootpathAdditions.LITTER1)
# verify connectivity from entrance to ride
assert game.paths.is_connected(Tile(48, 30), Tile(44, 31))
# -- Staff --
handyman = game.park.staff.hire(StaffType.HANDYMAN)
handyman.set_patrol_area(Tile(40, 28), Tile(50, 36))
game.park.staff.hire(StaffType.MECHANIC)
# -- Open the park and let it run --
game.park.open()
game.park.cheats.generate_guests(50)
game.advance_ticks(100)
# -- Read state --
print(f"Rating: {game.park.rating}, Guests: {game.park.guests.count()}")
print(f"Cash: {game.state.park().cash}")
for r in game.state.rides():
print(f" {r.name}: {r.status}, excitement {r.excitement}")
Raw API
All 82 game actions and state queries are available directly if you need something the high-level API doesn't wrap yet:
# Actions (raw ints, less friendly)
game.actions.staff_hire_new(auto_position=True, staff_type=0, costume_index=0, staff_orders=0)
game.actions.ride_set_price(ride=0, price=50, is_primary_price=True)
# State queries (full Pydantic models)
game.state.date() # GameDate — ticks, day, month, year
game.state.scenario() # Scenario — objectives, completion status
game.state.climate() # Climate — current/future weather
game.state.park_messages() # list[ParkMessage] — guest complaints, awards
game.state.park_awards() # list[Award]
game.state.park_research() # Research — invented/uninvented items
game.state.guests() # list[Guest] — every guest in the park
Requirements
- Python 3.11+
- OpenRCT2 installed with RCT2 game data
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyrct2-0.9.3.tar.gz.
File metadata
- Download URL: pyrct2-0.9.3.tar.gz
- Upload date:
- Size: 187.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f1bbc13b745238cce881833f104c28dc360831427643bb63ec687e253b09e72
|
|
| MD5 |
5c05946b2e59dade8c420cd377dd407c
|
|
| BLAKE2b-256 |
df28a5d06873bc33e88a13e7fc2dcaa470183b336e5152e7143e51d7175542e8
|
Provenance
The following attestation bundles were made for pyrct2-0.9.3.tar.gz:
Publisher:
publish.yml on MaukWM/pyrct2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyrct2-0.9.3.tar.gz -
Subject digest:
4f1bbc13b745238cce881833f104c28dc360831427643bb63ec687e253b09e72 - Sigstore transparency entry: 1278497174
- Sigstore integration time:
-
Permalink:
MaukWM/pyrct2@159220436b628d30f3cfcccf978f7333bf69154f -
Branch / Tag:
refs/tags/v0.9.3 - Owner: https://github.com/MaukWM
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@159220436b628d30f3cfcccf978f7333bf69154f -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyrct2-0.9.3-py3-none-any.whl.
File metadata
- Download URL: pyrct2-0.9.3-py3-none-any.whl
- Upload date:
- Size: 97.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d981acd4c19afc12c9782ef8483bbcdc5bcd567d5c2832c8e27a72c315290438
|
|
| MD5 |
e5528574dd1aa412ad513650ba55fe86
|
|
| BLAKE2b-256 |
95a62afc72087958ee8741c08b5ddf867748ab95b53ee970e27c2f013809e300
|
Provenance
The following attestation bundles were made for pyrct2-0.9.3-py3-none-any.whl:
Publisher:
publish.yml on MaukWM/pyrct2
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyrct2-0.9.3-py3-none-any.whl -
Subject digest:
d981acd4c19afc12c9782ef8483bbcdc5bcd567d5c2832c8e27a72c315290438 - Sigstore transparency entry: 1278497196
- Sigstore integration time:
-
Permalink:
MaukWM/pyrct2@159220436b628d30f3cfcccf978f7333bf69154f -
Branch / Tag:
refs/tags/v0.9.3 - Owner: https://github.com/MaukWM
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@159220436b628d30f3cfcccf978f7333bf69154f -
Trigger Event:
release
-
Statement type: