Breakout, the Powerup Update
Objectives
- Read and understand all of the Breakout source code from Lecture 2.
- Add a powerup to the game that spawns two extra
Ball
s. - Grow and shrink the Paddle when the player gains enough points or loses a life.
- Add a locked
Brick
that will only open when the player collects a second new powerup, a key, which should only spawn when such aBrick
exists and randomly as per theBall
powerup.
Getting Started
Download the distro code for your game from cdn.cs50.net/games/2020/fall/assignments/2/assignment2.zip and unzip assignment2.zip
, which should yield a directory called assignment2
.
Then, in a terminal window (located in /Applications/Utilities
on Mac or by typing cmd
in the Windows task bar), move to the directory where you extracted assignment2
(recall that the cd
command can change your current directory), and run
cd assignment2
Break(out) a Leg!
By now, we’ve gotten our feet wet with states, randomization, and much more; this time, we’ll be diving in a little bit more and adding some new features entirely!
Specification
- Add a
Powerup
class to the game that spawns a powerup (images located at the bottom of the sprite sheet in the distribution code). ThisPowerup
should spawn randomly, be it on a timer or when the Ball hits aBlock
enough times, and gradually descend toward the player. Once collided with thePaddle
, two moreBall
s should spawn and behave identically to the original, including all collision and scoring points for the player. Once the player wins and proceeds to theVictoryState
for their current level, theBall
s should reset so that there is only one active again. - Grow and shrink the
Paddle
such that it’s no longer just one fixed size forever. In particular, thePaddle
should shrink if the player loses a heart (but no smaller of course than the smallest paddle size) and should grow if the player exceeds a certain amount of score (but no larger than the largestPaddle
). This may not make the game completely balanced once thePaddle
is sufficiently large, but it will be a great way to get comfortable interacting withQuad
s and all of the tables we have allocated for them inmain.lua
! - Add a locked
Brick
(located in the sprite sheet) to the level spawning, as well as a key powerup (also in the sprite sheet). The lockedBrick
should not be breakable by the ball normally, unless they of course have the keyPowerup
! The keyPowerup
should spawn randomly just like theBall
Powerup
and descend toward the bottom of the screen just the same, where thePaddle
has the chance to collide with it and pick it up. You’ll need to take a closer look at theLevelMaker
class to see how we could implement the lockedBrick
into the level generation. Not every level needs to have lockedBrick
s; just include them occasionally! Perhaps make them worth a lot more points as well in order to compel their design. Note that this feature will require changes to several parts of the code, including even splitting up the sprite sheet intoBrick
s!
Errata
ParticleSystem:setAreaSpread
has been renamed toParticleSystem:setEmissionArea
in LÖVE 11.0.love.filesystem.exists
has been renamed tolove.filesystem.getInfo
in LÖVE 11.0.love.audio.newSource
now must take a second argument ('static'
or'stream'
), whereas previously it was optional.
How to Submit
If you don’t already have it installed, install submit50
by running pip3 install submit50
. Then, execute the below, logging in with your GitHub username and password when prompted. For security, you’ll see asterisks (*
) instead of the actual characters in your password.
submit50 games50/assignments/2020/fall/breakout