view Renderer/Test/gaplant.cc @ 557:ec72b601b71f

fix examlples (on going)
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Thu, 22 Oct 2009 17:34:12 +0900
parents f6daf964f483
children 1a2f015c42b2
line wrap: on
line source

#include "SceneGraphRoot.h"
#include "SGList.h"
#include "gaplant_action.h"
#include "back_action.h"

MainLoopPtr
gaplant::init_gaplant(Viewer *sgroot, int w, int h)
{
    SceneGraphPtr back;
    SceneGraphPtr gaplant;
    sgroot->createFromXMLfile(manager, "xml_file/gap_plane_test.xml");
    sgroot->createFromXMLfile(manager, "xml_file/Ball.xml");

    back = sgroot->createSceneGraph();
    back->set_move_collision(back_move, back_coll);
    gaplant = sgroot->createSceneGraph();
    gaplant->xyz[0] = 200;
    gaplant->angle[0] = -60;
    gaplant->angle[1] = 0;
    gaplant->angle[2] = 0;
    gaplant->set_move_collision(gaplant_move, gaplant_coll);
 
    for (int i = arm_L_D; i <= foot_L_A; i++) {
	SceneGraphPtr p = sgroot->createSceneGraph(i);
	gaplant->addChild(p);
    }

    back->addChild(gaplant);
    sgroot->setSceneData(back);        
    return sgroot;
}