blob: a9ad3d0640dfc1b111674f62cd392643baa9ae38 (
plain)
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
|
// common.h
#ifndef COMMON_H
#define COMMON_H
#include <stdint.h>
typedef uint_least8_t u8;
typedef int_least8_t i8;
typedef uint_least16_t u16;
typedef int_least16_t i16;
typedef uint_least32_t u32;
typedef int_least32_t i32;
typedef struct {
float x;
float y;
} Vec2d;
// settings
// UI
#define SCREEN_WIDTH 800
#define SCREEN_HEIGHT 600
#define SCREEN_TITLE "physics"
// physics
#define MAX_OBJECTS 100
#define FORCE_RESITUTION_DEFAULT 0.8f
#define FORCE_GRAVITY_DEFAULT 1000.0f
#define FORCE_LINEAR_DAMPING_DEFAULT 0.995f;
typedef enum {
SHAPE_CIRCLE,
SHAPE_SQUARE,
SHAPE_RECTANGLE
} shape_t;
typedef struct {
shape_t type;
Vec2d pos;
Vec2d vel;
Vec2d acc;
float width;
float height;
Color color;
} object_t;
#endif // COMMON_H
|