Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/faisalahmedbijoy/shooter-aircraft-game-using-pygame-library
Shooter Aircraft Breakout PyGame
https://github.com/faisalahmedbijoy/shooter-aircraft-game-using-pygame-library
game game-development kuet logics pygame python research
Last synced: 19 days ago
JSON representation
Shooter Aircraft Breakout PyGame
- Host: GitHub
- URL: https://github.com/faisalahmedbijoy/shooter-aircraft-game-using-pygame-library
- Owner: FaisalAhmedBijoy
- Created: 2022-10-18T17:24:26.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-10-23T18:57:15.000Z (over 2 years ago)
- Last Synced: 2024-11-18T16:56:14.209Z (3 months ago)
- Topics: game, game-development, kuet, logics, pygame, python, research
- Language: Python
- Homepage:
- Size: 1.58 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Shooter-Aircraft-Game-using-PyGame-Library
## Outlines
- Introduction
- Game overview
- Game logic and rules
- Winning scenario
- Game over and termination## Program structure
- main.py
- ball.py
- brick.py
- config.py
- game_menu.py
- paddle.pyRun the following command to start the game
```bash
python main.py
```
## Introduction
- The game was developed using the PyGame library
- The game consist of different elements such as paddle, bricks, and balls.
- The score is increased when a ball collides with a brick## Game overview
- Starting window of the game console
![image](images/shooter2.png)
- Select the *Game Rules* button for instruction
![image](images/shooter3.png)
- Select the *PLAY* button for start playing
![image](images/shooter8.png)
- Random scenario of the game
![image](images/shooter9.png)
- Winning of the game with score and time
![image](images/shooter6.png)
- Lost and game over with score and time
![image](images/shooter7.png)