-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathtypes.h
68 lines (54 loc) · 1.4 KB
/
types.h
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
// Since we are all lazy bastards, here some aliases and macros.
#ifndef __INCLUDED_TYPES__
#define __INCLUDED_TYPES__
#include <stdint.h>
// Types
typedef unsigned char byte;
typedef unsigned int uint;
typedef uint64_t oscore_time;
#define T_MILLISECOND 1000ull
#define T_SECOND 1000000ull
// Macros
#define ARRAY_SIZE(stuff) (sizeof(stuff) / sizeof(stuff[0]))
#define eprintf(...) fprintf(stderr, __VA_ARGS__)
#define MIN(x, y) (((x) < (y)) ? (x) : (y))
#define MAX(x, y) (((x) > (y)) ? (x) : (y))
// Colors
typedef struct RGB {
byte red;
byte green;
byte blue;
byte alpha;
} RGB;
typedef struct HSV {
byte h;
byte s;
byte v;
byte pad; // yay, more padding.
} HSV;
extern RGB HSV2RGB(HSV hsv);
extern HSV RGB2HSV(RGB rgb);
extern RGB RGBlerp(byte v, RGB rgbA, RGB rgbB);
// Macro for painless colors.
#define RGB_C(r, g, b) ((RGB) { .red = (byte) (r), .green = (byte) (g), .blue = (byte) (b), .alpha = 255 } )
#define HSV_C(hue, sat, val) ((HSV) { .h = (byte) (hue), .s = (byte) (sat), .v = (byte) (val), .pad = 0 } )
#define RGB(r, g, b) RGB_C(r, g, b)
#define HSV(h, s, v) HSV_C(h, s, v)
// Module and timer stuff.
#ifndef MAX_MODULES
#define MAX_MODULES 64
#endif
#ifndef MAX_TIMERS
#define MAX_TIMERS 256
#endif
// Time durations for queued effects.
#ifndef TIME_SHORT
#define TIME_SHORT 5
#endif
#ifndef TIME_MEDIUM
#define TIME_MEDIUM 10
#endif
#ifndef TIME_LONG
#define TIME_LONG 30
#endif
#endif