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

103 lines
3.3 KiB
C
Raw Normal View History

2013-12-18 10:12:15 +08:00
/****************************************************************************
Copyright (c) 2013 cocos2d-x.org
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_
#include "RenderCommand.h"
2013-11-08 07:48:37 +08:00
#include "CCGLProgram.h"
#include "RenderCommandPool.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
static RenderCommandPool<QuadCommand>& getCommandPool() { return _commandPool; }
QuadCommand();
~QuadCommand();
2013-12-18 10:12:15 +08:00
2013-12-18 02:35:15 +08:00
void init(int viewport, int32_t depth, GLuint texutreID, GLProgram* shader, BlendFunc blendType, V3F_C4B_T2F_Quad* quad, ssize_t quadCount,
2013-12-06 11:04:01 +08:00
const kmMat4& mv);
2013-11-07 06:57:42 +08:00
// +----------+----------+-----+-----------------------------------+
// | | | | | |
2013-11-11 16:14:29 +08:00
// | ViewPort | Transluc | | Depth | Material ID |
// | 3 bits | 1 bit | | 24 bits | 24 bit2 |
2013-11-07 06:57:42 +08:00
// +----------+----------+-----+----------------+------------------+
virtual int64_t generateID();
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; }
2013-12-18 10:12:15 +08:00
inline int32_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; }
2013-12-18 10:12:15 +08:00
inline V3F_C4B_T2F_Quad* getQuad() const { return _quad; }
2013-12-18 10:12:15 +08:00
inline ssize_t getQuadCount() const { return _quadCount; }
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; }
virtual void releaseToCommandPool() override;
2013-11-07 06:57:42 +08:00
protected:
int32_t _materialID;
//Key Data
int _viewport; /// Which view port it belongs to
2013-11-07 06:57:42 +08:00
//TODO use material to determine if it's translucent
int32_t _depth;
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* _quad;
2013-12-18 02:35:15 +08:00
ssize_t _quadCount;
ssize_t _capacity;
2013-12-06 11:04:01 +08:00
friend class RenderCommandPool<QuadCommand>;
2013-12-18 10:12:15 +08:00
static RenderCommandPool<QuadCommand> _commandPool;
};
NS_CC_END
#endif //_CC_QUADCOMMAND_H_