2014-07-25 09:58:24 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
2014-08-07 15:53:20 +08:00
|
|
|
|
2014-07-25 09:58:24 +08:00
|
|
|
http://www.cocos2d-x.org
|
2014-08-07 15:53:20 +08:00
|
|
|
|
2014-07-25 09:58:24 +08:00
|
|
|
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:
|
2014-08-07 15:53:20 +08:00
|
|
|
|
2014-07-25 09:58:24 +08:00
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
2014-08-07 15:53:20 +08:00
|
|
|
|
2014-07-25 09:58:24 +08:00
|
|
|
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 __CC_VERTEX_INDEX_DATA_H__
|
|
|
|
#define __CC_VERTEX_INDEX_DATA_H__
|
|
|
|
|
|
|
|
#include "base/CCRef.h"
|
|
|
|
#include "renderer/CCVertexIndexBuffer.h"
|
|
|
|
#include "base/CCMap.h"
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
|
|
|
class VertexBuffer;
|
|
|
|
|
2014-08-12 11:56:21 +08:00
|
|
|
struct CC_DLL VertexStreamAttribute
|
2014-07-25 09:58:24 +08:00
|
|
|
{
|
|
|
|
VertexStreamAttribute()
|
2014-08-04 16:08:54 +08:00
|
|
|
: _offset(0),_semantic(0),_type(0),_size(0), _normalize(false)
|
2014-07-25 09:58:24 +08:00
|
|
|
{
|
|
|
|
}
|
2014-08-04 16:08:54 +08:00
|
|
|
|
|
|
|
VertexStreamAttribute(int offset, int semantic, int type, int size)
|
|
|
|
: _offset(offset),_semantic(semantic),_type(type),_size(size), _normalize(false)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
VertexStreamAttribute(int offset, int semantic, int type, int size, bool normalize)
|
|
|
|
: _offset(offset),_semantic(semantic),_type(type),_size(size), _normalize(normalize)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool _normalize;
|
2014-07-25 09:58:24 +08:00
|
|
|
int _offset;
|
2014-08-04 16:08:54 +08:00
|
|
|
int _semantic;
|
|
|
|
int _type;
|
|
|
|
int _size;
|
2014-07-25 09:58:24 +08:00
|
|
|
};
|
|
|
|
|
2014-08-12 11:56:21 +08:00
|
|
|
class CC_DLL VertexData : public Ref
|
2014-07-25 09:58:24 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
static VertexData* create();
|
|
|
|
|
2014-07-25 11:58:54 +08:00
|
|
|
size_t getVertexStreamCount() const;
|
2014-08-01 14:46:35 +08:00
|
|
|
bool setStream(VertexBuffer* buffer, const VertexStreamAttribute& stream);
|
2014-08-04 16:08:54 +08:00
|
|
|
void removeStream(int semantic);
|
|
|
|
const VertexStreamAttribute* getStreamAttribute(int semantic) const;
|
|
|
|
VertexStreamAttribute* getStreamAttribute(int semantic);
|
2014-07-25 09:58:24 +08:00
|
|
|
|
2014-08-04 16:08:54 +08:00
|
|
|
VertexBuffer* getStreamBuffer(int semantic) const;
|
2014-07-25 09:58:24 +08:00
|
|
|
|
2014-08-01 14:46:35 +08:00
|
|
|
void use();
|
2014-07-25 09:58:24 +08:00
|
|
|
protected:
|
|
|
|
VertexData();
|
|
|
|
virtual ~VertexData();
|
|
|
|
protected:
|
2014-07-25 11:58:54 +08:00
|
|
|
struct BufferAttribute
|
|
|
|
{
|
|
|
|
VertexBuffer* _buffer;
|
|
|
|
VertexStreamAttribute _stream;
|
|
|
|
};
|
|
|
|
|
2014-08-04 16:08:54 +08:00
|
|
|
std::map<int, BufferAttribute> _vertexStreams;
|
2014-07-25 11:58:54 +08:00
|
|
|
};
|
|
|
|
|
2014-07-25 09:58:24 +08:00
|
|
|
NS_CC_END
|
|
|
|
|
|
|
|
#endif //__CC_VERTEX_INDEX_DATA_H__
|