Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/helios2003/wall-wreckers
An Atari Breakout Game implemented in pure C++ using SFML which can be played in the browser
https://github.com/helios2003/wall-wreckers
cplusplus game graphics-programming sfml
Last synced: 22 days ago
JSON representation
An Atari Breakout Game implemented in pure C++ using SFML which can be played in the browser
- Host: GitHub
- URL: https://github.com/helios2003/wall-wreckers
- Owner: helios2003
- Created: 2024-11-05T14:02:19.000Z (about 2 months ago)
- Default Branch: master
- Last Pushed: 2024-11-21T13:48:57.000Z (about 1 month ago)
- Last Synced: 2024-11-30T13:07:06.778Z (22 days ago)
- Topics: cplusplus, game, graphics-programming, sfml
- Language: C++
- Homepage:
- Size: 524 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Wall Wreckers
Wall Wreckers is a game inspired by classic Atari game and is implemented in C++. In this game, players use a paddle to bounce a ball and break through walls of bricks, aiming to clear the screen and score points. If players fail to keep the ball from falling off the bottom of the screen, they lose the game. I made this game primarily to improve my understanding of C++ and Graphics Programming.
## Getting Started
- Clone the repository using the following command
```
git clone https://github.com/helios2003/Wall-Wreckers.git
```
- Ensure that you have [CMake](https://cmake.org/download/) and [SFML](https://www.sfml-dev.org/download.php) in your system.
- Run the script ``run.sh`` using ``./run.sh``.
- The game window opens and you can enjoy the game.## Key Bindings
- `Enter` to start the game.
- `>: Right Arrow` to move the paddle to the right.
- `<: Left Arrow` to move the paddle to the left.
- `LShift` to pause the game.
- `RShift` to resume the game.## Tech Stack
- C++
- Simple Fast Multimedia Library (SFML)
- CMake