07a3aea4c5b29202551f64ba7924d7a5b6f9876f
[dosrtxon] / src / 3dgfx.h
1 #ifndef THREEDGFX_H_
2 #define THREEDGFX_H_
3
4 #include "inttypes.h"
5
6 struct g3d_vertex {
7         float x, y, z, w;
8         float nx, ny, nz;
9         float u, v;
10         unsigned char r, g, b, a;
11 };
12
13 enum {
14         G3D_POINTS = 1,
15         G3D_LINES = 2,
16         G3D_TRIANGLES = 3,
17         G3D_QUADS = 4
18 };
19
20 /* g3d_enable/g3d_disable bits */
21 enum {
22         G3D_CULL_FACE   = 0x000001,
23         G3D_DEPTH_TEST  = 0x000002,     /* XXX not implemented */
24         G3D_LIGHTING    = 0x000004,
25         G3D_LIGHT0              = 0x000008,
26         G3D_LIGHT1              = 0x000010,
27         G3D_LIGHT2              = 0x000020,
28         G3D_LIGHT3              = 0x000040,
29         G3D_TEXTURE             = 0x000080,
30         G3D_BLEND               = 0x000100,
31         G3D_TEXTURE_GEN = 0x000200,
32         G3D_CLIP_FRUSTUM = 0x000800,/* when disabled, don't clip against the frustum */
33         G3D_CLIP_PLANE0 = 0x001000,     /* user-defined 3D clipping planes XXX not impl. */
34         G3D_CLIP_PLANE1 = 0x002000,
35         G3D_CLIP_PLANE2 = 0x004000,
36         G3D_CLIP_PLANE3 = 0x008000,
37
38         G3D_ALL = 0x7fffffff
39 };
40
41 /* arg to g3d_front_face */
42 enum { G3D_CCW, G3D_CW };
43
44 /* arg to g3d_polygon_mode */
45 enum {
46         G3D_WIRE,
47         G3D_FLAT,
48         G3D_GOURAUD,
49         G3D_TEX,
50         G3D_TEX_GOURAUD
51 };
52
53 /* matrix stacks */
54 enum {
55         G3D_MODELVIEW,
56         G3D_PROJECTION,
57
58         G3D_NUM_MATRICES
59 };
60
61 int g3d_init(void);
62 void g3d_destroy(void);
63
64 void g3d_framebuffer(int width, int height, void *pixels);
65 void g3d_viewport(int x, int y, int w, int h);
66
67 void g3d_enable(unsigned int opt);
68 void g3d_disable(unsigned int opt);
69 void g3d_setopt(unsigned int opt, unsigned int mask);
70 unsigned int g3d_getopt(unsigned int mask);
71
72 void g3d_front_face(unsigned int order);
73 void g3d_polygon_mode(int pmode);
74
75 void g3d_matrix_mode(int mmode);
76
77 void g3d_load_identity(void);
78 void g3d_load_matrix(const float *m);
79 void g3d_mult_matrix(const float *m);
80 void g3d_push_matrix(void);
81 void g3d_pop_matrix(void);
82
83 void g3d_translate(float x, float y, float z);
84 void g3d_rotate(float angle, float x, float y, float z);
85 void g3d_scale(float x, float y, float z);
86 void g3d_ortho(float left, float right, float bottom, float top, float znear, float zfar);
87 void g3d_frustum(float left, float right, float bottom, float top, float znear, float zfar);
88 void g3d_perspective(float vfov, float aspect, float znear, float zfar);
89
90 /* returns pointer to the *internal* matrix, and if argument m is not null,
91  * also copies the internal matrix there. */
92 const float *g3d_get_matrix(int which, float *m);
93
94 void g3d_light_pos(int idx, float x, float y, float z);
95 void g3d_light_color(int idx, float r, float g, float b);
96
97 void g3d_light_ambient(float r, float g, float b);
98
99 void g3d_mtl_diffuse(float r, float g, float b);
100 void g3d_mtl_specular(float r, float g, float b);
101 void g3d_mtl_shininess(float shin);
102
103 void g3d_set_texture(int xsz, int ysz, void *pixels);
104
105 void g3d_draw(int prim, const struct g3d_vertex *varr, int varr_size);
106 void g3d_draw_indexed(int prim, const struct g3d_vertex *varr, int varr_size,
107                 const uint16_t *iarr, int iarr_size);
108
109 void g3d_begin(int prim);
110 void g3d_end(void);
111 void g3d_vertex(float x, float y, float z);
112 void g3d_normal(float x, float y, float z);
113 void g3d_color3b(unsigned char r, unsigned char g, unsigned char b);
114 void g3d_color4b(unsigned char r, unsigned char g, unsigned char b, unsigned char a);
115 void g3d_color3f(float r, float g, float b);
116 void g3d_color4f(float r, float g, float b, float a);
117 void g3d_texcoord(float u, float v);
118
119 #endif  /* THREEDGFX_H_ */