Mercurial > hg > Game > Cerium
view Renderer/test_render/panel.cpp @ 327:c8edba9cabb7 draft
add test_render/show_time.{cpp,h} {spe,task}/ShowTime.{cpp,h} but incomplete
author | aaa |
---|---|
date | Fri, 12 Jun 2009 02:07:06 +0900 |
parents | 15bfacccde99 |
children |
line wrap: on
line source
#include "SceneGraphRoot.h" #include "SGList.h" static void panel_move(SceneGraphPtr node, int screen_w, int screen_h); static void panel_collision(SceneGraphPtr node, int screen_w, int screen_h, SceneGraphPtr tree); static void panel_move(SceneGraphPtr node, int screen_w, int screen_h) { } static void panel_collision(SceneGraphPtr node, int screen_w, int screen_h, SceneGraphPtr tree) { } void panel_init(int bg) { SceneGraphPtr panel; if (bg == 2) { sgroot->createFromXMLfile("xml_file/panel_512.xml"); panel = sgroot->createSceneGraph(PANEL_512); } else if (bg == 3) { sgroot->createFromXMLfile("xml_file/panel_1024.xml"); panel = sgroot->createSceneGraph(PANEL_1024); } else { sgroot->createFromXMLfile("xml_file/panel_2048.xml"); panel = sgroot->createSceneGraph(PANEL_2048); } panel->set_move_collision(panel_move, panel_collision); panel->xyz[2] = 30.0f; sgroot->setSceneData(panel); }