- author: Gian Luis Bolivar Diana
- email: gianluisbolivar1@gmail.com
- Left arrow key - Move the spaceship to the left
- Right arrow key - Move the spaceship to the right
- Space bar - Shoots
The main file is located in the src folder, to start the program, execute the following command:
python3 ./src/main.pyIMPORTANT: To run the game you must have installed the Python interpreter and the PyGame module, if you don't, use this link to go to the official Python website, and this one for the PyGame module.
-
If you want to use custom images, create a folder inside the custom one with the name you like, then, execute the program with the
--customflag and the name of the folder you created.python3 ./src/main.py --custom my_custom_folder
-
In order to display the CRT effect in the screen, we must execute our main file with the
--retroflag activated.python3 ./src/main.py --retro
.
├── audio # The audio played in the game
├── custom # Custom configuration folders
│ └── example # Contain the wished config
├── fonts # The fonts used to display text
├── images # All the images that will be drawed
│ └── aliens # The images of the enemies
└── src # Game implementation
