-
Notifications
You must be signed in to change notification settings - Fork 9
/
Device.cpp
419 lines (342 loc) · 9.36 KB
/
Device.cpp
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
#include "Device.h"
#include "Vertex.h"
#include "Transform.h"
#include "Light.h"
#include <Windows.h>
#include <math.h>
#define STATE_DRAW_TEX 1
#define STATE_DRAW_LINE 2
#define STATE_DRAW_COLOR 4
#define INTERP_NONE 0
#define INTERP_BILINEAR 1
#define CULL_MODE_NONE 0
#define CULL_MODE_BACK 1
Device::Device() : transform(NULL), textures(NULL), framebuffer(NULL), zbuffer(NULL),
background(0), foreground(0), width(0), height(0), state(0), interp(0), cullmode(0)
{
}
void Device::init(int w, int h, uint32* fb, Transform* ts, int** tex, Light* l)
{
width = w;
height = h;
// fb 为窗口显示缓存
framebuffer = (uint32**)malloc(h * sizeof(uint32*));
for (int y = 0; y < h; y++) {
framebuffer[y] = fb + y*w;
}
zbuffer = (float*)malloc(w * h * sizeof(float));
memset(zbuffer, 0, w * h * sizeof(float));
background = 0xc0c0c0;
foreground = 0xffffff;
transform = ts;
textures = tex;
light = l;
}
void Device::clear()
{
float inv_h = (float)1 / height;
for (int y = 0; y < height; y++) {
for (int x = 0; x < width; x++) {
int c = (float)0xc0 * inv_h * (height - y);
framebuffer[y][x] = (c << 16| c << 8 | c);
zbuffer[y * width + x] = 1.f;
}
}
}
void Device::close()
{
if (framebuffer != NULL) {
free(framebuffer);
}
if (zbuffer != NULL) {
free(zbuffer);
}
}
void Device::setState(int s)
{
state = s;
}
void Device::autoChangeState()
{
state += 1;
}
void Device::autoChangeInterp()
{
if (interp == INTERP_NONE) {
interp = INTERP_BILINEAR;
}
else {
interp = INTERP_NONE;
}
}
void Device::autoChangeCullMode()
{
if (cullmode == CULL_MODE_NONE) {
cullmode = CULL_MODE_BACK;
}
else {
cullmode = CULL_MODE_NONE;
}
}
int GetRealState(int s)
{
s = s % 3;
if (s == 0) {
return STATE_DRAW_COLOR;
}
else if (s == 1) {
return STATE_DRAW_COLOR | STATE_DRAW_LINE;
}
else if (s == 2) {
return STATE_DRAW_COLOR | STATE_DRAW_TEX;
}
return 0;
}
float inv = (float)1 / 255;
Color BilinearInterp(int *tex, float u, float v)
{
float y = u * 100, x = v * 100;
int x0 = floor(x); if (x0 > x) --x0;
int y0 = floor(y); if (y0 > y) --y0;
int x1 = x0 + 1, y1 = y0 + 1;
if (x0 < 0) {
x0 = 0; x1 = 1; x = 0;
}
if (y0 < 0) {
y0 = 0; y1 = 1; y = 0;
}
if (x1 > 99) {
x1 = 99; x0 = 98; x = 99;
}
if (y1 > 99) {
y1 = 99; y0 = 98; y = 99;
}
int c00 = tex[y0 * 100 + x0];
int c01 = tex[y0 * 100 + x1];
int c10 = tex[y1 * 100 + x0];
int c11 = tex[y1 * 100 + x1];
float w00 = (y1 - y) * (x1 - x);
float w01 = (y1 - y) * (x - x0);
float w10 = (y - y0) * (x1 - x);
float w11 = (y - y0) * (x - x0);
Color c = {(c00 >> 16) * inv * w00 + (c01 >> 16) * inv * w01 + (c10 >> 16) * inv * w10 + (c11 >> 16) * inv * w11,
(c00 >> 8 & 0xff) * inv * w00 + (c01 >> 8 & 0xff) * inv * w01 + (c10 >> 8 & 0xff) * inv * w10 + (c11 >> 8 & 0xff) * inv * w11,
(c00 & 0xff) * inv * w00 + (c01 & 0xff) * inv * w01 + (c10 & 0xff) * inv * w10 + (c11 & 0xff) * inv * w11};
return c;
}
void Device::drawPoint(const Vector& p, const Color& color, const Texcoord& tc, const Vector& normal)
{
int y = (int)p.y;
int x = (int)p.x;
if (y < 0 || y >= height) return;
if (x < 0 || x >= width) return;
if (zbuffer[y * width + x] < p.z) return;
int fcolor = 0;
int s = GetRealState(state);
// rgb
if (s & STATE_DRAW_TEX) {
// tex
int *tex = textures[0];
Color tex_color;
if (interp == INTERP_NONE) {
int i = int(tc.u * 100) * 100 + int(tc.v * 100);
i = i >= 10000 ? 10000 - 1 : i;
int c = tex[i];
float inv = (float)1 / 255;
tex_color = { (c >> 16) * inv, (c >> 8 & 0xff) * inv, (c & 0xff) * inv };
}
else {
tex_color = BilinearInterp(tex, tc.u, tc.v);
}
// light
float n_dot_l = VectorDotProduct(light->direction, normal);
// 默认环境光
Color ambient = { 1.0f, 1.0f, 1.0f };
float intensity = 0.3;
// 环境光的影响
ambient.r *= intensity * tex_color.r;
ambient.g *= intensity * tex_color.g;
ambient.b *= intensity * tex_color.b;
// blend
Color diffuse = { 0.f, 0.f, 0.f };
if (n_dot_l > 0) {
diffuse.r = tex_color.r * n_dot_l;
diffuse.g = tex_color.g * n_dot_l;
diffuse.b = tex_color.b * n_dot_l;
}
ambient.r += diffuse.r;
ambient.g += diffuse.g;
ambient.b += diffuse.b;
ambient.r = ambient.r > 1.f ? 1.f : ambient.r;
ambient.g = ambient.g > 1.f ? 1.f : ambient.g;
ambient.b = ambient.b > 1.f ? 1.f : ambient.b;
fcolor = (int(ambient.r * 255) << 16 | int(ambient.g * 255) << 8 | int(ambient.b * 255));
} else if (s & STATE_DRAW_COLOR) {
int r = color.r * 255;
int g = color.g * 255;
int b = color.b * 255;
fcolor = (r << 16) | (g << 8) | b;
}
framebuffer[y][x] = fcolor;
zbuffer[y * width + x] = p.z;
}
void Device::drawLine(const Vector& p1, const Vector& p2)
{
float inv = (float)1 / 255;
Color color = { (foreground >> 16) * inv, (foreground >> 8 & 0xff) * inv, (foreground & 0xff) * inv };
Texcoord tex = {0.f, 0.f};
Vector normal = { 0.f, 0.f, 0.f };
int x1, y1, x2, y2;
x1 = p1.x;
y1 = p1.y;
x2 = p2.x;
y2 = p2.y;
float y,x;
y = p1.y;
x = p1.x;
if (x1 == x2 && y1 == y2) {
drawPoint(p1, color, tex, normal);
}
else if (x1 == x2) {
drawPoint(p1, color, tex, normal);
int inc = (y1 < y2) ? 1 : -1;
while (1) {
y += inc;
if (inc == 1 && y >= y2) break;
if (inc == -1 && y <= y2) break;
Vector p = {x, y, 0.f, 1.f};
drawPoint(p, color, tex, normal);
}
drawPoint(p2, color, tex, normal);
}
else if (y1 == y2) {
drawPoint(p1, color, tex,normal);
int inc = (x1 < x2) ? 1 : -1;
while (1) {
x += inc;
if (inc == 1 && x >= x2) break;
if (inc == -1 && x <= x2) break;
Vector p = { x, y, 0.f, 1.f };
drawPoint(p, color, tex, normal);
}
drawPoint(p2, color, tex, normal);
}
else {
drawPoint(p1, color, tex, normal);
float t = (float)abs(x2 - x1) / abs(y2 - y1);
int xinc = (p1.x < p2.x) ? 1 : -1;
int yinc = (p1.y < p2.y) ? 1 : -1;
while (1) {
y += yinc;
if (yinc == 1 && y >= y2) break;
if (yinc == -1 && y <= y2) break;
x += t * xinc;
drawPoint({x,y,0.f,1.f}, color, tex, normal);
}
drawPoint(p2, color, tex, normal);
}
}
int getTriangleInterp(const Vector& v1, const Vector& v2, const Vector& v3, const Vector& p, float *u, float *v)
{
float a, b, c;
float nv1 = ((v1.y - v2.y)*v3.x + (v2.x - v1.x)*v3.y + v1.x*v2.y - v2.x*v1.y);
float nv2 = ((v1.y - v3.y)*v2.x + (v3.x - v1.x)*v2.y + v1.x*v3.y - v3.x*v1.y);
if (nv1 == 0.f || nv2 == 0.f) {
*u = 1.f; *v = 0.f;
return 1;
}
c = ((v1.y - v2.y)*p.x + (v2.x - v1.x)*p.y + v1.x*v2.y - v2.x*v1.y) / nv1;
if (c < 0 || c > 1) return 0;
b = ((v1.y - v3.y)*p.x + (v3.x - v1.x)*p.y + v1.x*v3.y - v3.x*v1.y) / nv2;
if (b < 0 || b > 1) return 0;
a = 1 - b - c;
if (a < 0 || a > 1) return 0;
*u = a; *v = b;
return 1;
}
void VertexRhwInit(Vertex& v)
{
v.rhw = 1 / v.pos.w;
v.color.r *= v.rhw;
v.color.g *= v.rhw;
v.color.b *= v.rhw;
v.tex.u *= v.rhw;
v.tex.v *= v.rhw;
v.normal.x *= v.rhw;
v.normal.y *= v.rhw;
v.normal.z *= v.rhw;
}
void Device::drawTriangle(const Vertex& v1, const Vertex& v2, const Vertex& v3)
{
Vector c1, c2, c3;
Vector n1, n2, n3;
transform->apply(c1, v1.pos);
transform->apply(c2, v2.pos);
transform->apply(c3, v3.pos);
if (transform->checkCvv(c1)) return;
if (transform->checkCvv(c2)) return;
if (transform->checkCvv(c3)) return;
transform->applyMV(n1, v1.normal);
transform->applyMV(n2, v2.normal);
transform->applyMV(n3, v3.normal);
Vector p1, p2, p3, min, max;
transform->homogenize(p1, c1);
transform->homogenize(p2, c2);
transform->homogenize(p3, c3);
if (cullmode == CULL_MODE_BACK) {
Vector s1, s2, pn;
VectorSub(s1, p2, p1);
VectorSub(s2, p3, p2);
VectorCrossProduct(pn, s2, s1);
VectorNormalize(pn);
if (transform->checkBackCulling(pn)) return;
}
int s = GetRealState(state);
if (!(s & STATE_DRAW_LINE)) {
min = p1; max = p1;
if (p2.x < min.x) min.x = p2.x;
if (p3.x < min.x) min.x = p3.x;
if (p2.y < min.y) min.y = p2.y;
if (p3.y < min.y) min.y = p3.y;
if (p2.x > max.x) max.x = p2.x;
if (p3.x > max.x) max.x = p3.x;
if (p2.y > max.y) max.y = p2.y;
if (p3.y > max.y) max.y = p3.y;
Vertex t1 = v1, t2 = v2, t3 = v3;
t1.pos = p1; t2.pos = p2; t3.pos = p3;
t1.normal = n1; t2.normal = n2; t3.normal = n3;
t1.pos.w = c1.w; t2.pos.w = c2.w; t3.pos.w = c3.w;
VertexRhwInit(t1);
VertexRhwInit(t2);
VertexRhwInit(t3);
for (int j = min.y; j < max.y; j++) {
for (int i = min.x; i < max.x; i++) {
Vector p = { i,j,0.f,1.f };
float c1, c2, c3;
if (getTriangleInterp(p1, p2, p3, p, &c1, &c2)) {
c3 = 1.f - c1 - c2;
// Rectification for Perspective
float w = 1 / (c1 * t1.rhw + c2 * t2.rhw + c3 * t3.rhw);
float r = t1.color.r * c1 + t2.color.r * c2 + t3.color.r * c3;
float g = t1.color.g * c1 + t2.color.g * c2 + t3.color.g * c3;
float b = t1.color.b * c1 + t2.color.b * c2 + t3.color.b * c3;
float u = t1.tex.u * c1 + t2.tex.u * c2 + t3.tex.u * c3;
float v = t1.tex.v * c1 + t2.tex.v * c2 + t3.tex.v * c3;
float nx = t1.normal.x * c1 + t2.normal.x * c2 + t3.normal.x * c3;
float ny = t1.normal.y * c1 + t2.normal.y * c2 + t3.normal.y * c3;
float nz = t1.normal.z * c1 + t2.normal.z * c2 + t3.normal.z * c3;
Vector normal = { w*nx, w*ny, w*nz };
VectorNormalize(normal);
float z = t1.pos.z * t1.rhw * c1 + t2.pos.z * t2.rhw * c2 + t3.pos.z * t3.rhw * c3;
p.z = w * z;
drawPoint(p, { w * r, w * g, w * b }, { w * u, w * v }, normal);
}
}
}
}
else {
drawLine(p1, p2);
drawLine(p1, p3);
drawLine(p2, p3);
}
}