125af168770350e7b43f24c2c41788518f390172
[gba_blender] / src / xgl.h
1 /*
2 blender for the Gameboy Advance
3 Copyright (C) 2021  John Tsiombikas <nuclear@member.fsf.org>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program.  If not, see <https://www.gnu.org/licenses/>.
17 */
18 #ifndef XGL_H_
19 #define XGL_H_
20
21 #define X_PI    0x3243f
22 #define X_2PI   0x6487f
23 #define X_HPI   0x19220
24 #define X_QPI   0xc910
25
26 enum {
27         XGL_LINES               = 2,
28         XGL_TRIANGLES   = 3,
29         XGL_QUADS               = 4
30 };
31
32 struct xvertex {
33         int32_t x, y, z;
34         int32_t nx, ny, nz;
35         unsigned char cidx;
36 };
37
38 void xgl_init(void);
39
40 void xgl_viewport(int x, int y, int w, int h);
41
42 void xgl_push_matrix(void);
43 void xgl_pop_matrix(void);
44 void xgl_load_identity(void);
45 void xgl_load_matrix(const int32_t *m);
46 void xgl_mult_matrix(const int32_t *m);
47
48 void xgl_translate(int32_t x, int32_t y, int32_t z);
49 void xgl_rotate_x(int32_t angle);
50 void xgl_rotate_y(int32_t angle);
51 void xgl_rotate_z(int32_t angle);
52 void xgl_scale(int32_t x, int32_t y, int32_t z);
53
54 void xgl_draw(int prim, const struct xvertex *varr, int vcount);
55
56 #endif  /* XGL_H_ */