-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutils.h
executable file
·129 lines (103 loc) · 3.39 KB
/
utils.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
uint8_t angleToFrame(float const &angle, uint8_t const &frameCount) {
return (uint8_t)(angle / 360 * frameCount);
}
Point randomPoint(uint16_t const &size) {
Point point;
point.x = random(size - 32) + 16;
point.y = random(size - 32) + 16;
return point;
}
Point randomPointOffCamera(uint16_t const &size) {
Point point = randomPoint(size);
while (camera.canSee(point.x, point.y, 0, 0)) {
point = randomPoint(size);
}
return point;
}
float distanceBetween(float const &x1, float const &y1, float const &x2, float const &y2) {
float xDiff = x2 - x1;
float yDiff = y2 - y1;
return sqrt(xDiff * xDiff + yDiff * yDiff);
}
float normalizeAngle(float const &angle) {
int16_t normalized = int16_t(angle) % 360;
if (normalized < 0) normalized += 360;
return normalized;
}
float findAngle(int16_t const &x1, int16_t const &y1, int16_t const &x2, int16_t const &y2) {
return atan2(y2 - y1, x1 - x2);
}
// make it look like police sirens are flashing
void drawScreenFlash() {
if (arduboy.everyXFrames(10)) SCREEN_FLASHING = !SCREEN_FLASHING;
// TODO maybe make WANTED a param instead of a magically-referenced global
if (WANTED && SCREEN_FLASHING) {
arduboy.drawRect(0, 0, 128, 64);
}
}
void drawGrid() {
// horizontal lines
for (uint8_t y = 0; y <= LEVEL_SIZE / GRID_SIZE; y++) {
arduboy.drawFastHLine(0, y * GRID_SIZE - camera.y, 128, WHITE);
}
// vertical lines
for (uint8_t x = 0; x <= LEVEL_SIZE / GRID_SIZE; x++) {
arduboy.drawFastVLine(x * GRID_SIZE - camera.x, 0, 64, WHITE);
}
}
void drawNumber(uint8_t x, uint8_t const &y, uint16_t const &number) {
uint16_t numberCopy = number;
uint8_t digits = (int) (log10(number) + 1);
// pad the score with zeroes
for (uint8_t i = 0; i < 5 - digits; i++) {
sprites.drawPlusMask(x, y, NUMBERS, 0);
x += 5;
}
// draw from right to left
x += 5 * (digits - 1);
for (uint8_t i = 0; i < digits; i++) {
sprites.drawPlusMask(x, y, NUMBERS, numberCopy % 10);
x -= 5;
numberCopy = numberCopy / 10;
}
}
void drawLocator(Entity const &target, uint8_t radius = 1, bool const &filled = true) {
if (!camera.canSee(target.x, target.y, target.width, target.height)) {
int16_t x;
int16_t y;
// don't make the indicators too big
if (radius > 2) {
radius = 2;
}
// change coordinate space again to center of screen
float xCenter = target.x - camera.x - 64;
float yCenter = target.y - camera.y - 32;
float slope = yCenter / xCenter;
// calculate indicator position if above or below
if (yCenter < 0) // top of screen
{
x = (-31) / slope;
y = -31;
} else // bottom of screen
{
x = (31) / slope;
y = 31 - 1;
}
//calculate indicator position if left or right
if (x < -63) // left side
{
x = -63;
y = slope * -63;
} else if (x > 63) // right side
{
x = 63 - 1;
y = slope * 63;
}
// apply position after changing the coordinate system back to normal
if (filled) {
arduboy.fillCircle(x + 64, y + 32, radius, WHITE);
} else {
arduboy.drawCircle(x + 64, y + 32, radius, WHITE);
}
}
}