X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Frender%2Fscene.h;h=e6115ae56541d9e9907818da03c780f45f80660d;hb=d9c437291135255422c71918cd0cab8a735848af;hp=96ecee97ef559f7f15ff6b4595b7c92046ae25ba;hpb=29f0d4ada51ff65c424398546e01e2884dba6ef3;p=libs%2Fgl.git diff --git a/source/render/scene.h b/source/render/scene.h index 96ecee97..e6115ae5 100644 --- a/source/render/scene.h +++ b/source/render/scene.h @@ -11,9 +11,15 @@ namespace Msp { namespace GL { /** -Scenes are containers for other Renderables. This is a base class that can't -be instantiated. Examples of available Scene types are SimpleScene, -InstancedScene and OrderedScene. +Container for other renderables. Subclasses provide different ways of +rendering the contents. + +All types of Scenes perform frustum culling on the contents, skipping +renderables whose bounding sphere is fully outside the view volume. If a +bounding sphere cannot be determined, culling is not performed on that +renderable. + +SimpleScene is a good default choice if there are no specific requirements. */ class Scene: public Renderable { @@ -34,9 +40,11 @@ protected: private: Loader(Scene &, Collection &, ContentMap *); + void array(const std::string &); void object(const std::string &); void object_tagged(const std::string &, const std::string &); void scene(const std::string &); + void scene_inline(); }; public: @@ -52,24 +60,13 @@ public: }; protected: - mutable Matrix culling_matrix; - mutable Vector4 frustum_edges[6]; - Scene() = default; -private: - Scene(const Scene &); - Scene &operator=(const Scene &); public: virtual ~Scene() = default; virtual void add(Renderable &) = 0; virtual void remove(Renderable &) = 0; -protected: - bool setup_frustum(const Renderer &) const; - bool frustum_cull(const Renderable &) const; - -public: template static void register_type(const std::string &); private: