Finally, a Python client library for connecting to OpenTTD servers as a player, issuing commands, observing game state and parsing maps! Create bots, manage companies, and interact with OpenTTD games programmatically with real-time data and without admin port access.
- Python: 3.11 or higher
- OpenTTD Server: Tested with 14.1
pip install pyttdgit clone https://github.com/mssc89/pyttd.git
cd pyttd
pip install -e .from pyttd import OpenTTDClient
# Connect to OpenTTD server
client = OpenTTDClient("127.0.0.1", 3979, player_name="MyBot")
client.connect()
# Get real-time game information
game_info = client.get_game_info()
print(f"Game Year: {game_info['current_year']}")
print(f"Companies: {game_info['companies']}/{game_info['companies_max']}")
print(f"Clients: {game_info['clients']}/{game_info['clients_max']}")
# Company management
if client.get_our_company():
finances = client.get_company_finances()
print(f"Money: £{finances['money']:,}")
print(f"Loan: £{finances['loan']:,}")
# Take a loan and send a status message
client.increase_loan(50000)
client.send_chat("Bot taking loan for expansion!")
# Clean disconnect
client.disconnect()PyTTD includes a save file parser module that can extract detailed game data from OpenTTD save files.
from pyttd import load_save_file
# Parse a save file
game_data = load_save_file("path/to/savefile.sav")
# Access parsed data
print(f"Save version: {game_data['meta']['save_version']}")
print(f"Map size: {game_data['statistics']['map_size']}")
print(f"Companies: {game_data['statistics']['companies_count']}")
# Company information with financial data
for company in game_data['companies']:
print(f"{company['name']}: £{company['money']:,} (AI: {company['is_ai']})")
# Game date and economy
date = game_data['game']['date']['calendar_date']
print(f"Game date: {date['year']}-{date['month']}-{date['day']}")
economy = game_data['game']['economy']
print(f"Interest rate: {economy['interest_rate']}%")python examples/data_display.pyDisplays all available real-time game state information.
python examples/chat_bot.py Basic example showing connection, company creation, and chat interaction.
python examples/manager_bot.pyDemonstrates company management features and financial tracking.
python examples/finance_bot.pyInteractive financial management with chat-based commands.
python examples/save_file_parser.py path/to/savefile.savParse OpenTTD save files to extract game data including companies, map information, and economic data. All in a clean JSON file!
The main client class for connecting to OpenTTD servers.
client = OpenTTDClient(
server="127.0.0.1", # Server IP address
port=3979, # Server port
player_name="MyBot", # Your bot's name
company_name="MyCompany" # Company name (auto-created)
)client.connect()- Connect to server and join gameclient.disconnect()- Clean disconnect from serverclient.is_connected()- Check connection status
client.get_game_info()- Game state informationclient.get_map_info()- Map size and terrain dataclient.get_economic_status()- Economic indicators
client.get_companies()- List all companiesclient.get_our_company()- Our company informationclient.get_company_finances()- Financial dataclient.get_company_performance()- Performance metrics
client.increase_loan(amount)- Increase company loanclient.decrease_loan(amount)- Decrease company loanclient.give_money(amount, company)- Transfer moneyclient.can_afford(amount)- Check affordability
client.rename_company(name)- Change company nameclient.rename_president(name)- Change manager nameclient.set_company_colour(scheme, primary, colour)- Change colors
client.send_chat(message)- Send public chat messageclient.send_chat_to_company(message, company_id)- Company chat
TODO: describe it here
git clone https://github.com/mssc89/pyttd.git
cd pyttd
# Install development dependencies
pip install -e ".[dev]"
# Run tests
pytest
# Code formatting
black pyttd/
flake8 pyttd/
# Type checking
mypy pyttd/- GitHub Issues: Report bugs or request features
- Documentation: Full API documentation
- Examples: Comprehensive examples