Mercurial > hg > Game > Cerium
annotate Renderer/Test/long_cube.cc @ 558:00428ba0ba03 draft
boss1_action
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 22 Oct 2009 18:38:07 +0900 |
parents | 764772be1e3c |
children |
rev | line source |
---|---|
539 | 1 #include "SceneGraphRoot.h" |
557
764772be1e3c
fix examlples (on going)
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
540
diff
changeset
|
2 #include "long_cube.h" |
539 | 3 |
4 // prototype | |
5 static void lcube_move(SceneGraphPtr node, int screen_w, int screen_h); | |
6 //static void lcube_collision(SceneGraphPtr node, int screen_w, int screen_h); | |
7 | |
8 | |
9 static void | |
10 lcube_move(SceneGraphPtr node, int screen_w, int screen_h) | |
11 { | |
12 } | |
13 | |
14 static void | |
15 lcube_collision(SceneGraphPtr node, int screen_w, int screen_h, | |
16 SceneGraphPtr tree) | |
17 { | |
18 } | |
19 | |
20 | |
557
764772be1e3c
fix examlples (on going)
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
540
diff
changeset
|
21 MainLoopPtr |
764772be1e3c
fix examlples (on going)
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
540
diff
changeset
|
22 lcube_init(Viewer *sgroot, int screen_w, int screen_h) |
539 | 23 { |
24 SceneGraphPtr lcube; | |
25 | |
26 sgroot->createFromXMLfile(manager, "xml_file/LongCube.xml"); | |
27 lcube = sgroot->createSceneGraph(LongCube); | |
28 lcube->set_move_collision(lcube_move, lcube_collision); | |
29 | |
30 sgroot->setSceneData(lcube); | |
557
764772be1e3c
fix examlples (on going)
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
540
diff
changeset
|
31 return sgroot; |
539 | 32 } |