2010-11-12 17:29:14 +08:00
/****************************************************************************
2011-03-19 14:45:51 +08:00
Copyright ( c ) 2009 Jason Booth
2014-01-07 11:25:07 +08:00
Copyright ( c ) 2010 - 2012 cocos2d - x . org
Copyright ( c ) 2013 - 2014 Chukong Technologies Inc .
2010-11-12 17:29:14 +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 .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2011-06-08 10:02:07 +08:00
# include "CCConfiguration.h"
2013-10-14 14:01:00 +08:00
# include "CCRenderTexture.h"
2010-11-12 17:29:14 +08:00
# include "CCDirector.h"
2012-06-19 16:20:46 +08:00
# include "platform/CCImage.h"
2013-10-14 14:01:00 +08:00
# include "CCGLProgram.h"
# include "ccGLStateCache.h"
2012-03-14 14:55:17 +08:00
# include "CCConfiguration.h"
2013-10-14 14:01:00 +08:00
# include "ccUtils.h"
# include "CCTextureCache.h"
2012-06-19 16:20:46 +08:00
# include "platform/CCFileUtils.h"
2011-03-02 17:05:22 +08:00
# include "CCGL.h"
2012-06-14 18:37:57 +08:00
# include "CCEventType.h"
2013-10-14 14:01:00 +08:00
# include "CCGrid.h"
2013-12-23 17:13:06 +08:00
2014-01-17 13:35:58 +08:00
# include "renderer/CCRenderer.h"
# include "renderer/CCGroupCommand.h"
# include "renderer/CCCustomCommand.h"
2013-12-23 17:13:06 +08:00
2012-04-19 14:35:52 +08:00
// extern
2012-03-14 14:55:17 +08:00
# include "kazmath/GL/matrix.h"
2013-12-31 10:54:37 +08:00
# include "CCEventListenerCustom.h"
# include "CCEventDispatcher.h"
2010-11-12 17:29:14 +08:00
2012-03-14 14:55:17 +08:00
NS_CC_BEGIN
2010-08-18 15:15:02 +08:00
2013-06-20 14:13:12 +08:00
// implementation RenderTexture
RenderTexture : : RenderTexture ( )
2013-07-29 14:07:57 +08:00
: _FBO ( 0 )
2013-06-15 14:03:30 +08:00
, _depthRenderBufffer ( 0 )
, _oldFBO ( 0 )
, _texture ( 0 )
, _textureCopy ( 0 )
2013-12-18 17:47:20 +08:00
, _UITextureImage ( nullptr )
2013-07-26 04:36:19 +08:00
, _pixelFormat ( Texture2D : : PixelFormat : : RGBA8888 )
2013-06-15 14:03:30 +08:00
, _clearFlags ( 0 )
2013-07-05 16:49:22 +08:00
, _clearColor ( Color4F ( 0 , 0 , 0 , 0 ) )
2013-06-15 14:03:30 +08:00
, _clearDepth ( 0.0f )
, _clearStencil ( 0 )
, _autoDraw ( false )
2013-12-18 17:47:20 +08:00
, _sprite ( nullptr )
2014-03-04 10:41:03 +08:00
, _keepMatrix ( false )
, _rtTextureRect ( Rect : : ZERO )
, _fullRect ( Rect : : ZERO )
, _fullviewPort ( Rect : : ZERO )
2010-12-25 15:09:42 +08:00
{
2012-11-30 07:04:07 +08:00
# if CC_ENABLE_CACHE_TEXTURE_DATA
2012-06-14 18:37:57 +08:00
// Listen this event to save render texture before come to background.
// Then it can be restored after coming to foreground on Android.
2013-12-31 10:54:37 +08:00
auto toBackgroundListener = EventListenerCustom : : create ( EVENT_COME_TO_BACKGROUND , CC_CALLBACK_1 ( RenderTexture : : listenToBackground , this ) ) ;
_eventDispatcher - > addEventListenerWithSceneGraphPriority ( toBackgroundListener , this ) ;
auto toForegroundListener = EventListenerCustom : : create ( EVENT_COME_TO_FOREGROUND , CC_CALLBACK_1 ( RenderTexture : : listenToForeground , this ) ) ;
_eventDispatcher - > addEventListenerWithSceneGraphPriority ( toForegroundListener , this ) ;
2012-11-30 07:04:07 +08:00
# endif
2010-12-25 15:09:42 +08:00
}
2010-08-18 15:15:02 +08:00
2013-06-20 14:13:12 +08:00
RenderTexture : : ~ RenderTexture ( )
2010-12-25 15:09:42 +08:00
{
2013-06-15 14:03:30 +08:00
CC_SAFE_RELEASE ( _sprite ) ;
CC_SAFE_RELEASE ( _textureCopy ) ;
2012-10-10 11:36:02 +08:00
2013-06-15 14:03:30 +08:00
glDeleteFramebuffers ( 1 , & _FBO ) ;
if ( _depthRenderBufffer )
2012-06-12 01:43:07 +08:00
{
2013-06-15 14:03:30 +08:00
glDeleteRenderbuffers ( 1 , & _depthRenderBufffer ) ;
2012-06-12 01:43:07 +08:00
}
2013-06-15 14:03:30 +08:00
CC_SAFE_DELETE ( _UITextureImage ) ;
2012-06-14 18:37:57 +08:00
}
2013-12-31 10:54:37 +08:00
void RenderTexture : : listenToBackground ( EventCustom * event )
2012-06-14 18:37:57 +08:00
{
# if CC_ENABLE_CACHE_TEXTURE_DATA
2013-06-15 14:03:30 +08:00
CC_SAFE_DELETE ( _UITextureImage ) ;
2012-06-14 18:37:57 +08:00
// to get the rendered texture data
2013-06-20 14:13:12 +08:00
_UITextureImage = newImage ( false ) ;
2012-06-14 18:37:57 +08:00
2013-06-15 14:03:30 +08:00
if ( _UITextureImage )
2012-06-14 18:37:57 +08:00
{
2013-06-20 14:13:12 +08:00
const Size & s = _texture - > getContentSizeInPixels ( ) ;
2013-11-08 16:47:33 +08:00
VolatileTextureMgr : : addDataTexture ( _texture , _UITextureImage - > getData ( ) , s . width * s . height * 4 , Texture2D : : PixelFormat : : RGBA8888 , s ) ;
2012-11-30 07:04:07 +08:00
2013-06-15 14:03:30 +08:00
if ( _textureCopy )
2012-11-30 07:04:07 +08:00
{
2013-11-08 16:47:33 +08:00
VolatileTextureMgr : : addDataTexture ( _textureCopy , _UITextureImage - > getData ( ) , s . width * s . height * 4 , Texture2D : : PixelFormat : : RGBA8888 , s ) ;
2012-11-30 07:04:07 +08:00
}
}
2012-06-14 18:37:57 +08:00
else
{
CCLOG ( " Cache rendertexture failed! " ) ;
}
2012-11-30 07:04:07 +08:00
2013-06-15 14:03:30 +08:00
glDeleteFramebuffers ( 1 , & _FBO ) ;
_FBO = 0 ;
2012-11-30 07:04:07 +08:00
# endif
}
2013-12-31 10:54:37 +08:00
void RenderTexture : : listenToForeground ( EventCustom * event )
2012-11-30 07:04:07 +08:00
{
# if CC_ENABLE_CACHE_TEXTURE_DATA
// -- regenerate frame buffer object and attach the texture
2013-06-15 14:03:30 +08:00
glGetIntegerv ( GL_FRAMEBUFFER_BINDING , & _oldFBO ) ;
2012-11-30 07:04:07 +08:00
2013-06-15 14:03:30 +08:00
glGenFramebuffers ( 1 , & _FBO ) ;
glBindFramebuffer ( GL_FRAMEBUFFER , _FBO ) ;
2012-11-30 07:04:07 +08:00
2013-06-15 14:03:30 +08:00
_texture - > setAliasTexParameters ( ) ;
2012-11-30 07:04:07 +08:00
2013-06-15 14:03:30 +08:00
if ( _textureCopy )
2012-11-30 07:04:07 +08:00
{
2013-06-15 14:03:30 +08:00
_textureCopy - > setAliasTexParameters ( ) ;
2012-11-30 07:04:07 +08:00
}
2013-06-15 14:03:30 +08:00
glFramebufferTexture2D ( GL_FRAMEBUFFER , GL_COLOR_ATTACHMENT0 , GL_TEXTURE_2D , _texture - > getName ( ) , 0 ) ;
glBindFramebuffer ( GL_FRAMEBUFFER , _oldFBO ) ;
2012-06-14 18:37:57 +08:00
# endif
2010-12-25 15:09:42 +08:00
}
2013-07-25 19:52:44 +08:00
RenderTexture * RenderTexture : : create ( int w , int h , Texture2D : : PixelFormat eFormat )
2010-12-25 15:09:42 +08:00
{
2013-12-18 17:47:20 +08:00
RenderTexture * ret = new RenderTexture ( ) ;
2010-12-25 15:09:42 +08:00
2013-12-18 17:47:20 +08:00
if ( ret & & ret - > initWithWidthAndHeight ( w , h , eFormat ) )
2010-12-25 15:09:42 +08:00
{
2013-12-18 17:47:20 +08:00
ret - > autorelease ( ) ;
return ret ;
2010-12-25 15:09:42 +08:00
}
2013-12-18 17:47:20 +08:00
CC_SAFE_DELETE ( ret ) ;
return nullptr ;
2010-12-25 15:09:42 +08:00
}
2013-07-25 19:52:44 +08:00
RenderTexture * RenderTexture : : create ( int w , int h , Texture2D : : PixelFormat eFormat , GLuint uDepthStencilFormat )
2012-06-12 01:43:07 +08:00
{
2013-12-18 17:47:20 +08:00
RenderTexture * ret = new RenderTexture ( ) ;
2012-06-12 01:43:07 +08:00
2013-12-18 17:47:20 +08:00
if ( ret & & ret - > initWithWidthAndHeight ( w , h , eFormat , uDepthStencilFormat ) )
2012-06-12 01:43:07 +08:00
{
2013-12-18 17:47:20 +08:00
ret - > autorelease ( ) ;
return ret ;
2012-06-12 01:43:07 +08:00
}
2013-12-18 17:47:20 +08:00
CC_SAFE_DELETE ( ret ) ;
return nullptr ;
2012-06-12 01:43:07 +08:00
}
2013-06-20 14:13:12 +08:00
RenderTexture * RenderTexture : : create ( int w , int h )
2010-12-25 15:09:42 +08:00
{
2013-12-18 17:47:20 +08:00
RenderTexture * ret = new RenderTexture ( ) ;
2010-12-25 15:09:42 +08:00
2013-12-18 17:47:20 +08:00
if ( ret & & ret - > initWithWidthAndHeight ( w , h , Texture2D : : PixelFormat : : RGBA8888 , 0 ) )
2012-04-19 14:35:52 +08:00
{
2013-12-18 17:47:20 +08:00
ret - > autorelease ( ) ;
return ret ;
2012-04-19 14:35:52 +08:00
}
2013-12-18 17:47:20 +08:00
CC_SAFE_DELETE ( ret ) ;
return nullptr ;
2010-12-25 15:09:42 +08:00
}
2011-06-03 15:22:50 +08:00
2013-07-25 19:52:44 +08:00
bool RenderTexture : : initWithWidthAndHeight ( int w , int h , Texture2D : : PixelFormat eFormat )
2012-06-12 01:43:07 +08:00
{
return initWithWidthAndHeight ( w , h , eFormat , 0 ) ;
}
2013-12-18 17:47:20 +08:00
bool RenderTexture : : initWithWidthAndHeight ( int w , int h , Texture2D : : PixelFormat format , GLuint depthStencilFormat )
2010-12-25 15:09:42 +08:00
{
2013-12-18 17:47:20 +08:00
CCASSERT ( format ! = Texture2D : : PixelFormat : : A8 , " only RGB and RGBA formats are valid for a render texture " ) ;
2012-03-22 16:36:03 +08:00
2013-12-18 17:47:20 +08:00
bool ret = false ;
void * data = nullptr ;
2010-12-25 15:09:42 +08:00
do
{
2014-03-04 10:41:03 +08:00
_fullRect = _rtTextureRect = Rect ( 0 , 0 , w , h ) ;
Size size = Director : : getInstance ( ) - > getWinSizeInPixels ( ) ;
_fullviewPort = Rect ( 0 , 0 , size . width , size . height ) ;
2012-10-13 18:19:37 +08:00
w = ( int ) ( w * CC_CONTENT_SCALE_FACTOR ( ) ) ;
h = ( int ) ( h * CC_CONTENT_SCALE_FACTOR ( ) ) ;
2010-08-18 15:15:02 +08:00
2013-06-15 14:03:30 +08:00
glGetIntegerv ( GL_FRAMEBUFFER_BINDING , & _oldFBO ) ;
2010-08-18 15:15:02 +08:00
2010-12-25 15:09:42 +08:00
// textures must be power of two squared
2013-12-05 17:19:01 +08:00
int powW = 0 ;
int powH = 0 ;
2012-04-19 14:35:52 +08:00
2013-07-12 06:24:23 +08:00
if ( Configuration : : getInstance ( ) - > supportsNPOT ( ) )
2012-10-10 11:36:02 +08:00
{
2012-04-19 14:35:52 +08:00
powW = w ;
powH = h ;
2012-10-10 11:36:02 +08:00
}
else
{
2012-04-19 14:35:52 +08:00
powW = ccNextPOT ( w ) ;
powH = ccNextPOT ( h ) ;
}
2010-08-18 15:15:02 +08:00
2013-12-05 17:19:01 +08:00
auto dataLen = powW * powH * 4 ;
2013-07-25 21:35:00 +08:00
data = malloc ( dataLen ) ;
2011-03-07 17:11:57 +08:00
CC_BREAK_IF ( ! data ) ;
2010-08-18 15:15:02 +08:00
2013-07-25 21:35:00 +08:00
memset ( data , 0 , dataLen ) ;
2013-12-18 17:47:20 +08:00
_pixelFormat = format ;
2010-08-18 15:15:02 +08:00
2013-06-20 14:13:12 +08:00
_texture = new Texture2D ( ) ;
2013-06-15 14:03:30 +08:00
if ( _texture )
2012-10-10 11:36:02 +08:00
{
2013-07-27 22:06:30 +08:00
_texture - > initWithData ( data , dataLen , ( Texture2D : : PixelFormat ) _pixelFormat , powW , powH , Size ( ( float ) w , ( float ) h ) ) ;
2012-10-10 11:36:02 +08:00
}
else
{
break ;
2012-08-21 07:40:26 +08:00
}
2012-06-12 01:43:07 +08:00
GLint oldRBO ;
glGetIntegerv ( GL_RENDERBUFFER_BINDING , & oldRBO ) ;
2012-10-10 11:36:02 +08:00
2013-07-12 06:24:23 +08:00
if ( Configuration : : getInstance ( ) - > checkForGLExtension ( " GL_QCOM " ) )
2012-10-10 11:36:02 +08:00
{
2013-06-20 14:13:12 +08:00
_textureCopy = new Texture2D ( ) ;
2013-06-15 14:03:30 +08:00
if ( _textureCopy )
2012-10-10 11:36:02 +08:00
{
2013-07-27 22:06:30 +08:00
_textureCopy - > initWithData ( data , dataLen , ( Texture2D : : PixelFormat ) _pixelFormat , powW , powH , Size ( ( float ) w , ( float ) h ) ) ;
2012-10-10 11:36:02 +08:00
}
else
{
break ;
}
}
2012-06-12 01:43:07 +08:00
2010-12-25 15:09:42 +08:00
// generate FBO
2013-06-15 14:03:30 +08:00
glGenFramebuffers ( 1 , & _FBO ) ;
glBindFramebuffer ( GL_FRAMEBUFFER , _FBO ) ;
2010-12-25 15:09:42 +08:00
// associate texture with FBO
2013-06-15 14:03:30 +08:00
glFramebufferTexture2D ( GL_FRAMEBUFFER , GL_COLOR_ATTACHMENT0 , GL_TEXTURE_2D , _texture - > getName ( ) , 0 ) ;
2010-12-25 15:09:42 +08:00
2013-12-18 17:47:20 +08:00
if ( depthStencilFormat ! = 0 )
2012-06-12 01:43:07 +08:00
{
//create and attach depth buffer
2013-06-15 14:03:30 +08:00
glGenRenderbuffers ( 1 , & _depthRenderBufffer ) ;
glBindRenderbuffer ( GL_RENDERBUFFER , _depthRenderBufffer ) ;
2013-12-18 17:47:20 +08:00
glRenderbufferStorage ( GL_RENDERBUFFER , depthStencilFormat , ( GLsizei ) powW , ( GLsizei ) powH ) ;
2013-06-15 14:03:30 +08:00
glFramebufferRenderbuffer ( GL_FRAMEBUFFER , GL_DEPTH_ATTACHMENT , GL_RENDERBUFFER , _depthRenderBufffer ) ;
2012-06-12 01:43:07 +08:00
// if depth format is the one with stencil part, bind same render buffer as stencil attachment
2013-12-18 17:47:20 +08:00
if ( depthStencilFormat = = GL_DEPTH24_STENCIL8 )
2012-10-10 11:36:02 +08:00
{
2013-06-15 14:03:30 +08:00
glFramebufferRenderbuffer ( GL_FRAMEBUFFER , GL_STENCIL_ATTACHMENT , GL_RENDERBUFFER , _depthRenderBufffer ) ;
2012-10-10 11:36:02 +08:00
}
2012-06-12 01:43:07 +08:00
}
2010-12-25 15:09:42 +08:00
// check if it worked (probably worth doing :) )
2013-07-20 13:01:27 +08:00
CCASSERT ( glCheckFramebufferStatus ( GL_FRAMEBUFFER ) = = GL_FRAMEBUFFER_COMPLETE , " Could not attach texture to framebuffer " ) ;
2010-12-25 15:09:42 +08:00
2013-06-15 14:03:30 +08:00
_texture - > setAliasTexParameters ( ) ;
2010-12-25 15:09:42 +08:00
2012-11-14 18:05:15 +08:00
// retained
2013-06-20 14:13:12 +08:00
setSprite ( Sprite : : createWithTexture ( _texture ) ) ;
2010-12-25 15:09:42 +08:00
2013-06-15 14:03:30 +08:00
_texture - > release ( ) ;
_sprite - > setScaleY ( - 1 ) ;
2010-12-25 15:09:42 +08:00
2013-07-26 04:36:19 +08:00
_sprite - > setBlendFunc ( BlendFunc : : ALPHA_PREMULTIPLIED ) ;
2010-12-25 15:09:42 +08:00
2012-06-12 01:43:07 +08:00
glBindRenderbuffer ( GL_RENDERBUFFER , oldRBO ) ;
2013-06-15 14:03:30 +08:00
glBindFramebuffer ( GL_FRAMEBUFFER , _oldFBO ) ;
2012-11-14 18:05:15 +08:00
// Diabled by default.
2013-06-15 14:03:30 +08:00
_autoDraw = false ;
2012-11-14 18:05:15 +08:00
// add sprite for backward compatibility
2013-06-15 14:03:30 +08:00
addChild ( _sprite ) ;
2012-11-14 18:05:15 +08:00
2013-12-18 17:47:20 +08:00
ret = true ;
2010-12-25 15:09:42 +08:00
} while ( 0 ) ;
2012-10-10 12:02:56 +08:00
CC_SAFE_FREE ( data ) ;
2012-10-10 11:36:02 +08:00
2013-12-18 17:47:20 +08:00
return ret ;
2010-12-25 15:09:42 +08:00
}
2013-06-20 14:13:12 +08:00
void RenderTexture : : beginWithClear ( float r , float g , float b , float a )
2010-12-25 15:09:42 +08:00
{
2013-12-23 19:59:09 +08:00
beginWithClear ( r , g , b , a , 0 , 0 , GL_COLOR_BUFFER_BIT ) ;
2010-12-25 15:09:42 +08:00
}
2013-06-20 14:13:12 +08:00
void RenderTexture : : beginWithClear ( float r , float g , float b , float a , float depthValue )
2012-06-12 01:43:07 +08:00
{
2013-12-23 19:59:09 +08:00
beginWithClear ( r , g , b , a , depthValue , 0 , GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT ) ;
2012-06-12 01:43:07 +08:00
}
2013-06-20 14:13:12 +08:00
void RenderTexture : : beginWithClear ( float r , float g , float b , float a , float depthValue , int stencilValue )
2012-11-14 18:05:15 +08:00
{
2013-12-23 19:59:09 +08:00
beginWithClear ( r , g , b , a , depthValue , stencilValue , GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT | GL_STENCIL_BUFFER_BIT ) ;
2012-11-14 18:05:15 +08:00
}
2013-12-23 19:59:09 +08:00
void RenderTexture : : beginWithClear ( float r , float g , float b , float a , float depthValue , int stencilValue , GLbitfield flags )
2012-06-12 01:43:07 +08:00
{
2013-12-23 17:13:06 +08:00
setClearColor ( Color4F ( r , g , b , a ) ) ;
2012-06-12 01:43:07 +08:00
2013-12-23 17:13:06 +08:00
setClearDepth ( depthValue ) ;
2012-06-12 01:43:07 +08:00
2013-12-23 17:13:06 +08:00
setClearStencil ( stencilValue ) ;
2012-06-12 01:43:07 +08:00
2013-12-23 17:13:06 +08:00
setClearFlags ( flags ) ;
2012-06-12 01:43:07 +08:00
2013-12-23 17:13:06 +08:00
this - > begin ( ) ;
2012-04-19 14:35:52 +08:00
2013-12-23 17:13:06 +08:00
//clear screen
2014-01-19 03:35:27 +08:00
_beginWithClearCommand . init ( _globalZOrder ) ;
2013-12-26 21:19:12 +08:00
_beginWithClearCommand . func = CC_CALLBACK_0 ( RenderTexture : : onClear , this ) ;
Director : : getInstance ( ) - > getRenderer ( ) - > addCommand ( & _beginWithClearCommand ) ;
2011-10-19 15:24:19 +08:00
}
2010-12-25 15:09:42 +08:00
2013-12-05 03:54:57 +08:00
//TODO find a better way to clear the screen, there is no need to rebind render buffer there.
2013-06-20 14:13:12 +08:00
void RenderTexture : : clear ( float r , float g , float b , float a )
2010-12-25 15:09:42 +08:00
{
2012-04-19 14:35:52 +08:00
this - > beginWithClear ( r , g , b , a ) ;
this - > end ( ) ;
2010-12-25 15:09:42 +08:00
}
2013-06-20 14:13:12 +08:00
void RenderTexture : : clearDepth ( float depthValue )
2012-06-12 01:43:07 +08:00
{
2013-12-23 17:13:06 +08:00
setClearDepth ( depthValue ) ;
2012-06-12 01:43:07 +08:00
this - > begin ( ) ;
2014-01-19 03:35:27 +08:00
_clearDepthCommand . init ( _globalZOrder ) ;
2013-12-26 21:19:12 +08:00
_clearDepthCommand . func = CC_CALLBACK_0 ( RenderTexture : : onClearDepth , this ) ;
2013-12-23 17:13:06 +08:00
2013-12-26 21:19:12 +08:00
Director : : getInstance ( ) - > getRenderer ( ) - > addCommand ( & _clearDepthCommand ) ;
2012-06-12 01:43:07 +08:00
this - > end ( ) ;
}
2013-06-20 14:13:12 +08:00
void RenderTexture : : clearStencil ( int stencilValue )
2012-06-12 01:43:07 +08:00
{
// save old stencil value
int stencilClearValue ;
glGetIntegerv ( GL_STENCIL_CLEAR_VALUE , & stencilClearValue ) ;
glClearStencil ( stencilValue ) ;
glClear ( GL_STENCIL_BUFFER_BIT ) ;
// restore clear color
glClearStencil ( stencilClearValue ) ;
}
2014-03-01 08:10:48 +08:00
void RenderTexture : : visit ( Renderer * renderer , const kmMat4 & parentTransform , bool parentTransformUpdated )
2012-11-14 18:05:15 +08:00
{
// override visit.
// Don't call visit on its children
2013-06-15 14:03:30 +08:00
if ( ! _visible )
2012-11-14 18:05:15 +08:00
{
return ;
}
2014-03-01 08:10:48 +08:00
bool dirty = parentTransformUpdated | | _transformUpdated ;
2014-02-28 13:43:54 +08:00
if ( dirty )
2014-03-01 03:20:53 +08:00
_modelViewTransform = transform ( parentTransform ) ;
2014-03-01 08:10:48 +08:00
_transformUpdated = false ;
2014-03-01 03:20:53 +08:00
// IMPORTANT:
// To ease the migration to v3.0, we still support the kmGL stack,
// but it is deprecated and your code should not rely on it
kmGLPushMatrix ( ) ;
kmGLLoadMatrix ( & _modelViewTransform ) ;
2014-02-28 13:43:54 +08:00
_sprite - > visit ( renderer , _modelViewTransform , dirty ) ;
draw ( renderer , _modelViewTransform , dirty ) ;
2013-09-12 20:47:15 +08:00
2012-11-14 18:05:15 +08:00
kmGLPopMatrix ( ) ;
2013-06-15 14:03:30 +08:00
_orderOfArrival = 0 ;
2012-11-14 18:05:15 +08:00
}
2013-11-15 09:19:16 +08:00
bool RenderTexture : : saveToFile ( const std : : string & filename )
2010-12-25 15:09:42 +08:00
{
2013-07-26 05:49:43 +08:00
bool ret = false ;
2011-07-29 11:36:04 +08:00
2013-07-26 05:49:43 +08:00
Image * image = newImage ( true ) ;
if ( image )
2012-04-19 14:35:52 +08:00
{
2013-11-15 09:19:16 +08:00
ret = image - > saveToFile ( filename ) ;
2012-04-19 14:35:52 +08:00
}
2011-07-29 11:36:04 +08:00
2013-07-26 05:49:43 +08:00
CC_SAFE_DELETE ( image ) ;
return ret ;
2010-12-25 15:09:42 +08:00
}
2013-11-15 09:19:16 +08:00
bool RenderTexture : : saveToFile ( const std : : string & fileName , Image : : Format format )
2010-12-25 15:09:42 +08:00
{
2013-12-18 17:47:20 +08:00
bool ret = false ;
2013-07-26 05:49:43 +08:00
CCASSERT ( format = = Image : : Format : : JPG | | format = = Image : : Format : : PNG ,
2012-04-19 14:35:52 +08:00
" the image can only be saved as JPG or PNG format " ) ;
2011-07-27 16:55:04 +08:00
2013-07-26 05:49:43 +08:00
Image * image = newImage ( true ) ;
if ( image )
2012-04-19 14:35:52 +08:00
{
2013-07-12 06:24:23 +08:00
std : : string fullpath = FileUtils : : getInstance ( ) - > getWritablePath ( ) + fileName ;
2012-04-19 14:35:52 +08:00
2013-12-18 17:47:20 +08:00
ret = image - > saveToFile ( fullpath . c_str ( ) , true ) ;
2012-04-19 14:35:52 +08:00
}
2011-07-27 16:55:04 +08:00
2013-07-26 05:49:43 +08:00
CC_SAFE_DELETE ( image ) ;
2011-07-27 16:55:04 +08:00
2013-12-18 17:47:20 +08:00
return ret ;
2011-07-27 16:55:04 +08:00
}
2013-06-20 14:13:12 +08:00
/* get buffer as Image */
2013-07-26 05:49:43 +08:00
Image * RenderTexture : : newImage ( bool fliimage )
2011-10-19 15:24:19 +08:00
{
2013-07-26 04:36:19 +08:00
CCASSERT ( _pixelFormat = = Texture2D : : PixelFormat : : RGBA8888 , " only RGBA8888 can be saved as image " ) ;
2012-04-19 14:35:52 +08:00
2013-12-18 17:47:20 +08:00
if ( nullptr = = _texture )
2012-04-19 14:35:52 +08:00
{
2013-12-18 17:47:20 +08:00
return nullptr ;
2012-04-19 14:35:52 +08:00
}
2013-06-20 14:13:12 +08:00
const Size & s = _texture - > getContentSizeInPixels ( ) ;
2012-04-19 14:35:52 +08:00
// to get the image size to save
2012-09-17 15:02:24 +08:00
// if the saving image domain exceeds the buffer texture domain,
2012-04-19 14:35:52 +08:00
// it should be cut
2013-12-18 17:47:20 +08:00
int savedBufferWidth = ( int ) s . width ;
int savedBufferHeight = ( int ) s . height ;
2012-04-19 14:35:52 +08:00
2013-12-18 17:47:20 +08:00
GLubyte * buffer = nullptr ;
GLubyte * tempData = nullptr ;
2013-07-26 05:49:43 +08:00
Image * image = new Image ( ) ;
2012-04-19 14:35:52 +08:00
do
{
2013-12-18 17:47:20 +08:00
CC_BREAK_IF ( ! ( buffer = new GLubyte [ savedBufferWidth * savedBufferHeight * 4 ] ) ) ;
2012-04-19 14:35:52 +08:00
2013-12-18 17:47:20 +08:00
if ( ! ( tempData = new GLubyte [ savedBufferWidth * savedBufferHeight * 4 ] ) )
2012-04-19 14:35:52 +08:00
{
2013-12-18 17:47:20 +08:00
delete [ ] buffer ;
buffer = nullptr ;
2012-04-19 14:35:52 +08:00
break ;
}
2014-02-18 10:47:14 +08:00
glGetIntegerv ( GL_FRAMEBUFFER_BINDING , & _oldFBO ) ;
glBindFramebuffer ( GL_FRAMEBUFFER , _FBO ) ;
//TODO move this to configration, so we don't check it every time
/* Certain Qualcomm Andreno gpu's will retain data in memory after a frame buffer switch which corrupts the render to the texture. The solution is to clear the frame buffer before rendering to the texture. However, calling glClear has the unintended result of clearing the current texture. Create a temporary texture to overcome this. At the end of RenderTexture::begin(), switch the attached texture to the second one, call glClear, and then switch back to the original texture. This solution is unnecessary for other devices as they don't have the same issue with switching frame buffers.
*/
if ( Configuration : : getInstance ( ) - > checkForGLExtension ( " GL_QCOM " ) )
{
// -- bind a temporary texture so we can clear the render buffer without losing our texture
glFramebufferTexture2D ( GL_FRAMEBUFFER , GL_COLOR_ATTACHMENT0 , GL_TEXTURE_2D , _textureCopy - > getName ( ) , 0 ) ;
CHECK_GL_ERROR_DEBUG ( ) ;
glClear ( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT ) ;
glFramebufferTexture2D ( GL_FRAMEBUFFER , GL_COLOR_ATTACHMENT0 , GL_TEXTURE_2D , _texture - > getName ( ) , 0 ) ;
}
2012-04-19 14:35:52 +08:00
glPixelStorei ( GL_PACK_ALIGNMENT , 1 ) ;
2013-12-18 17:47:20 +08:00
glReadPixels ( 0 , 0 , savedBufferWidth , savedBufferHeight , GL_RGBA , GL_UNSIGNED_BYTE , tempData ) ;
2014-02-18 10:47:14 +08:00
glBindFramebuffer ( GL_FRAMEBUFFER , _oldFBO ) ;
2012-04-19 14:35:52 +08:00
2013-07-26 05:49:43 +08:00
if ( fliimage ) // -- flip is only required when saving image to file
2012-04-19 14:35:52 +08:00
{
2012-11-30 07:04:07 +08:00
// to get the actual texture data
// #640 the image read from rendertexture is dirty
2013-12-18 17:47:20 +08:00
for ( int i = 0 ; i < savedBufferHeight ; + + i )
2012-11-30 07:04:07 +08:00
{
2013-12-18 17:47:20 +08:00
memcpy ( & buffer [ i * savedBufferWidth * 4 ] ,
& tempData [ ( savedBufferHeight - i - 1 ) * savedBufferWidth * 4 ] ,
savedBufferWidth * 4 ) ;
2012-11-30 07:04:07 +08:00
}
2012-04-19 14:35:52 +08:00
2013-12-18 17:47:20 +08:00
image - > initWithRawData ( buffer , savedBufferWidth * savedBufferHeight * 4 , savedBufferWidth , savedBufferHeight , 8 ) ;
2012-11-30 07:04:07 +08:00
}
else
{
2013-12-18 17:47:20 +08:00
image - > initWithRawData ( tempData , savedBufferWidth * savedBufferHeight * 4 , savedBufferWidth , savedBufferHeight , 8 ) ;
2012-11-30 07:04:07 +08:00
}
2012-04-19 14:35:52 +08:00
} while ( 0 ) ;
2013-12-18 17:47:20 +08:00
CC_SAFE_DELETE_ARRAY ( buffer ) ;
CC_SAFE_DELETE_ARRAY ( tempData ) ;
2012-04-19 14:35:52 +08:00
2013-07-26 05:49:43 +08:00
return image ;
2010-12-25 15:09:42 +08:00
}
2010-11-12 17:29:14 +08:00
2013-12-23 15:59:47 +08:00
void RenderTexture : : onBegin ( )
{
//
2014-03-04 10:41:03 +08:00
Director * director = Director : : getInstance ( ) ;
Size size = director - > getWinSizeInPixels ( ) ;
2014-03-04 11:06:39 +08:00
kmGLGetMatrix ( KM_GL_PROJECTION , & _oldProjMatrix ) ;
kmGLMatrixMode ( KM_GL_PROJECTION ) ;
kmGLLoadMatrix ( & _projectionMatrix ) ;
kmGLGetMatrix ( KM_GL_MODELVIEW , & _oldTransMatrix ) ;
kmGLMatrixMode ( KM_GL_MODELVIEW ) ;
kmGLLoadMatrix ( & _transformMatrix ) ;
2014-03-04 10:41:03 +08:00
if ( ! _keepMatrix )
{
director - > setProjection ( director - > getProjection ( ) ) ;
2013-12-23 15:59:47 +08:00
2014-03-04 10:41:03 +08:00
const Size & texSize = _texture - > getContentSizeInPixels ( ) ;
2013-12-23 15:59:47 +08:00
2014-03-04 10:41:03 +08:00
// Calculate the adjustment ratios based on the old and new projections
float widthRatio = size . width / texSize . width ;
float heightRatio = size . height / texSize . height ;
kmMat4 orthoMatrix ;
kmMat4OrthographicProjection ( & orthoMatrix , ( float ) - 1.0 / widthRatio , ( float ) 1.0 / widthRatio ,
( float ) - 1.0 / heightRatio , ( float ) 1.0 / heightRatio , - 1 , 1 ) ;
kmGLMultMatrix ( & orthoMatrix ) ;
}
2014-03-04 10:57:57 +08:00
//calculate viewport
{
Rect viewport ;
viewport . size . width = _fullviewPort . size . width ;
viewport . size . height = _fullviewPort . size . height ;
float viewPortRectWidthRatio = float ( viewport . size . width ) / _fullRect . size . width ;
float viewPortRectHeightRatio = float ( viewport . size . height ) / _fullRect . size . height ;
viewport . origin . x = ( _fullRect . origin . x - _rtTextureRect . origin . x ) * viewPortRectWidthRatio ;
viewport . origin . y = ( _fullRect . origin . y - _rtTextureRect . origin . y ) * viewPortRectHeightRatio ;
//glViewport(_fullviewPort.origin.x, _fullviewPort.origin.y, (GLsizei)_fullviewPort.size.width, (GLsizei)_fullviewPort.size.height);
glViewport ( viewport . origin . x , viewport . origin . y , ( GLsizei ) viewport . size . width , ( GLsizei ) viewport . size . height ) ;
}
2013-12-23 15:59:47 +08:00
// Adjust the orthographic projection and viewport
2014-03-04 10:57:57 +08:00
2013-12-23 15:59:47 +08:00
glGetIntegerv ( GL_FRAMEBUFFER_BINDING , & _oldFBO ) ;
glBindFramebuffer ( GL_FRAMEBUFFER , _FBO ) ;
//TODO move this to configration, so we don't check it every time
/* Certain Qualcomm Andreno gpu's will retain data in memory after a frame buffer switch which corrupts the render to the texture. The solution is to clear the frame buffer before rendering to the texture. However, calling glClear has the unintended result of clearing the current texture. Create a temporary texture to overcome this. At the end of RenderTexture::begin(), switch the attached texture to the second one, call glClear, and then switch back to the original texture. This solution is unnecessary for other devices as they don't have the same issue with switching frame buffers.
*/
if ( Configuration : : getInstance ( ) - > checkForGLExtension ( " GL_QCOM " ) )
{
// -- bind a temporary texture so we can clear the render buffer without losing our texture
glFramebufferTexture2D ( GL_FRAMEBUFFER , GL_COLOR_ATTACHMENT0 , GL_TEXTURE_2D , _textureCopy - > getName ( ) , 0 ) ;
CHECK_GL_ERROR_DEBUG ( ) ;
glClear ( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT ) ;
glFramebufferTexture2D ( GL_FRAMEBUFFER , GL_COLOR_ATTACHMENT0 , GL_TEXTURE_2D , _texture - > getName ( ) , 0 ) ;
}
}
void RenderTexture : : onEnd ( )
{
Director * director = Director : : getInstance ( ) ;
glBindFramebuffer ( GL_FRAMEBUFFER , _oldFBO ) ;
// restore viewport
director - > setViewport ( ) ;
2014-03-04 11:06:39 +08:00
//
kmGLMatrixMode ( KM_GL_PROJECTION ) ;
kmGLLoadMatrix ( & _oldProjMatrix ) ;
kmGLMatrixMode ( KM_GL_MODELVIEW ) ;
kmGLLoadMatrix ( & _oldTransMatrix ) ;
2013-12-23 15:59:47 +08:00
}
void RenderTexture : : onClear ( )
{
// save clear color
GLfloat oldClearColor [ 4 ] = { 0.0f } ;
GLfloat oldDepthClearValue = 0.0f ;
GLint oldStencilClearValue = 0 ;
// backup and set
if ( _clearFlags & GL_COLOR_BUFFER_BIT )
{
glGetFloatv ( GL_COLOR_CLEAR_VALUE , oldClearColor ) ;
glClearColor ( _clearColor . r , _clearColor . g , _clearColor . b , _clearColor . a ) ;
}
if ( _clearFlags & GL_DEPTH_BUFFER_BIT )
{
glGetFloatv ( GL_DEPTH_CLEAR_VALUE , & oldDepthClearValue ) ;
glClearDepth ( _clearDepth ) ;
}
if ( _clearFlags & GL_STENCIL_BUFFER_BIT )
{
glGetIntegerv ( GL_STENCIL_CLEAR_VALUE , & oldStencilClearValue ) ;
glClearStencil ( _clearStencil ) ;
}
// clear
glClear ( _clearFlags ) ;
// restore
if ( _clearFlags & GL_COLOR_BUFFER_BIT )
{
glClearColor ( oldClearColor [ 0 ] , oldClearColor [ 1 ] , oldClearColor [ 2 ] , oldClearColor [ 3 ] ) ;
}
if ( _clearFlags & GL_DEPTH_BUFFER_BIT )
{
glClearDepth ( oldDepthClearValue ) ;
}
if ( _clearFlags & GL_STENCIL_BUFFER_BIT )
{
glClearStencil ( oldStencilClearValue ) ;
}
}
void RenderTexture : : onClearDepth ( )
{
//! save old depth value
GLfloat depthClearValue ;
glGetFloatv ( GL_DEPTH_CLEAR_VALUE , & depthClearValue ) ;
glClearDepth ( _clearDepth ) ;
glClear ( GL_DEPTH_BUFFER_BIT ) ;
// restore clear color
glClearDepth ( depthClearValue ) ;
}
2014-03-01 08:10:48 +08:00
void RenderTexture : : draw ( Renderer * renderer , const kmMat4 & transform , bool transformUpdated )
2013-12-23 17:13:06 +08:00
{
if ( _autoDraw )
{
//Begin will create a render group using new render target
begin ( ) ;
//clear screen
2014-01-19 03:35:27 +08:00
_clearCommand . init ( _globalZOrder ) ;
2013-12-26 21:19:12 +08:00
_clearCommand . func = CC_CALLBACK_0 ( RenderTexture : : onClear , this ) ;
2014-02-28 13:43:54 +08:00
renderer - > addCommand ( & _clearCommand ) ;
2013-12-23 17:13:06 +08:00
//! make sure all children are drawn
sortAllChildren ( ) ;
for ( const auto & child : _children )
{
if ( child ! = _sprite )
2014-03-01 08:10:48 +08:00
child - > visit ( renderer , transform , transformUpdated ) ;
2013-12-23 17:13:06 +08:00
}
//End will pop the current render group
end ( ) ;
}
}
void RenderTexture : : begin ( )
{
2014-03-04 11:06:39 +08:00
kmGLMatrixMode ( KM_GL_PROJECTION ) ;
kmGLPushMatrix ( ) ;
kmGLGetMatrix ( KM_GL_PROJECTION , & _projectionMatrix ) ;
kmGLMatrixMode ( KM_GL_MODELVIEW ) ;
kmGLPushMatrix ( ) ;
kmGLGetMatrix ( KM_GL_MODELVIEW , & _transformMatrix ) ;
2014-03-04 10:41:03 +08:00
if ( ! _keepMatrix )
{
Director * director = Director : : getInstance ( ) ;
director - > setProjection ( director - > getProjection ( ) ) ;
const Size & texSize = _texture - > getContentSizeInPixels ( ) ;
// Calculate the adjustment ratios based on the old and new projections
Size size = director - > getWinSizeInPixels ( ) ;
float widthRatio = size . width / texSize . width ;
float heightRatio = size . height / texSize . height ;
kmMat4 orthoMatrix ;
kmMat4OrthographicProjection ( & orthoMatrix , ( float ) - 1.0 / widthRatio , ( float ) 1.0 / widthRatio ,
( float ) - 1.0 / heightRatio , ( float ) 1.0 / heightRatio , - 1 , 1 ) ;
kmGLMultMatrix ( & orthoMatrix ) ;
}
2013-12-23 17:13:06 +08:00
2014-01-19 03:35:27 +08:00
_groupCommand . init ( _globalZOrder ) ;
2013-12-23 17:13:06 +08:00
Renderer * renderer = Director : : getInstance ( ) - > getRenderer ( ) ;
2013-12-26 18:11:23 +08:00
renderer - > addCommand ( & _groupCommand ) ;
renderer - > pushGroup ( _groupCommand . getRenderQueueID ( ) ) ;
2013-12-23 17:13:06 +08:00
2014-01-19 03:35:27 +08:00
_beginCommand . init ( _globalZOrder ) ;
2013-12-26 21:19:12 +08:00
_beginCommand . func = CC_CALLBACK_0 ( RenderTexture : : onBegin , this ) ;
2013-12-23 17:13:06 +08:00
2013-12-26 21:19:12 +08:00
Director : : getInstance ( ) - > getRenderer ( ) - > addCommand ( & _beginCommand ) ;
2013-12-23 17:13:06 +08:00
}
void RenderTexture : : end ( )
{
2014-01-19 03:35:27 +08:00
_endCommand . init ( _globalZOrder ) ;
2013-12-26 21:19:12 +08:00
_endCommand . func = CC_CALLBACK_0 ( RenderTexture : : onEnd , this ) ;
2013-12-23 17:13:06 +08:00
Renderer * renderer = Director : : getInstance ( ) - > getRenderer ( ) ;
2013-12-26 21:19:12 +08:00
renderer - > addCommand ( & _endCommand ) ;
2013-12-23 17:13:06 +08:00
renderer - > popGroup ( ) ;
2014-03-04 11:06:39 +08:00
kmGLMatrixMode ( KM_GL_PROJECTION ) ;
kmGLPopMatrix ( ) ;
kmGLMatrixMode ( KM_GL_MODELVIEW ) ;
kmGLPopMatrix ( ) ;
2014-03-04 10:41:03 +08:00
2013-12-23 17:13:06 +08:00
}
2012-03-14 14:55:17 +08:00
NS_CC_END