/**************************************************************************** Copyright (c) 2014-2016 Chukong Technologies Inc. Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. https://axmolengine.github.io/ 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. ****************************************************************************/ #pragma once #include #include #include "3d/Bundle3DData.h" #include "3d/AABB.h" #include "3d/3DProgramInfo.h" #include "base/Ref.h" #include "math/Math.h" #include "renderer/MeshCommand.h" #include "renderer/CustomCommand.h" #include "renderer/backend/Backend.h" NS_AX_BEGIN /** * @addtogroup _3d * @{ */ class Texture2D; class MeshSkin; class MeshIndexData; class Material; class Renderer; class Scene; class Pass; namespace backend { class Buffer; } /** * @brief Mesh: contains ref to index buffer, GLProgramState, texture, skin, blend function, aabb and so on */ class AX_DLL Mesh : public Ref { friend class MeshRenderer; public: /**create mesh from positions, normals, and so on, single SubMesh*/ static Mesh* create(const std::vector& positions, const std::vector& normals, const std::vector& texs, const IndexArray& indices); /** * @lua NA */ static Mesh* create(const std::vector& vertices, int perVertexSizeInFloat, const IndexArray& indices, const std::vector& attribs); /** * create mesh * @lua NA */ static Mesh* create(std::string_view name, MeshIndexData* indexData, MeshSkin* skin = nullptr); /** * get vertex buffer * * @lua NA */ backend::Buffer* getVertexBuffer() const; /** * has vertex attribute? * * @lua NA */ bool hasVertexAttrib(shaderinfos::VertexKey attrib) const; /**get mesh vertex attribute count*/ ssize_t getMeshVertexAttribCount() const; /**get MeshVertexAttribute by index*/ const MeshVertexAttrib& getMeshVertexAttribute(int idx); /**get per vertex size in bytes*/ int getVertexSizeInBytes() const; /** * set texture (diffuse), which is responsible for the main appearance. It is also means main texture, you can also * call setTexture(texPath, NTextureData::Usage::Diffuse) * @param texPath texture path */ void setTexture(std::string_view texPath); /** * set texture (diffuse), which is responsible for the main appearance. It is also means main texture, you can also * call setTexture(texPath, NTextureData::Usage::Diffuse) * @param tex texture to be set */ void setTexture(Texture2D* tex); /** * set texture * @param tex texture to be set * @param usage Usage of this texture * @param whether refresh the cache file name */ void setTexture(Texture2D* tex, NTextureData::Usage usage, bool cacheFileName = true); /** * set texture * @param texPath texture path * @param usage Usage of this texture */ void setTexture(std::string_view texPath, NTextureData::Usage usage); /** * Get texture (diffuse), which is responsible for the main appearance. It is also means main texture, you can also * call getTexture(NTextureData::Usage::Diffuse) * @return Texture used, return the texture of first mesh if multiple meshes exist */ Texture2D* getTexture() const; /** * Get texture * @param usage Usage of returned texture * @return The texture of this usage, return the texture of first mesh if multiple meshes exist */ Texture2D* getTexture(NTextureData::Usage usage); /**visible getter and setter*/ void setVisible(bool visible); bool isVisible() const; /** * skin getter * * @lua NA */ MeshSkin* getSkin() const { return _skin; } /** * mesh index data getter * * @lua NA */ MeshIndexData* getMeshIndexData() const { return _meshIndexData; } /** * get ProgramState * * @lua NA */ backend::ProgramState* getProgramState() const; /**name getter */ std::string_view getName() const { return _name; } void setBlendFunc(const BlendFunc& blendFunc); const BlendFunc& getBlendFunc() const; /** * get primitive type * * @lua NA */ CustomCommand::PrimitiveType getPrimitiveType() const; /** * get index count * * @lua NA */ ssize_t getIndexCount() const; /** * get index format * * @lua NA */ CustomCommand::IndexFormat getIndexFormat() const; /** * set index format * * @lua NA */ void setIndexFormat(CustomCommand::IndexFormat indexFormat); /** * get index buffer * * @lua NA */ backend::Buffer* getIndexBuffer() const; /**get AABB*/ const AABB& getAABB() const { return _aabb; } /** Sets a new ProgramState for the Mesh * A new Material will be created for it */ void setProgramState(backend::ProgramState* programState); /** Sets a new Material to the Mesh */ void setMaterial(Material* material); /** Returns the Material being used by the Mesh */ Material* getMaterial() const; void draw(Renderer* renderer, float globalZ, const Mat4& transform, uint32_t flags, unsigned int lightMask, const Vec4& color, bool forceDepthWrite, bool wireframe); /**skin setter*/ void setSkin(MeshSkin* skin); /**Mesh index data setter*/ void setMeshIndexData(MeshIndexData* indexdata); /**name setter*/ void setName(std::string_view name) { _name = name; } /** * calculate the AABB of the mesh * @note the AABB is in the local space, not the world space */ void calculateAABB(); std::string getTextureFileName() { return _texFile; } void setInstanceCount(int count = 0); /** Enables instancing for this Mesh Renderer, keep in mind that a special vertex shader has to be used, make sure that your shader has a mat4 attribute set on the location of total vertex attributes +1 */ void enableInstancing(bool instance, int count = 0); /** Set this to true and instancing objects within this mesh renderer will be recalculated each frame, use it when you plan to move objects, Otherwise, transforms will be built once for better performance. * to update transforms on demand use `rebuildInstances()` */ void setDynamicInstancing(bool dynamic); /** Adds a child to use it's transformations for instancing. * The child is in the space of this Node, keep in mind that the node isn't added to the scene graph, it is instead retained and it's parent is set to this node, updates and actions will not run. * the reason for this is performance. * * @param child, The child to use for instancing. */ void addInstanceChild(Node* child); /** shrinks the instance transform buffer after many steps of expansion to increase performance. */ void shrinkToFitInstances(); /** rebuilds the instance transform buffer next frame. */ void rebuildInstances(); Mesh(); virtual ~Mesh(); protected: void resetLightUniformValues(); void setLightUniforms(Pass* pass, Scene* scene, const Vec4& color, unsigned int lightmask); void bindMeshCommand(); std::map _textures; // textures that submesh is using MeshSkin* _skin; // skin bool _visible; // is the submesh visible bool _instancing; backend::Buffer* _instanceTransformBuffer; bool _instanceTransformDirty; bool _instanceTransformBufferDirty; int _instanceCount; std::vector _instances; float* _instanceMatrixCache; bool _dynamicInstancing; CustomCommand::IndexFormat meshIndexFormat; std::string _name; MeshIndexData* _meshIndexData; // GLProgramState* _glProgramState; BlendFunc _blend; bool _blendDirty; Material* _material; AABB _aabb; std::function _visibleChanged; std::unordered_map> _meshCommands; /// light parameters std::vector _dirLightUniformColorValues; std::vector _dirLightUniformDirValues; std::vector _pointLightUniformColorValues; std::vector _pointLightUniformPositionValues; std::vector _pointLightUniformRangeInverseValues; std::vector _spotLightUniformColorValues; std::vector _spotLightUniformPositionValues; std::vector _spotLightUniformDirValues; std::vector _spotLightUniformInnerAngleCosValues; std::vector _spotLightUniformOuterAngleCosValues; std::vector _spotLightUniformRangeInverseValues; std::string _texFile; }; // end of 3d group /// @} /// @cond extern std::string AX_DLL s_uniformSamplerName[]; // uniform sampler names array /// @endcond NS_AX_END