This game is supposed to be a version of the classic game Pong. It was built using Pyxel, and, actually, this repository is more like experimentation of Pyxel features.
It is a work in progress, so I won't write the rules cause they may change according to some crazy ideas of mine.
First, give a look at Pyxel requirements, and install'em all. Just look for your operating system instructions and follow them.
Get the code! Clone this repository:
# Clone the repository
git clone https://github.com/filipetoyoshima/superPongPyxel.git
# Go to the directory
cd superPongPyxel
First of all, I strongly recommend you to set up a venv to run this project. If you don't know what is it, then I recommend you to read about it. Don't forget that the Python version must be compatible with Pyxel.
# You must install venv first
python3 -m venv env
Once you have all of the Pyxel things checked, then install the project requirements which is... pretty much just what Pyxel demands. All of it is in the requirements.txt
, which can be consumed by pip.
You do not have pip installed yet? Install it here.
If you use Linux, I recommend install by your official package manager. If not, I recommend using 😉
pip3 install -r requirements.txt
Then you are ready to go. Just run the main.py
and see what this game can do for you! (Well... not pretty much yet...)
python3 main.py