/**************************************************************************** Copyright (c) 2010-2011 cocos2d-x.org Copyright (c) 2009 Jason Booth 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 __CCRENDER_TEXTURE_H__ #define __CCRENDER_TEXTURE_H__ #include "CCData.h" #include "CCNode.h" #include "CCSprite.h" #include "kazmath/mat4.h" NS_CC_BEGIN 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 convienience, 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(); /** creates a RenderTexture object with width and height in Points and a pixel format, only RGB and RGBA formats are valid */ static CCRenderTexture * renderTextureWithWidthAndHeight(int w, int h, CCTexture2DPixelFormat eFormat); /** creates a RenderTexture object with width and height in Points, pixel format is RGBA8888 */ static CCRenderTexture * renderTextureWithWidthAndHeight(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); /** 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); /** end is key word of lua, use other name to export to lua. */ inline void endToLua(){ end();}; /** ends grabbing*/ // para bIsTOCacheTexture the parameter is only used for android to cache the texture void end(bool bIsTOCacheTexture = true); /** clears the texture with a color */ void clear(float r, float g, float b, float a); /* creates a new CCImage from with the texture's data. Caller is responsible for releasing it by calling delete. */ CCImage* newCCImage(); /** 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); protected: GLuint m_uFBO; GLint m_nOldFBO; CCTexture2D *m_pTexture; CCImage *m_pUITextureImage; GLenum m_ePixelFormat; }; NS_CC_END #endif //__CCRENDER_TEXTURE_H__