Mercurial > hg > Members > kono > Cerium
annotate Renderer/Engine/viewer.cc @ 1002:c79651141045
many changes.
author | koba <koba@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 24 Oct 2010 19:00:47 +0900 |
parents | 0b8f9d4d7dab |
children | 295b3c79fb44 |
rev | line source |
---|---|
507 | 1 #include <SDL.h> |
2 #include "viewer.h" | |
3 #include "viewer_types.h" | |
4 #include "SceneGraph.h" | |
5 #include "SceneGraphRoot.h" | |
6 #include "scene_graph_pack.h" | |
7 #include "sys.h" | |
8 #include "Func.h" | |
9 #include "error.h" | |
10 #include "TaskManager.h" | |
11 #include <wchar.h> | |
12 #include "Pad.h" | |
511 | 13 #include "Application.h" |
575
0f13810d4492
Linda API worked. (slightly unreliable)
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
572
diff
changeset
|
14 #include "lindaapi.h" |
507 | 15 |
523 | 16 static void post2runLoop(SchedTask *s,void *viewer,void *s1); |
17 static void post2runDraw(SchedTask *s,void *viewer,void *s1); | |
18 static void post2speRendering(SchedTask *s,void *viewer,void *s1); | |
19 static void post2speDraw(SchedTask *s,void *viewer,void *s1); | |
20 static void post2runMoveDrawLoop(SchedTask *s,void *viewer,void *s1); | |
507 | 21 |
22 /* measure for FPS (Frame Per Second) */ | |
986
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
23 static int start_time; |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
24 static int this_time; |
507 | 25 int frames; |
514 | 26 // static void post2speRunLoop(void *viewer); |
27 //static void post2runMove(void *viewer); | |
28 //static void post2exchange_sgroot(void *viewer); | |
29 //static void post2speRunLoop(void *viewer); | |
507 | 30 |
31 //SceneGraphRootPtr sgroot_2; | |
32 | |
33 /* Data Pack sent to Other CPUs (ex. SPE) */ | |
34 | |
986
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
35 RederingData r[2]; |
507 | 36 |
986
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
37 int ppi, spi; |
907 | 38 |
507 | 39 /** |
40 * | |
41 */ | |
42 | |
748 | 43 Viewer::Viewer(TaskManager *m, ViewerDevice *vd, int b, int w, int h, int _num) |
507 | 44 { |
45 spe_num = _num; | |
748 | 46 manager = m; |
895
bed529c55eda
add alignment of classes in SPU
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
891
diff
changeset
|
47 |
748 | 48 dev = vd; |
49 pixels = dev->video_init(manager, b, w, h); | |
50 | |
895
bed529c55eda
add alignment of classes in SPU
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
891
diff
changeset
|
51 width = dev->width; |
bed529c55eda
add alignment of classes in SPU
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
891
diff
changeset
|
52 height = dev->height; |
bed529c55eda
add alignment of classes in SPU
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
891
diff
changeset
|
53 bpp = dev->bpp; |
bed529c55eda
add alignment of classes in SPU
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
891
diff
changeset
|
54 |
507 | 55 } |
56 | |
57 int | |
58 Viewer::get_ticks(void) | |
59 { | |
60 int time; | |
61 time = SDL_GetTicks(); | |
62 return time; | |
63 } | |
64 | |
65 bool | |
66 Viewer::quit_check(void) | |
67 { | |
68 SDL_Event event; | |
69 | |
70 while(SDL_PollEvent(&event)) { | |
71 if (event.type==SDL_QUIT) { | |
72 return true; | |
73 } | |
74 } | |
75 | |
76 Uint8 *keys=SDL_GetKeyState(NULL); | |
77 | |
78 if (keys[SDLK_q] == SDL_PRESSED) { | |
79 return true; | |
80 } | |
81 | |
82 return false; | |
83 } | |
84 | |
85 void | |
86 Viewer::quit(void) | |
87 { | |
88 SDL_Quit(); | |
89 } | |
90 | |
91 | |
92 void | |
509
8148c81d2660
Cerium Rendering Library
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
507
diff
changeset
|
93 Viewer::run_init(TaskManager *manager, Application *app) |
507 | 94 { |
95 this->manager = manager; | |
96 | |
748 | 97 if (spe_num == 0) spe_num = 1; |
98 | |
507 | 99 sgroot = new SceneGraphRoot(this->width, this->height); |
572 | 100 sgroot->tmanager = manager; |
792 | 101 |
102 int light_num = 4; | |
103 int size = sizeof(float)*4*light_num; //xyz+alfa(4) * light_num(4) | |
762 | 104 int light_size = size / sizeof(float); |
748 | 105 |
760
24a37fe8419a
first of all commit, not work Rendering/Test/create_task
hiroki
parents:
748
diff
changeset
|
106 light_xyz_stock = (float *)manager->allocate(size); |
748 | 107 light_xyz = (float *)manager->allocate(size); |
762 | 108 |
109 for (int i = 0; i < light_size ; i++) { | |
110 light_xyz[i] = 0.0f; | |
111 } | |
748 | 112 |
907 | 113 |
792 | 114 for(int i = 0; i < spe_num; i++) { |
986
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
115 HTaskPtr data_load = manager->create_task(DataAllocate); |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
116 data_load->set_param(0,(memaddr)3); // num of allocate block |
988 | 117 data_load->set_param(1,(memaddr)(sizeof(float)*4*light_num)); // 1st allocate size |
118 data_load->set_param(2,(memaddr)Light); // 1st id | |
119 data_load->set_param(3,(memaddr)(light_num * sizeof(int))); // 2nd size | |
120 data_load->set_param(4,(memaddr)LightSwitch); // 2nd id | |
121 data_load->set_param(5,(memaddr)16); // 3rd size | |
122 data_load->set_param(6,(memaddr)LightSysSwitch); // 3rd id | |
748 | 123 data_load->set_cpu((CPU_TYPE)((int)SPE_0 + i)); |
124 data_load->spawn(); | |
125 } | |
509
8148c81d2660
Cerium Rendering Library
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
507
diff
changeset
|
126 |
792 | 127 light_switch = (int*)manager->allocate(size); |
793 | 128 |
792 | 129 for (int i = 0; i < light_num; i++) { |
130 light_switch[i] = 0; | |
131 } | |
132 | |
133 size = 16; // LightSysSwitch は 4byte. 残り 12byte は DMA転送の為のパディング | |
134 | |
793 | 135 light_sysswitch = (int*)manager->allocate(size); |
136 | |
843
0c7d885f0c92
cleanup unused variables and fix warning.
kazz <kazz@cr.ie.u-ryukyu.ac.jp>
parents:
842
diff
changeset
|
137 for (unsigned int i = 0; i < size / sizeof(int); i++) { |
793 | 138 light_sysswitch[i] = 0; |
139 } | |
140 | |
984 | 141 start_time = get_ticks(); |
142 this_time = 0; | |
143 frames = 0; | |
144 | |
511 | 145 MainLoop *mainloop = app->init(this, this->width, this->height); |
146 mainloop->mainLoop(); | |
507 | 147 } |
148 | |
149 | |
150 HTaskPtr | |
151 Viewer::initLoop() | |
152 { | |
153 HTaskPtr task_next; | |
154 HTaskPtr task_tex; | |
155 | |
986
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
156 for(int i=0;i<2;i++) { |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
157 r[i].ppack = (PolygonPack*)manager->allocate(sizeof(PolygonPack)); |
989 | 158 r[i].ppack->next = 0; |
507 | 159 |
986
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
160 r[i].spackList_length = (this->height + split_screen_h - 1) / split_screen_h; |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
161 r[i].spackList = (SpanPack*)manager->allocate(sizeof(SpanPack)*r[i].spackList_length); |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
162 // printf("spackList %0lx height %d\n",(unsigned long)r[i].spackList, this->height); |
507 | 163 |
986
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
164 /** |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
165 * SPU に送る address list は 16 バイト倍数でないといけない。 |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
166 * spackList_length*sizeof(SpanPack*) が 16 バイト倍数になるような |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
167 * length_align を求めている。はみ出した部分は使われない |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
168 * (ex) spackList_length が 13 の場合 |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
169 * spackList_length_align = 16; |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
170 * 実際に送るデータは64バイトになるのでOK |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
171 * 14,15,16 の部分は何も入らない。 |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
172 */ |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
173 r[i].spackList_length_align = (r[i].spackList_length + 3)&(~3); |
507 | 174 |
986
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
175 /* 各 SPU が持つ、SpanPack の address list */ |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
176 r[i].spackList_ptr = |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
177 (SpanPack**)manager->allocate(sizeof(SpanPack*)*r[i].spackList_length_align); |
507 | 178 |
988 | 179 for (int j = 0; j < r[i].spackList_length; j++) { |
986
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
180 r[i].spackList_ptr[j] = &r[i].spackList[j]; |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
181 } |
507 | 182 |
988 | 183 for (int j = 1; j <= r[i].spackList_length; j++) { |
986
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
184 r[i].spackList[j-1].init(j*split_screen_h); |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
185 } |
507 | 186 } |
187 | |
826 | 188 task_next = manager->create_task(Dummy,0,0,0,0); |
507 | 189 |
652 | 190 // ここは、Iterator を用意するべきだよね |
986
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
191 for (int j = 0; j < spe_num; j++) { |
826 | 192 task_tex = manager->create_task(LoadTexture,0,0,0,0); |
986
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
193 task_tex->set_cpu((CPU_TYPE)((int)SPE_0 + j)); |
826 | 194 task_next->wait_for(task_tex); |
748 | 195 task_tex->spawn(); |
507 | 196 } |
197 | |
792 | 198 |
507 | 199 return task_next; |
200 } | |
201 | |
202 | |
203 void | |
204 Viewer::getKey() | |
205 { | |
206 Pad *pad = sgroot->getController(); | |
207 if (pad->right.isHold()) { | |
208 keyPtr->right = HOLD; | |
209 } else if (pad->right.isPush()) { | |
210 keyPtr->right = PUSH; | |
211 } else { | |
212 keyPtr->right = NONE; | |
213 } | |
214 | |
215 if (pad->left.isHold()) { | |
216 keyPtr->left = HOLD; | |
217 } else if (pad->left.isPush()) { | |
218 keyPtr->left = PUSH; | |
219 } else { | |
220 keyPtr->left = NONE; | |
221 } | |
222 | |
223 if (pad->up.isHold()) { | |
224 keyPtr->up = HOLD; | |
225 } else if (pad->up.isPush()) { | |
226 keyPtr->up = PUSH; | |
227 } else { | |
228 keyPtr->up = NONE; | |
229 } | |
230 | |
231 if (pad->down.isHold()) { | |
232 keyPtr->down = HOLD; | |
233 } else if (pad->down.isPush()) { | |
234 keyPtr->down = PUSH; | |
235 } else { | |
236 keyPtr->down = NONE; | |
237 } | |
238 | |
239 if (pad->circle.isHold()) { | |
240 keyPtr->circle = HOLD; | |
241 } else if (pad->circle.isPush()) { | |
242 keyPtr->circle = PUSH; | |
243 } else { | |
244 keyPtr->circle = NONE; | |
245 } | |
246 } | |
247 | |
248 static void | |
514 | 249 post2runMoveDrawLoop(SchedTask *m, void *viewer_, void *arg) |
507 | 250 { |
251 Viewer *viewer = (Viewer*)viewer_; | |
252 | |
625
60aa3f241b10
64bit mode worked on Mac OS X.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
616
diff
changeset
|
253 // 同じ PPE 上なので sgroot(ポインタ) を set_param で送る。 |
614
4e44147d78ee
remove uncessary Task Name definision
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
603
diff
changeset
|
254 //HTaskPtr send_key_task = viewer->manager->create_task(SendKey); |
625
60aa3f241b10
64bit mode worked on Mac OS X.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
616
diff
changeset
|
255 //send_key_task->set_param((int)sgroot); |
507 | 256 // set input data -> viewer keyPtr |
257 viewer->getKey(); | |
826 | 258 //HTaskPtr update_key = viewer->manager->create_task(UpdateKey,viewer->keyPtr, sizeof(key_stat),0,0); |
259 HTaskPtr update_key = viewer->manager->create_task(UpdateKey,0,0,0,0); | |
507 | 260 update_key->add_inData(viewer->keyPtr, sizeof(key_stat)); |
748 | 261 //update_key->set_cpu(SPE_0); |
507 | 262 update_key->spawn(); |
263 | |
264 /* TASK_MOVE は外から引数で取ってくるべき */ | |
265 //HTaskPtr move_task = viewer->manager->create_task(viewer->app->move_taskid); | |
965
1089f24bc86a
removing user task from Renderer Engine
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
926
diff
changeset
|
266 // HTaskPtr move_task = viewer->manager->create_task(Move,0,0,0,0); |
625
60aa3f241b10
64bit mode worked on Mac OS X.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
616
diff
changeset
|
267 //move_task->set_param(sgroot); |
507 | 268 |
614
4e44147d78ee
remove uncessary Task Name definision
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
603
diff
changeset
|
269 //HTaskPtr draw_task = viewer->manager->create_task(Draw); |
507 | 270 |
271 /* rendering task test */ | |
826 | 272 HTaskPtr draw_task = viewer->manager->create_task(Dummy,0,0,0,0); |
273 HTaskPtr draw_dummy = viewer->manager->create_task(Dummy,0,0,0,0); | |
507 | 274 |
826 | 275 HTaskPtr switch_task = viewer->manager->create_task(Switch,0,0,0,0); |
507 | 276 viewer->draw_dummy = draw_dummy; |
277 switch_task->wait_for(draw_dummy); | |
514 | 278 draw_task->set_post(post2speRendering, (void*)viewer, 0); |
507 | 279 |
965
1089f24bc86a
removing user task from Renderer Engine
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
926
diff
changeset
|
280 // switch_task->wait_for(move_task); |
507 | 281 switch_task->wait_for(draw_task); |
965
1089f24bc86a
removing user task from Renderer Engine
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
926
diff
changeset
|
282 // move_task->spawn(); |
507 | 283 draw_task->spawn(); |
284 | |
514 | 285 switch_task->set_post(post2runMoveDrawLoop, (void*)viewer, 0); |
507 | 286 switch_task->spawn(); |
287 | |
288 } | |
289 | |
290 void | |
291 Viewer::mainLoop() | |
292 { | |
293 HTaskPtr task_next = initLoop(); | |
294 | |
514 | 295 task_next->set_post(&post2runLoop, (void *)this, 0); // set_post(function(this->run_loop()), NULL) |
507 | 296 task_next->spawn(); |
297 } | |
298 | |
299 void | |
748 | 300 Viewer::run_loop(HTaskPtr task_next) |
507 | 301 { |
748 | 302 dev->clear_screen(); |
303 | |
304 bool quit_flg; | |
305 quit_flg = quit_check(); | |
306 if (quit_flg == true) { | |
307 this_time = get_ticks(); | |
308 run_finish(); | |
309 return; | |
310 } | |
311 | |
312 dev->clean_pixels(); | |
981
a193a851b5e3
add double buffering frame device
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
969
diff
changeset
|
313 pixels = dev->flip_screen(pixels); |
748 | 314 |
315 sgroot->updateControllerState(); | |
316 sgroot->allExecute(width, height); | |
1002 | 317 sgroot->task_array_finish(); |
748 | 318 light_xyz_stock = sgroot->getLightVector(); |
792 | 319 light_switch_stock = sgroot->getLightSwitch(); |
793 | 320 light_sysswitch_stock = sgroot->getLightSysSwitch(); |
748 | 321 //sgroot->checkRemove(); |
322 | |
323 // ここから下は Rendering という関数にする | |
324 rendering(task_next); | |
507 | 325 } |
326 | |
327 | |
328 | |
329 void | |
330 Viewer::run_collision() | |
331 { | |
332 } | |
333 | |
334 void | |
514 | 335 post2rendering(SchedTask *s, void *viewer_, void *arg) |
507 | 336 { |
337 Viewer *viewer = (Viewer *)viewer_; | |
826 | 338 HTaskPtr task_next = viewer->manager->create_task(Dummy,0,0,0,0); |
507 | 339 viewer->rendering(task_next); |
340 } | |
341 | |
342 void | |
343 Viewer::rendering(HTaskPtr task_next) | |
344 { | |
748 | 345 common_rendering(task_next, sgroot); |
507 | 346 |
347 // Barrier 同期 | |
348 // run_draw() を呼ぶ post2runDraw | |
514 | 349 task_next->set_post(post2runDraw, (void*)this, 0); // set_post(function(this->run_draw()), NULL) |
507 | 350 task_next->spawn(); |
351 | |
352 // TASK_CREATE_SPAN が全て終わったら DUMMY_TASK が Viewer::run_draw() を呼ぶ | |
353 } | |
354 | |
355 static void | |
514 | 356 post2runLoop(SchedTask *s, void *viewer_, void *arg) |
507 | 357 { |
358 Viewer *viewer = (Viewer*)viewer_; | |
826 | 359 HTaskPtr task_next = viewer->manager->create_task(Dummy,0,0,0,0); |
507 | 360 viewer->run_loop(task_next); |
575
0f13810d4492
Linda API worked. (slightly unreliable)
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
572
diff
changeset
|
361 psx_sync_n(); |
507 | 362 } |
363 | |
364 static void | |
514 | 365 post2runDraw(SchedTask *s, void *viewer_, void *arg) |
507 | 366 { |
367 Viewer *viewer = (Viewer*)viewer_; | |
826 | 368 HTaskPtr task_next = viewer->manager->create_task(Dummy,0,0,0,0); |
507 | 369 viewer->run_draw(task_next); |
370 | |
371 } | |
372 | |
373 void | |
374 Viewer::run_draw(HTaskPtr task_next) // 引数に post2runLoop を入れるようにする | |
375 { | |
376 common_draw(task_next); | |
377 | |
514 | 378 task_next->set_post(post2runLoop, (void*)this, 0); // set_post(function(this->run_loop()), NULL) |
507 | 379 task_next->spawn(); |
380 // TASK_DRAW_SPAN が全て終わったら DUMMY_TASK が Viewer::run_loop() を呼ぶ | |
381 | |
382 frames++; | |
383 } | |
384 | |
385 | |
386 static void | |
514 | 387 post2speRendering(SchedTask *s, void *viewer_, void *arg) |
507 | 388 { |
389 Viewer *viewer = (Viewer*)viewer_; | |
826 | 390 HTaskPtr task_next = viewer->manager->create_task(Dummy,0,0,0,0); |
507 | 391 viewer->spe_rendering(task_next); |
392 } | |
393 | |
394 void | |
395 Viewer::spe_rendering(HTaskPtr task_next) | |
396 { | |
748 | 397 common_rendering(task_next, sgroot); |
507 | 398 |
399 this->draw_dummy->wait_for(task_next); | |
514 | 400 task_next->set_post(post2speDraw, (void*)this, 0); |
507 | 401 task_next->spawn(); |
402 | |
403 } | |
404 | |
405 static void | |
514 | 406 post2speDraw(SchedTask *s, void *viewer_, void *arg) |
507 | 407 { |
408 Viewer *viewer = (Viewer*)viewer_; | |
826 | 409 HTaskPtr task_next = viewer->manager->create_task(Dummy,0,0,0,0); |
507 | 410 viewer->spe_draw(task_next); |
411 } | |
412 | |
413 void | |
414 Viewer::spe_draw(HTaskPtr task_next) | |
415 { | |
416 common_draw(task_next); | |
417 | |
418 this->draw_dummy->wait_for(task_next); | |
419 task_next->spawn(); | |
420 this->draw_dummy->spawn(); | |
421 | |
422 frames++; | |
423 } | |
424 | |
907 | 425 |
908 | 426 // 完全にMac仕様。。sg_matrix を allocate してやらないといけないよ。 |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
427 float* |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
428 copy_matrix(SceneGraphPtr sg, TaskManager *manager) { |
908 | 429 |
430 float *matrix = sg->matrix; | |
431 float *real_matrix = sg->real_matrix; | |
432 | |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
433 //変換行列は4x4 なんで、16。が二つで32.と言い訳を書いてみる。 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
434 float *sg_matrix = (float*)manager->allocate(sizeof(float)*32); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
435 |
908 | 436 for (int i = 0; i < 16; i++) { |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
437 sg_matrix[i] = matrix[i]; |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
438 sg_matrix[i+16] = real_matrix[i]; |
908 | 439 } |
440 | |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
441 return sg_matrix; |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
442 |
908 | 443 } |
444 | |
445 void | |
446 print_matrix(float *matrix) { | |
447 | |
448 for (int i = 0; i < 32; i++) { | |
449 printf("%f\n",matrix[i]); | |
450 } | |
451 | |
452 } | |
907 | 453 |
454 void | |
455 add_matrix_list(SceneGraphPtr sg, TaskManager *manager, MatrixListInfo* info) { | |
456 | |
457 MatrixList *matrix_list = (MatrixList*)manager->allocate(sizeof(MatrixList)); | |
908 | 458 |
459 #if SPE_CREATE_POLYGON_CHECK | |
460 print_matrix(sg->sg_matrix); | |
461 #endif | |
462 | |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
463 matrix_list->matrix = copy_matrix(sg, manager);; |
907 | 464 matrix_list->next = NULL; |
908 | 465 |
907 | 466 |
467 if (info->last != NULL) { | |
468 info->last->next = matrix_list; | |
469 } | |
470 | |
471 info->last = matrix_list; | |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
472 info->list_length += 1; |
907 | 473 |
474 } | |
475 | |
476 void | |
477 new_matrix_info(SceneGraphPtr sg, TaskManager *manager, MatrixListInfo* info) { | |
478 | |
479 MatrixListInfo *next = NULL; | |
480 | |
481 if (info->id == -1) { | |
482 | |
483 info->id = sg->sgid; | |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
484 info->list_length = 1; |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
485 info->coord_pack = sg->coord_pack; |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
486 info->coord_pack_size = sg->coord_pack_size; |
907 | 487 next = info; |
488 | |
489 } else { | |
490 | |
491 MatrixListInfo* t; | |
492 | |
493 for (t = info; t->next != NULL; t = t->next) { | |
494 } | |
495 | |
496 next = (MatrixListInfo*)manager->allocate(sizeof(MatrixListInfo)); | |
497 next->id = sg->sgid; | |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
498 next->list_length = 1; |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
499 next->coord_pack = sg->coord_pack; |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
500 next->coord_pack_size = sg->coord_pack_size; |
907 | 501 next->next = NULL; |
502 t->next = next; | |
503 | |
504 } | |
505 | |
506 MatrixList *new_list = (MatrixList*)manager->allocate(sizeof(MatrixList)); | |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
507 new_list->matrix = copy_matrix(sg, manager); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
508 |
908 | 509 #if SPE_CREATE_POLYGON_CHECK |
510 print_matrix(sg->sg_matrix); | |
511 #endif | |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
512 |
907 | 513 new_list->next = NULL; |
514 | |
515 next->first = new_list; | |
516 next->last = new_list; | |
517 | |
518 } | |
519 | |
520 void | |
521 collect_matrix(SceneGraphPtr sg, MatrixListInfo *matrix_info, TaskManager *manager) { | |
522 | |
523 matrix_info->id = -1; | |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
524 matrix_info->list_length = 0; |
907 | 525 matrix_info->next = NULL; |
526 matrix_info->first = NULL; | |
527 matrix_info->last = NULL; | |
528 | |
529 while (sg) { | |
530 | |
531 if (sg->flag_drawable) { | |
532 | |
533 int flag = 0; | |
534 | |
535 for (MatrixListInfo* t = matrix_info; t != NULL; t = t->next) { | |
536 if (sg->sgid == t->id) { | |
537 add_matrix_list(sg, manager, t); | |
538 flag = 1; | |
539 } | |
540 } | |
541 | |
542 if (flag != 1) { | |
543 new_matrix_info(sg, manager, matrix_info); | |
544 } | |
545 | |
546 // search SceneGraph. でも、ただのリストがあったハズだから、あとでそれに直す。はず・・ | |
547 if (sg->children != NULL) { | |
548 sg = sg->children; | |
549 } else if (sg->brother != NULL) { | |
550 sg = sg->brother; | |
551 } else { | |
552 while (sg) { | |
553 if (sg->brother != NULL) { | |
554 sg = sg->brother; | |
555 break; | |
556 } else { | |
557 if (sg->parent == NULL) { | |
558 sg = NULL; | |
559 break; | |
560 } else { | |
561 sg = sg->parent; | |
562 } | |
563 } | |
564 } | |
565 } | |
566 } | |
567 } | |
568 } | |
569 | |
908 | 570 void |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
571 check_matrix(MatrixListInfo *matrix_info,SceneGraphPtr sg) { |
908 | 572 |
573 for (MatrixListInfo* t = matrix_info; t != NULL; t = t->next) { | |
574 for (MatrixList* u = t->first; u != NULL; u = u->next) { | |
575 print_matrix(u->matrix); | |
576 } | |
577 } | |
578 | |
579 } | |
580 | |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
581 |
908 | 582 void |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
583 coord_allocate(int &cur_point, float *coord_pack, int spe_num, |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
584 int alloc_size, HTaskPtr alloc_wait, TaskManager *manager) |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
585 { |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
586 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
587 for (int i = 0; i < spe_num; i++) { |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
588 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
589 HTaskPtr data_alloc = manager->create_task(DataAllocate); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
590 //data_alloc->set_inData(0, &coord_pack[cur_point], alloc_size); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
591 data_alloc->set_param(0,(memaddr)alloc_size); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
592 data_alloc->set_param(1,(memaddr)SG_COORD); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
593 data_alloc->set_cpu((CPU_TYPE)((int)SPE_0 + i)); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
594 alloc_wait->wait_for(data_alloc); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
595 data_alloc->spawn(); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
596 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
597 } |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
598 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
599 cur_point += alloc_size / sizeof(float); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
600 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
601 } |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
602 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
603 void |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
604 coord_free(int spe_num, TaskManager *manager, HTaskPtr alloc_wait) |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
605 { |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
606 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
607 for (int i = 0; i < spe_num; i++) { |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
608 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
609 HTaskPtr data_free = manager->create_task(DataFree); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
610 data_free->set_param(0,(memaddr)SG_COORD); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
611 data_free->set_cpu((CPU_TYPE)((int)SPE_0 + i)); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
612 data_free->wait_for(alloc_wait); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
613 data_free->spawn(); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
614 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
615 } |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
616 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
617 } |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
618 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
619 void |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
620 create_pp_task(SceneGraphPtr sg, TaskManager *manager, int spe_num, HTaskPtr task_next) |
907 | 621 { |
622 | |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
623 MatrixListInfo *matrix_info = (MatrixListInfo*)manager->allocate(sizeof(MatrixListInfo)); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
624 collect_matrix(sg, matrix_info, manager); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
625 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
626 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
627 //HTaskPtr phase_wait = manager->create_task(Dummy); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
628 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
629 for (MatrixListInfo* t = matrix_info; t != NULL; t = t->next) { |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
630 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
631 printf("list_length %d \n", t->list_length); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
632 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
633 int alloc_size = 16*1024; |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
634 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
635 if (t->coord_pack_size < alloc_size) { |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
636 alloc_size = t->coord_pack_size; |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
637 } |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
638 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
639 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
640 int division_num = (t->coord_pack_size + alloc_size - 1) / alloc_size; |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
641 int phase_num = (division_num + spe_num -1) / spe_num; |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
642 int cur_point = 0; |
907 | 643 |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
644 for (int i = 0; i < phase_num; i++) { |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
645 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
646 HTaskPtr alloc_wait = manager->create_task(Dummy); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
647 coord_allocate(cur_point, t->coord_pack, spe_num, |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
648 alloc_size, alloc_wait, manager); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
649 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
650 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
651 for (MatrixList* u = t->first; u != NULL; u = u->next) { |
907 | 652 |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
653 //HTaskPtr free_wait = manager->create_task(Dummy); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
654 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
655 //phase_wait = manager->create_task(Dummy); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
656 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
657 } |
907 | 658 |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
659 coord_free(spe_num, manager, alloc_wait); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
660 alloc_wait->spawn(); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
661 } |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
662 } |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
663 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
664 printf("-----------------------\n"); |
908 | 665 //return create_pp_wait; |
907 | 666 |
667 } | |
668 | |
860 | 669 void |
748 | 670 Viewer::common_rendering(HTaskPtr task_next, SceneGraphRoot *sgroot) |
507 | 671 { |
860 | 672 |
673 #if SPE_CREATE_POLYGON | |
674 | |
907 | 675 SceneGraphPtr sg = sgroot->getDrawSceneGraph(); |
676 | |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
677 create_pp_task(sg, manager, spe_num, task_next); |
907 | 678 |
908 | 679 #if SPE_CREATE_POLYGON_CHECK |
680 check_matrix(matrix_info,sg); | |
681 #endif | |
682 | |
907 | 683 |
909 | 684 |
685 #else | |
907 | 686 |
614
4e44147d78ee
remove uncessary Task Name definision
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
603
diff
changeset
|
687 HTaskPtr task_create_pp = manager->create_task(CreatePolygonFromSceneGraph); |
507 | 688 // SceneGraph(木構造) -> PolygonPack |
689 | |
625
60aa3f241b10
64bit mode worked on Mac OS X.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
616
diff
changeset
|
690 task_create_pp->set_param(0,(memaddr)sgroot->getDrawSceneGraph()); |
986
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
691 task_create_pp->set_param(1,(memaddr)r[ppi].ppack); |
969
9a53faae88d8
add new function for dandy.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
965
diff
changeset
|
692 /* GameTaskの終了を待ってからポリゴンを作る */ |
1002 | 693 task_create_pp->wait_for(sgroot->game_task_array); |
507 | 694 |
695 task_next->wait_for(task_create_pp); | |
748 | 696 |
909 | 697 #endif |
698 | |
748 | 699 int range_base = spe_num; |
700 | |
507 | 701 // 切り上げのつもり |
986
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
702 int range = (r[spi].spackList_length + range_base - 1) / range_base; |
507 | 703 |
704 for (int i = 0; i < range_base; i++) { | |
705 int index_start = range*i; | |
986
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
706 int index_end = (index_start + range >= r[spi].spackList_length) |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
707 ? r[spi].spackList_length : index_start + range; |
507 | 708 |
652 | 709 HTaskPtr task_create_sp = manager->create_task(CreateSpan); |
507 | 710 |
625
60aa3f241b10
64bit mode worked on Mac OS X.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
616
diff
changeset
|
711 task_create_sp->set_param(0,index_start); |
748 | 712 |
507 | 713 /** |
714 * ex. screen_height が 480, spenum が 6 の場合、各SPEのy担当範囲 | |
715 * [ 1.. 80] [ 81..160] [161..240] | |
716 * [241..320] [321..400] [401..480] | |
717 * | |
718 * ex. screen_height が 1080, spenum が 5 の場合、 | |
719 * [ 1..216] [217..432] [433..648] | |
720 * [649..864] [865..1080] | |
721 */ | |
748 | 722 |
625
60aa3f241b10
64bit mode worked on Mac OS X.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
616
diff
changeset
|
723 task_create_sp->set_param(1,index_start*split_screen_h + 1); |
60aa3f241b10
64bit mode worked on Mac OS X.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
616
diff
changeset
|
724 task_create_sp->set_param(2,index_end*split_screen_h); |
507 | 725 |
986
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
726 task_create_sp->add_inData(r[ppi].ppack, sizeof(PolygonPack)); |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
727 task_create_sp->add_inData(r[spi].spackList_ptr, |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
728 sizeof(SpanPack*)*r[spi].spackList_length_align); |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
729 task_create_sp->add_inData(&r[spi].spackList[index_start], sizeof(SpanPack)); |
652 | 730 |
507 | 731 task_next->wait_for(task_create_sp); |
732 task_create_sp->wait_for(task_create_pp); | |
733 | |
748 | 734 task_create_sp->set_cpu(SPE_ANY); |
507 | 735 task_create_sp->spawn(); |
736 } | |
737 | |
860 | 738 task_create_pp->spawn(); |
507 | 739 } |
740 | |
792 | 741 |
507 | 742 void |
743 Viewer::common_draw(HTaskPtr task_next) | |
744 { | |
745 | |
614
4e44147d78ee
remove uncessary Task Name definision
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
603
diff
changeset
|
746 //task_next = manager->create_task(Dummy); |
507 | 747 //task_next->set_post(post2runLoop, (void*)this); |
748 | |
792 | 749 //Light info update |
748 | 750 |
792 | 751 int light_num = 4; |
752 int size = sizeof(float)*4*light_num; //xyz+alpha(4) * light_num(4) | |
762 | 753 int light_size = size / sizeof(float); |
748 | 754 |
762 | 755 for (int i = 0; i < light_size; i++) { |
792 | 756 light_xyz[i] = light_xyz_stock[i]; |
762 | 757 } |
792 | 758 |
759 for (int i = 0; i < light_num; i++) { | |
760 light_switch[i] = light_switch_stock[i]; | |
761 } | |
793 | 762 |
763 light_sysswitch[0] = light_sysswitch_stock; | |
985 | 764 |
765 | |
766 HTask *data_update_wait = 0; | |
767 for (int i = 0; i < spe_num; i++) { | |
768 data_update_wait = manager->create_task(DataUpdate); | |
769 data_update_wait->set_param(0,3); | |
770 data_update_wait->set_param(1,Light); // GlobalSet ID base | |
771 data_update_wait->set_inData(0,light_xyz,size); // Light | |
772 data_update_wait->set_inData(1,light_switch,light_num * sizeof(int)); // LightSwitch = Light+1 | |
773 data_update_wait->set_inData(2,light_sysswitch,16); // LightSysSwitch = Light+2 | |
774 data_update_wait->set_cpu((CPU_TYPE)(SPE_0+i)); | |
775 data_update_wait->spawn(); | |
792 | 776 } |
777 | |
986
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
778 ppi ^= 1; |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
779 r[ppi].ppack->clear(); |
914 | 780 |
986
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
781 for (int i = 0; i < r[spi].spackList_length; i++) { |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
782 SpanPack *spack = &r[spi].spackList[i]; |
507 | 783 int startx = 1; |
784 int endx = split_screen_w; | |
785 | |
786 int starty = spack->info.y_top - split_screen_h + 1; | |
787 //int endy = spack->info.y_top; | |
788 int rangey = (starty + split_screen_h - 1 > this->height) | |
789 ? this->height - starty + 1 : split_screen_h; | |
790 | |
1002 | 791 #if 0 |
857 | 792 |
914 | 793 // mem_flag は spe 側で黒い部分を 0 で埋めるフラグ |
794 if(spack->info.size > 0 || mem_flag == 1) { | |
838 | 795 |
857 | 796 int array_task_num = (this->width + split_screen_w - 1) / split_screen_w; |
797 HTaskPtr task_draw_array = manager->create_task_array(DrawSpan, array_task_num, 6, 1, rangey); | |
798 Task *task_draw = 0; | |
799 | |
800 while (startx < this->width) { | |
801 | |
839 | 802 // Draw SpanPack |
857 | 803 |
839 | 804 task_draw = task_draw_array->next_task_array(DrawSpan,task_draw); |
805 task_draw->set_param(0,(memaddr)&pixels[(startx-1) + this->width*(starty-1)]); | |
806 task_draw->set_param(1,this->width); | |
807 task_draw->set_param(2,startx); | |
808 task_draw->set_param(3,endx); | |
809 task_draw->set_param(4,rangey); | |
810 task_draw->set_param(5,spack->info.size); | |
838 | 811 |
839 | 812 task_draw->set_inData(0,spack, sizeof(SpanPack)); |
813 | |
814 for (int i = 0; i < rangey; i++) { | |
857 | 815 task_draw->set_outData(i, |
816 &pixels[(startx-1) + this->width*(starty-1 + i) ], | |
817 (endx-startx+1)*sizeof(int)); | |
839 | 818 } |
819 | |
820 startx += split_screen_w; | |
821 endx += split_screen_w; | |
822 | |
823 if (endx > this->width) { | |
824 endx = this->width; | |
825 } | |
826 | |
857 | 827 } |
828 | |
829 task_draw_array->spawn_task_array(task_draw->next()); | |
830 task_draw_array->set_cpu(SPE_ANY); | |
831 task_next->wait_for(task_draw_array); | |
832 task_draw_array->spawn(); | |
854 | 833 |
857 | 834 |
914 | 835 |
836 } else { | |
837 | |
857 | 838 memset(&pixels[(startx-1)+this->width*(starty-1)], |
839 0, (this->width)*sizeof(int)*rangey); | |
838 | 840 |
914 | 841 } |
842 | |
857 | 843 |
844 #else | |
838 | 845 |
846 HTaskPtr task_draw; | |
847 | |
507 | 848 while (startx < this->width) { |
857 | 849 if (spack->info.size > 0) { |
507 | 850 // Draw SpanPack |
614
4e44147d78ee
remove uncessary Task Name definision
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
603
diff
changeset
|
851 task_draw = manager->create_task(DrawSpan); |
507 | 852 |
625
60aa3f241b10
64bit mode worked on Mac OS X.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
616
diff
changeset
|
853 task_draw->set_param(0, |
603
42c94f85c779
long -> memaddr (64 or 32)
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
602
diff
changeset
|
854 (memaddr)&pixels[(startx-1) + this->width*(starty-1)]); |
625
60aa3f241b10
64bit mode worked on Mac OS X.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
616
diff
changeset
|
855 task_draw->set_param(1,this->width); |
652 | 856 task_draw->set_param(2,startx); |
857 task_draw->set_param(3,endx); | |
858 task_draw->set_param(4,rangey); | |
838 | 859 task_draw->set_param(5,spack->info.size); |
652 | 860 |
861 task_draw->add_inData(spack, sizeof(SpanPack)); | |
615
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
862 |
616
f21603a335aa
Rendering not yet worked.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
615
diff
changeset
|
863 for (int i = 0; i < rangey; i++) { |
615
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
864 task_draw->add_outData( |
616
f21603a335aa
Rendering not yet worked.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
615
diff
changeset
|
865 &pixels[(startx-1) + this->width*(starty-1 + i) ], |
f21603a335aa
Rendering not yet worked.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
615
diff
changeset
|
866 (endx-startx+1)*sizeof(int)); |
615
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
867 } |
838 | 868 |
857 | 869 } else { |
507 | 870 // 7.7.3 SL1 Data Cache Range Set to Zero コマンド |
871 // を使って、DMAでclearするべき... ということは、 | |
872 // それもSPEでやる方が良い? | |
857 | 873 memset(&pixels[(startx-1)+this->width*(starty-1)], |
874 0, (this->width)*sizeof(int)*rangey); | |
875 break; | |
876 } | |
507 | 877 |
748 | 878 task_draw->set_cpu(SPE_ANY); |
507 | 879 task_next->wait_for(task_draw); |
880 task_draw->spawn(); | |
881 | |
882 startx += split_screen_w; | |
883 endx += split_screen_w; | |
884 | |
885 if (endx > this->width) { | |
886 endx = this->width; | |
887 } | |
888 } | |
838 | 889 #endif |
890 | |
792 | 891 } |
986
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
892 spi ^= 1; |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
893 for (int i = 1; i <= r[spi].spackList_length; i++) { |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
894 r[spi].spackList[i-1].reinit(i*split_screen_h); |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
895 } |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
896 |
792 | 897 |
925
9da903858400
add profile in Redering Engine
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
918
diff
changeset
|
898 if (profile) { |
983 | 899 if (frames % 50 == 49) { |
984 | 900 manager->show_profile(); |
983 | 901 this_time = get_ticks(); |
902 if (this_time != start_time) { | |
984 | 903 printf("\n%f FPS\n", ((((float)frames)*1000.0)/(this_time-start_time))); |
983 | 904 start_time = this_time; frames = 0; |
905 } | |
982
b29547a5b85b
avoid WAIT in virtual console
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
981
diff
changeset
|
906 } |
925
9da903858400
add profile in Redering Engine
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
918
diff
changeset
|
907 } |
748 | 908 } |
909 | |
910 void | |
911 Viewer::run_finish() | |
912 { | |
913 dev->free_device(); | |
914 if (this_time != start_time) { | |
915 printf("%f FPS\n", (((float)frames)/(this_time-start_time))*1000.0); | |
916 } | |
925
9da903858400
add profile in Redering Engine
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
918
diff
changeset
|
917 if (profile) { |
9da903858400
add profile in Redering Engine
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
918
diff
changeset
|
918 manager->show_profile(); |
9da903858400
add profile in Redering Engine
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
918
diff
changeset
|
919 } |
748 | 920 |
921 delete sgroot; | |
922 // delete sgroot_2; | |
923 quit(); | |
507 | 924 } |
925 | |
926 /* end */ |