123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289 |
- /*
- ---------------------------------------------------------------------------
- Open Asset Import Library (assimp)
- ---------------------------------------------------------------------------
- Copyright (c) 2006-2025, assimp team
- All rights reserved.
- Redistribution and use of this software in source and binary forms,
- with or without modification, are permitted provided that the following
- conditions are met:
- * Redistributions of source code must retain the above
- copyright notice, this list of conditions and the
- following disclaimer.
- * Redistributions in binary form must reproduce the above
- copyright notice, this list of conditions and the
- following disclaimer in the documentation and/or other
- materials provided with the distribution.
- * Neither the name of the assimp team, nor the names of its
- contributors may be used to endorse or promote products
- derived from this software without specific prior
- written permission of the assimp team.
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- ---------------------------------------------------------------------------
- */
- /// \file AMFImporter_Node.hpp
- /// \brief Elements of scene graph.
- /// \date 2016
- /// \author [email protected]
- #pragma once
- #ifndef INCLUDED_AI_AMF_IMPORTER_NODE_H
- #define INCLUDED_AI_AMF_IMPORTER_NODE_H
- // Header files, Assimp.
- #include <assimp/scene.h>
- #include <assimp/types.h>
- #include <list>
- #include <string>
- #include <vector>
- /// Base class for elements of nodes.
- class AMFNodeElementBase {
- public:
- /// Define what data type contain node element.
- enum EType {
- ENET_Color, ///< Color element: <color>.
- ENET_Constellation, ///< Grouping element: <constellation>.
- ENET_Coordinates, ///< Coordinates element: <coordinates>.
- ENET_Edge, ///< Edge element: <edge>.
- ENET_Instance, ///< Grouping element: <constellation>.
- ENET_Material, ///< Material element: <material>.
- ENET_Metadata, ///< Metadata element: <metadata>.
- ENET_Mesh, ///< Metadata element: <mesh>.
- ENET_Object, ///< Element which hold object: <object>.
- ENET_Root, ///< Root element: <amf>.
- ENET_Triangle, ///< Triangle element: <triangle>.
- ENET_TexMap, ///< Texture coordinates element: <texmap> or <map>.
- ENET_Texture, ///< Texture element: <texture>.
- ENET_Vertex, ///< Vertex element: <vertex>.
- ENET_Vertices, ///< Vertex element: <vertices>.
- ENET_Volume, ///< Volume element: <volume>.
- ENET_Invalid ///< Element has invalid type and possible contain invalid data.
- };
- const EType Type; ///< Type of element.
- std::string ID; ///< ID of element.
- AMFNodeElementBase *Parent; ///< Parent element. If nullptr then this node is root.
- std::list<AMFNodeElementBase *> Child; ///< Child elements.
- public:
- /// Destructor, virtual..
- virtual ~AMFNodeElementBase() = default;
- /// Disabled copy constructor and co.
- AMFNodeElementBase(const AMFNodeElementBase &pNodeElement) = delete;
- AMFNodeElementBase(AMFNodeElementBase &&) = delete;
- AMFNodeElementBase &operator=(const AMFNodeElementBase &pNodeElement) = delete;
- AMFNodeElementBase() = delete;
- protected:
- /// In constructor inheritor must set element type.
- /// \param [in] type - element type.
- /// \param [in] pParent - parent element.
- AMFNodeElementBase(EType type, AMFNodeElementBase *pParent) :
- Type(type), Parent(pParent) {
- // empty
- }
- }; // class IAMFImporter_NodeElement
- /// A collection of objects or constellations with specific relative locations.
- struct AMFConstellation : public AMFNodeElementBase {
- /// Constructor.
- /// \param [in] pParent - pointer to parent node.
- AMFConstellation(AMFNodeElementBase *pParent) :
- AMFNodeElementBase(ENET_Constellation, pParent) {}
- }; // struct CAMFImporter_NodeElement_Constellation
- /// Part of constellation.
- struct AMFInstance : public AMFNodeElementBase {
- std::string ObjectID; ///< ID of object for instantiation.
- /// \var Delta - The distance of translation in the x, y, or z direction, respectively, in the referenced object's coordinate system, to
- /// create an instance of the object in the current constellation.
- aiVector3D Delta;
- /// \var Rotation - The rotation, in degrees, to rotate the referenced object about its x, y, and z axes, respectively, to create an
- /// instance of the object in the current constellation. Rotations shall be executed in order of x first, then y, then z.
- aiVector3D Rotation;
- /// Constructor.
- /// \param [in] pParent - pointer to parent node.
- AMFInstance(AMFNodeElementBase *pParent) :
- AMFNodeElementBase(ENET_Instance, pParent) {}
- };
- /// Structure that define metadata node.
- struct AMFMetadata : public AMFNodeElementBase {
- std::string MetaType; ///< Type of "Value".
- std::string Value; ///< Value.
- /// Constructor.
- /// \param [in] pParent - pointer to parent node.
- AMFMetadata(AMFNodeElementBase *pParent) :
- AMFNodeElementBase(ENET_Metadata, pParent) {}
- };
- /// Structure that define root node.
- struct AMFRoot : public AMFNodeElementBase {
- std::string Unit; ///< The units to be used. May be "inch", "millimeter", "meter", "feet", or "micron".
- std::string Version; ///< Version of format.
- /// Constructor.
- /// \param [in] pParent - pointer to parent node.
- AMFRoot(AMFNodeElementBase *pParent) :
- AMFNodeElementBase(ENET_Root, pParent) {}
- };
- /// Structure that define object node.
- struct AMFColor : public AMFNodeElementBase {
- bool Composed; ///< Type of color stored: if true then look for formula in \ref Color_Composed[4], else - in \ref Color.
- std::string Color_Composed[4]; ///< By components formulas of composed color. [0..3] - RGBA.
- aiColor4D Color; ///< Constant color.
- std::string Profile; ///< The ICC color space used to interpret the three color channels r, g and b..
- /// @brief Constructor.
- /// @param [in] pParent - pointer to parent node.
- AMFColor(AMFNodeElementBase *pParent) :
- AMFNodeElementBase(ENET_Color, pParent), Composed(false), Color() {
- // empty
- }
- };
- /// Structure that define material node.
- struct AMFMaterial : public AMFNodeElementBase {
- /// Constructor.
- /// \param [in] pParent - pointer to parent node.
- AMFMaterial(AMFNodeElementBase *pParent) :
- AMFNodeElementBase(ENET_Material, pParent) {}
- };
- /// Structure that define object node.
- struct AMFObject : public AMFNodeElementBase {
- /// Constructor.
- /// \param [in] pParent - pointer to parent node.
- AMFObject(AMFNodeElementBase *pParent) :
- AMFNodeElementBase(ENET_Object, pParent) {}
- };
- /// \struct CAMFImporter_NodeElement_Mesh
- /// Structure that define mesh node.
- struct AMFMesh : public AMFNodeElementBase {
- /// Constructor.
- /// \param [in] pParent - pointer to parent node.
- AMFMesh(AMFNodeElementBase *pParent) :
- AMFNodeElementBase(ENET_Mesh, pParent) {}
- };
- /// Structure that define vertex node.
- struct AMFVertex : public AMFNodeElementBase {
- /// Constructor.
- /// \param [in] pParent - pointer to parent node.
- AMFVertex(AMFNodeElementBase *pParent) :
- AMFNodeElementBase(ENET_Vertex, pParent) {}
- };
- /// Structure that define edge node.
- struct AMFEdge : public AMFNodeElementBase {
- /// Constructor.
- /// \param [in] pParent - pointer to parent node.
- AMFEdge(AMFNodeElementBase *pParent) :
- AMFNodeElementBase(ENET_Edge, pParent) {}
- };
- /// Structure that define vertices node.
- struct AMFVertices : public AMFNodeElementBase {
- /// Constructor.
- /// \param [in] pParent - pointer to parent node.
- AMFVertices(AMFNodeElementBase *pParent) :
- AMFNodeElementBase(ENET_Vertices, pParent) {}
- };
- /// Structure that define volume node.
- struct AMFVolume : public AMFNodeElementBase {
- std::string MaterialID; ///< Which material to use.
- std::string VolumeType; ///< What this volume describes can be "region" or "support". If none specified, "object" is assumed.
- /// Constructor.
- /// \param [in] pParent - pointer to parent node.
- AMFVolume(AMFNodeElementBase *pParent) :
- AMFNodeElementBase(ENET_Volume, pParent) {}
- };
- /// Structure that define coordinates node.
- struct AMFCoordinates : public AMFNodeElementBase {
- aiVector3D Coordinate; ///< Coordinate.
- /// Constructor.
- /// \param [in] pParent - pointer to parent node.
- AMFCoordinates(AMFNodeElementBase *pParent) :
- AMFNodeElementBase(ENET_Coordinates, pParent) {}
- };
- /// Structure that define texture coordinates node.
- struct AMFTexMap : public AMFNodeElementBase {
- aiVector3D TextureCoordinate[3]; ///< Texture coordinates.
- std::string TextureID_R; ///< Texture ID for red color component.
- std::string TextureID_G; ///< Texture ID for green color component.
- std::string TextureID_B; ///< Texture ID for blue color component.
- std::string TextureID_A; ///< Texture ID for alpha color component.
- /// Constructor.
- /// \param [in] pParent - pointer to parent node.
- AMFTexMap(AMFNodeElementBase *pParent) :
- AMFNodeElementBase(ENET_TexMap, pParent), TextureCoordinate{} {
- // empty
- }
- };
- /// Structure that define triangle node.
- struct AMFTriangle : public AMFNodeElementBase {
- size_t V[3]; ///< Triangle vertices.
- /// Constructor.
- /// \param [in] pParent - pointer to parent node.
- AMFTriangle(AMFNodeElementBase *pParent) :
- AMFNodeElementBase(ENET_Triangle, pParent) {
- // empty
- }
- };
- /// Structure that define texture node.
- struct AMFTexture : public AMFNodeElementBase {
- size_t Width, Height, Depth; ///< Size of the texture.
- std::vector<uint8_t> Data; ///< Data of the texture.
- bool Tiled;
- /// Constructor.
- /// \param [in] pParent - pointer to parent node.
- AMFTexture(AMFNodeElementBase *pParent) :
- AMFNodeElementBase(ENET_Texture, pParent), Width(0), Height(0), Depth(0), Data(), Tiled(false) {
- // empty
- }
- };
- #endif // INCLUDED_AI_AMF_IMPORTER_NODE_H
|