view Renderer/Test/game_over.cc @ 639:70c5c2d2eb24

fix
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Thu, 19 Nov 2009 18:45:24 +0900
parents b21a013051a2
children d0b8860c17f8
line wrap: on
line source

#include "SceneGraphRoot.h"
#include "vacuum.h"


void
gameover_scene(int w,int h,SceneGraphPtr node)
{

  SceneGraphPtr over;

  over = sgroot->createSceneGraph("GAMEOVER");
  over->xyz[0] = w/2;
  over->xyz[1] = h/2;
  over->set_move_collision(gameover_idle,gameover_collision);
  node->addBrother(over);
}

void
gameover_idle(SceneGraphPtr node,int screen_w,int screen_h)
{
}

void
gameover_collision(SceneGraphPtr node,int screen_w,int screen_h,SceneGraphPtr tree)
{

  Pad *pad = sgroot->getController();

  if(pad->start.isPush()) {

    SceneGraphPtr title;

    title = sgroot->createSceneGraph("TITLE");
    title->xyz[0] = screen_w/2;
    title->xyz[1] = screen_h/2;
    title->set_move_collision(no_move_idle, title_collision);
    sgroot->setSceneData(title);

  }

}