CCRenderTexture

#ifndef __CCRENDER_TEXTURE_H__

#define __CCRENDER_TEXTURE_H__


#include "base_nodes/CCNode.h"

#include "sprite_nodes/CCSprite.h"

#include "kazmath/mat4.h"


NS_CC_BEGIN


/**

 * @addtogroup textures

 * @{

 */


typedef enum eImageFormat

{

    kCCImageFormatJPEG      = 0,

    kCCImageFormatPNG       = 1,

} tCCImageFormat;

/**

@brief CCRenderTexture is a generic rendering target. To render things into it,

simply construct a render target, call begin on it, call visit on any cocos

scenes or objects to render them, and call end. For convenience, render texture

adds a sprite as it's display child with the results, so you can simply add

the render texture to your scene and treat it like any other CocosNode.

There are also functions for saving the render texture to disk in PNG or JPG format.


@since v0.8.1

*/

class CC_DLL CCRenderTexture : public CCNode 

{

    /** The CCSprite being used.

    The sprite, by default, will use the following blending function: GL_ONE, GL_ONE_MINUS_SRC_ALPHA.

    The blending function can be changed in runtime by calling:

    - [[renderTexture sprite] setBlendFunc:(ccBlendFunc){GL_ONE, GL_ONE_MINUS_SRC_ALPHA}];

    */

    CC_PROPERTY(CCSprite*, m_pSprite, Sprite)

public:

    CCRenderTexture();

    virtual ~CCRenderTexture();

    

    virtual void visit();

    virtual void draw();


    /** initializes a RenderTexture object with width and height in Points and a pixel format( only RGB and RGBA formats are valid ) and depthStencil format*/

    static CCRenderTexture * create(int w ,int h, CCTexture2DPixelFormat eFormat, GLuint uDepthStencilFormat);


    /** creates a RenderTexture object with width and height in Points and a pixel format, only RGB and RGBA formats are valid */

    static CCRenderTexture * create(int w, int h, CCTexture2DPixelFormat eFormat);


    /** creates a RenderTexture object with width and height in Points, pixel format is RGBA8888 */

    static CCRenderTexture * create(int w, int h);


    /** initializes a RenderTexture object with width and height in Points and a pixel format, only RGB and RGBA formats are valid */

    bool initWithWidthAndHeight(int w, int h, CCTexture2DPixelFormat eFormat);


    /** initializes a RenderTexture object with width and height in Points and a pixel format( only RGB and RGBA formats are valid ) and depthStencil format*/

    bool initWithWidthAndHeight(int w, int h, CCTexture2DPixelFormat eFormat, GLuint uDepthStencilFormat);


    /** starts grabbing */

    void begin();


    /** starts rendering to the texture while clearing the texture first.

    This is more efficient then calling -clear first and then -begin */

    void beginWithClear(float r, float g, float b, float a);


    /** starts rendering to the texture while clearing the texture first.

     This is more efficient then calling -clear first and then -begin */

    void beginWithClear(float r, float g, float b, float a, float depthValue);


    /** starts rendering to the texture while clearing the texture first.

     This is more efficient then calling -clear first and then -begin */

    void beginWithClear(float r, float g, float b, float a, float depthValue, int stencilValue);


    /** end is key word of lua, use other name to export to lua. */

    inline void endToLua(){ end();};


    /** ends grabbing*/

    void end();


    /** clears the texture with a color */

    void clear(float r, float g, float b, float a);


    /** clears the texture with a specified depth value */

    void clearDepth(float depthValue);


    /** clears the texture with a specified stencil value */

    void clearStencil(int stencilValue);

    /* creates a new CCImage from with the texture's data.

       Caller is responsible for releasing it by calling delete.

     */

    CCImage* newCCImage(bool flipImage = true);


    /** saves the texture into a file using JPEG format. The file will be saved in the Documents folder.

        Returns YES if the operation is successful.

     */

    bool saveToFile(const char *szFilePath);


    /** saves the texture into a file. The format could be JPG or PNG. The file will be saved in the Documents folder.

        Returns YES if the operation is successful.

     */

    bool saveToFile(const char *name, tCCImageFormat format);

    

    /** Listen "come to background" message, and save render texture.

     It only has effect on Android.

     */

    void listenToBackground(CCObject *obj);

    

    /** Listen "come to foreground" message and restore the frame buffer object

     It only has effect on Android.

     */

    void listenToForeground(CCObject *obj);

    

    /** Valid flags: GL_COLOR_BUFFER_BIT, GL_DEPTH_BUFFER_BIT, GL_STENCIL_BUFFER_BIT. They can be OR'ed. Valid when "autoDraw is YES. */

    unsigned int getClearFlags() const;

    void setClearFlags(unsigned int uClearFlags);

    

    /** Clear color value. Valid only when "autoDraw" is true. */

    const ccColor4F& getClearColor() const;

    void setClearColor(const ccColor4F &clearColor);

    

    /** Value for clearDepth. Valid only when autoDraw is true. */

    float getClearDepth() const;

    void setClearDepth(float fClearDepth);

    

    /** Value for clear Stencil. Valid only when autoDraw is true */

    int getClearStencil() const;

    void setClearStencil(float fClearStencil);

    

    /** When enabled, it will render its children into the texture automatically. Disabled by default for compatiblity reasons.

     Will be enabled in the future.

     */

    bool isAutoDraw() const;

    void setAutoDraw(bool bAutoDraw);


private:

    void beginWithClear(float r, float g, float b, float a, float depthValue, int stencilValue, GLbitfield flags);


protected:

    GLuint       m_uFBO;

    GLuint       m_uDepthRenderBufffer;

    GLint        m_nOldFBO;

    CCTexture2D* m_pTexture;

    CCTexture2D* m_pTextureCopy;    // a copy of m_pTexture

    CCImage*     m_pUITextureImage;

    GLenum       m_ePixelFormat;

    

    // code for "auto" update

    GLbitfield   m_uClearFlags;

    ccColor4F    m_sClearColor;

    GLclampf     m_fClearDepth;

    GLint        m_nClearStencil;

    bool         m_bAutoDraw;

};


// end of textures group

/// @}


NS_CC_END


#endif //__CCRENDER_TEXTURE_H__


转载于:https://www.cnblogs.com/sssssnian/p/3748643.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值