Mercurial > hg > Members > kono > Cerium
annotate Renderer/Engine/viewer.cc @ 1003:295b3c79fb44
game_task keep up with task_array.
author | koba <koba@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 26 Oct 2010 17:29:50 +0900 |
parents | c79651141045 |
children | 67ff44a08090 |
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(); | |
1003
295b3c79fb44
game_task keep up with task_array.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
1002
diff
changeset
|
316 |
295b3c79fb44
game_task keep up with task_array.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
1002
diff
changeset
|
317 //TaskArray を使うか使わないか |
295b3c79fb44
game_task keep up with task_array.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
1002
diff
changeset
|
318 if (sgroot->gtask_array != NULL) { |
295b3c79fb44
game_task keep up with task_array.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
1002
diff
changeset
|
319 sgroot->create_task_array(); |
295b3c79fb44
game_task keep up with task_array.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
1002
diff
changeset
|
320 sgroot->allExecute(width, height); |
295b3c79fb44
game_task keep up with task_array.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
1002
diff
changeset
|
321 sgroot->task_array_finish(); |
295b3c79fb44
game_task keep up with task_array.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
1002
diff
changeset
|
322 } else { |
295b3c79fb44
game_task keep up with task_array.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
1002
diff
changeset
|
323 sgroot->allExecute(width, height); |
295b3c79fb44
game_task keep up with task_array.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
1002
diff
changeset
|
324 } |
295b3c79fb44
game_task keep up with task_array.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
1002
diff
changeset
|
325 |
748 | 326 light_xyz_stock = sgroot->getLightVector(); |
792 | 327 light_switch_stock = sgroot->getLightSwitch(); |
793 | 328 light_sysswitch_stock = sgroot->getLightSysSwitch(); |
748 | 329 //sgroot->checkRemove(); |
330 | |
331 // ここから下は Rendering という関数にする | |
332 rendering(task_next); | |
507 | 333 } |
334 | |
335 | |
336 | |
337 void | |
338 Viewer::run_collision() | |
339 { | |
340 } | |
341 | |
342 void | |
514 | 343 post2rendering(SchedTask *s, void *viewer_, void *arg) |
507 | 344 { |
345 Viewer *viewer = (Viewer *)viewer_; | |
826 | 346 HTaskPtr task_next = viewer->manager->create_task(Dummy,0,0,0,0); |
507 | 347 viewer->rendering(task_next); |
348 } | |
349 | |
350 void | |
351 Viewer::rendering(HTaskPtr task_next) | |
352 { | |
748 | 353 common_rendering(task_next, sgroot); |
507 | 354 |
355 // Barrier 同期 | |
356 // run_draw() を呼ぶ post2runDraw | |
514 | 357 task_next->set_post(post2runDraw, (void*)this, 0); // set_post(function(this->run_draw()), NULL) |
507 | 358 task_next->spawn(); |
359 | |
360 // TASK_CREATE_SPAN が全て終わったら DUMMY_TASK が Viewer::run_draw() を呼ぶ | |
361 } | |
362 | |
363 static void | |
514 | 364 post2runLoop(SchedTask *s, void *viewer_, void *arg) |
507 | 365 { |
366 Viewer *viewer = (Viewer*)viewer_; | |
826 | 367 HTaskPtr task_next = viewer->manager->create_task(Dummy,0,0,0,0); |
507 | 368 viewer->run_loop(task_next); |
575
0f13810d4492
Linda API worked. (slightly unreliable)
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
572
diff
changeset
|
369 psx_sync_n(); |
507 | 370 } |
371 | |
372 static void | |
514 | 373 post2runDraw(SchedTask *s, void *viewer_, void *arg) |
507 | 374 { |
375 Viewer *viewer = (Viewer*)viewer_; | |
826 | 376 HTaskPtr task_next = viewer->manager->create_task(Dummy,0,0,0,0); |
507 | 377 viewer->run_draw(task_next); |
378 | |
379 } | |
380 | |
381 void | |
382 Viewer::run_draw(HTaskPtr task_next) // 引数に post2runLoop を入れるようにする | |
383 { | |
384 common_draw(task_next); | |
385 | |
514 | 386 task_next->set_post(post2runLoop, (void*)this, 0); // set_post(function(this->run_loop()), NULL) |
507 | 387 task_next->spawn(); |
388 // TASK_DRAW_SPAN が全て終わったら DUMMY_TASK が Viewer::run_loop() を呼ぶ | |
389 | |
390 frames++; | |
391 } | |
392 | |
393 | |
394 static void | |
514 | 395 post2speRendering(SchedTask *s, void *viewer_, void *arg) |
507 | 396 { |
397 Viewer *viewer = (Viewer*)viewer_; | |
826 | 398 HTaskPtr task_next = viewer->manager->create_task(Dummy,0,0,0,0); |
507 | 399 viewer->spe_rendering(task_next); |
400 } | |
401 | |
402 void | |
403 Viewer::spe_rendering(HTaskPtr task_next) | |
404 { | |
748 | 405 common_rendering(task_next, sgroot); |
507 | 406 |
407 this->draw_dummy->wait_for(task_next); | |
514 | 408 task_next->set_post(post2speDraw, (void*)this, 0); |
507 | 409 task_next->spawn(); |
410 | |
411 } | |
412 | |
413 static void | |
514 | 414 post2speDraw(SchedTask *s, void *viewer_, void *arg) |
507 | 415 { |
416 Viewer *viewer = (Viewer*)viewer_; | |
826 | 417 HTaskPtr task_next = viewer->manager->create_task(Dummy,0,0,0,0); |
507 | 418 viewer->spe_draw(task_next); |
419 } | |
420 | |
421 void | |
422 Viewer::spe_draw(HTaskPtr task_next) | |
423 { | |
424 common_draw(task_next); | |
425 | |
426 this->draw_dummy->wait_for(task_next); | |
427 task_next->spawn(); | |
428 this->draw_dummy->spawn(); | |
429 | |
430 frames++; | |
431 } | |
432 | |
907 | 433 |
908 | 434 // 完全にMac仕様。。sg_matrix を allocate してやらないといけないよ。 |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
435 float* |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
436 copy_matrix(SceneGraphPtr sg, TaskManager *manager) { |
908 | 437 |
438 float *matrix = sg->matrix; | |
439 float *real_matrix = sg->real_matrix; | |
440 | |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
441 //変換行列は4x4 なんで、16。が二つで32.と言い訳を書いてみる。 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
442 float *sg_matrix = (float*)manager->allocate(sizeof(float)*32); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
443 |
908 | 444 for (int i = 0; i < 16; i++) { |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
445 sg_matrix[i] = matrix[i]; |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
446 sg_matrix[i+16] = real_matrix[i]; |
908 | 447 } |
448 | |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
449 return sg_matrix; |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
450 |
908 | 451 } |
452 | |
453 void | |
454 print_matrix(float *matrix) { | |
455 | |
456 for (int i = 0; i < 32; i++) { | |
457 printf("%f\n",matrix[i]); | |
458 } | |
459 | |
460 } | |
907 | 461 |
462 void | |
463 add_matrix_list(SceneGraphPtr sg, TaskManager *manager, MatrixListInfo* info) { | |
464 | |
465 MatrixList *matrix_list = (MatrixList*)manager->allocate(sizeof(MatrixList)); | |
908 | 466 |
467 #if SPE_CREATE_POLYGON_CHECK | |
468 print_matrix(sg->sg_matrix); | |
469 #endif | |
470 | |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
471 matrix_list->matrix = copy_matrix(sg, manager);; |
907 | 472 matrix_list->next = NULL; |
908 | 473 |
907 | 474 |
475 if (info->last != NULL) { | |
476 info->last->next = matrix_list; | |
477 } | |
478 | |
479 info->last = matrix_list; | |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
480 info->list_length += 1; |
907 | 481 |
482 } | |
483 | |
484 void | |
485 new_matrix_info(SceneGraphPtr sg, TaskManager *manager, MatrixListInfo* info) { | |
486 | |
487 MatrixListInfo *next = NULL; | |
488 | |
489 if (info->id == -1) { | |
490 | |
491 info->id = sg->sgid; | |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
492 info->list_length = 1; |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
493 info->coord_pack = sg->coord_pack; |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
494 info->coord_pack_size = sg->coord_pack_size; |
907 | 495 next = info; |
496 | |
497 } else { | |
498 | |
499 MatrixListInfo* t; | |
500 | |
501 for (t = info; t->next != NULL; t = t->next) { | |
502 } | |
503 | |
504 next = (MatrixListInfo*)manager->allocate(sizeof(MatrixListInfo)); | |
505 next->id = sg->sgid; | |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
506 next->list_length = 1; |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
507 next->coord_pack = sg->coord_pack; |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
508 next->coord_pack_size = sg->coord_pack_size; |
907 | 509 next->next = NULL; |
510 t->next = next; | |
511 | |
512 } | |
513 | |
514 MatrixList *new_list = (MatrixList*)manager->allocate(sizeof(MatrixList)); | |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
515 new_list->matrix = copy_matrix(sg, manager); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
516 |
908 | 517 #if SPE_CREATE_POLYGON_CHECK |
518 print_matrix(sg->sg_matrix); | |
519 #endif | |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
520 |
907 | 521 new_list->next = NULL; |
522 | |
523 next->first = new_list; | |
524 next->last = new_list; | |
525 | |
526 } | |
527 | |
528 void | |
529 collect_matrix(SceneGraphPtr sg, MatrixListInfo *matrix_info, TaskManager *manager) { | |
530 | |
531 matrix_info->id = -1; | |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
532 matrix_info->list_length = 0; |
907 | 533 matrix_info->next = NULL; |
534 matrix_info->first = NULL; | |
535 matrix_info->last = NULL; | |
536 | |
537 while (sg) { | |
538 | |
539 if (sg->flag_drawable) { | |
540 | |
541 int flag = 0; | |
542 | |
543 for (MatrixListInfo* t = matrix_info; t != NULL; t = t->next) { | |
544 if (sg->sgid == t->id) { | |
545 add_matrix_list(sg, manager, t); | |
546 flag = 1; | |
547 } | |
548 } | |
549 | |
550 if (flag != 1) { | |
551 new_matrix_info(sg, manager, matrix_info); | |
552 } | |
553 | |
554 // search SceneGraph. でも、ただのリストがあったハズだから、あとでそれに直す。はず・・ | |
555 if (sg->children != NULL) { | |
556 sg = sg->children; | |
557 } else if (sg->brother != NULL) { | |
558 sg = sg->brother; | |
559 } else { | |
560 while (sg) { | |
561 if (sg->brother != NULL) { | |
562 sg = sg->brother; | |
563 break; | |
564 } else { | |
565 if (sg->parent == NULL) { | |
566 sg = NULL; | |
567 break; | |
568 } else { | |
569 sg = sg->parent; | |
570 } | |
571 } | |
572 } | |
573 } | |
574 } | |
575 } | |
576 } | |
577 | |
908 | 578 void |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
579 check_matrix(MatrixListInfo *matrix_info,SceneGraphPtr sg) { |
908 | 580 |
581 for (MatrixListInfo* t = matrix_info; t != NULL; t = t->next) { | |
582 for (MatrixList* u = t->first; u != NULL; u = u->next) { | |
583 print_matrix(u->matrix); | |
584 } | |
585 } | |
586 | |
587 } | |
588 | |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
589 |
908 | 590 void |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
591 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
|
592 int alloc_size, HTaskPtr alloc_wait, TaskManager *manager) |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
593 { |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
594 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
595 for (int i = 0; i < spe_num; i++) { |
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 HTaskPtr data_alloc = manager->create_task(DataAllocate); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
598 //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
|
599 data_alloc->set_param(0,(memaddr)alloc_size); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
600 data_alloc->set_param(1,(memaddr)SG_COORD); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
601 data_alloc->set_cpu((CPU_TYPE)((int)SPE_0 + i)); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
602 alloc_wait->wait_for(data_alloc); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
603 data_alloc->spawn(); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
604 |
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 cur_point += alloc_size / sizeof(float); |
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 } |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
610 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
611 void |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
612 coord_free(int spe_num, TaskManager *manager, HTaskPtr alloc_wait) |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
613 { |
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 for (int i = 0; i < spe_num; i++) { |
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 HTaskPtr data_free = manager->create_task(DataFree); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
618 data_free->set_param(0,(memaddr)SG_COORD); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
619 data_free->set_cpu((CPU_TYPE)((int)SPE_0 + i)); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
620 data_free->wait_for(alloc_wait); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
621 data_free->spawn(); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
622 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
623 } |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
624 |
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 void |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
628 create_pp_task(SceneGraphPtr sg, TaskManager *manager, int spe_num, HTaskPtr task_next) |
907 | 629 { |
630 | |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
631 MatrixListInfo *matrix_info = (MatrixListInfo*)manager->allocate(sizeof(MatrixListInfo)); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
632 collect_matrix(sg, matrix_info, manager); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
633 |
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 //HTaskPtr phase_wait = manager->create_task(Dummy); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
636 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
637 for (MatrixListInfo* t = matrix_info; t != NULL; t = t->next) { |
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 printf("list_length %d \n", t->list_length); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
640 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
641 int alloc_size = 16*1024; |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
642 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
643 if (t->coord_pack_size < alloc_size) { |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
644 alloc_size = t->coord_pack_size; |
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 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
647 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
648 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
|
649 int phase_num = (division_num + spe_num -1) / spe_num; |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
650 int cur_point = 0; |
907 | 651 |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
652 for (int i = 0; i < phase_num; i++) { |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
653 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
654 HTaskPtr alloc_wait = manager->create_task(Dummy); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
655 coord_allocate(cur_point, t->coord_pack, spe_num, |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
656 alloc_size, alloc_wait, manager); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
657 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
658 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
659 for (MatrixList* u = t->first; u != NULL; u = u->next) { |
907 | 660 |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
661 //HTaskPtr free_wait = manager->create_task(Dummy); |
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 //phase_wait = manager->create_task(Dummy); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
664 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
665 } |
907 | 666 |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
667 coord_free(spe_num, manager, alloc_wait); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
668 alloc_wait->spawn(); |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
669 } |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
670 } |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
671 |
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
672 printf("-----------------------\n"); |
908 | 673 //return create_pp_wait; |
907 | 674 |
675 } | |
676 | |
860 | 677 void |
748 | 678 Viewer::common_rendering(HTaskPtr task_next, SceneGraphRoot *sgroot) |
507 | 679 { |
860 | 680 |
681 #if SPE_CREATE_POLYGON | |
682 | |
907 | 683 SceneGraphPtr sg = sgroot->getDrawSceneGraph(); |
684 | |
915
ad10d6d39ca6
create_polygon_task ..not worked yet.
yutaka@localhost.localdomain
parents:
914
diff
changeset
|
685 create_pp_task(sg, manager, spe_num, task_next); |
907 | 686 |
908 | 687 #if SPE_CREATE_POLYGON_CHECK |
688 check_matrix(matrix_info,sg); | |
689 #endif | |
690 | |
907 | 691 |
909 | 692 |
693 #else | |
907 | 694 |
614
4e44147d78ee
remove uncessary Task Name definision
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
603
diff
changeset
|
695 HTaskPtr task_create_pp = manager->create_task(CreatePolygonFromSceneGraph); |
507 | 696 // SceneGraph(木構造) -> PolygonPack |
697 | |
625
60aa3f241b10
64bit mode worked on Mac OS X.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
616
diff
changeset
|
698 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
|
699 task_create_pp->set_param(1,(memaddr)r[ppi].ppack); |
1003
295b3c79fb44
game_task keep up with task_array.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
1002
diff
changeset
|
700 |
295b3c79fb44
game_task keep up with task_array.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
1002
diff
changeset
|
701 /* GameTask の処理の終了を待ってからポリゴンを作る */ |
295b3c79fb44
game_task keep up with task_array.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
1002
diff
changeset
|
702 if (sgroot->gtask_array != NULL) { |
295b3c79fb44
game_task keep up with task_array.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
1002
diff
changeset
|
703 HTaskPtr game_task_array = sgroot->gtask_array->get_task_array(); |
295b3c79fb44
game_task keep up with task_array.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
1002
diff
changeset
|
704 task_create_pp->wait_for(game_task_array); |
295b3c79fb44
game_task keep up with task_array.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
1002
diff
changeset
|
705 } |
507 | 706 |
707 task_next->wait_for(task_create_pp); | |
748 | 708 |
909 | 709 #endif |
710 | |
748 | 711 int range_base = spe_num; |
712 | |
507 | 713 // 切り上げのつもり |
986
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
714 int range = (r[spi].spackList_length + range_base - 1) / range_base; |
507 | 715 |
716 for (int i = 0; i < range_base; i++) { | |
717 int index_start = range*i; | |
986
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
718 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
|
719 ? r[spi].spackList_length : index_start + range; |
507 | 720 |
652 | 721 HTaskPtr task_create_sp = manager->create_task(CreateSpan); |
507 | 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(0,index_start); |
748 | 724 |
507 | 725 /** |
726 * ex. screen_height が 480, spenum が 6 の場合、各SPEのy担当範囲 | |
727 * [ 1.. 80] [ 81..160] [161..240] | |
728 * [241..320] [321..400] [401..480] | |
729 * | |
730 * ex. screen_height が 1080, spenum が 5 の場合、 | |
731 * [ 1..216] [217..432] [433..648] | |
732 * [649..864] [865..1080] | |
733 */ | |
748 | 734 |
625
60aa3f241b10
64bit mode worked on Mac OS X.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
616
diff
changeset
|
735 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
|
736 task_create_sp->set_param(2,index_end*split_screen_h); |
507 | 737 |
986
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
738 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
|
739 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
|
740 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
|
741 task_create_sp->add_inData(&r[spi].spackList[index_start], sizeof(SpanPack)); |
652 | 742 |
507 | 743 task_next->wait_for(task_create_sp); |
744 task_create_sp->wait_for(task_create_pp); | |
745 | |
748 | 746 task_create_sp->set_cpu(SPE_ANY); |
507 | 747 task_create_sp->spawn(); |
748 } | |
749 | |
860 | 750 task_create_pp->spawn(); |
507 | 751 } |
752 | |
792 | 753 |
507 | 754 void |
755 Viewer::common_draw(HTaskPtr task_next) | |
756 { | |
757 | |
614
4e44147d78ee
remove uncessary Task Name definision
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
603
diff
changeset
|
758 //task_next = manager->create_task(Dummy); |
507 | 759 //task_next->set_post(post2runLoop, (void*)this); |
760 | |
792 | 761 //Light info update |
748 | 762 |
792 | 763 int light_num = 4; |
764 int size = sizeof(float)*4*light_num; //xyz+alpha(4) * light_num(4) | |
762 | 765 int light_size = size / sizeof(float); |
748 | 766 |
762 | 767 for (int i = 0; i < light_size; i++) { |
792 | 768 light_xyz[i] = light_xyz_stock[i]; |
762 | 769 } |
792 | 770 |
771 for (int i = 0; i < light_num; i++) { | |
772 light_switch[i] = light_switch_stock[i]; | |
773 } | |
793 | 774 |
775 light_sysswitch[0] = light_sysswitch_stock; | |
985 | 776 |
777 | |
778 HTask *data_update_wait = 0; | |
779 for (int i = 0; i < spe_num; i++) { | |
780 data_update_wait = manager->create_task(DataUpdate); | |
781 data_update_wait->set_param(0,3); | |
782 data_update_wait->set_param(1,Light); // GlobalSet ID base | |
783 data_update_wait->set_inData(0,light_xyz,size); // Light | |
784 data_update_wait->set_inData(1,light_switch,light_num * sizeof(int)); // LightSwitch = Light+1 | |
785 data_update_wait->set_inData(2,light_sysswitch,16); // LightSysSwitch = Light+2 | |
786 data_update_wait->set_cpu((CPU_TYPE)(SPE_0+i)); | |
787 data_update_wait->spawn(); | |
792 | 788 } |
789 | |
986
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
790 ppi ^= 1; |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
791 r[ppi].ppack->clear(); |
914 | 792 |
986
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
793 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
|
794 SpanPack *spack = &r[spi].spackList[i]; |
507 | 795 int startx = 1; |
796 int endx = split_screen_w; | |
797 | |
798 int starty = spack->info.y_top - split_screen_h + 1; | |
799 //int endy = spack->info.y_top; | |
800 int rangey = (starty + split_screen_h - 1 > this->height) | |
801 ? this->height - starty + 1 : split_screen_h; | |
802 | |
1003
295b3c79fb44
game_task keep up with task_array.
koba <koba@cr.ie.u-ryukyu.ac.jp>
parents:
1002
diff
changeset
|
803 #if 1 |
857 | 804 |
914 | 805 // mem_flag は spe 側で黒い部分を 0 で埋めるフラグ |
806 if(spack->info.size > 0 || mem_flag == 1) { | |
838 | 807 |
857 | 808 int array_task_num = (this->width + split_screen_w - 1) / split_screen_w; |
809 HTaskPtr task_draw_array = manager->create_task_array(DrawSpan, array_task_num, 6, 1, rangey); | |
810 Task *task_draw = 0; | |
811 | |
812 while (startx < this->width) { | |
813 | |
839 | 814 // Draw SpanPack |
857 | 815 |
839 | 816 task_draw = task_draw_array->next_task_array(DrawSpan,task_draw); |
817 task_draw->set_param(0,(memaddr)&pixels[(startx-1) + this->width*(starty-1)]); | |
818 task_draw->set_param(1,this->width); | |
819 task_draw->set_param(2,startx); | |
820 task_draw->set_param(3,endx); | |
821 task_draw->set_param(4,rangey); | |
822 task_draw->set_param(5,spack->info.size); | |
838 | 823 |
839 | 824 task_draw->set_inData(0,spack, sizeof(SpanPack)); |
825 | |
826 for (int i = 0; i < rangey; i++) { | |
857 | 827 task_draw->set_outData(i, |
828 &pixels[(startx-1) + this->width*(starty-1 + i) ], | |
829 (endx-startx+1)*sizeof(int)); | |
839 | 830 } |
831 | |
832 startx += split_screen_w; | |
833 endx += split_screen_w; | |
834 | |
835 if (endx > this->width) { | |
836 endx = this->width; | |
837 } | |
838 | |
857 | 839 } |
840 | |
841 task_draw_array->spawn_task_array(task_draw->next()); | |
842 task_draw_array->set_cpu(SPE_ANY); | |
843 task_next->wait_for(task_draw_array); | |
844 task_draw_array->spawn(); | |
854 | 845 |
857 | 846 |
914 | 847 |
848 } else { | |
849 | |
857 | 850 memset(&pixels[(startx-1)+this->width*(starty-1)], |
851 0, (this->width)*sizeof(int)*rangey); | |
838 | 852 |
914 | 853 } |
854 | |
857 | 855 |
856 #else | |
838 | 857 |
858 HTaskPtr task_draw; | |
859 | |
507 | 860 while (startx < this->width) { |
857 | 861 if (spack->info.size > 0) { |
507 | 862 // Draw SpanPack |
614
4e44147d78ee
remove uncessary Task Name definision
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
603
diff
changeset
|
863 task_draw = manager->create_task(DrawSpan); |
507 | 864 |
625
60aa3f241b10
64bit mode worked on Mac OS X.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
616
diff
changeset
|
865 task_draw->set_param(0, |
603
42c94f85c779
long -> memaddr (64 or 32)
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
602
diff
changeset
|
866 (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
|
867 task_draw->set_param(1,this->width); |
652 | 868 task_draw->set_param(2,startx); |
869 task_draw->set_param(3,endx); | |
870 task_draw->set_param(4,rangey); | |
838 | 871 task_draw->set_param(5,spack->info.size); |
652 | 872 |
873 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
|
874 |
616
f21603a335aa
Rendering not yet worked.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
615
diff
changeset
|
875 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
|
876 task_draw->add_outData( |
616
f21603a335aa
Rendering not yet worked.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
615
diff
changeset
|
877 &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
|
878 (endx-startx+1)*sizeof(int)); |
615
f7d78b3c1106
First addOutput rendering try failed.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
614
diff
changeset
|
879 } |
838 | 880 |
857 | 881 } else { |
507 | 882 // 7.7.3 SL1 Data Cache Range Set to Zero コマンド |
883 // を使って、DMAでclearするべき... ということは、 | |
884 // それもSPEでやる方が良い? | |
857 | 885 memset(&pixels[(startx-1)+this->width*(starty-1)], |
886 0, (this->width)*sizeof(int)*rangey); | |
887 break; | |
888 } | |
507 | 889 |
748 | 890 task_draw->set_cpu(SPE_ANY); |
507 | 891 task_next->wait_for(task_draw); |
892 task_draw->spawn(); | |
893 | |
894 startx += split_screen_w; | |
895 endx += split_screen_w; | |
896 | |
897 if (endx > this->width) { | |
898 endx = this->width; | |
899 } | |
900 } | |
838 | 901 #endif |
902 | |
792 | 903 } |
986
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
904 spi ^= 1; |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
905 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
|
906 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
|
907 } |
ac437c3cf766
double buffering of spanpack/polgonpack
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
985
diff
changeset
|
908 |
792 | 909 |
925
9da903858400
add profile in Redering Engine
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
918
diff
changeset
|
910 if (profile) { |
983 | 911 if (frames % 50 == 49) { |
984 | 912 manager->show_profile(); |
983 | 913 this_time = get_ticks(); |
914 if (this_time != start_time) { | |
984 | 915 printf("\n%f FPS\n", ((((float)frames)*1000.0)/(this_time-start_time))); |
983 | 916 start_time = this_time; frames = 0; |
917 } | |
982
b29547a5b85b
avoid WAIT in virtual console
root@henri.cr.ie.u-ryukyu.ac.jp
parents:
981
diff
changeset
|
918 } |
925
9da903858400
add profile in Redering Engine
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
918
diff
changeset
|
919 } |
748 | 920 } |
921 | |
922 void | |
923 Viewer::run_finish() | |
924 { | |
925 dev->free_device(); | |
926 if (this_time != start_time) { | |
927 printf("%f FPS\n", (((float)frames)/(this_time-start_time))*1000.0); | |
928 } | |
925
9da903858400
add profile in Redering Engine
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
918
diff
changeset
|
929 if (profile) { |
9da903858400
add profile in Redering Engine
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
918
diff
changeset
|
930 manager->show_profile(); |
9da903858400
add profile in Redering Engine
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
918
diff
changeset
|
931 } |
748 | 932 |
933 delete sgroot; | |
934 // delete sgroot_2; | |
935 quit(); | |
507 | 936 } |
937 | |
938 /* end */ |