suzanne
[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_LIGHTING    = 1,
28         XGL_DEPTH_TEST  = 2,
29 };
30
31 enum {
32         XGL_LINES               = 2,
33         XGL_TRIANGLES   = 3,
34         XGL_QUADS               = 4
35 };
36
37 struct xvertex {
38         int32_t x, y, z;
39         int32_t nx, ny, nz;
40         unsigned char cidx;
41 };
42
43 void xgl_init(void);
44
45 void xgl_enable(unsigned int opt);
46 void xgl_disable(unsigned int opt);
47
48 void xgl_viewport(int x, int y, int w, int h);
49
50 void xgl_push_matrix(void);
51 void xgl_pop_matrix(void);
52 void xgl_load_identity(void);
53 void xgl_load_matrix(const int32_t *m);
54 void xgl_mult_matrix(const int32_t *m);
55
56 void xgl_translate(int32_t x, int32_t y, int32_t z);
57 void xgl_rotate_x(int32_t angle);
58 void xgl_rotate_y(int32_t angle);
59 void xgl_rotate_z(int32_t angle);
60 void xgl_scale(int32_t x, int32_t y, int32_t z);
61
62 void xgl_draw(int prim, const struct xvertex *varr, int vcount);
63
64 #endif  /* XGL_H_ */