axmol/cocos/2d/renderer/CCQuadCommand.h

86 lines
2.6 KiB
C
Raw Normal View History

2013-12-18 10:12:15 +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.
****************************************************************************/
#ifndef _CC_QUADCOMMAND_H_
#define _CC_QUADCOMMAND_H_
2013-12-18 10:41:09 +08:00
#include "CCRenderCommand.h"
2013-11-08 07:48:37 +08:00
#include "CCGLProgram.h"
2013-12-18 10:41:09 +08:00
#include "CCRenderCommandPool.h"
#include "kazmath/kazmath.h"
NS_CC_BEGIN
2013-11-20 03:06:26 +08:00
#define CC_NO_TEXTURE 0
class QuadCommand : public RenderCommand
{
2013-12-06 11:04:01 +08:00
public:
2013-12-18 10:12:15 +08:00
QuadCommand();
~QuadCommand();
2013-12-18 10:12:15 +08:00
void init(float depth, GLuint texutreID, GLProgram* shader, BlendFunc blendType, V3F_C4B_T2F_Quad* quads, ssize_t quadCount,
2013-12-06 11:04:01 +08:00
const kmMat4& mv);
2013-11-07 06:57:42 +08:00
2013-11-08 07:48:37 +08:00
void useMaterial();
2013-11-07 06:57:42 +08:00
//TODO use material to decide if it is translucent
2013-12-18 10:12:15 +08:00
inline bool isTranslucent() const { return true; }
void generateMaterialID();
inline uint32_t getMaterialID() const { return _materialID; }
2013-11-07 06:57:42 +08:00
2013-12-18 10:12:15 +08:00
inline GLuint getTextureID() const { return _textureID; }
inline V3F_C4B_T2F_Quad* getQuads() const { return _quads; }
inline ssize_t getQuadCount() const { return _quadsCount; }
2013-11-11 16:14:29 +08:00
2013-12-18 10:12:15 +08:00
inline GLProgram* getShader() const { return _shader; }
2013-12-18 10:12:15 +08:00
inline BlendFunc getBlendType() const { return _blendType; }
inline const kmMat4& getModelView() const { return _mv; }
2013-11-07 06:57:42 +08:00
protected:
uint32_t _materialID;
2013-11-07 06:57:42 +08:00
//Maternal
GLuint _textureID;
2013-11-08 07:48:37 +08:00
GLProgram* _shader;
// GLuint _shaderID;
2013-11-07 06:57:42 +08:00
BlendFunc _blendType;
V3F_C4B_T2F_Quad* _quads;
ssize_t _quadsCount;
kmMat4 _mv;
};
NS_CC_END
#endif //_CC_QUADCOMMAND_H_