TinyGL 0.4.1 for MinGW
list.c
Go to the documentation of this file.
1#include "zgl.h"
2
3static char *op_table_str[]=
4{
5#define ADD_OP(a,b,c) "gl" #a " " #c,
6
7#include "opinfo.h"
8};
9
10static void (*op_table_func[])(GLContext *,GLParam *)=
11{
12#define ADD_OP(a,b,c) glop ## a ,
13
14#include "opinfo.h"
15};
16
17static int op_table_size[]=
18{
19#define ADD_OP(a,b,c) b + 1 ,
20
21#include "opinfo.h"
22};
23
24
26{
27 return gl_ctx;
28 //return wgl_ctx[0].ctx->gl_ctx;
29 //return Current->gl_ctx;
30}
31
32static GLList *find_list(GLContext *c,unsigned int list)
33{
34 return c->shared_state.lists[list];
35}
36
37static void delete_list(GLContext *c,int list)
38{
39 GLParamBuffer *pb,*pb1;
40 GLList *l;
41
42 l=find_list(c,list);
43 assert(l != NULL);
44
45 /* free param buffer */
46 pb=l->first_op_buffer;
47 while (pb!=NULL) {
48 pb1=pb->next;
49 gl_free(pb);
50 pb=pb1;
51 }
52
53 gl_free(l);
54 c->shared_state.lists[list]=NULL;
55}
56
57static GLList *alloc_list(GLContext *c,int list)
58{
59 GLList *l;
60 GLParamBuffer *ob;
61
62 l=gl_zalloc(sizeof(GLList));
63 ob=gl_zalloc(sizeof(GLParamBuffer));
64
65 ob->next=NULL;
66 l->first_op_buffer=ob;
67
68 ob->ops[0].op=OP_EndList;
69
70 c->shared_state.lists[list]=l;
71 return l;
72}
73
74
75void gl_print_op(FILE *f,GLParam *p)
76{
77 int op;
78 char *s;
79
80 op=p[0].op;
81 p++;
82 s=op_table_str[op];
83 while (*s != 0) {
84 if (*s == '%') {
85 s++;
86 switch (*s++) {
87 case 'f':
88 fprintf(f,"%g",p[0].f);
89 break;
90 default:
91 fprintf(f,"%d",p[0].i);
92 break;
93 }
94 p++;
95 } else {
96 fputc(*s,f);
97 s++;
98 }
99 }
100 fprintf(f,"\n");
101}
102
103
105{
106 int op,op_size;
107 GLParamBuffer *ob,*ob1;
108 int index,i;
109
110 op=p[0].op;
111 op_size=op_table_size[op];
113 ob=c->current_op_buffer;
114
115 /* we should be able to add a NextBuffer opcode */
116 if ((index + op_size) > (OP_BUFFER_MAX_SIZE-2)) {
117
118 ob1=gl_zalloc(sizeof(GLParamBuffer));
119 ob1->next=NULL;
120
121 ob->next=ob1;
122 ob->ops[index].op=OP_NextBuffer;
123 ob->ops[index+1].p=(void *)ob1;
124
125 c->current_op_buffer=ob1;
126 ob=ob1;
127 index=0;
128 }
129
130 for(i=0;i<op_size;i++) {
131 ob->ops[index]=p[i];
132 index++;
133 }
135}
136
138{
140 int op;
141
142 op=p[0].op;
143 if (c->exec_flag) {
144 op_table_func[op](c,p);
145 }
146 if (c->compile_flag) {
147 gl_compile_op(c,p);
148 }
149 if (c->print_flag) {
150 gl_print_op(stderr,p);
151 }
152}
153
154/* this opcode is never called directly */
156{
157 assert(0);
158}
159
160/* this opcode is never called directly */
162{
163 assert(0);
164}
165
166
168{
169 GLList *l;
170 int list,op;
171
172 list=p[1].ui;
173 l=find_list(c,list);
174 if (l == NULL) gl_fatal_error("list %d not defined",list);
175 p=l->first_op_buffer->ops;
176
177 while (1) {
178 op=p[0].op;
179 if (op == OP_EndList) break;
180 if (op == OP_NextBuffer) {
181 p=(GLParam *)p[1].p;
182 } else {
183 op_table_func[op](c,p);
184 p+=op_table_size[op];
185 }
186 }
187}
188
189
190
191void glNewList(unsigned int list,int mode)
192{
193 GLList *l;
195
196 assert(mode == GL_COMPILE || mode == GL_COMPILE_AND_EXECUTE);
197 assert(c->compile_flag == 0);
198
199 l=find_list(c,list);
200 if (l!=NULL) delete_list(c,list);
201 l=alloc_list(c,list);
202
205
206 c->compile_flag=1;
208}
209
210void glEndList(void)
211{
213 GLParam p[1];
214
215 assert(c->compile_flag == 1);
216
217 /* end of list */
218 p[0].op=OP_EndList;
219 gl_compile_op(c,p);
220
221 c->compile_flag=0;
222 c->exec_flag=1;
223}
224
225int glIsList(unsigned int list)
226{
228 GLList *l;
229 l=find_list(c,list);
230 return (l != NULL);
231}
232
233unsigned int glGenLists(int range)
234{
236 int count,i,list;
237 GLList **lists;
238
239 lists=c->shared_state.lists;
240 count=0;
241 for(i=0;i<MAX_DISPLAY_LISTS;i++) {
242 if (lists[i]==NULL) {
243 count++;
244 if (count == range) {
245 list=i-range+1;
246 for(i=0;i<range;i++) {
247 alloc_list(c,list+i);
248 }
249 return (unsigned int)list;
250 }
251 } else {
252 count=0;
253 }
254 }
255 return 0;
256}
257
void gl_fatal_error(char *format,...)
Definition: error.c:4
@ GL_COMPILE
Definition: gl.h:134
@ GL_COMPILE_AND_EXECUTE
Definition: gl.h:135
GLContext * gl_ctx
Definition: init.c:3
void gl_compile_op(GLContext *c, GLParam *p)
Definition: list.c:104
unsigned int glGenLists(int range)
Definition: list.c:233
void glEndList(void)
Definition: list.c:210
GLContext * gl_get_context(void)
Definition: list.c:25
void glNewList(unsigned int list, int mode)
Definition: list.c:191
int glIsList(unsigned int list)
Definition: list.c:225
void gl_print_op(FILE *f, GLParam *p)
Definition: list.c:75
void glopCallList(GLContext *c, GLParam *p)
Definition: list.c:167
void gl_add_op(GLParam *p)
Definition: list.c:137
void glopNextBuffer(GLContext *c, GLParam *p)
Definition: list.c:161
void glopEndList(GLContext *c, GLParam *p)
Definition: list.c:155
void gl_free(void *p)
Definition: memory.c:8
void * gl_zalloc(int size)
Definition: memory.c:18
Definition: zgl.h:159
int print_flag
Definition: zgl.h:187
GLSharedState shared_state
Definition: zgl.h:182
int current_op_buffer_index
Definition: zgl.h:186
int compile_flag
Definition: zgl.h:187
int exec_flag
Definition: zgl.h:187
GLParamBuffer * current_op_buffer
Definition: zgl.h:185
Definition: zgl.h:110
GLParamBuffer * first_op_buffer
Definition: zgl.h:111
GLParam ops[OP_BUFFER_MAX_SIZE]
Definition: zgl.h:106
struct GLParamBuffer * next
Definition: zgl.h:107
GLList ** lists
Definition: zgl.h:148
Definition: zgl.h:97
void * p
Definition: zgl.h:102
int op
Definition: zgl.h:98
unsigned int ui
Definition: zgl.h:101
#define MAX_DISPLAY_LISTS
Definition: zgl.h:45
#define OP_BUFFER_MAX_SIZE
Definition: zgl.h:46