Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sbis04/space_invaders_remastered
Space Invaders Remastered Game
https://github.com/sbis04/space_invaders_remastered
pygames python
Last synced: 4 days ago
JSON representation
Space Invaders Remastered Game
- Host: GitHub
- URL: https://github.com/sbis04/space_invaders_remastered
- Owner: sbis04
- License: mit
- Created: 2023-04-16T08:55:21.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-04-18T03:43:05.000Z (over 1 year ago)
- Last Synced: 2024-10-31T20:44:18.393Z (about 2 months ago)
- Topics: pygames, python
- Language: Python
- Homepage: https://youtu.be/WCFhM7JETYA
- Size: 18.5 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Space Invaders Remastered
Space Invaders Remastered is a modern take on the classic arcade game Space Invaders, created using Python and Pygame. In this game, players control a spaceship and must shoot down waves of aliens while avoiding their projectiles.
![Gameplay](assets/screenshots/game_2.gif)
## Features
- Randomly generated alien grids with increasing difficulty
- Different types of aliens
- Sound effects and background music
- Level progression system
- Player lives and scoring system
- Game over and level complete screens
- Pause menu with options to resume or quit the game## How to Run
1. Ensure you have Python 3.7 or later installed on your system. You can download Python from the [official website](https://www.python.org/downloads/).
2. Install the required dependencies:
```
pip install -r requirements.txt
```3. Run the game using the following command:
```
python main.py
```## How to Play
- Use the left and right arrow keys to move your spaceship horizontally.
- Press the spacebar to shoot bullets at the aliens.
- Clear all aliens to complete a level and proceed to the next level.
- The game ends when you run out of lives or if you choose to quit from the pause menu.
- Press "Escape" to pause the game, and press "Spacebar" to resume or "Escape" again to quit.## Future Suggestions
- Add power-ups for the player (e.g., shield, rapid fire, extra life)
- Implement boss battles at certain levels
- Integrate a high score system with an online leaderboard
- Add more diverse alien types and behaviors
- Include a settings menu to configure game options (e.g., sound levels, difficulty, controls)## License
Copyright (c) 2023 Souvik Biswas
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.