axmol/cocos/renderer/CCRenderer.h

273 lines
8.3 KiB
C++

/****************************************************************************
Copyright (c) 2013-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 __CC_RENDERER_H_
#define __CC_RENDERER_H_
#include <vector>
#include <stack>
#include "platform/CCPlatformMacros.h"
#include "renderer/CCRenderCommand.h"
#include "renderer/CCGLProgram.h"
#include "platform/CCGL.h"
/**
* @addtogroup support
* @{
*/
NS_CC_BEGIN
class EventListenerCustom;
class QuadCommand;
class TrianglesCommand;
class MeshCommand;
/** Class that knows how to sort `RenderCommand` objects.
Since the commands that have `z == 0` are "pushed back" in
the correct order, the only `RenderCommand` objects that need to be sorted,
are the ones that have `z < 0` and `z > 0`.
*/
class RenderQueue {
public:
/**
RenderCommand will be divided into Queue Groups.
*/
enum QUEUE_GROUP
{
/**Objects with globalZ smaller than 0.*/
GLOBALZ_NEG = 0,
/**Opaque 3D objects with 0 globalZ.*/
OPAQUE_3D = 1,
/**Transparent 3D objects with 0 globalZ.*/
TRANSPARENT_3D = 2,
/**2D objects with 0 globalZ.*/
GLOBALZ_ZERO = 3,
/**Objects with globalZ bigger than 0.*/
GLOBALZ_POS = 4,
QUEUE_COUNT = 5,
};
public:
/**Constructor.*/
RenderQueue()
{
clear();
}
/**Push a renderCommand into current renderqueue.*/
void push_back(RenderCommand* command);
/**Return the number of render commands.*/
ssize_t size() const;
/**Sort the render commands.*/
void sort();
/**Treat sorted commands as an array, access them one by one.*/
RenderCommand* operator[](ssize_t index) const;
/**Clear all rendered commands.*/
void clear();
/**Get a sub group of the render queue.*/
inline std::vector<RenderCommand*>& getSubQueue(QUEUE_GROUP group) { return _commands[group]; }
/**Get the number of render commands contained in a subqueue.*/
inline ssize_t getSubQueueSize(QUEUE_GROUP group) const { return _commands[group].size();}
/**Save the current DepthState, CullState, DepthWriteState render state.*/
void saveRenderState();
/**Restore the saved DepthState, CullState, DepthWriteState render state.*/
void restoreRenderState();
protected:
/**The commands in the render queue.*/
std::vector<std::vector<RenderCommand*>> _commands;
/**Cull state.*/
bool _isCullEnabled;
/**Depth test enable state.*/
bool _isDepthEnabled;
/**Depth buffer write state.*/
GLboolean _isDepthWrite;
};
//the struct is not used outside.
struct RenderStackElement
{
int renderQueueID;
ssize_t currentIndex;
};
class GroupCommandManager;
/* Class responsible for the rendering in.
Whenever possible prefer to use `QuadCommand` objects since the renderer will automatically batch them.
*/
class CC_DLL Renderer
{
public:
/**The max number of vertices in a vertex buffer object.*/
static const int VBO_SIZE = 65536;
/**The max numer of indices in a index buffer.*/
static const int INDEX_VBO_SIZE = VBO_SIZE * 6 / 4;
/**The rendercommands which can be batched will be saved into a list, this is the reversed size of this list.*/
static const int BATCH_QUADCOMMAND_RESEVER_SIZE = 64;
/**Reserved for material id, which means that the command could not be batched.*/
static const int MATERIAL_ID_DO_NOT_BATCH = 0;
/**Constructor.*/
Renderer();
/**Destructor.*/
~Renderer();
//TODO: manage GLView inside Render itself
void initGLView();
/** Adds a `RenderComamnd` into the renderer */
void addCommand(RenderCommand* command);
/** Adds a `RenderComamnd` into the renderer specifying a particular render queue ID */
void addCommand(RenderCommand* command, int renderQueue);
/** Pushes a group into the render queue */
void pushGroup(int renderQueueID);
/** Pops a group from the render queue */
void popGroup();
/** Creates a render queue and returns its Id */
int createRenderQueue();
/** Renders into the GLView all the queued `RenderCommand` objects */
void render();
/** Cleans all `RenderCommand`s in the queue */
void clean();
/** Clear GL buffer and screen */
void clear();
/** set color for clear screen */
void setClearColor(const Color4F& clearColor);
/* returns the number of drawn batches in the last frame */
ssize_t getDrawnBatches() const { return _drawnBatches; }
/* RenderCommands (except) QuadCommand should update this value */
void addDrawnBatches(ssize_t number) { _drawnBatches += number; };
/* returns the number of drawn triangles in the last frame */
ssize_t getDrawnVertices() const { return _drawnVertices; }
/* RenderCommands (except) QuadCommand should update this value */
void addDrawnVertices(ssize_t number) { _drawnVertices += number; };
/* clear draw stats */
void clearDrawStats() { _drawnBatches = _drawnVertices = 0; }
/**
* Enable/Disable depth test
* For 3D object depth test is enabled by default and can not be changed
* For 2D object depth test is disabled by default
*/
void setDepthTest(bool enable);
//This will not be used outside.
inline GroupCommandManager* getGroupCommandManager() const { return _groupCommandManager; };
/** returns whether or not a rectangle is visible or not */
bool checkVisibility(const Mat4& transform, const Size& size);
protected:
//Setup VBO or VAO based on OpenGL extensions
void setupBuffer();
void setupVBOAndVAO();
void setupVBO();
void mapBuffers();
void drawBatchedTriangles();
void drawBatchedQuads();
//Draw the previews queued quads and flush previous context
void flush();
void flush2D();
void flush3D();
void flushQuads();
void flushTriangles();
void processRenderCommand(RenderCommand* command);
void visitRenderQueue(RenderQueue& queue);
void fillVerticesAndIndices(const TrianglesCommand* cmd);
void fillQuads(const QuadCommand* cmd);
/* clear color set outside be used in setGLDefaultValues() */
Color4F _clearColor;
std::stack<int> _commandGroupStack;
std::vector<RenderQueue> _renderGroups;
uint32_t _lastMaterialID;
MeshCommand* _lastBatchedMeshCommand;
std::vector<TrianglesCommand*> _batchedCommands;
std::vector<QuadCommand*> _batchQuadCommands;
//for TrianglesCommand
V3F_C4B_T2F _verts[VBO_SIZE];
GLushort _indices[INDEX_VBO_SIZE];
GLuint _buffersVAO;
GLuint _buffersVBO[2]; //0: vertex 1: indices
int _filledVertex;
int _filledIndex;
//for QuadCommand
V3F_C4B_T2F _quadVerts[VBO_SIZE];
GLushort _quadIndices[INDEX_VBO_SIZE];
GLuint _quadVAO;
GLuint _quadbuffersVBO[2]; //0: vertex 1: indices
int _numberQuads;
bool _glViewAssigned;
// stats
ssize_t _drawnBatches;
ssize_t _drawnVertices;
//the flag for checking whether renderer is rendering
bool _isRendering;
bool _isDepthTestFor2D;
GroupCommandManager* _groupCommandManager;
#if CC_ENABLE_CACHE_TEXTURE_DATA
EventListenerCustom* _cacheTextureListener;
#endif
};
NS_CC_END
/**
end of support group
@}
*/
#endif //__CC_RENDERER_H_