STUDENTS = ["Bárbara Pereira", "Gabriel de Paula", "Pedro Machado"]
SUBJECT = "Robótica Computacional"
SEMESTER = "2025/1"
PROFESSOR = "Marcos Laia"
> See the documentation (pt-BR) <
River Raid is a video game for the Atari 2600 console, created by Carol Shaw in 1982. The player controls a plane flying over a river filled with enemy military targets, such as planes, helicopters, ships, and bridges. The goal is to achieve the highest score possible while managing limited fuel and destroying enemies.
-
Crete a python environment:
python3 -m venv .venv source .venv/bin/activate
-
Install dependencies:
pip install -r requirements.txt
-
Run the game:
python src/main.py
You can also run the program with custom parameters by passing them using flags:
Parameter Flag Type Default ROM path --rom
string ./river-raid.a26
State path --state
string none FPS --fps
int 60
Example defining parameters
python main.py --rom ./river-raid.a26 --state ./states/saved_state-3.bin --fps 30