view Renderer/Engine/Application.h @ 1042:b067fd5d8859

add button api.
author koba <koba@cr.ie.u-ryukyu.ac.jp>
date Tue, 07 Dec 2010 18:58:10 +0900
parents 431936c0cc96
children 283b15633c0f
line wrap: on
line source

#ifndef INCLUDED_APPLICATION
#define INCLUDED_APPLICATION

#include "SceneGraph.h"
#include "MainLoop.h"
#include "viewer.h"

typedef void (*Move_func)(SceneGraph* node, int screen_w, int screen_h);
typedef void (*Coll_func)(SceneGraph* node, int screen_w, int screen_h, SceneGraphPtr tree);

class Viewer;

class Application {
public:
    Application();
    virtual ~Application();

    virtual void app_loop(Viewer *viewer){};
    virtual HTaskPtr application_task(HTaskPtr next, Viewer* viewer){return next;};
    virtual MainLoopPtr init(Viewer *viewer, int w, int h)  = 0;
};

#endif