TinyGL 0.4.1 for MinGW
init.c
Go to the documentation of this file.
1#include "zgl.h"
2
4
5
7{
12
13 alloc_texture(c,0);
14}
15
17{
19 int i;
20
21 for(i=0;i<MAX_DISPLAY_LISTS;i++) {
22 /* TODO */
23 }
24 gl_free(s->lists);
25
27}
28
29
30void glInit(void *zbuffer1)
31{
32 ZBuffer *zbuffer=(ZBuffer *)zbuffer1;
33 GLContext *c;
34 GLViewport *v;
35 int i;
36
37 c=gl_zalloc(sizeof(GLContext));
38 gl_ctx=c;
39
40 c->zb=zbuffer;
41
42 /* allocate GLVertex array */
45
46 /* viewport */
47 v=&c->viewport;
48 v->xmin=0;
49 v->ymin=0;
50 v->xsize=zbuffer->xsize;
51 v->ysize=zbuffer->ysize;
52 v->updated=1;
53
54 /* shared state */
56
57 /* lists */
58
59 c->exec_flag=1;
60 c->compile_flag=0;
61 c->print_flag=0;
62
63 c->in_begin=0;
64
65 /* lights */
66 for(i=0;i<MAX_LIGHTS;i++) {
67 GLLight *l=&c->lights[i];
68 l->ambient=gl_V4_New(0,0,0,1);
69 l->diffuse=gl_V4_New(1,1,1,1);
70 l->specular=gl_V4_New(1,1,1,1);
71 l->position=gl_V4_New(0,0,1,0);
72 l->norm_position=gl_V3_New(0,0,1);
73 l->spot_direction=gl_V3_New(0,0,-1);
75 l->spot_exponent=0;
76 l->spot_cutoff=180;
77 l->attenuation[0]=1;
78 l->attenuation[1]=0;
79 l->attenuation[2]=0;
80 l->enabled=0;
81 }
82 c->first_light=NULL;
83 c->ambient_light_model=gl_V4_New(0.2,0.2,0.2,1);
87
88 /* default materials */
89 for(i=0;i<2;i++) {
90 GLMaterial *m=&c->materials[i];
91 m->emission=gl_V4_New(0,0,0,1);
92 m->ambient=gl_V4_New(0.2,0.2,0.2,1);
93 m->diffuse=gl_V4_New(0.8,0.8,0.8,1);
94 m->specular=gl_V4_New(0,0,0,1);
95 m->shininess=0;
96 }
100
101 /* textures */
103
104 /* default state */
105 c->current_color.X=1.0;
106 c->current_color.Y=1.0;
107 c->current_color.Z=1.0;
108 c->current_color.W=1.0;
109 c->longcurrent_color[0] = 65535;
110 c->longcurrent_color[1] = 65535;
111 c->longcurrent_color[2] = 65535;
112
113 c->current_normal.X=1.0;
114 c->current_normal.Y=0.0;
115 c->current_normal.Z=0.0;
116 c->current_normal.W=0.0;
117
119
120 c->current_tex_coord.X=0;
121 c->current_tex_coord.Y=0;
122 c->current_tex_coord.Z=0;
123 c->current_tex_coord.W=1;
124
127
128 c->current_front_face=0; /* 0 = GL_CCW 1 = GL_CW */
132
133 /* clear */
134 c->clear_color.v[0]=0;
135 c->clear_color.v[1]=0;
136 c->clear_color.v[2]=0;
137 c->clear_color.v[3]=0;
138 c->clear_depth=0;
139
140 /* selection */
142 c->select_buffer=NULL;
143 c->name_stack_size=0;
144
145 /* matrix */
146 c->matrix_mode=0;
147
151
152 for(i=0;i<3;i++) {
153 c->matrix_stack[i]=gl_zalloc(c->matrix_stack_depth_max[i] * sizeof(M4));
154 c->matrix_stack_ptr[i]=c->matrix_stack[i];
155 }
156
163
165
166 /* opengl 1.1 arrays */
167 c->client_states = 0;
168
169 /* opengl 1.1 polygon offset */
170 c->offset_states = 0;
171
172 /* clear the resize callback function pointer */
173 c->gl_resize_viewport = NULL;
174
175 /* specular buffer */
176 c->specbuf_first = NULL;
178 c->specbuf_num_buffers = 0;
179
180 /* depth test */
181 c->depth_test = 0;
182}
183
184void glClose(void)
185{
188 gl_free(c);
189}
@ GL_BACK
Definition: gl.h:120
@ GL_RENDER
Definition: gl.h:240
@ GL_FRONT_AND_BACK
Definition: gl.h:184
@ GL_SMOOTH
Definition: gl.h:187
@ GL_PROJECTION
Definition: gl.h:95
@ GL_MODELVIEW
Definition: gl.h:94
@ GL_TEXTURE
Definition: gl.h:96
@ GL_FILL
Definition: gl.h:116
@ GL_AMBIENT_AND_DIFFUSE
Definition: gl.h:179
void glMatrixMode(int mode)
Definition: api.c:244
void glLoadIdentity(void)
Definition: api.c:265
void glClose(void)
Definition: init.c:184
GLContext * gl_ctx
Definition: init.c:3
void endSharedState(GLContext *c)
Definition: init.c:16
void glInit(void *zbuffer1)
Definition: init.c:30
void initSharedState(GLContext *c)
Definition: init.c:6
GLContext * gl_get_context(void)
Definition: list.c:25
void gl_free(void *p)
Definition: memory.c:8
void * gl_zalloc(int size)
Definition: memory.c:18
void * gl_malloc(int size)
Definition: memory.c:13
Definition: zgl.h:159
int print_flag
Definition: zgl.h:187
int render_mode
Definition: zgl.h:217
GLMaterial materials[2]
Definition: zgl.h:172
int specbuf_num_buffers
Definition: zgl.h:269
GLLight * first_light
Definition: zgl.h:165
V4 current_tex_coord
Definition: zgl.h:236
M4 * matrix_stack[3]
Definition: zgl.h:192
int cull_face_enabled
Definition: zgl.h:212
int current_edge_flag
Definition: zgl.h:237
int matrix_model_projection_updated
Definition: zgl.h:198
int in_begin
Definition: zgl.h:240
V4 ambient_light_model
Definition: zgl.h:166
int matrix_mode
Definition: zgl.h:191
int polygon_mode_back
Definition: zgl.h:206
int color_material_enabled
Definition: zgl.h:173
GLSharedState shared_state
Definition: zgl.h:182
int current_front_face
Definition: zgl.h:209
int depth_test
Definition: zgl.h:277
M4 * matrix_stack_ptr[3]
Definition: zgl.h:193
int vertex_max
Definition: zgl.h:243
GLVertex * vertex
Definition: zgl.h:244
int matrix_stack_depth_max[3]
Definition: zgl.h:194
int current_color_material_mode
Definition: zgl.h:174
int current_color_material_type
Definition: zgl.h:175
V4 clear_color
Definition: zgl.h:230
GLSpecBuf * specbuf_first
Definition: zgl.h:267
float clear_depth
Definition: zgl.h:229
GLLight lights[MAX_LIGHTS]
Definition: zgl.h:164
ZBuffer * zb
Definition: zgl.h:161
int light_model_two_side
Definition: zgl.h:169
int compile_flag
Definition: zgl.h:187
int exec_flag
Definition: zgl.h:187
unsigned int * select_buffer
Definition: zgl.h:218
int name_stack_size
Definition: zgl.h:226
GLViewport viewport
Definition: zgl.h:203
int lighting_enabled
Definition: zgl.h:168
V4 current_normal
Definition: zgl.h:235
int current_shade_model
Definition: zgl.h:210
unsigned int longcurrent_color[3]
Definition: zgl.h:234
int local_light_model
Definition: zgl.h:167
int polygon_mode_front
Definition: zgl.h:207
int offset_states
Definition: zgl.h:263
int current_cull_face
Definition: zgl.h:211
V4 current_color
Definition: zgl.h:233
int specbuf_used_counter
Definition: zgl.h:268
int client_states
Definition: zgl.h:258
int(* gl_resize_viewport)(struct GLContext *c, int *xsize, int *ysize)
Definition: zgl.h:274
Definition: zgl.h:59
int enabled
Definition: zgl.h:73
V4 ambient
Definition: zgl.h:60
float spot_exponent
Definition: zgl.h:65
float spot_cutoff
Definition: zgl.h:66
V3 norm_position
Definition: zgl.h:71
V4 specular
Definition: zgl.h:62
V3 norm_spot_direction
Definition: zgl.h:70
V4 position
Definition: zgl.h:63
V3 spot_direction
Definition: zgl.h:64
float attenuation[3]
Definition: zgl.h:67
V4 diffuse
Definition: zgl.h:61
Definition: zgl.h:110
Definition: zgl.h:77
V4 emission
Definition: zgl.h:78
V4 ambient
Definition: zgl.h:79
V4 specular
Definition: zgl.h:81
float shininess
Definition: zgl.h:82
V4 diffuse
Definition: zgl.h:80
GLList ** lists
Definition: zgl.h:148
GLTexture ** texture_hash_table
Definition: zgl.h:149
Definition: zgl.h:138
Definition: zgl.h:115
Definition: zgl.h:90
int xmin
Definition: zgl.h:91
int ymin
Definition: zgl.h:91
int ysize
Definition: zgl.h:91
int updated
Definition: zgl.h:94
int xsize
Definition: zgl.h:91
Definition: zmath.h:6
float v[4]
Definition: zmath.h:29
int ysize
Definition: zbuffer.h:75
int xsize
Definition: zbuffer.h:75
void glInitTextures(GLContext *c)
Definition: texture.c:62
GLTexture * alloc_texture(GLContext *c, int h)
Definition: texture.c:43
#define MAX_MODELVIEW_STACK_DEPTH
Definition: zgl.h:36
#define POLYGON_MAX_VERTEX
Definition: zgl.h:26
#define MAX_TEXTURE_STACK_DEPTH
Definition: zgl.h:38
#define MAX_DISPLAY_LISTS
Definition: zgl.h:45
#define MAX_LIGHTS
Definition: zgl.h:41
#define MAX_PROJECTION_STACK_DEPTH
Definition: zgl.h:37
#define TEXTURE_HASH_TABLE_SIZE
Definition: zgl.h:136
V3 gl_V3_New(float x, float y, float z)
Definition: zmath.c:256
V4 gl_V4_New(float x, float y, float z, float w)
Definition: zmath.c:265