Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rokawoo/wall-ball-game
https://github.com/rokawoo/wall-ball-game
ball game pygame silly-project
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/rokawoo/wall-ball-game
- Owner: Rokawoo
- License: mit
- Created: 2024-04-25T23:19:47.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-04-25T23:36:45.000Z (7 months ago)
- Last Synced: 2024-04-26T00:27:57.518Z (7 months ago)
- Topics: ball, game, pygame, silly-project
- Language: Python
- Homepage:
- Size: 9.1 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Wall Ball
By Rokawoo
**Game Overview**
Wall & Ball is a classic arcade-style game where players control a paddle to bounce a ball around a room while protecting their boundaries. The goal is to achieve 20 bounces to win and aim for as many additional bounces as possible before losing all health. Built with Python's Pygame library, Wall & Ball is fast-paced, challenging, and fun for players of all skill levels.**Demo**
[Demo](https://github.com/Rokawoo/wall-ball-game/assets/129356996/b4d2e00a-036a-444b-bbc4-1d7206d848a8)
**Gameplay**
- Start the game by pressing the **SPACE** key.
- Move the paddle horizontally using the **mouse**.
- The game pauses when the ball hits your boundary or when you reach the win condition (20 bounces). Resume the game at any time by pressing **SPACE** again.
- When the ball hits the paddle, 1 point is added, and the ball's speed increases by 5%.
- If the ball hits your boundary, you lose 5 points, and your speed is recalculated based on your current score. You also lose 1 health point, which pauses the game for a moment to give you a break. You lose when health points reach zero.**Game Features**
- **Scoreboard**: Displays the player's current score.
- **Speedboard**: Shows the current speed of the ball.
- **Healthboard**: Indicates the player's remaining health points.
- **Sound Effects**: Enjoy sounds that correlate with game events, like hitting the paddle or boundaries.
- **Trail and Rainbow Effects**: The ball leaves a trail after a certain number of bounces, with a rainbow effect when 12 hits are reached.
- **Pause Functionality**: The game pauses when the ball hits the boundary or if you win, allowing you to take a breather. Resume by pressing **SPACE**.
- **Win/Lose Conditions**: Win by reaching 20 bounces. Lose if all health points are lost.
- **Dynamic Difficulty**: The ball's speed increases exponentially, keeping the challenge engaging and fun.
- **Afterplay**: Continue playing after winning if you still have health points remaining.**Game Structure**
- `Ball.py`: Defines the `Ball` class, responsible for the ball's movement and properties.
- `Paddle.py`: Contains the `Paddle` class, responsible for the paddle's movement and properties.
- `Text.py`: Handles the `Text` class, displaying the score, speed, and health.
- `Boundary.py`: Defines the `Boundary` class, which creates the game boundaries.
- `Drawable.py`: A parent class for managing the location and collision detection of other classes.
- `main.py`: The main script to start the game, update the game state, and render graphics.**Controls**
- **SPACE**: Start or resume the game.
- **Mouse Left/Right**: Move the paddle left or right.**Credits**
Wall & Ball was developed by Augustus Sroka using the Pygame library. It draws inspiration from classic arcade games like Pong and traditional wallball games played by children.**How to Play**
To play Wall & Ball, run the `main.py` script with Python. Have fun, and enjoy the game!## 🛠Libraries and Tools Used
The project uses the following libraries and tools:- Pygame: A set of Python modules designed for writing video games, providing functionality for graphics, sounds, and input handling.
- Drawable: A custom module representing drawable objects. In this case, it's a base class for graphical components in a Pygame-based application.
If there are additional libraries or tools referenced in other parts of the project, they should be added to this list as well.