Skip to content

Commit ed9e471

Browse files
committed
bad grid implementation
1 parent 4188bcf commit ed9e471

File tree

7 files changed

+206
-196
lines changed

7 files changed

+206
-196
lines changed

build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ set -xe
44

55
gcc \
66
-o main \
7-
main.c grid.c common.c particle.c \
7+
main.c common.c particle.c \
88
-I/usr/include/SDL2 -lSDL2 -lSDL2_ttf -lm -Wall -Wextra -g -O3

common.h

+5-4
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
#include <SDL2/SDL.h>
44
#include <SDL2/SDL_ttf.h>
55

6-
#define SCREEN_W 800
7-
#define SCREEN_H 600
6+
#define VERLET_SUB_STEPS 8
7+
#define SCREEN_W 1000
8+
#define SCREEN_H 800
89

9-
#define MIN_RADIUS 8
10-
#define MAX_RADIUS 8
10+
#define MIN_RADIUS 6
11+
#define MAX_RADIUS 6
1112

1213
typedef struct Vec2 {
1314
float x, y;

grid.c

-152
This file was deleted.

grid.h

-28
This file was deleted.

main.c

+5-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
#include <SDL2/SDL.h>
77
#include <SDL2/SDL_ttf.h>
88
#include "particle.h"
9-
#include "grid.h"
109
#include "common.h"
1110

1211
int main() {
@@ -31,6 +30,10 @@ int main() {
3130
int idx = 0;
3231
bool quit = false;
3332

33+
Particle testp;
34+
particle_init(&testp, SCREEN_W/2, SCREEN_H/2, 20, pcol);
35+
particles_add(&particles, testp);
36+
3437
while (!quit)
3538
{
3639
SDL_Event e;
@@ -93,7 +96,7 @@ int main() {
9396
SDL_RenderClear(renderer);
9497
draw_stats(renderer, delta_time, particles.used, font);
9598

96-
particles_render(renderer, &particles, delta_time);
99+
particles_render(renderer, &particles, grid, delta_time);
97100
//grid_debug_draw(renderer, grid);
98101

99102
SDL_SetRenderDrawColor(renderer, 255, 255, 255, 255);

0 commit comments

Comments
 (0)