Breakout Clone 0: Making a Simple Game
2023-01-26My first mini project is to build a Breakout clone. I don't want to go crazy with this, but I do want to do as much as possible for it to be a complete game.
What do I mean by "complete"? Well, I want the basic game to be in place:
- A ball is moving around in the game area. If it hits the bottom of the game area, then the player users.
- The player has control over a paddle that can move left and right to prevent the ball from getting past.
- If the ball interacts with one of the blocks at the top of the screen, the block is "destroyed" and the player gets some points.
- Destroying all the blocks progresses the player to the next level.
Doing all of that will require some minor assets like images for the blocks, paddle, and ball, possibly even the sides of the game area. I'll also need sound effects for the ball bouncing off the sides of the game area, the blocks, and the paddle itself.
If I can do all that, then I'll also want:
- A main menu where a player can choose to start a new game, or close the game all together.
- Some options (like muting audio)
- Some music for the game.
- A leader board (which means I'll also need to have a way for a player to enter their initials)