mirror of
https://github.com/smallmain/cocos-enhance-kit.git
synced 2025-01-14 15:01:07 +00:00
155 lines
4.9 KiB
C++
155 lines
4.9 KiB
C++
/****************************************************************************
|
|
Copyright (c) 2018 Xiamen Yaji Software Co., Ltd.
|
|
|
|
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.
|
|
****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include <functional>
|
|
#include "../Macro.h"
|
|
#include "../Types.h"
|
|
#include "GraphicsHandle.h"
|
|
|
|
RENDERER_BEGIN
|
|
|
|
/**
|
|
* @addtogroup gfx
|
|
* @{
|
|
*/
|
|
|
|
class DeviceGraphics;
|
|
|
|
/**
|
|
* IndexBuffer manages the GL buffer for element indices.
|
|
* It creates, updates and destoies the GL buffer.
|
|
*/
|
|
class IndexBuffer final : public GraphicsHandle
|
|
{
|
|
public:
|
|
/**
|
|
* Creates an IndexBuffer object
|
|
* @param[in] device DeviceGraphics pointer.
|
|
* @param[in] format Index element format.
|
|
* @param[in] usage The usage pattern of the index buffer.
|
|
* @param[in] data Data pointer, could be nullptr, then nothing is updated to the buffer.
|
|
* @param[in] dataByteLength Data's byte length.
|
|
* @param[in] numIndices Count of indices.
|
|
*/
|
|
RENDERER_DEFINE_CREATE_METHOD_6(IndexBuffer, init, DeviceGraphics*, IndexFormat, Usage, const void*, size_t, uint32_t)
|
|
|
|
IndexBuffer();
|
|
virtual ~IndexBuffer();
|
|
|
|
/**
|
|
* Initializes the index buffer with necessary options.
|
|
* @param[in] device DeviceGraphics pointer.
|
|
* @param[in] format Index element format.
|
|
* @param[in] usage The usage pattern of the index buffer.
|
|
* @param[in] data Data pointer, could be nullptr, then nothing is updated to the buffer.
|
|
* @param[in] dataByteLength Data's byte length.
|
|
* @param[in] numIndices Count of indices.
|
|
*/
|
|
bool init(DeviceGraphics* device, IndexFormat format, Usage usage, const void* data, size_t dataByteLength, uint32_t numIndices);
|
|
/**
|
|
* Update data to the GL index buffer
|
|
* @param[in] offset Destination offset for filling buffer data.
|
|
* @param[in] data Data to be updated.
|
|
* @param[in] dataByteLength Data byte length to be updated.
|
|
*/
|
|
void update(uint32_t offset, const void* data, size_t dataByteLength);
|
|
|
|
/**
|
|
* Gets the count of indices.
|
|
*/
|
|
inline uint32_t getCount() const { return _numIndices; }
|
|
/**
|
|
* Sets the count of indices.
|
|
*/
|
|
inline void setCount(uint32_t numIndices) { _numIndices = numIndices; }
|
|
|
|
/**
|
|
* Gets the format of indices.
|
|
*/
|
|
inline IndexFormat getFormat() const { return _format; }
|
|
/**
|
|
* Sets the format of indices.
|
|
*/
|
|
inline void setFormat(IndexFormat format) { _format = format; }
|
|
|
|
/**
|
|
* Gets bytes occupied by each index.
|
|
*/
|
|
inline uint32_t getBytesPerIndex() const { return _bytesPerIndex; }
|
|
/**
|
|
* Sets bytes occupied by each index.
|
|
*/
|
|
inline void setBytesPerIndex(uint32_t bytesPerIndex) {_bytesPerIndex = bytesPerIndex; }
|
|
|
|
/**
|
|
* Gets usage pattern of the index buffer
|
|
*/
|
|
inline Usage getUsage() const { return _usage; }
|
|
/**
|
|
* Sets usage pattern of the index buffer
|
|
*/
|
|
inline void setUsage(Usage usage) { _usage = usage; }
|
|
|
|
/**
|
|
* Gets byte size of the index buffer
|
|
*/
|
|
inline uint32_t getBytes() const { return _bytes; }
|
|
|
|
using FetchDataCallback = std::function<uint8_t*(size_t*)>;
|
|
void setFetchDataCallback(const FetchDataCallback& cb) { _fetchDataCallback = cb; }
|
|
uint8_t* invokeFetchDataCallback(size_t* bytes) {
|
|
if (_fetchDataCallback == nullptr)
|
|
{
|
|
*bytes = 0;
|
|
return nullptr;
|
|
}
|
|
return _fetchDataCallback(bytes);
|
|
}
|
|
|
|
/**
|
|
* Destroies the index buffer
|
|
*/
|
|
void destroy();
|
|
|
|
private:
|
|
DeviceGraphics* _device;
|
|
IndexFormat _format;
|
|
Usage _usage;
|
|
uint32_t _numIndices;
|
|
uint32_t _bytesPerIndex;
|
|
uint32_t _bytes;
|
|
bool _needExpandDataStore = true;
|
|
|
|
FetchDataCallback _fetchDataCallback;
|
|
|
|
CC_DISALLOW_COPY_ASSIGN_AND_MOVE(IndexBuffer)
|
|
};
|
|
|
|
// end of gfx group
|
|
/// @}
|
|
|
|
RENDERER_END
|