]> git.tdb.fi Git - libs/gl.git/blobdiff - source/scene.h
Drop Id tags and copyright notices from files
[libs/gl.git] / source / scene.h
index e6de1c23e6becb3a94103a06e7d905832173534e..19048eb305a9f2ca8e8a21eca741f4671ebf813e 100644 (file)
@@ -1,35 +1,28 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2007  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #ifndef MSP_GL_SCENE_H_
 #define MSP_GL_SCENE_H_
 
-#include <map>
-#include <set>
 #include "renderable.h"
 
 namespace Msp {
 namespace GL {
 
-class Object;
-class ObjectInstance;
-
+/**
+Scenes are containers for other Renderables.  This is a base class that can't
+be instantiated.  At the moment the available Scene types are SimpleScene,
+InstancedScene and OrderedScene.
+*/
 class Scene: public Renderable
 {
-private:
-       std::map<const Object *, std::set<const ObjectInstance *> > objects;
-       std::set<const Renderable *> renderables;
-
+protected:
+       Scene() { }
 public:
-       void add(const Renderable &);
-       void remove(const Renderable &);
+       virtual ~Scene() { }
+
+       virtual void add(const Renderable &) = 0;
+       virtual void remove(const Renderable &) = 0;
 
-       virtual bool has_pass(const Tag &) const { return true; }
-       virtual void render(const Tag &tag=Tag()) const;
+       using Renderable::render;
+       virtual void render(const Tag & = Tag()) const;
 };
 
 } // namespace GL