This folder contains the assets and small Python GUI programs for the Deadlock Simulator project (splash screen, intro, and simulator). It's prepared to be tracked with git.
Files of interest:
splash.py,intro.py,Moko.py,Mokoi.py- small tkinter/pygame GUI scripts- PNG/JPG/MP3 assets used by the GUI
Quick start (Windows):
-
Create and activate a Python virtual environment:
python -m venv .venv ..venv\Scripts\Activate.ps1
-
Install dependencies:
pip install -r requirements.txt
-
Run the splash screen (which launches the intro):
python splash.py
Notes:
tkinteris part of the Python standard library on most installations. If you get import errors fortkinter, install the OS package that provides it (for example, on Ubuntu:sudo apt-get install python3-tk).pygameandPilloware listed inrequirements.txt.