makefile rules for cross-compiling with mingw-w64
[laserbrain_demo] / src / metascene.h
index 8d512eb..8d0f5c2 100644 (file)
@@ -1,8 +1,32 @@
 #ifndef METASCENE_H_
 #define METASCENE_H_
 
-class Scene;
+#include <map>
+#include "scene.h"
+#include "mesh.h"
+#include "datamap.h"
 
-bool load_scene(Scene *scn, const char *fname);
+class MetaScene {
+public:
+       DataMap datamap;
+
+       std::vector<Scene*> scenes;
+
+       Mesh *walk_mesh;
+       Vec3 start_pos;
+       Quat start_rot;
+
+       std::map<Scene*, void*> scndata;
+
+
+       MetaScene();
+       ~MetaScene();
+
+       bool load(const char *fname);
+       bool scene_loaded(Scene *scn);
+
+       void update(float dt);
+       void draw() const;
+};
 
 #endif // METASCENE_H_