axmol/cocos/3d/CCSubMesh.h

130 lines
4.3 KiB
C
Raw Normal View History

2014-07-29 10:49:06 +08:00
/****************************************************************************
Copyright (c) 2014 Chukong Technologies Inc.
http://www.cocos2d-x.org
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.
****************************************************************************/
#ifndef __CCSUBMESH_H__
#define __CCSUBMESH_H__
#include <string>
#include <vector>
#include "3d/CCBundle3DData.h"
2014-08-18 17:02:13 +08:00
#include "3d/CCAABB.h"
2014-07-29 10:49:06 +08:00
#include "base/CCRef.h"
#include "base/ccTypes.h"
#include "math/CCMath.h"
#include "renderer/CCGLProgram.h"
2014-08-22 13:25:26 +08:00
#include "renderer/CCVertexIndexData.h"
#include "renderer/CCVertexIndexBuffer.h"
#include "3d/3dExport.h"
2014-07-29 10:49:06 +08:00
NS_CC_BEGIN
2014-08-22 13:25:26 +08:00
class MeshVertexData;
2014-07-29 10:49:06 +08:00
2014-08-22 13:25:26 +08:00
class MeshIndexData : public Ref
2014-07-29 10:49:06 +08:00
{
2014-08-22 13:25:26 +08:00
public:
/** create */
static MeshIndexData* create(const std::string& id, MeshVertexData* vertexData, IndexBuffer* indexbuffer, const AABB& aabb);
/**get index buffer*/
const IndexBuffer* getIndexBuffer() const { return _indexBuffer; }
/**get vertex buffer*/
const VertexBuffer* getVertexBuffer() const;
/**get vertex data*/
const MeshVertexData* getMeshVertexData() const { return _vertexData; }
/** aabb getter and setter */
void setAABB(const AABB& aabb) { _aabb = aabb; }
const AABB& getAABB() const { return _aabb; }
/** id setter and getter */
void setId(const std::string& id) { _id = id; }
const std::string& getId() const { return _id; }
GLenum getPrimitiveType() const { return _primitiveType; }
void setPrimitiveType(GLenum primitive) { _primitiveType = primitive; }
CC_CONSTRUCTOR_ACCESS:
MeshIndexData();
virtual ~MeshIndexData();
protected:
IndexBuffer* _indexBuffer; //index buffer
MeshVertexData* _vertexData; //vertex buffer
AABB _aabb; // original aabb of the submesh
std::string _id; //id
GLenum _primitiveType;
friend class MeshVertexData;
friend class Sprite3D;
2014-07-29 10:49:06 +08:00
};
2014-08-22 13:25:26 +08:00
class MeshVertexData : public Ref
2014-07-29 10:49:06 +08:00
{
2014-08-22 13:25:26 +08:00
friend class Sprite3D;
2014-07-29 10:49:06 +08:00
friend class Mesh;
public:
2014-08-22 13:25:26 +08:00
/**create*/
static MeshVertexData* create(const MeshData& meshdata);
2014-07-29 10:49:06 +08:00
2014-08-22 13:25:26 +08:00
/** get vertexbuffer */
const VertexBuffer* getVertexBuffer() const { return _vertexBuffer; }
2014-08-15 14:58:30 +08:00
2014-08-22 13:25:26 +08:00
/** get attributes count */
ssize_t getMeshVertexAttribCount() const { return _attribs.size(); }
2014-08-15 14:58:30 +08:00
2014-08-22 13:25:26 +08:00
/** get attribute by index */
const MeshVertexAttrib& getMeshVertexAttrib(ssize_t index) const { return _attribs[index]; }
/** get index data count */
ssize_t getMeshIndexDataCount() const { return _indexs.size(); }
/** get index data by index */
MeshIndexData* getMeshIndexDataByIndex(int index) const { return _indexs.at(index); }
/** get index data by id */
MeshIndexData* getMeshIndexDataById(const std::string& id) const;
/**has vertex attribute?*/
bool hasVertexAttrib(int attrib) const;
2014-08-15 18:21:58 +08:00
2014-07-29 10:49:06 +08:00
CC_CONSTRUCTOR_ACCESS:
2014-08-22 13:25:26 +08:00
MeshVertexData();
virtual ~MeshVertexData();
2014-07-29 10:49:06 +08:00
2014-08-22 13:25:26 +08:00
static const AABB& calculateAABB(const std::vector<float>& vertex, int stride, const std::vector<unsigned short>& index);
2014-07-29 10:49:06 +08:00
protected:
2014-08-22 13:25:26 +08:00
VertexData* _vertexData; //mesh vertex data
VertexBuffer* _vertexBuffer; // vertex buffer
Vector<MeshIndexData*> _indexs; //index data
std::vector<MeshVertexAttrib> _attribs;
2014-08-15 14:58:30 +08:00
2014-08-22 13:25:26 +08:00
int _vertexCount; //vertex count
2014-07-29 10:49:06 +08:00
};
NS_CC_END
2014-08-15 14:58:30 +08:00
#endif // __CCSUBMESH_H_