cannon.c
4.41 KB
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
#include "primlib.h"
#include <math.h>
#include <stdlib.h>
struct target {
int x;
int y;
int speed_x;
int is_explosion;
int explosion_counter; // how many times we have already displayed an
// explosion animation
int color;
};
// Draw explosion with the center at coordinates (x,y)
void drawExplosion(int x, int y, float scaling) {
gfx_filledTriangle(x - 7 * scaling, y - 7 * scaling, x + 7 * scaling,
y + 7 * scaling, x + 22 * scaling, y - 22 * scaling, RED);
gfx_filledTriangle(x - 7 * scaling, y - 7 * scaling, x + 7 * scaling,
y + 7 * scaling, x - 22 * scaling, y + 22 * scaling, RED);
gfx_filledTriangle(x - 7 * scaling, y + 7 * scaling, x + 7 * scaling,
y - 7 * scaling, x - 22 * scaling, y - 22 * scaling, RED);
gfx_filledTriangle(x - 7 * scaling, y + 7 * scaling, x + 7 * scaling,
y - 7 * scaling, x + 22 * scaling, y + 22 * scaling, RED);
gfx_filledTriangle(x - 13 * scaling, y, x + 13 * scaling, y, x,
y - 35 * scaling, RED);
gfx_filledTriangle(x - 13 * scaling, y, x + 13 * scaling, y, x,
y + 35 * scaling, RED);
gfx_filledTriangle(x, y - 13 * scaling, x, y + 13 * scaling, x - 35 * scaling,
y, RED);
gfx_filledTriangle(x, y - 13 * scaling, x, y + 13 * scaling, x + 35 * scaling,
y, RED);
}
void draw_target(struct target *t) {
if (!t->is_explosion)
gfx_filledRect(t->x - 10, t->y - 10, t->x + 10, t->y + 10,
t->color); // target
if (t->is_explosion) {
drawExplosion(t->x, t->y + t->explosion_counter * 10,
t->explosion_counter / 5.0);
}
}
void move_target(struct target *t) {
if (!t->is_explosion) {
t->x += t->speed_x;
if (t->x > gfx_screenWidth())
t->x = 0;
if (t->x < 0)
t->x = gfx_screenWidth() - 1;
}
if (t->is_explosion) {
t->explosion_counter += 1;
}
if (t->is_explosion && (t->explosion_counter == 10)) {
t->is_explosion = 0;
t->x = 0;
}
}
int main() {
if (gfx_init())
exit(3);
double angle = 90.0 * (M_PI / 180.0);
double bullet_distance;
int is_shooting = 0;
double fire_angle;
const int num_targets = 3;
struct target t[num_targets];
t[0].x = 0;
t[0].y = 40;
t[0].speed_x = 3;
t[0].is_explosion = 0;
t[0].color = MAGENTA;
t[1].x = 1000;
t[1].y = 80;
t[1].speed_x = -5;
t[1].is_explosion = 0;
t[1].color = WHITE;
t[2].x = 100;
t[2].y = 120;
t[2].speed_x = 7;
t[2].is_explosion = 0;
t[2].color = GREEN;
while (1) {
double delta_angle = 2.0 * (M_PI / 180.0);
int x1_barrel = 150 * cos(angle - delta_angle);
int y1_barrel = 150 * sin(angle - delta_angle);
int x2_barrel = 150 * cos(angle + delta_angle);
int y2_barrel = 150 * sin(angle + delta_angle);
gfx_filledRect(0, 0, gfx_screenWidth() - 1, gfx_screenHeight() - 1, BLUE);
gfx_filledCircle(gfx_screenWidth() / 2, gfx_screenHeight(), 100, YELLOW);
gfx_filledTriangle(gfx_screenWidth() / 2, gfx_screenHeight(),
gfx_screenWidth() / 2 + x1_barrel,
gfx_screenHeight() - y1_barrel,
gfx_screenWidth() / 2 + x2_barrel,
gfx_screenHeight() - y2_barrel, YELLOW);
for (int i = 0; i < num_targets; ++i)
draw_target(&(t[i]));
// bullet position wrt the center of the bottom of the screen
int x_bullet = bullet_distance * cos(fire_angle);
int y_bullet = bullet_distance * sin(fire_angle);
// bullet position wrt the top-left corner
int x_bullet_tlc = gfx_screenWidth() / 2 + x_bullet;
int y_bullet_tlc = gfx_screenHeight() - y_bullet;
if (is_shooting) {
gfx_filledCircle(x_bullet_tlc, y_bullet_tlc, 10, RED); // bullet
}
gfx_updateScreen();
if (is_shooting) {
for (int i = 0; i < num_targets; ++i) {
if (hypot(x_bullet_tlc - t[i].x, y_bullet_tlc - t[i].y) < 50) {
t[i].is_explosion = 1;
t[i].explosion_counter = 0;
}
}
bullet_distance += 10.0;
}
for (int i = 0; i < num_targets; ++i)
move_target(&(t[i]));
if (gfx_isKeyDown(SDLK_RIGHT))
angle -= 1.0 * (M_PI / 180.0);
if (gfx_isKeyDown(SDLK_LEFT))
angle += 1.0 * (M_PI / 180.0);
if (gfx_isKeyDown(SDLK_SPACE)) {
is_shooting = 1;
bullet_distance = 170.0;
fire_angle = angle;
}
SDL_Delay(10);
};
return 0;
}