-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
176 lines (140 loc) · 3.37 KB
/
main.c
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
#include <stdlib.h>
#include <time.h>
#include <simple2d.h>
#define TRUE (1)
#define FALSE (0)
#define FOR(x, n) for (int x = 0; x < n; ++x)
#define TITLE ("Boids")
#define WIDTH (760)
#define HEIGHT (640)
#define FPS_CAP (60)
#define WHITE 255, 255, 255, 1
#define BOIDS_COUNT (500)
#define BOID_RADIUS (3)
#define BOID_SECTORS (3)
#define BOID_SPEED (1)
#define BOID_SPEED_VARIANT (3)
#define BOID_STEERING_COEFICIENT (0.01)
#define REACTIVE_RADIUS (20)
#define FOLLOW_MOUSE FALSE
#define RENDER_TEXT FALSE
#define RENDER_REACT_BOX FALSE
S2D_Window *window;
int stop = FALSE;
typedef struct boid_struct
{
double x, y;
double speed;
double angle;
} boid_t;
boid_t boids[BOIDS_COUNT];
boid_t *working_array[BOIDS_COUNT];
void init()
{
srand(time(NULL));
FOR(i, BOIDS_COUNT)
{
boid_t boid = {
rand() % WIDTH,
rand() % HEIGHT,
(rand() % (int)(BOID_SPEED_VARIANT * 100)) / 100 + BOID_SPEED,
fmod(rand(), 2 * M_PI)};
printf("Boid %d [%f %f] %f\n", i, boid.x, boid.y, boid.angle);
boids[i] = boid;
}
}
double distance(double x1, double y1, double x2, double y2)
{
return hypot(x2 - x1, y2 - y1);
}
void get_closest_boids(boid_t *boid, double radius, size_t *count)
{
*count = 0;
FOR(i, BOIDS_COUNT)
{
if (&boids[i] == boid)
continue;
if (distance(boid->x, boid->y, boids[i].x, boids[i].y) <= radius)
{
working_array[*count] = &boids[i];
*count += 1;
}
}
}
void move_boid(boid_t *boid)
{
size_t n;
get_closest_boids(boid, REACTIVE_RADIUS, &n);
if (n)
{
double angle = working_array[0]->angle;
int i;
for (i = 1; i < n; ++i)
{
angle += working_array[i]->angle;
}
boid->angle = angle / n;
}
// calculate next point based on current location and angle
double nx = 0,
ny = 0;
nx = boid->x + boid->speed * cos(boid->angle);
ny = boid->y + boid->speed * sin(boid->angle);
if (nx < 0)
nx = WIDTH;
if (nx > WIDTH)
nx = 0;
if (ny < 0)
ny = HEIGHT;
if (ny > HEIGHT)
ny = 0;
boid->x = nx;
boid->y = ny;
}
void update()
{
if (stop == TRUE)
return;
FOR(i, BOIDS_COUNT)
{
move_boid(&boids[i]);
}
}
void render_boid(boid_t *boid)
{
S2D_DrawCircle(boid->x, boid->y, BOID_RADIUS, BOID_SECTORS, WHITE);
if (RENDER_REACT_BOX)
S2D_DrawCircle(boid->x, boid->y, REACTIVE_RADIUS / 2, 36, 255, 255, 255, 0.1);
if (RENDER_TEXT)
{
char *format_str = "[%.2f,%.2f] %.2f";
char *buf;
size_t text_length;
text_length = snprintf(NULL, 0, format_str, boid->x, boid->y, boid->angle) + 1;
buf = (char *)malloc(text_length);
snprintf(buf, text_length, format_str, boid->x, boid->y, boid->angle);
S2D_Text *txt = S2D_CreateText("vera.ttf", buf, 13);
if (txt != NULL)
{
txt->x = boid->x;
txt->y = boid->y + 2;
S2D_DrawText(txt);
S2D_FreeText(txt);
}
}
}
void render()
{
FOR(i, BOIDS_COUNT)
{
render_boid(&boids[i]);
}
}
int main()
{
init();
window = S2D_CreateWindow(TITLE, WIDTH, HEIGHT, update, render, S2D_HIGHDPI);
window->fps_cap = FPS_CAP;
S2D_Show(window);
return 0;
}