A classic Asteroids-style game implemented in Python using Pygame, showcasing Object-Oriented Programming principles! ๐ฎ
Project by Cello (@designEngineered) as part of an Object Oriented Programming course.
Note: This is version 1.0 of the game. Visuals and mechanics may change in future updates.
- W: Move forward
- S: Move backward
- A: Rotate left
- D: Rotate right
- Spacebar: Shoot
- Up Arrow: Increase background opacity
- Down Arrow: Decrease background opacity
- Escape: Return to menu (during gameplay) or exit game (from menu)
- Enter: Start game (from menu) or return to menu (from game over screen)
Shoot asteroids to split them into smaller pieces. Be careful not to collide with them!
The game now includes a scoring system to track your progress and challenge you to achieve higher scores. Here's how it works:
- Small Asteroids: Destroying the smallest asteroids awards 50 points each.
- Medium Asteroids: Taking out medium-sized asteroids gives you 35 points per asteroid.
- Large Asteroids: The largest asteroids are worth 25 points each when destroyed.
Your current score is displayed in the top-left corner of the screen during gameplay. When the game ends, your final score is shown on the game over screen.
Try to maximize your score by strategically targeting asteroids and staying alive as long as possible!
-
Ensure you have Python 3.10 or later installed on your system. ๐ You can download it from python.org.
-
Clone this repository:
git clone https://github.com/designengineered/asteroids_py.git cd asteroids_py
-
Run the setup script:
- On Windows:
.\setup.bat
- On macOS and Linux:
chmod +x setup.sh # Make the script executable (first time only) ./setup.sh
This script will create a virtual environment, install the required packages, and set up the game to run globally.
- On Windows:
After running the setup script, you can start your space adventure from anywhere by simply typing:
- On Windows:
.\run_asteroids.bat
- On macOS and Linux:
asteroids
You may need to restart your terminal or command prompt for the changes to take effect.
When you start the game, you'll be presented with a menu screen. Press Enter to start the game. If you lose, you'll see a game over screen, from which you can return to the menu.
To update the game to the latest version:
-
Navigate to the game directory:
cd path/to/asteroids_py
-
Pull the latest changes:
git pull origin main
-
Run the setup script again to ensure all dependencies are up to date:
- On Windows:
setup.bat
- On macOS and Linux:
./setup.sh
- On Windows:
After updating, you may need to restart your terminal or command prompt for any changes to take effect.
If you encounter any issues running the game, try the following:
- Ensure you're using Python 3.10 or later.
- Make sure you've run the setup script as described in the Setup and Installation section.
- If you're on macOS or Linux and the
asteroids
command isn't found, try running:Replacesudo ln -sf /path/to/your/asteroids_py/asteroids /usr/local/bin/asteroids
/path/to/your/asteroids_py
with the actual path to your game directory. - If you encounter permission issues, you may need to run:
sudo chmod +x /usr/local/bin/asteroids
- If you're still having issues, please open an issue on the GitHub repository with details about the error you're encountering.
- Implement setup scripts & global command
- Add a background image
- Add game states (menu, playing, game over screens)
- Add a scoring system
- Make the objects wrap around the screen instead of disappearing
- Implement multiple lives and respawning
- Add acceleration to the player movement
- Add an explosion effect for the asteroids
- Make the ship have a triangular hit box instead of a circular one
- Add a shield power-up
- Add a speed power-up
- Make the asteroids lumpy instead of perfectly round
- Create different weapon types
- Add bombs that can be dropped
- Implement power-ups and special abilities
- Add sound effects and background music
- Add different enemy types
- Create a high-score system
- Design additional levels with increasing difficulty
- Develop multiplayer functionality
-
Setup Scripts & Global Command: Implemented setup scripts for Windows (.bat) and macOS/Linux (.sh) to create a virtual environment, install required packages, and set up the game to run globally. Users can now start the game from anywhere using simple commands.
-
Background Image with Adjustable Opacity: Added a space-themed background image with adjustable opacity. Players can increase or decrease the background opacity using the Up and Down arrow keys.
-
Game States: Implemented different game states including a start menu, active gameplay, and a game over screen. This provides a more complete game loop and user experience.
-
Scoring System: Added a scoring system that rewards players for destroying asteroids. The score is displayed during gameplay and shown on the game over screen.