2013-12-18 10:12:15 +08:00
|
|
|
/****************************************************************************
|
2014-01-07 11:25:07 +08:00
|
|
|
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
2013-12-18 10:12:15 +08:00
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
2013-11-07 06:24:56 +08:00
|
|
|
|
|
|
|
#ifndef _CC_QUADCOMMAND_H_
|
|
|
|
#define _CC_QUADCOMMAND_H_
|
|
|
|
|
2014-05-13 10:12:56 +08:00
|
|
|
#include "renderer/CCRenderCommand.h"
|
|
|
|
#include "renderer/CCGLProgramState.h"
|
2013-11-07 06:24:56 +08:00
|
|
|
|
2015-03-27 11:54:40 +08:00
|
|
|
/**
|
|
|
|
* @addtogroup support
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2013-11-07 06:24:56 +08:00
|
|
|
NS_CC_BEGIN
|
2014-08-27 18:39:49 +08:00
|
|
|
|
2015-03-18 20:12:34 +08:00
|
|
|
/**
|
|
|
|
Command used to render one or more Quads, similar to TrianglesCommand.
|
|
|
|
Every QuadCommand will have generate material ID by give textureID, glProgramState, Blend function
|
|
|
|
if the material id is the same, these QuadCommands could be batched to save draw call.
|
|
|
|
*/
|
2014-10-16 14:15:29 +08:00
|
|
|
class CC_DLL QuadCommand : public RenderCommand
|
2014-08-27 18:39:49 +08:00
|
|
|
{
|
|
|
|
public:
|
2015-03-18 20:12:34 +08:00
|
|
|
/**Constructor.*/
|
2014-08-27 18:39:49 +08:00
|
|
|
QuadCommand();
|
2015-03-18 20:12:34 +08:00
|
|
|
/**Destructor.*/
|
2014-08-27 18:39:49 +08:00
|
|
|
~QuadCommand();
|
2014-10-16 14:15:29 +08:00
|
|
|
|
2015-03-18 20:12:34 +08:00
|
|
|
/** Initializes the command.
|
|
|
|
@param globalOrder GlobalZOrder of the command.
|
|
|
|
@param textureID The openGL handle of the used texture.
|
2015-03-27 11:03:21 +08:00
|
|
|
@param shader The specified glProgram and its uniform.
|
2015-03-18 20:12:34 +08:00
|
|
|
@param blendType Blend function for the command.
|
|
|
|
@param quads Rendered quads for the command.
|
|
|
|
@param quadCount The number of quads when rendering.
|
|
|
|
@param mv ModelView matrix for the command.
|
|
|
|
@param flags to indicate that the command is using 3D rendering or not.
|
|
|
|
*/
|
2015-01-16 06:00:49 +08:00
|
|
|
void init(float globalOrder, GLuint textureID, GLProgramState* shader, const BlendFunc& blendType, V3F_C4B_T2F_Quad* quads, ssize_t quadCount,
|
|
|
|
const Mat4& mv, uint32_t flags);
|
2015-05-06 04:07:32 +08:00
|
|
|
|
2015-03-18 20:12:34 +08:00
|
|
|
/**Deprecated function, the params is similar as the upper init function, with flags equals 0.*/
|
2015-01-16 06:00:49 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE void init(float globalOrder, GLuint textureID, GLProgramState* shader, const BlendFunc& blendType, V3F_C4B_T2F_Quad* quads, ssize_t quadCount,
|
2014-08-27 18:39:49 +08:00
|
|
|
const Mat4& mv);
|
2015-03-18 20:12:34 +08:00
|
|
|
/**Apply the texture, shaders, programs, blend functions to GPU pipeline.*/
|
2014-10-16 14:15:29 +08:00
|
|
|
void useMaterial() const;
|
2015-03-18 20:12:34 +08:00
|
|
|
/**Get the material id of command.*/
|
2014-10-16 14:15:29 +08:00
|
|
|
inline uint32_t getMaterialID() const { return _materialID; }
|
2015-03-18 20:12:34 +08:00
|
|
|
/**Get the openGL texture handle.*/
|
2014-10-16 14:15:29 +08:00
|
|
|
inline GLuint getTextureID() const { return _textureID; }
|
2015-03-18 20:12:34 +08:00
|
|
|
/**Get the pointer of the rendered quads.*/
|
2014-10-16 14:15:29 +08:00
|
|
|
inline V3F_C4B_T2F_Quad* getQuads() const { return _quads; }
|
2015-03-18 20:12:34 +08:00
|
|
|
/**Get the number of quads for rendering.*/
|
2014-08-27 18:39:49 +08:00
|
|
|
inline ssize_t getQuadCount() const { return _quadsCount; }
|
2015-03-18 20:12:34 +08:00
|
|
|
/**Get the glprogramstate.*/
|
2014-10-16 14:15:29 +08:00
|
|
|
inline GLProgramState* getGLProgramState() const { return _glProgramState; }
|
2015-03-18 20:12:34 +08:00
|
|
|
/**Get the blend function.*/
|
2014-10-16 14:15:29 +08:00
|
|
|
inline BlendFunc getBlendType() const { return _blendType; }
|
2015-03-18 20:12:34 +08:00
|
|
|
/**Get the model view matrix.*/
|
2014-10-16 14:15:29 +08:00
|
|
|
inline const Mat4& getModelView() const { return _mv; }
|
|
|
|
|
2014-08-27 18:39:49 +08:00
|
|
|
protected:
|
2015-03-18 20:12:34 +08:00
|
|
|
/**Generate the material ID by textureID, glProgramState, and blend function.*/
|
2014-10-16 14:15:29 +08:00
|
|
|
void generateMaterialID();
|
|
|
|
|
2015-03-18 20:12:34 +08:00
|
|
|
/**Generated material id.*/
|
2014-10-16 14:15:29 +08:00
|
|
|
uint32_t _materialID;
|
2015-03-18 20:12:34 +08:00
|
|
|
/**OpenGL handle for texture.*/
|
2014-10-16 14:15:29 +08:00
|
|
|
GLuint _textureID;
|
2015-03-18 20:12:34 +08:00
|
|
|
/**GLprogramstate for the commmand. encapsulate shaders and uniforms.*/
|
2014-10-16 14:15:29 +08:00
|
|
|
GLProgramState* _glProgramState;
|
2015-03-18 20:12:34 +08:00
|
|
|
/**Blend function when rendering the triangles.*/
|
2014-10-16 14:15:29 +08:00
|
|
|
BlendFunc _blendType;
|
2015-03-18 20:12:34 +08:00
|
|
|
/**The pointer to the rendered quads.*/
|
2014-01-16 06:35:26 +08:00
|
|
|
V3F_C4B_T2F_Quad* _quads;
|
2015-03-18 20:12:34 +08:00
|
|
|
/**The number of quads for rendering.*/
|
2014-01-16 06:35:26 +08:00
|
|
|
ssize_t _quadsCount;
|
2015-03-18 20:12:34 +08:00
|
|
|
/**Model view matrix when rendering the triangles.*/
|
2014-10-16 14:15:29 +08:00
|
|
|
Mat4 _mv;
|
2014-06-24 11:04:17 +08:00
|
|
|
};
|
|
|
|
|
2013-11-07 06:24:56 +08:00
|
|
|
NS_CC_END
|
|
|
|
|
2015-03-27 11:54:40 +08:00
|
|
|
/**
|
|
|
|
end of support group
|
|
|
|
@}
|
|
|
|
*/
|
2014-10-16 14:56:17 +08:00
|
|
|
#endif //_CC_QUADCOMMAND_H_
|