axmol/cocos/3d/CCSubMesh.h

116 lines
3.5 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"
#include "3d/3dExport.h"
2014-07-29 10:49:06 +08:00
NS_CC_BEGIN
/** Defines supported index formats. */
enum class IndexFormat
{
INDEX8 = GL_UNSIGNED_BYTE,
INDEX16 = GL_UNSIGNED_SHORT,
};
/** Defines supported primitive types. */
enum class PrimitiveType
{
TRIANGLES = GL_TRIANGLES,
TRIANGLE_STRIP = GL_TRIANGLE_STRIP,
LINES = GL_LINES,
LINE_STRIP = GL_LINE_STRIP,
POINTS = GL_POINTS
};
2014-08-15 14:58:30 +08:00
class Mesh;
2014-07-29 10:49:06 +08:00
/**
* SubMesh: Defines the way the mesh's vertices how to be connected together.
*/
class CC_3D_DLL SubMesh : public Ref
2014-07-29 10:49:06 +08:00
{
friend class Mesh;
2014-08-18 17:02:13 +08:00
friend class SubMeshState;
2014-07-29 10:49:06 +08:00
public:
/**create submesh from primitivetype indexformat and indices*/
static SubMesh* create(PrimitiveType primitivetype, IndexFormat indexformat, const std::vector<unsigned short>& indices);
2014-08-15 18:21:58 +08:00
static SubMesh* create(const std::string& submeshId, Mesh* mesh, PrimitiveType primitivetype, IndexFormat indexformat, const std::vector<unsigned short>& indices);
2014-08-15 14:58:30 +08:00
2014-07-29 10:49:06 +08:00
/** get primitive type*/
PrimitiveType getPrimitiveType() const { return _primitiveType; }
/**get index count*/
ssize_t getIndexCount() const { return _indexCount; }
/**get index format*/
IndexFormat getIndexFormat() const { return _indexFormat; }
/**get index buffer*/
GLuint getIndexBuffer() const {return _indexBuffer; }
2014-08-15 14:58:30 +08:00
/** get mesh */
Mesh* getMesh() const { return _mesh; }
2014-08-15 18:21:58 +08:00
/** get submesh id */
const std::string& getSubMeshId() const { return _id; }
2014-07-29 10:49:06 +08:00
CC_CONSTRUCTOR_ACCESS:
SubMesh();
virtual ~SubMesh();
/**build buffer*/
void buildBuffer(const std::vector<unsigned short>& indices);
/**free buffer*/
void cleanAndFreeBuffers();
2014-08-18 17:02:13 +08:00
const AABB& getAABB() const { return _aabb; }
2014-07-29 10:49:06 +08:00
protected:
PrimitiveType _primitiveType;
IndexFormat _indexFormat;
GLuint _indexBuffer;
ssize_t _indexCount;
2014-08-15 14:58:30 +08:00
2014-08-15 18:21:58 +08:00
Mesh* _mesh; //parent mesh, weak ref
std::string _id; //submeshid
2014-08-18 17:02:13 +08:00
AABB _aabb; //original aabb of the submesh
2014-07-29 10:49:06 +08:00
};
NS_CC_END
2014-08-15 14:58:30 +08:00
#endif // __CCSUBMESH_H_