X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fstage.h;h=49371776b2df432f5ae311d3471677c984d0e107;hb=5dad2cbf4556cd4b433722c172f0b468d0161de5;hp=1ab32d83d27d07fa50be5510c5b7bf8216ab43db;hpb=7857d6ec5961f94bc926b1a969f2c841713f9650;p=libs%2Fdemoscene.git diff --git a/source/stage.h b/source/stage.h index 1ab32d8..4937177 100644 --- a/source/stage.h +++ b/source/stage.h @@ -1,12 +1,13 @@ #ifndef MSP_DEMOSCENE_STAGE_H_ #define MSP_DEMOSCENE_STAGE_H_ +#include #include -#include "cameracontrol.h" #include "action.h" -struct Stage +class Stage { +public: class UseInView: public Action { public: @@ -33,11 +34,43 @@ struct Stage virtual void start(float, float); }; + class SetCamera: public Action + { + public: + class Loader: public Msp::DataFile::DerivedObjectLoader + { + public: + Loader(SetCamera &, Demo &); + + private: + void camera(const std::string &); + void stage(const std::string &); + }; + + private: + Stage *stage; + const Msp::GL::Camera *camera; + + public: + SetCamera(); + SetCamera(Stage &, const Msp::GL::Camera &); + + virtual void validate() const; + + virtual void start(float, float); + }; + +protected: Msp::GL::Pipeline *pipeline; - CameraControl camera_control; + Msp::GL::Camera camera; +public: Stage(); ~Stage(); + + void add_postprocessor(Msp::GL::PostProcessor &); + void set_camera(const Msp::GL::Camera &); + Msp::GL::Camera &get_camera() { return camera; } }; #endif