Mercurial > hg > Members > kono > Cerium
annotate Renderer/Engine/task/DrawSpan.cc @ 802:496a8159e840
global id
author | yutaka@localhost.localdomain |
---|---|
date | Wed, 19 May 2010 14:59:41 +0900 |
parents | 984e6aa17174 |
children | 41302b72c895 |
rev | line source |
---|---|
507 | 1 #include <stdlib.h> |
2 #include <string.h> | |
3 #include "DrawSpan.h" | |
4 #include "polygon_pack.h" | |
5 #include "texture.h" | |
6 #include "viewer_types.h" | |
7 #include "Func.h" | |
8 #include "sys.h" | |
615
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
9 #include "SchedTask.h" |
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
10 #include "Tapestry.h" |
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
11 #include "SpanPack.h" |
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
12 |
623 | 13 #if (__LITTLE_ENDIAN__) |
14 #define LITTLEENDIAN 1 | |
15 #else | |
16 #define LITTLEENDIAN 0 | |
17 #endif | |
507 | 18 |
19 SchedDefineTask(DrawSpan); | |
20 | |
21 #define TEX_LOAD1 0 | |
22 #define TEX_LOAD2 1 | |
23 #define SPAN_PACK_LOAD 2 | |
24 #define FB_STORE 3 | |
25 | |
615
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
26 typedef struct { |
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
27 int **linebuf; |
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
28 float *zRow; |
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
29 TileListPtr tileList; |
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
30 int doneWrite; |
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
31 } G, *Gptr; |
603
42c94f85c779
long -> memaddr (64 or 32)
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
602
diff
changeset
|
32 |
615
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
33 static int** linebuf_init(SchedTask *smanager, int width, int height, int rgb); |
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
34 static float* zRow_init(SchedTask *smanager, int width, int height); |
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
35 // static TilePtr set_rgb(memaddr addr, int wait_tag); |
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
36 // static void set_rgbs(memaddr addr, uint32 *max_addr, int wait_tag); |
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
37 static uint32 get_rgb(int tx, int ty, TilePtr tile); |
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
38 // static TilePtr isAvailableTile(memaddr addr); |
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
39 static memaddr getTile(int tx, int ty, int tw, memaddr tex_addr_top); |
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
40 static int getTexBlock(int tx, int ty, int twidth); |
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
41 |
738 | 42 static void updateBuffer(Gptr g, float zpos, int rangex, int loaclx, int localy, |
43 int tex_x, int tex_y, float normal_x, float nomral_x, float normal_z, | |
44 TilePtr tile, int world_x, int world_y, float world_z,SchedTask *smanager); | |
615
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
45 |
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
46 // static void reboot(SpanPackPtr spack, int cur_span_x); |
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
47 |
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
48 static int drawDot1(SchedTask *smanager, Gptr g, SpanPtr span, int startx, int endx, int wait_tag); |
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
49 //static void drawDot2(SchedTask *smanager, SpanPtr span, int startx, int endx, int js, int wait_tag); |
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
50 static int drawLine1(SchedTask *smanager, Gptr g, SpanPtr span, int startx, int endx, int wait_tag); |
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
51 // static void drawLine2(SchedTask *smanager, SpanPtr span, int startx, int endx, int js, int wait_tag); |
738 | 52 |
53 static int infinity_light_calc(int color,float normal_x, float normal_y, float normal_z, | |
54 SchedTask *smanager,int x, int y, float z, int world_x, int world_y, float world_z); | |
55 | |
615
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
56 |
621 | 57 static float |
58 innerProduct1(float *v0, float *v1) | |
59 { | |
60 return (v0[0]*v1[0] + v0[1]*v1[1] + v0[2]*v1[2]); | |
61 } | |
62 | |
507 | 63 |
64 /** | |
65 * テクスチャは、TEXTURE_SPLIT_PIXEL^2 のブロックに分割する | |
66 * | |
67 * +---+---+---+---+---+---+ | |
68 * | 0 | 1 | 2 | 3 | 4 | 5 | | |
69 * +---+---+---+---+---+---+ | |
70 * | | | | | |11 | | |
71 * +---+---+---+---+---+---+ | |
72 * | | | | | |17 | | |
73 * +---+---+---+---+---+---+ | |
74 * | | | | | |23 | | |
75 * +---+---+---+---+---+---+ | |
76 * | | | | | |29 | | |
77 * +---+---+---+---+---+---+ | |
78 * | | | | | |35 | | |
79 * +---+---+---+---+---+---+ | |
80 * | |
81 * 一辺を TEXTURE_SPLIT とする | |
82 * 各ブロックの数字がブロックIDとなる。 | |
83 */ | |
84 | |
85 /** | |
86 * テクスチャの座標から、 | |
87 * テクスチャのどのブロックかを求める | |
88 * | |
89 * @param[in] tx X coordinates of texture | |
90 * @param[in] tx Y coordinates of texture | |
91 * @param[in] twidth Width of texture | |
92 * @return block ID | |
93 */ | |
94 static int | |
95 getTexBlock(int tx, int ty, int twidth) | |
96 { | |
97 int blockX, blockY; | |
98 | |
99 blockX = tx / TEXTURE_SPLIT_PIXEL; | |
100 blockY = ty / TEXTURE_SPLIT_PIXEL; | |
101 | |
102 return blockX + (twidth/TEXTURE_SPLIT_PIXEL)*blockY; | |
103 } | |
104 | |
105 /** | |
106 * block ID と、テクスチャの TOP address から | |
107 * (tx,ty) で使われるテクスチャの Tile addres を求める | |
108 * | |
109 * @param[in] tx X coordinates of texture | |
110 * @param[in] tx Y coordinates of texture | |
111 * @param[in] tw Width of texture | |
112 * @param[in] tex_addr_top (tx,ty) で使うテクスチャの先頭address | |
113 * @return block ID | |
114 */ | |
115 static memaddr | |
116 getTile(int tx, int ty, int tw, memaddr tex_addr_top) | |
117 { | |
118 int block = getTexBlock(tx, ty, tw); | |
119 return tex_addr_top + block * TEXTURE_BLOCK_SIZE * sizeof(uint32); | |
120 } | |
121 | |
122 /** | |
123 * FrameBuffer に書き込む rgb の領域初期化 | |
124 * | |
125 * @param width Width of Buffer | |
126 * @param height Height of Buffer | |
127 * @param rgb Initial value of RGB at Buffer | |
128 * @return Buffer | |
129 */ | |
615
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
130 static int ** |
507 | 131 linebuf_init(SchedTask *smanager, int width, int height, int rgb) |
132 { | |
615
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
133 int **linebuf = (int**)smanager->allocate(height*sizeof(int*)); |
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
134 for(int h = 0;h<height;h++) { |
616
f21603a335aa
Rendering not yet worked.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
615
diff
changeset
|
135 int *buf = linebuf[h] = (int*)smanager->get_output(h); |
f21603a335aa
Rendering not yet worked.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
615
diff
changeset
|
136 for (int i = 0; i < width; i++) { |
615
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
137 buf[i] = rgb; |
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
138 } |
507 | 139 } |
615
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
140 return linebuf; |
507 | 141 } |
142 | |
143 /** | |
144 * Z-Buffer の初期化 | |
145 * | |
146 * @param width Width of Z-Buffer | |
147 * @param height Height of Z-Buffer | |
148 * @return Z-Buffer | |
149 */ | |
150 static float* | |
151 zRow_init(SchedTask *smanager, int width, int height) | |
152 { | |
153 float *buf = (float*)smanager->allocate(sizeof(float)*width*height); | |
154 float def = 65535.0f; | |
155 | |
156 for (int i = 0; i < width*height; i++) { | |
157 buf[i] = def; | |
158 } | |
159 | |
160 return buf; | |
161 } | |
162 | |
163 | |
164 static uint32 | |
165 get_rgb(int tx, int ty, TilePtr tile) | |
166 { | |
167 uint32 *data = (uint32 *)tile->data; | |
168 return data[(TEXTURE_SPLIT_PIXEL)*ty+tx]; | |
169 } | |
170 | |
171 | |
172 | |
173 /** | |
174 * zRow と Linebuf を更新する | |
175 * | |
176 * @param zpos 更新する pixel のZ座標 | |
177 * @param rangex このタスクが処理する描画領域の x の長さ | |
178 * @param x pixel の、描画領域内での x 座標 | |
179 * @param y 〃 の、y 座標 | |
180 * @param tex_x pixel が使用するテクスチャの、Tile (8x8) 内での x 座標 | |
181 * @param tex_y 〃 の y 座標 | |
182 * @param tex_addr テクスチャのアドレス(MainMemory) | |
183 */ | |
184 static void | |
738 | 185 updateBuffer(Gptr g, float zpos, int rangex, int localx, int localy, int tex_x, int tex_y, |
186 float normal_x, float normal_y, float normal_z, TilePtr tile, | |
187 int world_x, int world_y, float world_z, SchedTask *smanager) | |
507 | 188 { |
189 | |
190 int color = get_rgb(tex_x, tex_y, tile); | |
191 /*下位4bitを抽出*/ | |
623 | 192 #if LITTLEENDIAN |
599 | 193 int alpha = color & 0x000000ff; |
619 | 194 #else |
195 int alpha = color & 0xff000000; | |
196 #endif | |
507 | 197 /*完全に透けているか判断*/ |
198 int flag = (alpha != 0); | |
199 | |
738 | 200 color = infinity_light_calc(color,normal_x,normal_y,normal_z, |
201 smanager,localx,localy,zpos, | |
202 world_x,world_y,world_z); | |
507 | 203 |
738 | 204 g->zRow[localx + (rangex*localy)] = zpos*flag + g->zRow[localx + (rangex*localy)]*(1-flag); |
205 int *point = &g->linebuf[localy][localx] ; | |
615
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
206 *point = color*flag + *point *(1-flag); |
507 | 207 |
738 | 208 |
209 | |
507 | 210 } |
211 | |
212 /** | |
213 * 長さが 1 の Span の描画 (要するに 1 pixel) | |
214 * | |
215 * @param span Span | |
216 * @param startx 描画開始範囲 | |
217 * @param endx 描画終了範囲 | |
218 */ | |
219 static int | |
220 drawDot1(SchedTask *smanager, Gptr g, SpanPtr span, int startx, int endx, int wait_tag) | |
221 { | |
222 int rangex = endx - startx + 1; | |
223 | |
224 float normal_x = span->normal_x; | |
225 float normal_y = span->normal_y; | |
226 float normal_z = span->normal_z; | |
227 | |
228 | |
229 /* span->x に対応する Texture の座標 (tex_xpos, tex_ypos) */ | |
230 int tex_xpos, tex_ypos; | |
231 | |
232 // span の始点に対応する Texture の座標 (tex1, tey1) | |
233 float tex = span->tex_x1; | |
234 float tey = span->tex_y1; | |
235 | |
236 // span の始点に対応する z 座標 | |
237 float zpos = span->start_z; | |
238 | |
239 /* Tile 内での座標 */ | |
240 int localx = getLocalX(span->x-1); | |
241 int localy = getLocalY(span->y-1); | |
242 | |
243 /** | |
244 * (tex_xpos, tex_ypos) の、Tile 内(上の図参照)での座標と | |
245 * そのブロックのアドレス(MainMemory) | |
246 */ | |
247 int tex_localx; | |
248 int tex_localy; | |
249 memaddr tex_addr; | |
250 | |
251 if (span->x < startx || endx < span->x) { | |
252 return -1; | |
253 } | |
254 | |
255 tex_xpos = (int)((span->tex_width-1) * tex); | |
256 tex_ypos = (int)((span->tex_height-1) * tey); | |
257 | |
258 if (zpos < g->zRow[localx + (rangex*localy)]) { | |
259 tex_addr = getTile(tex_xpos, tex_ypos, | |
260 span->tex_width, (memaddr)span->tex_addr); | |
261 tex_localx = tex_xpos % TEXTURE_SPLIT_PIXEL; | |
262 tex_localy = tex_ypos % TEXTURE_SPLIT_PIXEL; | |
263 | |
264 TilePtr tile = smanager->get_segment(tex_addr,g->tileList); | |
265 smanager->wait_segment(tile); | |
266 | |
267 updateBuffer(g, zpos, rangex, localx, localy, | |
268 tex_localx, tex_localy, | |
738 | 269 normal_x,normal_y,normal_z,tile, |
270 span->x, span->y, zpos, smanager); | |
507 | 271 } |
272 | |
273 return -1; | |
274 } | |
275 | |
276 #if 0 | |
277 static void | |
278 drawDot2(SchedTask *smanager, SpanPtr span, int startx, int end, int js, int wait_tag) | |
279 { | |
280 //printf("%d\n", js); | |
281 } | |
282 #endif | |
283 | |
284 /** | |
285 * 長さが 1 より大きい Span の描画 | |
286 * | |
287 * 本来の目的として、この関数(drawLine1) では | |
288 * : 既に SPE 上に Tile のある pixel だけ描画 | |
289 * : それ以外は、ここで予め DMA load しておき、 | |
290 * : drawLine2 で一気に描画する | |
291 * ってものだったんだけど、どうも上手く行かなかったので | |
292 * 今は drawLine1 で load -> wait -> rendering を全部やってます | |
293 * (rendering といっても、rendering buffer に書き込むだけで | |
294 * まだ main memory (frame buffer) に dma store してるわけではない) | |
295 * | |
296 * @param span Span | |
297 * @param startx 描画開始範囲 | |
298 * @param endx 描画終了範囲 | |
299 * @return 「span のどの位置まで rendering が終わったか」の x 座標 | |
300 */ | |
301 static int | |
302 drawLine1(SchedTask *smanager, Gptr g, SpanPtr span, int startx, int endx, int wait_tag) | |
303 { | |
304 int x = span->x; | |
305 int rangex = endx - startx + 1; | |
306 int x_len = span->length_x; | |
307 | |
308 float normal_x = span->normal_x; | |
309 float normal_y = span->normal_y; | |
310 float normal_z = span->normal_z; | |
311 | |
312 | |
313 int js = (x < startx) ? startx - x : 0; | |
314 int je = (x + x_len > endx) ? endx - x : x_len; | |
315 | |
316 /* span->x に対応する Texture の座標 (tex_xpos, tex_ypos) */ | |
317 int tex_xpos, tex_ypos; | |
318 | |
319 // span の始点に対応する座標 (tex1, tey1) | |
320 float tex1 = span->tex_x1; | |
321 float tey1 = span->tex_y1; | |
322 | |
323 // span の終点に対応する座標 (tex2, tey2) | |
324 float tex2 = span->tex_x2; | |
325 float tey2 = span->tex_y2; | |
326 | |
327 // span の始点、終点に対応する z 座標 | |
328 float zpos1 = span->start_z; | |
329 float zpos2 = span->end_z; | |
330 | |
738 | 331 //spanを右から左に見ていくうちに、zが下がるのか、上がっていくのか。 |
332 float z_inclination = (zpos1 - zpos2) / x_len; | |
333 float world_z = zpos2; | |
334 | |
507 | 335 // Tile 内での座標 |
336 int localx, localy = getLocalY(span->y-1); | |
337 | |
338 int ret = je+1; | |
339 | |
340 //for (int j = js; j <= je; j++) { | |
341 for (int j = je; j >= js; j--) { | |
342 float tex_x, tex_y, tex_z; | |
343 | |
738 | 344 world_z += z_inclination; |
345 | |
507 | 346 localx = getLocalX(x-1+j); |
347 | |
348 tex_z = zpos1*(x_len-1-j)/(x_len-1) + zpos2*j/(x_len-1); | |
349 | |
350 tex_x = tex1*(x_len-1-j)/(x_len-1) + tex2*j/(x_len-1); | |
351 tex_y = tey1*(x_len-1-j)/(x_len-1) + tey2*j/(x_len-1); | |
352 if (tex_x > 1) tex_x = 1; | |
353 if (tex_x < 0) tex_x = 0; | |
354 if (tex_y > 1) tex_y = 1; | |
355 if (tex_y < 0) tex_y = 0; | |
356 tex_xpos = (int)((span->tex_width-1) * tex_x); | |
357 tex_ypos = (int)((span->tex_height-1) * tex_y); | |
358 | |
359 if (tex_z < g->zRow[localx + (rangex*localy)]) { | |
360 // (tex_xpos, tex_ypos) の、Tile 内(上の図参照)での座標と | |
361 // そのブロックのアドレス(MainMemory) | |
362 memaddr tex_addr; | |
363 int tex_localx; | |
364 int tex_localy; | |
365 | |
366 tex_addr = getTile(tex_xpos, tex_ypos, | |
367 span->tex_width, (memaddr)span->tex_addr); | |
368 tex_localx = tex_xpos % TEXTURE_SPLIT_PIXEL; | |
369 tex_localy = tex_ypos % TEXTURE_SPLIT_PIXEL; | |
370 TilePtr tile = smanager->get_segment(tex_addr,g->tileList); | |
371 smanager->wait_segment(tile); | |
372 | |
373 updateBuffer(g, tex_z, rangex, localx, localy, | |
374 tex_localx, tex_localy, | |
738 | 375 normal_x, normal_y, normal_z, tile, |
376 span->x+j, span->y, world_z, smanager); | |
507 | 377 } |
378 } | |
379 | |
380 return ret; | |
381 } | |
382 | |
383 static int | |
738 | 384 infinity_light_calc(int color,float normal_x, float normal_y, |
385 float normal_z, SchedTask *smanager, int x, int y, float z, | |
386 int world_x, int world_y, float world_z) | |
387 | |
507 | 388 { |
766 | 389 |
390 | |
507 | 391 unsigned char rgb[4]; |
392 int light_rgb; | |
393 int flag; | |
394 float normal_vector[4] = {normal_x,normal_y,normal_z,0}; | |
766 | 395 float light_vector[4]; |
507 | 396 float inner_product; |
766 | 397 float *light_xyz = (float*)smanager->global_get(Light); |
398 | |
399 normalize(normal_vector, normal_vector); | |
507 | 400 |
401 // 引数で受け取った color の rgb 情報の抜き出し | |
623 | 402 #if LITTLEENDIAN |
507 | 403 rgb[0] = (color & 0xff000000) >> 24; |
404 rgb[1] = (color & 0x00ff0000) >> 16; | |
405 rgb[2] = (color & 0x0000ff00) >> 8; | |
406 rgb[3] = (color & 0x000000ff); | |
619 | 407 #else |
408 rgb[3] = (color & 0xff000000) >> 24; | |
409 rgb[2] = (color & 0x00ff0000) >> 16; | |
410 rgb[1] = (color & 0x0000ff00) >> 8; | |
411 rgb[0] = (color & 0x000000ff); | |
412 #endif | |
507 | 413 |
766 | 414 int tmp_rgb[3] = {0,0,0}; |
415 int light_num = 4; | |
416 for (int i = 0; i < light_num; i++) { | |
417 | |
418 light_vector[0] = world_x - light_xyz[i*4]; | |
419 light_vector[1] = world_y - light_xyz[i*4+1]; | |
420 light_vector[2] = light_xyz[i*4+2] - world_z; | |
421 light_vector[3] = light_xyz[i*4+3]; | |
422 | |
423 normalize(light_vector, light_vector); | |
424 | |
425 // 法線ベクトルと光源ベクトルとの内積をとる | |
426 inner_product = innerProduct1(normal_vector,light_vector); | |
427 | |
428 //printf("inner_product %f\n",inner_product); | |
507 | 429 |
766 | 430 // 内積がマイナスの場合は色がない。 |
431 flag = (inner_product > 0); | |
432 | |
433 // 内積を rgb にかけていく | |
434 tmp_rgb[0] += (unsigned char)(rgb[0]*inner_product*flag); | |
435 tmp_rgb[1] += (unsigned char)(rgb[1]*inner_product*flag); | |
436 tmp_rgb[2] += (unsigned char)(rgb[2]*inner_product*flag); | |
437 | |
438 } | |
439 | |
440 int rgb_flag[3]; | |
441 for (int i = 0; i < 3; i++) { | |
442 rgb_flag[i] = (tmp_rgb[i] > 255); | |
443 } | |
444 | |
445 rgb[0] = tmp_rgb[0]*(1 - rgb_flag[0]) + 255*(rgb_flag[0]); | |
446 rgb[1] = tmp_rgb[1]*(1 - rgb_flag[1]) + 255*(rgb_flag[1]); | |
447 rgb[2] = tmp_rgb[2]*(1 - rgb_flag[2]) + 255*(rgb_flag[2]); | |
448 | |
507 | 449 |
450 //計算した rgb を light_rgb にまとめる。 | |
623 | 451 #if LITTLEENDIAN |
507 | 452 light_rgb = (rgb[0] << 24) + (rgb[1] << 16) + (rgb[2] << 8) + (rgb[3]); |
619 | 453 #else |
454 light_rgb = (rgb[3] << 24) + (rgb[2] << 16) + (rgb[1] << 8) + (rgb[0]); | |
455 #endif | |
507 | 456 |
457 return light_rgb; | |
766 | 458 |
507 | 459 } |
460 | |
461 | |
462 static int | |
463 run(SchedTask *smanager, void *rbuf, void *wbuf) | |
464 { | |
623 | 465 G g0; |
466 Gptr g = &g0; | |
507 | 467 |
468 SpanPackPtr spack = (SpanPackPtr)smanager->get_input(0); | |
469 SpanPackPtr next_spack = (SpanPackPtr)smanager->allocate(sizeof(SpanPack)); | |
470 SpanPackPtr free_spack = next_spack; // next_spack の free() 用 | |
471 Span *span; | |
472 | |
473 Span nop_span; | |
474 nop_span.length_x = 1; | |
475 | |
738 | 476 // uint32 display = (long)smanager->get_param(0); |
477 // int screen_width = (long)smanager->get_param(1); | |
625
60aa3f241b10
64bit mode worked on Mac OS X.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
623
diff
changeset
|
478 int rangex_start = (long)smanager->get_param(2); |
60aa3f241b10
64bit mode worked on Mac OS X.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
623
diff
changeset
|
479 int rangex_end = (long)smanager->get_param(3); |
507 | 480 |
481 // このタスクが担当する x の範囲 | |
482 int rangex = rangex_end - rangex_start + 1; | |
483 | |
484 // y の範囲 | |
625
60aa3f241b10
64bit mode worked on Mac OS X.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
623
diff
changeset
|
485 int rangey = (long)smanager->get_param(4); |
507 | 486 g->tileList = (TileListPtr)smanager->global_get(GLOBAL_TILE_LIST); |
487 | |
488 g->zRow = zRow_init(smanager, rangex, rangey); | |
489 g->linebuf = linebuf_init(smanager, rangex, rangey, 0); | |
490 | |
491 int tl_tag[2] = {TEX_LOAD1, TEX_LOAD2}; | |
492 int tl_tag_flg1 = 0; | |
493 int tl_tag_flg2 = 1; | |
494 | |
495 do { | |
496 /** | |
497 * SpanPack->next が存在する場合、 | |
498 * 現在の SpanPack を処理してる間に | |
499 * 次の SpanPack の DMA 転送を行う | |
500 */ | |
501 if (spack->next != NULL) { | |
603
42c94f85c779
long -> memaddr (64 or 32)
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
602
diff
changeset
|
502 smanager->dma_load(next_spack, (memaddr)spack->next, |
507 | 503 sizeof(SpanPack), SPAN_PACK_LOAD); |
504 } else { | |
505 next_spack = NULL; | |
506 } | |
507 | |
508 SpanPtr resume_span = &nop_span; | |
509 | |
510 for (int t = 0; t < spack->info.size; t++) { | |
511 SpanPtr next_span; | |
512 | |
513 span = &spack->span[t]; | |
514 | |
622
6a5e88112ed9
remove non relocatable funcion call.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
621
diff
changeset
|
515 if (span->length_x != 1) { |
6a5e88112ed9
remove non relocatable funcion call.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
621
diff
changeset
|
516 drawLine1( |
507 | 517 smanager, g, |
518 span, rangex_start, rangex_end, tl_tag[tl_tag_flg1]); | |
622
6a5e88112ed9
remove non relocatable funcion call.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
621
diff
changeset
|
519 } else { |
6a5e88112ed9
remove non relocatable funcion call.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
621
diff
changeset
|
520 drawDot1( |
6a5e88112ed9
remove non relocatable funcion call.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
621
diff
changeset
|
521 smanager, g, |
6a5e88112ed9
remove non relocatable funcion call.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
621
diff
changeset
|
522 span, rangex_start, rangex_end, tl_tag[tl_tag_flg1]); |
6a5e88112ed9
remove non relocatable funcion call.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
621
diff
changeset
|
523 } |
507 | 524 next_span = span; |
525 | |
526 resume_span = next_span; | |
527 | |
528 tl_tag_flg1 ^= 1; | |
529 tl_tag_flg2 ^= 1; | |
530 } | |
531 | |
532 smanager->dma_wait(SPAN_PACK_LOAD); | |
533 | |
534 SpanPackPtr tmp_spack = spack; | |
535 spack = next_spack; | |
536 next_spack = tmp_spack; | |
537 } while (spack); | |
538 | |
539 | |
540 free(g->zRow); | |
615
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
541 free(g->linebuf); |
507 | 542 |
543 //FINISH: | |
544 /** | |
545 * goto FINISH; の時は reboot なので | |
546 * linebuf, zRow は free() しない | |
547 */ | |
548 | |
549 free(free_spack); | |
550 | |
551 | |
552 return 0; | |
553 } | |
554 | |
555 /* end */ |