-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbusted.h
executable file
·32 lines (30 loc) · 953 Bytes
/
busted.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
typedef struct Busted {
uint8_t const x = 31;
int8_t y = -46;
uint8_t counter = 0;
void gameOver() {
if (y < 25) {
y++;
} else {
// after a pause, return to the menu and reset the player to play again
if (counter < 250) {
counter++;
} else {
counter = 0;
y = -46; // reset the BUSTED logo's position
WANTED = false;
LEVEL = 0;
SCORE = 0;
menu = Menu();
cops.clear();
swat.clear();
spikes.clear();
sound.noTone();
crate = Crate(randomPointOffCamera(LEVEL_SIZE)); // move the crate to a new spot
drop = Drop(randomPointOffCamera(LEVEL_SIZE));
player = Player();
}
}
sprites.drawPlusMask(x, y, BUSTED, 0);
}
} Busted;