looks right, extremely slow
[gbajam22] / src / util.h
1 #ifndef UTIL_H_
2 #define UTIL_H_
3
4 #include <stdlib.h>
5 #include <stdint.h>
6 #include "gba.h"
7
8 #ifdef BUILD_GBA
9
10 #define wait_vblank() \
11         do { \
12                 while(REG_DISPSTAT & DISPSTAT_VBLANK); \
13                 while(!(REG_DISPSTAT & DISPSTAT_VBLANK)); \
14         } while(0)
15
16 #define present(x) \
17         do { \
18                 REG_DISPCNT = DISPCNT_BG2 | DISPCNT_OBJ | 4 | ((x) << 4); \
19         } while(0)
20
21 #else   /* non-GBA build */
22 #define wait_vblank()
23
24 void present(int buf);          /* defined in src/pc/main.c */
25 #endif
26
27 #define set_bg_color(idx, r, g, b) \
28         gba_bgpal[idx] = (uint16_t)(r) | ((uint16_t)(g) << 5) | ((uint16_t)(b) << 10)
29
30 extern int16_t sinlut[];
31
32 #define SINLUT_BITS             8
33 #define SINLUT_SIZE             (1 << SINLUT_BITS)
34
35 #define SIN(angle) \
36         ((int32_t)sinlut[((angle) >> (16 - SINLUT_BITS)) & (SINLUT_SIZE - 1)] << 1)
37
38 #define COS(angle) \
39         ((int32_t)sinlut[(((angle) >> (16 - SINLUT_BITS)) + (SINLUT_SIZE / 4)) & (SINLUT_SIZE - 1)] << 1)
40
41 int iwram_brk(void *addr);
42 void *iwram_sbrk(intptr_t delta);
43
44 void fillblock_16byte(void *dest, uint32_t val, int count);
45
46 void *get_pc(void);
47 void *get_sp(void);
48
49 int ispow2(unsigned int x);
50
51 /* Non-failing versions of malloc/calloc/realloc. They never return 0, they call
52  * demo_abort on failure. Use the macros, don't call the *_impl functions.
53  */
54 #define malloc_nf(sz)   malloc_nf_impl(sz, __FILE__, __LINE__)
55 void *malloc_nf_impl(size_t sz, const char *file, int line);
56 #define calloc_nf(n, sz)        calloc_nf_impl(n, sz, __FILE__, __LINE__)
57 void *calloc_nf_impl(size_t num, size_t sz, const char *file, int line);
58 #define realloc_nf(p, sz)       realloc_nf_impl(p, sz, __FILE__, __LINE__)
59 void *realloc_nf_impl(void *p, size_t sz, const char *file, int line);
60 #define strdup_nf(s)    strdup_nf_impl(s, __FILE__, __LINE__)
61 char *strdup_nf_impl(const char *s, const char *file, int line);
62
63
64 #endif  /* UTIL_H_ */