Pong Olympics is a Python-based spinoff of Video Olympics on the Atari 2600, with unique features and gameplay, powered by the Pygame game engine.
Give it a try by clicking here.
Before running Pong Olympics, ensure you have the following installed on your system:
To install Pong Olympics and its dependencies, run the following command:
$ make install
To start playing Pong Olympics, run the following command:
$ make run
By default, the player uses the WASD
keys to move the paddle. You can switch to using the Arrow Keys
by setting the type
to 2
in the config.json
file. You can also change your name on the screen by updating the name
field.
Types:
- Self type or 1 - use the
WASD Keys
and play on the left-hand side of the screen. - Opponent type or 2 - use the
Arrow keys
and play on the right-hand side of the screen.
Esc -- Exit the game
Note: The game has no win condition, so just have fun!
To run the test suite for Pong Olympics, use the following command:
$ make test
If you encounter an error message about the Tkinter module not being found, you may need to install it using the following command:
$ apt-get install python3-tk
Note: Pong Olympics is still a work in progress and currently only has one level.