-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
112 lines (99 loc) · 3.31 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
#include <SDL2/SDL_render.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <time.h>
#include <SDL2/SDL.h>
#include <SDL2/SDL_ttf.h>
#include "particle.h"
#include "common.h"
int main() {
// sdl window setup
SDL_Window *window;
SDL_Renderer *renderer;
TTF_Font *font;
if (sdl_setup(&window, &renderer, &font) != 0) {
fprintf(stderr, "SDL setup failed\n");
return 1;
}
SDL_Color pcol = {0, 0, 0, 255};
SDL_Color bg_c = {25, 25, 25, 255};
int mouse_x, mouse_y;
Uint32 last_time = SDL_GetTicks();
Particles particles;
particles_init(&particles, 512);
Grid *grid = grid_init();
int idx = 0;
bool quit = false;
Particle testp;
particle_init(&testp, SCREEN_W/2, SCREEN_H/2, 20, pcol);
particles_add(&particles, testp);
while (!quit)
{
SDL_Event e;
while(SDL_PollEvent(&e) > 0)
{
switch(e.type)
{
case SDL_QUIT:
{
quit = true;
break;
}
case SDL_KEYDOWN:
{
if (e.key.keysym.sym == SDLK_RETURN) {
Particle p;
pcol.r = f_randi(idx + 1) % 256;
idx ++;
pcol.g = f_randi(idx + 2) % 256;
idx ++;
pcol.b = f_randi(idx + 3) % 256;
particle_init(&p, mouse_x, mouse_y, 15, pcol);
particles_add(&particles, p);
}
}
}
}
const uint8_t *keystate = SDL_GetKeyboardState(NULL);
if (keystate[SDL_SCANCODE_R])
{
particles_free(&particles);
particles_init(&particles, 512);
}
if (SDL_GetMouseState(&mouse_x, &mouse_y) & SDL_BUTTON(2)) {
Particle p;
pcol.r = f_randi(idx + 1) % 256;
idx ++;
pcol.g = f_randi(idx + 2) % 256;
idx ++;
pcol.b = f_randi(idx + 3) % 256;
idx ++;
int radius = f_randi(idx) % MAX_RADIUS;
if (radius < MIN_RADIUS) radius = MIN_RADIUS;
particle_init(&p, mouse_x, mouse_y, radius, pcol);
particles_add(&particles, p);
}
if (SDL_GetMouseState(&mouse_x, &mouse_y) & SDL_BUTTON(1)) {
particle_add_pos_force(&particles, mouse_x, mouse_y);
}
if (SDL_GetMouseState(&mouse_x, &mouse_y) & SDL_BUTTON(3)) {
particle_add_neg_force(&particles, mouse_x, mouse_y);
}
Uint32 current_time = SDL_GetTicks();
float delta_time = (current_time - last_time) / 1000.0f;
last_time = current_time;
SDL_SetRenderDrawColor(renderer, bg_c.r, bg_c.g, bg_c.b, bg_c.a);
SDL_RenderClear(renderer);
draw_stats(renderer, delta_time, particles.used, font);
particles_render(renderer, &particles, grid, delta_time);
//grid_debug_draw(renderer, grid);
SDL_SetRenderDrawColor(renderer, 255, 255, 255, 255);
SDL_RenderDrawLine(renderer, 0, SCREEN_H, SCREEN_W, SCREEN_H);
SDL_RenderPresent(renderer);
}
particles_free(&particles);
grid_free(grid);
sdl_cleanup(&window, &renderer, &font);
return 0;
}