This repository has been archived by the owner on Nov 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathztriangle.c
490 lines (424 loc) · 43 KB
/
ztriangle.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
#include "../include/zbuffer.h"
#include "msghandling.h"
#include <stdlib.h>
/* TODO: Switch from scanline rasterizer to easily parallelized cross product rasterizer.*/
static GLfloat edgeFunction(GLfloat ax, GLfloat ay, GLfloat bx, GLfloat by, GLfloat cx, GLfloat cy) {
return (cx - ax) * (by - ay) - (cy - ay) * (bx - ax);
}
#if TGL_FEATURE_RENDER_BITS == 32
#elif TGL_FEATURE_RENDER_BITS == 16
#else
#error "WRONG MODE!!!"
#endif
#if TGL_FEATURE_POLYGON_STIPPLE == 1
#define TGL_STIPPLEVARS \
GLubyte* zbstipplepattern = zb->stipplepattern; \
GLubyte zbdostipple = zb->dostipple;
#define THE_X ((GLint)(pp - pp1))
#define XSTIP(_a) ((THE_X + _a) & TGL_POLYGON_STIPPLE_MASK_X)
#define YSTIP (the_y & TGL_POLYGON_STIPPLE_MASK_Y)
/* NOTES Divide by 8 to get the byte Get the actual bit*/
#define STIPBIT(_a) (zbstipplepattern[(XSTIP(_a) | (YSTIP << TGL_POLYGON_STIPPLE_POW2_WIDTH)) >> 3] & (1 << (XSTIP(_a) & 7)))
#define STIPTEST(_a) &&(!(zbdostipple && !STIPBIT(_a)))
#else
#define TGL_STIPPLEVARS /* a comment */
#define STIPTEST(_a) /* a comment*/
#endif
#if TGL_FEATURE_NO_DRAW_COLOR == 1
#define NODRAWTEST(c) &&((c & TGL_COLOR_MASK) != TGL_NO_DRAW_COLOR)
#else
#define NODRAWTEST(c) /* a comment */
#endif
#define ZCMP(z, zpix, _a, c) (((!zbdt) || (z >= zpix)) STIPTEST(_a) NODRAWTEST(c))
#define ZCMPSIMP(z, zpix, _a, crabapple) (((!zbdt) || (z >= zpix)) STIPTEST(_a))
void ZB_fillTriangleFlat(ZBuffer* zb, ZBufferPoint* p0, ZBufferPoint* p1, ZBufferPoint* p2) {
GLubyte zbdt = zb->depth_test;
GLubyte zbdw = zb->depth_write;
GLuint color;
TGL_BLEND_VARS
TGL_STIPPLEVARS
#undef INTERP_Z
#undef INTERP_RGB
#undef INTERP_ST
#undef INTERP_STZ
#define INTERP_Z
#define DRAW_INIT() \
{ color = RGB_TO_PIXEL(p2->r, p2->g, p2->b); }
#define PUT_PIXEL(_a) \
{ \
{ \
register GLuint zz = z >> ZB_POINT_Z_FRAC_BITS; \
if (ZCMPSIMP(zz, pz[_a], _a, color)) { \
TGL_BLEND_FUNC(color, (pp[_a])) /*pp[_a] = color;*/ \
if (zbdw) \
pz[_a] = zz; \
} \
} \
z += dzdx; \
}
#include "ztriangle.h"
}
void ZB_fillTriangleFlatNOBLEND(ZBuffer* zb, ZBufferPoint* p0, ZBufferPoint* p1, ZBufferPoint* p2) {
PIXEL color = RGB_TO_PIXEL(p2->r, p2->g, p2->b);
GLubyte zbdw = zb->depth_write;
GLubyte zbdt = zb->depth_test;
TGL_STIPPLEVARS
#undef INTERP_Z
#undef INTERP_RGB
#undef INTERP_ST
#undef INTERP_STZ
#define INTERP_Z
#define DRAW_INIT() \
{}
#define PUT_PIXEL(_a) \
{ \
{ \
register GLuint zz = z >> ZB_POINT_Z_FRAC_BITS; \
if (ZCMPSIMP(zz, pz[_a], _a, 0)) { \
pp[_a] = color; \
if (zbdw) \
pz[_a] = zz; \
} \
} \
z += dzdx; \
}
#include "ztriangle.h"
}
/*
* Smooth filled triangle.
* The code below is very tricky :)
*/
void ZB_fillTriangleSmooth(ZBuffer* zb, ZBufferPoint* p0, ZBufferPoint* p1, ZBufferPoint* p2) {
GLubyte zbdw = zb->depth_write;
GLubyte zbdt = zb->depth_test;
TGL_BLEND_VARS
TGL_STIPPLEVARS
#define INTERP_Z
#define INTERP_RGB
#define SAR_RND_TO_ZERO(v, n) (v / (1 << n))
#if TGL_FEATURE_RENDER_BITS == 32
#define DRAW_INIT() \
{}
#define PUT_PIXEL(_a) \
{ \
{ \
register GLuint zz = z >> ZB_POINT_Z_FRAC_BITS; \
if (ZCMPSIMP(zz, pz[_a], _a, 0)) { \
/*pp[_a] = RGB_TO_PIXEL(or1, og1, ob1);*/ \
TGL_BLEND_FUNC_RGB(or1, og1, ob1, (pp[_a])); \
if (zbdw) \
pz[_a] = zz; \
} \
} \
z += dzdx; \
og1 += dgdx; \
or1 += drdx; \
ob1 += dbdx; \
}
#elif TGL_FEATURE_RENDER_BITS == 16
#define DRAW_INIT() \
{}
#define PUT_PIXEL(_a) \
{ \
{ \
register GLuint zz = z >> ZB_POINT_Z_FRAC_BITS; \
if (ZCMPSIMP(zz, pz[_a], _a, 0)) { \
/*pp[_a] = RGB_TO_PIXEL(or1, og1, ob1);*/ \
TGL_BLEND_FUNC_RGB(or1, og1, ob1, (pp[_a])); \
\
if (zbdw) \
pz[_a] = zz; \
} \
} \
z += dzdx; \
og1 += dgdx; \
or1 += drdx; \
ob1 += dbdx; \
}
#endif
#include "ztriangle.h"
}
void ZB_fillTriangleSmoothNOBLEND(ZBuffer* zb, ZBufferPoint* p0, ZBufferPoint* p1, ZBufferPoint* p2) {
GLubyte zbdw = zb->depth_write;
GLubyte zbdt = zb->depth_test;
TGL_STIPPLEVARS
#define INTERP_Z
#define INTERP_RGB
#define SAR_RND_TO_ZERO(v, n) (v / (1 << n))
#if TGL_FEATURE_RENDER_BITS == 32
#define DRAW_INIT() \
{}
#if TGL_FEATURE_NO_DRAW_COLOR != 1
#define PUT_PIXEL(_a) \
{ \
{ \
register GLuint zz = z >> ZB_POINT_Z_FRAC_BITS; \
if (ZCMPSIMP(zz, pz[_a], _a, 0)) { \
pp[_a] = RGB_TO_PIXEL(or1, og1, ob1); \
if (zbdw) \
pz[_a] = zz; \
} \
} \
z += dzdx; \
og1 += dgdx; \
or1 += drdx; \
ob1 += dbdx; \
}
#else
#define PUT_PIXEL(_a) \
{ \
{ \
register GLuint zz = z >> ZB_POINT_Z_FRAC_BITS; \
/*c = RGB_TO_PIXEL(or1, og1, ob1);*/ \
if (ZCMPSIMP(zz, pz[_a], _a, 0)) { \
pp[_a] = RGB_TO_PIXEL(or1, og1, ob1); \
if (zbdw) \
pz[_a] = zz; \
} \
} \
z += dzdx; \
og1 += dgdx; \
or1 += drdx; \
ob1 += dbdx; \
}
#endif
#elif TGL_FEATURE_RENDER_BITS == 16
#define DRAW_INIT() \
{}
#define PUT_PIXEL(_a) \
{ \
{ \
register GLuint zz = z >> ZB_POINT_Z_FRAC_BITS; \
if (ZCMPSIMP(zz, pz[_a], _a, 0)) { \
pp[_a] = RGB_TO_PIXEL(or1, og1, ob1); \
\
if (zbdw) \
pz[_a] = zz; \
} \
} \
z += dzdx; \
og1 += dgdx; \
or1 += drdx; \
ob1 += dbdx; \
}
#endif
/* End of 16 bit mode stuff*/
#include "ztriangle.h"
}
/*
TEXTURE MAPPED TRIANGLES
Section_Header
*/
void ZB_setTexture(ZBuffer* zb, PIXEL* texture) { zb->current_texture = texture; }
#if 1
#define DRAW_LINE_TRI_TEXTURED() \
{ \
register GLushort* pz; \
register PIXEL* pp; \
register GLuint s, t, z; \
register GLint n; \
OR1OG1OB1DECL \
GLfloat sz, tz, fzl, zinv; \
n = (x2 >> 16) - x1; \
fzl = (GLfloat)z1; \
zinv = 1.0 / fzl; \
pp = (PIXEL*)((GLbyte*)pp1 + x1 * PSZB); \
pz = pz1 + x1; \
z = z1; \
sz = sz1; \
tz = tz1; \
while (n >= (NB_INTERP - 1)) { \
register GLint dsdx, dtdx; \
{ \
GLfloat ss, tt; \
ss = (sz * zinv); \
tt = (tz * zinv); \
s = (GLint)ss; \
t = (GLint)tt; \
dsdx = (GLint)((dszdx - ss * fdzdx) * zinv); \
dtdx = (GLint)((dtzdx - tt * fdzdx) * zinv); \
} \
fzl += fndzdx; \
zinv = 1.0 / fzl; \
PUT_PIXEL(0); /*the_x++;*/ \
PUT_PIXEL(1); /*the_x++;*/ \
PUT_PIXEL(2); /*the_x++;*/ \
PUT_PIXEL(3); /*the_x++;*/ \
PUT_PIXEL(4); /*the_x++;*/ \
PUT_PIXEL(5); /*the_x++;*/ \
PUT_PIXEL(6); /*the_x++;*/ \
PUT_PIXEL(7); /*the_x-=7;*/ \
pz += NB_INTERP; \
pp += NB_INTERP; /*the_x+=NB_INTERP * PSZB;*/ \
n -= NB_INTERP; \
sz += ndszdx; \
tz += ndtzdx; \
} \
{ \
register GLint dsdx, dtdx; \
{ \
GLfloat ss, tt; \
ss = (sz * zinv); \
tt = (tz * zinv); \
s = (GLint)ss; \
t = (GLint)tt; \
dsdx = (GLint)((dszdx - ss * fdzdx) * zinv); \
dtdx = (GLint)((dtzdx - tt * fdzdx) * zinv); \
} \
while (n >= 0) { \
PUT_PIXEL(0); \
pz += 1; \
/*pp = (PIXEL*)((GLbyte*)pp + PSZB);*/ \
pp++; \
n -= 1; \
} \
} \
}
void ZB_fillTriangleMappingPerspective(ZBuffer* zb, ZBufferPoint* p0, ZBufferPoint* p1, ZBufferPoint* p2) {
PIXEL* texture;
GLubyte zbdw = zb->depth_write;
GLubyte zbdt = zb->depth_test;
TGL_BLEND_VARS
TGL_STIPPLEVARS
#define INTERP_Z
#define INTERP_STZ
#define INTERP_RGB
#define NB_INTERP 8
#define DRAW_INIT() \
{ \
texture = zb->current_texture; \
fdzdx = (GLfloat)dzdx; \
fndzdx = NB_INTERP * fdzdx; \
ndszdx = NB_INTERP * dszdx; \
ndtzdx = NB_INTERP * dtzdx; \
}
#if TGL_FEATURE_LIT_TEXTURES == 1
#define OR1OG1OB1DECL \
register GLint or1, og1, ob1; \
or1 = r1; \
og1 = g1; \
ob1 = b1;
#define OR1G1B1INCR \
og1 += dgdx; \
or1 += drdx; \
ob1 += dbdx;
#else
#define OR1OG1OB1DECL /*A comment*/
#define OR1G1B1INCR /*Another comment*/
#define or1 COLOR_MULT_MASK
#define og1 COLOR_MULT_MASK
#define ob1 COLOR_MULT_MASK
#endif
#if TGL_FEATURE_NO_DRAW_COLOR != 1
#define PUT_PIXEL(_a) \
{ \
{ \
register GLuint zz = z >> ZB_POINT_Z_FRAC_BITS; \
if (ZCMPSIMP(zz, pz[_a], _a, 0)) { \
/*pp[_a] = RGB_MIX_FUNC(or1, og1, ob1, TEXTURE_SAMPLE(texture, s, t));*/ \
TGL_BLEND_FUNC(RGB_MIX_FUNC(or1, og1, ob1, (TEXTURE_SAMPLE(texture, s, t))), (pp[_a])); \
if (zbdw) \
pz[_a] = zz; \
} \
} \
z += dzdx; \
s += dsdx; \
t += dtdx; \
OR1G1B1INCR \
}
#else
#define PUT_PIXEL(_a) \
{ \
{ \
register GLuint zz = z >> ZB_POINT_Z_FRAC_BITS; \
PIXEL c = TEXTURE_SAMPLE(texture, s, t); \
if (ZCMP(zz, pz[_a], _a, c)) { \
TGL_BLEND_FUNC(RGB_MIX_FUNC(or1, og1, ob1, c), (pp[_a])); \
if (zbdw) \
pz[_a] = zz; \
} \
} \
z += dzdx; \
s += dsdx; \
t += dtdx; \
OR1G1B1INCR \
}
#endif
#define DRAW_LINE() \
{ DRAW_LINE_TRI_TEXTURED() }
#include "ztriangle.h"
}
void ZB_fillTriangleMappingPerspectiveNOBLEND(ZBuffer* zb, ZBufferPoint* p0, ZBufferPoint* p1, ZBufferPoint* p2) {
PIXEL* texture;
GLubyte zbdw = zb->depth_write;
GLubyte zbdt = zb->depth_test;
TGL_STIPPLEVARS
#define INTERP_Z
#define INTERP_STZ
#define INTERP_RGB
#define NB_INTERP 8
#define DRAW_INIT() \
{ \
texture = zb->current_texture; \
fdzdx = (GLfloat)dzdx; \
fndzdx = NB_INTERP * fdzdx; \
ndszdx = NB_INTERP * dszdx; \
ndtzdx = NB_INTERP * dtzdx; \
}
#if TGL_FEATURE_LIT_TEXTURES == 1
#define OR1OG1OB1DECL \
register GLint or1, og1, ob1; \
or1 = r1; \
og1 = g1; \
ob1 = b1;
#define OR1G1B1INCR \
og1 += dgdx; \
or1 += drdx; \
ob1 += dbdx;
#else
#define OR1OG1OB1DECL /*A comment*/
#define OR1G1B1INCR /*Another comment*/
#define or1 COLOR_MULT_MASK
#define og1 COLOR_MULT_MASK
#define ob1 COLOR_MULT_MASK
#endif
#if TGL_FEATURE_NO_DRAW_COLOR != 1
#define PUT_PIXEL(_a) \
{ \
{ \
register GLuint zz = z >> ZB_POINT_Z_FRAC_BITS; \
if (ZCMPSIMP(zz, pz[_a], _a, 0)) { \
pp[_a] = RGB_MIX_FUNC(or1, og1, ob1, TEXTURE_SAMPLE(texture, s, t)); \
if (zbdw) \
pz[_a] = zz; \
} \
} \
z += dzdx; \
s += dsdx; \
t += dtdx; \
OR1G1B1INCR \
}
#else
#define PUT_PIXEL(_a) \
{ \
{ \
register GLuint zz = z >> ZB_POINT_Z_FRAC_BITS; \
PIXEL c = TEXTURE_SAMPLE(texture, s, t); \
if (ZCMP(zz, pz[_a], _a, c)) { \
pp[_a] = RGB_MIX_FUNC(or1, og1, ob1, c); \
/*TGL_BLEND_FUNC(RGB_MIX_FUNC(or1, og1, ob1, c), (pp[_a]));*/ \
if (zbdw) \
pz[_a] = zz; \
} \
} \
z += dzdx; \
s += dsdx; \
t += dtdx; \
OR1G1B1INCR \
}
#endif
#define DRAW_LINE() \
{ DRAW_LINE_TRI_TEXTURED() }
#include "ztriangle.h"
}
#endif