#ifndef Magnum_SceneGraph_AbstractObject_h #define Magnum_SceneGraph_AbstractObject_h /* This file is part of Magnum. Copyright © 2010, 2011, 2012, 2013 Vladimír Vondruš Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /** @file * @brief Class Magnum::SceneGraph::AbstractObject, alias Magnum::SceneGraph::AbstractBasicObject2D, Magnum::SceneGraph::AbstractBasicObject3D, typedef Magnum::SceneGraph::AbstractObject2D, Magnum::SceneGraph::AbstractObject3D */ #include #include #include "DimensionTraits.h" #include "SceneGraph.h" #include "SceneGraph/magnumSceneGraphVisibility.h" namespace Magnum { namespace SceneGraph { /** @brief Base for objects Provides minimal interface for features, not depending on object transformation implementation. This class is not directly instantiatable, use @ref Object subclass instead. See also @ref scenegraph for more information. Uses @ref Corrade::Containers::LinkedList for storing features. Traversing through the list is done like in the following code. It is also possible to go in reverse order using @ref lastFeature() and @ref AbstractFeature::previousFeature(). @code for(AbstractFeature* feature = o->firstFeature(); feature; feature = feature->nextFeature()) { // ... } @endcode @section AbstractObject-explicit-specializations Explicit template specializations The following specialization are explicitly compiled into @ref SceneGraph library. For other specializations (e.g. using @ref Double type) you have to use @ref Object.hpp implementation file to avoid linker errors. See also relevant sections in @ref Object-explicit-specializations "Object" and @ref AbstractTransformation-explicit-specializations "AbstractTransformation" class documentation or @ref compilation-speedup-hpp for more information. - @ref AbstractObject2D - @ref AbstractObject3D @see @ref AbstractBasicObject2D, @ref AbstractBasicObject3D, @ref AbstractObject2D, @ref AbstractObject3D */ template class AbstractObject #ifndef DOXYGEN_GENERATING_OUTPUT : private Containers::LinkedList> #endif { friend class Containers::LinkedList>; friend class Containers::LinkedListItem, AbstractObject>; friend class AbstractFeature; public: /** @brief Matrix type */ typedef typename DimensionTraits::MatrixType MatrixType; /** @brief Feature object type */ typedef AbstractFeature FeatureType; /* This isn't protected because having virtual destructor here is better than having it duplicated in all Object specializations */ explicit AbstractObject(); virtual ~AbstractObject(); /** @brief Whether this object has features */ bool hasFeatures() const { return !Containers::LinkedList>::isEmpty(); } /** @brief First object feature or `nullptr`, if this object has no features */ FeatureType* firstFeature() { return Containers::LinkedList>::first(); } /** @overload */ const FeatureType* firstFeature() const { return Containers::LinkedList>::first(); } /** @brief Last object feature or `nullptr`, if this object has no features */ FeatureType* lastFeature() { return Containers::LinkedList>::last(); } /** @overload */ const FeatureType* lastFeature() const { return Containers::LinkedList>::last(); } /** * @brief %Scene * @return %Scene or `nullptr`, if the object is not part of any scene. */ AbstractObject* scene() { return doScene(); } /** @overload */ const AbstractObject* scene() const { return doScene(); } /** @{ @name Object transformation */ /** * @brief Transformation matrix * * @see Object::transformation() */ MatrixType transformationMatrix() const { return doTransformationMatrix(); } /** * @brief Transformation matrix relative to root object * * @see Object::absoluteTransformation() */ MatrixType absoluteTransformationMatrix() const { return doAbsoluteTransformationMatrix(); } /** * @brief Transformation matrices of given set of objects relative to this object * * All transformations are premultiplied with @p initialTransformationMatrix, * if specified. * @warning This function cannot check if all objects are of the same * Object type, use typesafe Object::transformationMatrices() when * possible. */ std::vector transformationMatrices(const std::vector*>& objects, const MatrixType& initialTransformationMatrix = MatrixType()) const { return doTransformationMatrices(objects, initialTransformationMatrix); } /*@}*/ /** * @{ @name Transformation caching * * See @ref scenegraph-caching for more information. */ /** * @brief Clean absolute transformations of given set of objects * * Only dirty objects in the list are cleaned. * @warning This function cannot check if all objects are of the same * Object type, use typesafe Object::setClean() when possible. */ static void setClean(const std::vector*>& objects) { if(objects.empty()) return; objects.front()->doSetClean(objects); } /** * @brief Whether absolute transformation is dirty * * Returns `true` if transformation of the object or any parent has * changed since last call to setClean(), `false` otherwise. * * All objects are dirty by default. * * @see @ref scenegraph-caching */ bool isDirty() const { return doIsDirty(); } /** * @brief Set object absolute transformation as dirty * * Calls AbstractFeature::markDirty() on all object features and * recursively calls setDirty() on every child object which is not * already dirty. If the object is already marked as dirty, the * function does nothing. * @see @ref scenegraph-caching, setClean(), isDirty() */ void setDirty() { doSetDirty(); } /** * @brief Clean object absolute transformation * * Calls AbstractFeature::clean() and/or AbstractFeature::cleanInverted() * on all object features which have caching enabled and recursively * calls setClean() on every parent which is not already clean. If the * object is already clean, the function does nothing. * * See also setClean(const std::vector& objects), which cleans given * set of objects more efficiently than when calling setClean() on * each object individually. * @see @ref scenegraph-caching, setDirty(), isDirty() */ void setClean() { doSetClean(); } /*@}*/ private: virtual AbstractObject* doScene() = 0; virtual const AbstractObject* doScene() const = 0; virtual MatrixType doTransformationMatrix() const = 0; virtual MatrixType doAbsoluteTransformationMatrix() const = 0; virtual std::vector doTransformationMatrices(const std::vector*>& objects, const MatrixType& initialTransformationMatrix) const = 0; virtual bool doIsDirty() const = 0; virtual void doSetDirty() = 0; virtual void doSetClean() = 0; virtual void doSetClean(const std::vector*>& objects) = 0; }; #ifndef CORRADE_GCC46_COMPATIBILITY /** @brief Base object for two-dimensional scenes Convenience alternative to %AbstractObject<2, T>. See AbstractObject for more information. @note Not available on GCC < 4.7. Use %AbstractObject<2, T> instead. @see @ref AbstractObject2D, @ref AbstractBasicObject3D */ template using AbstractBasicObject2D = AbstractObject<2, T>; #endif /** @brief Base object for two-dimensional float scenes @see @ref AbstractObject3D */ #ifndef CORRADE_GCC46_COMPATIBILITY typedef AbstractBasicObject2D AbstractObject2D; #else typedef AbstractObject<2, Float> AbstractObject2D; #endif #ifndef CORRADE_GCC46_COMPATIBILITY /** @brief Base object for three-dimensional scenes Convenience alternative to %AbstractObject<3, T>. See AbstractObject for more information. @note Not available on GCC < 4.7. Use %AbstractObject<3, T> instead. @see AbstractObject2D */ template using AbstractBasicObject3D = AbstractObject<3, T>; #endif /** @brief Base object for three-dimensional float scenes @see @ref AbstractObject2D */ #ifndef CORRADE_GCC46_COMPATIBILITY typedef AbstractBasicObject3D AbstractObject3D; #else typedef AbstractObject<3, Float> AbstractObject3D; #endif #ifdef CORRADE_TARGET_WINDOWS extern template class MAGNUM_SCENEGRAPH_EXPORT AbstractObject<2, Float>; extern template class MAGNUM_SCENEGRAPH_EXPORT AbstractObject<3, Float>; #endif }} #endif