axmol/samples/Cpp/TestCpp/Classes/RenderTextureTest/RenderTextureTest.cpp

690 lines
18 KiB
C++
Raw Normal View History

#include "CCConfiguration.h"
#include "RenderTextureTest.h"
#include "../testBasic.h"
// Test #1 by Jason Booth (slipster216)
// Test #3 by David Deaco (ddeaco)
static std::function<Layer*()> createFunctions[] = {
CL(RenderTextureSave),
CL(RenderTextureIssue937),
CL(RenderTextureZbuffer),
CL(RenderTextureTestDepthStencil),
CL(RenderTextureTargetNode),
CL(SpriteRenderTextureBug),
2013-02-28 16:35:42 +08:00
};
#define MAX_LAYER (sizeof(createFunctions)/sizeof(createFunctions[0]))
2013-02-28 16:35:42 +08:00
static int sceneIdx = -1;
static Layer* nextTestCase()
{
sceneIdx++;
sceneIdx = sceneIdx % MAX_LAYER;
auto layer = (createFunctions[sceneIdx])();
layer->autorelease();
return layer;
}
static Layer* backTestCase()
2010-09-10 10:29:39 +08:00
{
sceneIdx--;
int total = MAX_LAYER;
if( sceneIdx < 0 )
sceneIdx += total;
auto layer = (createFunctions[sceneIdx])();
layer->autorelease();
return layer;
}
static Layer* restartTestCase()
{
auto layer = (createFunctions[sceneIdx])();
layer->autorelease();
return layer;
}
void RenderTextureTest::onEnter()
{
BaseTest::onEnter();
}
void RenderTextureTest::restartCallback(Object* sender)
{
auto s = new RenderTextureScene();
s->addChild(restartTestCase());
Director::getInstance()->replaceScene(s);
s->release();
2010-09-10 10:29:39 +08:00
}
void RenderTextureTest::nextCallback(Object* sender)
{
auto s = new RenderTextureScene();
s->addChild( nextTestCase() );
Director::getInstance()->replaceScene(s);
s->release();
}
void RenderTextureTest::backCallback(Object* sender)
{
auto s = new RenderTextureScene();
s->addChild( backTestCase() );
Director::getInstance()->replaceScene(s);
s->release();
}
std::string RenderTextureTest::title()
2010-09-10 10:29:39 +08:00
{
return "No title";
2010-09-10 10:29:39 +08:00
}
std::string RenderTextureTest::subtitle()
{
return "";
}
/**
* Impelmentation of RenderTextureSave
*/
RenderTextureSave::RenderTextureSave()
{
auto s = Director::getInstance()->getWinSize();
// create a render texture, this is what we are going to draw into
_target = RenderTexture::create(s.width, s.height, Texture2D::PixelFormat::RGBA8888);
_target->retain();
2013-07-12 14:11:55 +08:00
_target->setPosition(Point(s.width / 2, s.height / 2));
// note that the render texture is a Node, and contains a sprite of its texture for convience,
// so we can just parent it to the scene like any other Node
this->addChild(_target, -1);
// create a brush image to draw into the texture with
_brush = Sprite::create("Images/fire.png");
_brush->retain();
_brush->setColor(Color3B::RED);
_brush->setOpacity(20);
this->setTouchEnabled(true);
// Save Image menu
MenuItemFont::setFontSize(16);
auto item1 = MenuItemFont::create("Save Image", CC_CALLBACK_1(RenderTextureSave::saveImage, this));
auto item2 = MenuItemFont::create("Clear", CC_CALLBACK_1(RenderTextureSave::clearImage, this));
auto menu = Menu::create(item1, item2, NULL);
this->addChild(menu);
menu->alignItemsVertically();
2013-07-12 14:11:55 +08:00
menu->setPosition(Point(VisibleRect::rightTop().x - 80, VisibleRect::rightTop().y - 30));
}
string RenderTextureSave::title()
{
return "Touch the screen";
}
string RenderTextureSave::subtitle()
{
return "Press 'Save Image' to create an snapshot of the render texture";
}
void RenderTextureSave::clearImage(cocos2d::Object *pSender)
{
_target->clear(CCRANDOM_0_1(), CCRANDOM_0_1(), CCRANDOM_0_1(), CCRANDOM_0_1());
}
void RenderTextureSave::saveImage(cocos2d::Object *pSender)
{
static int counter = 0;
char png[20];
sprintf(png, "image-%d.png", counter);
char jpg[20];
sprintf(jpg, "image-%d.jpg", counter);
_target->saveToFile(png, Image::Format::PNG);
_target->saveToFile(jpg, Image::Format::JPG);
auto pImage = _target->newImage();
auto tex = TextureCache::getInstance()->addUIImage(pImage, png);
CC_SAFE_DELETE(pImage);
auto sprite = Sprite::createWithTexture(tex);
sprite->setScale(0.3f);
addChild(sprite);
2013-07-12 14:11:55 +08:00
sprite->setPosition(Point(40, 40));
sprite->setRotation(counter * 3);
CCLOG("Image saved %s and %s", png, jpg);
counter++;
}
RenderTextureSave::~RenderTextureSave()
{
_brush->release();
_target->release();
TextureCache::getInstance()->removeUnusedTextures();
}
void RenderTextureSave::ccTouchesMoved(Set* touches, Event* event)
{
auto touch = static_cast<Touch*>( touches->anyObject() );
auto start = touch->getLocation();
auto end = touch->getPreviousLocation();
// begin drawing to the render texture
_target->begin();
// for extra points, we'll draw this smoothly from the last position and vary the sprite's
// scale/rotation/offset
float distance = start.getDistance(end);
if (distance > 1)
{
int d = (int)distance;
for (int i = 0; i < d; i++)
{
float difx = end.x - start.x;
float dify = end.y - start.y;
float delta = (float)i / distance;
2013-07-12 14:11:55 +08:00
_brush->setPosition(Point(start.x + (difx * delta), start.y + (dify * delta)));
_brush->setRotation(rand() % 360);
float r = (float)(rand() % 50 / 50.f) + 0.25f;
_brush->setScale(r);
/*_brush->setColor(Color3B(CCRANDOM_0_1() * 127 + 128, 255, 255));*/
// Use CCRANDOM_0_1() will cause error when loading libtests.so on android, I don't know why.
_brush->setColor(Color3B(rand() % 127 + 128, 255, 255));
// Call visit to draw the brush, don't call draw..
_brush->visit();
}
}
// finish drawing and return context back to the screen
_target->end();
}
/**
* Impelmentation of RenderTextureIssue937
*/
RenderTextureIssue937::RenderTextureIssue937()
{
/*
* 1 2
* A: A1 A2
*
* B: B1 B2
*
* A1: premulti sprite
* A2: premulti render
*
* B1: non-premulti sprite
* B2: non-premulti render
*/
auto background = LayerColor::create(Color4B(200,200,200,255));
addChild(background);
auto spr_premulti = Sprite::create("Images/fire.png");
2013-07-12 14:11:55 +08:00
spr_premulti->setPosition(Point(16,48));
auto spr_nonpremulti = Sprite::create("Images/fire.png");
2013-07-12 14:11:55 +08:00
spr_nonpremulti->setPosition(Point(16,16));
/* A2 & B2 setup */
auto rend = RenderTexture::create(32, 64, Texture2D::PixelFormat::RGBA8888);
if (NULL == rend)
{
return;
}
// It's possible to modify the RenderTexture blending function by
// [[rend sprite] setBlendFunc:(BlendFunc) {GL_ONE, GL_ONE_MINUS_SRC_ALPHA}];
rend->begin();
spr_premulti->visit();
spr_nonpremulti->visit();
rend->end();
auto s = Director::getInstance()->getWinSize();
/* A1: setup */
2013-07-12 14:11:55 +08:00
spr_premulti->setPosition(Point(s.width/2-16, s.height/2+16));
/* B1: setup */
2013-07-12 14:11:55 +08:00
spr_nonpremulti->setPosition(Point(s.width/2-16, s.height/2-16));
2013-07-12 14:11:55 +08:00
rend->setPosition(Point(s.width/2+16, s.height/2));
addChild(spr_nonpremulti);
addChild(spr_premulti);
addChild(rend);
}
std::string RenderTextureIssue937::title()
{
return "Testing issue #937";
}
std::string RenderTextureIssue937::subtitle()
{
return "All images should be equal...";
}
void RenderTextureScene::runThisTest()
{
auto layer = nextTestCase();
addChild(layer);
Director::getInstance()->replaceScene(this);
}
/**
* Impelmentation of RenderTextureZbuffer
*/
RenderTextureZbuffer::RenderTextureZbuffer()
{
this->setTouchEnabled(true);
auto size = Director::getInstance()->getWinSize();
auto label = LabelTTF::create("vertexZ = 50", "Marker Felt", 64);
2013-07-12 14:11:55 +08:00
label->setPosition(Point(size.width / 2, size.height * 0.25f));
this->addChild(label);
auto label2 = LabelTTF::create("vertexZ = 0", "Marker Felt", 64);
2013-07-12 14:11:55 +08:00
label2->setPosition(Point(size.width / 2, size.height * 0.5f));
this->addChild(label2);
auto label3 = LabelTTF::create("vertexZ = -50", "Marker Felt", 64);
2013-07-12 14:11:55 +08:00
label3->setPosition(Point(size.width / 2, size.height * 0.75f));
this->addChild(label3);
label->setVertexZ(50);
label2->setVertexZ(0);
label3->setVertexZ(-50);
SpriteFrameCache::getInstance()->addSpriteFramesWithFile("Images/bugs/circle.plist");
mgr = SpriteBatchNode::create("Images/bugs/circle.png", 9);
this->addChild(mgr);
sp1 = Sprite::createWithSpriteFrameName("circle.png");
sp2 = Sprite::createWithSpriteFrameName("circle.png");
sp3 = Sprite::createWithSpriteFrameName("circle.png");
sp4 = Sprite::createWithSpriteFrameName("circle.png");
sp5 = Sprite::createWithSpriteFrameName("circle.png");
sp6 = Sprite::createWithSpriteFrameName("circle.png");
sp7 = Sprite::createWithSpriteFrameName("circle.png");
sp8 = Sprite::createWithSpriteFrameName("circle.png");
sp9 = Sprite::createWithSpriteFrameName("circle.png");
mgr->addChild(sp1, 9);
mgr->addChild(sp2, 8);
mgr->addChild(sp3, 7);
mgr->addChild(sp4, 6);
mgr->addChild(sp5, 5);
mgr->addChild(sp6, 4);
mgr->addChild(sp7, 3);
mgr->addChild(sp8, 2);
mgr->addChild(sp9, 1);
sp1->setVertexZ(400);
sp2->setVertexZ(300);
sp3->setVertexZ(200);
sp4->setVertexZ(100);
sp5->setVertexZ(0);
sp6->setVertexZ(-100);
sp7->setVertexZ(-200);
sp8->setVertexZ(-300);
sp9->setVertexZ(-400);
sp9->setScale(2);
sp9->setColor(Color3B::YELLOW);
}
string RenderTextureZbuffer::title()
{
return "Testing Z Buffer in Render Texture";
}
string RenderTextureZbuffer::subtitle()
{
return "Touch screen. It should be green";
}
void RenderTextureZbuffer::ccTouchesBegan(cocos2d::Set *touches, cocos2d::Event *event)
{
for (auto &item: *touches)
{
auto touch = static_cast<Touch*>(item);
auto location = touch->getLocation();
sp1->setPosition(location);
sp2->setPosition(location);
sp3->setPosition(location);
sp4->setPosition(location);
sp5->setPosition(location);
sp6->setPosition(location);
sp7->setPosition(location);
sp8->setPosition(location);
sp9->setPosition(location);
}
}
void RenderTextureZbuffer::ccTouchesMoved(Set* touches, Event* event)
{
for (auto &item: *touches)
{
auto touch = static_cast<Touch*>(item);
auto location = touch->getLocation();
sp1->setPosition(location);
sp2->setPosition(location);
sp3->setPosition(location);
sp4->setPosition(location);
sp5->setPosition(location);
sp6->setPosition(location);
sp7->setPosition(location);
sp8->setPosition(location);
sp9->setPosition(location);
}
}
void RenderTextureZbuffer::ccTouchesEnded(Set* touches, Event* event)
{
this->renderScreenShot();
}
void RenderTextureZbuffer::renderScreenShot()
{
auto texture = RenderTexture::create(512, 512);
if (NULL == texture)
{
return;
}
2013-07-12 14:11:55 +08:00
texture->setAnchorPoint(Point(0, 0));
texture->begin();
this->visit();
texture->end();
auto sprite = Sprite::createWithTexture(texture->getSprite()->getTexture());
2013-07-12 14:11:55 +08:00
sprite->setPosition(Point(256, 256));
sprite->setOpacity(182);
sprite->setFlipY(1);
this->addChild(sprite, 999999);
sprite->setColor(Color3B::GREEN);
sprite->runAction(Sequence::create(FadeTo::create(2, 0),
Hide::create(),
NULL));
}
// RenderTextureTestDepthStencil
RenderTextureTestDepthStencil::RenderTextureTestDepthStencil()
{
auto s = Director::getInstance()->getWinSize();
auto sprite = Sprite::create("Images/fire.png");
2013-07-12 14:11:55 +08:00
sprite->setPosition(Point(s.width * 0.25f, 0));
sprite->setScale(10);
auto rend = RenderTexture::create(s.width, s.height, Texture2D::PixelFormat::RGBA4444, GL_DEPTH24_STENCIL8);
glStencilMask(0xFF);
rend->beginWithClear(0, 0, 0, 0, 0, 0);
//! mark sprite quad into stencil buffer
glEnable(GL_STENCIL_TEST);
glStencilFunc(GL_NEVER, 1, 0xFF);
glStencilOp(GL_REPLACE, GL_REPLACE, GL_REPLACE);
sprite->visit();
//! move sprite half width and height, and draw only where not marked
sprite->setPosition(sprite->getPosition() + Point(sprite->getContentSize().width * sprite->getScale() * 0.5, sprite->getContentSize().height * sprite->getScale() * 0.5));
glStencilFunc(GL_NOTEQUAL, 1, 0xFF);
sprite->visit();
rend->end();
glDisable(GL_STENCIL_TEST);
2013-07-12 14:11:55 +08:00
rend->setPosition(Point(s.width * 0.5f, s.height * 0.5f));
this->addChild(rend);
}
std::string RenderTextureTestDepthStencil::title()
{
return "Testing depthStencil attachment";
}
std::string RenderTextureTestDepthStencil::subtitle()
{
return "Circle should be missing 1/4 of its region";
}
2012-11-20 16:45:59 +08:00
// RenderTextureTest
RenderTextureTargetNode::RenderTextureTargetNode()
{
/*
* 1 2
* A: A1 A2
*
* B: B1 B2
*
* A1: premulti sprite
* A2: premulti render
*
* B1: non-premulti sprite
* B2: non-premulti render
*/
auto background = LayerColor::create(Color4B(40,40,40,255));
2012-11-20 16:45:59 +08:00
addChild(background);
// sprite 1
sprite1 = Sprite::create("Images/fire.png");
2012-11-20 16:45:59 +08:00
// sprite 2
sprite2 = Sprite::create("Images/fire_rgba8888.pvr");
2012-11-20 16:45:59 +08:00
auto s = Director::getInstance()->getWinSize();
2012-11-20 16:45:59 +08:00
/* Create the render texture */
auto renderTexture = RenderTexture::create(s.width, s.height, Texture2D::PixelFormat::RGBA4444);
2012-11-20 16:45:59 +08:00
this->renderTexture = renderTexture;
2013-07-12 14:11:55 +08:00
renderTexture->setPosition(Point(s.width/2, s.height/2));
2013-07-12 18:04:32 +08:00
// [renderTexture setPosition:Point(s.width, s.height)];
2012-11-20 16:45:59 +08:00
// renderTexture.scale = 2;
/* add the sprites to the render texture */
renderTexture->addChild(sprite1);
renderTexture->addChild(sprite2);
renderTexture->setClearColor(Color4F(0, 0, 0, 0));
2012-11-20 16:45:59 +08:00
renderTexture->setClearFlags(GL_COLOR_BUFFER_BIT);
/* add the render texture to the scene */
addChild(renderTexture);
renderTexture->setAutoDraw(true);
scheduleUpdate();
// Toggle clear on / off
auto item = MenuItemFont::create("Clear On/Off", CC_CALLBACK_1(RenderTextureTargetNode::touched, this));
auto menu = Menu::create(item, NULL);
2012-11-20 16:45:59 +08:00
addChild(menu);
2013-07-12 14:11:55 +08:00
menu->setPosition(Point(s.width/2, s.height/2));
2012-11-20 16:45:59 +08:00
}
void RenderTextureTargetNode::touched(Object* sender)
2012-11-20 16:45:59 +08:00
{
if (renderTexture->getClearFlags() == 0)
{
renderTexture->setClearFlags(GL_COLOR_BUFFER_BIT);
}
else
{
renderTexture->setClearFlags(0);
renderTexture->setClearColor(Color4F( CCRANDOM_0_1(), CCRANDOM_0_1(), CCRANDOM_0_1(), 1));
2012-11-20 16:45:59 +08:00
}
}
void RenderTextureTargetNode::update(float dt)
{
static float time = 0;
float r = 80;
2013-07-12 14:11:55 +08:00
sprite1->setPosition(Point(cosf(time * 2) * r, sinf(time * 2) * r));
sprite2->setPosition(Point(sinf(time * 2) * r, cosf(time * 2) * r));
2012-11-20 16:45:59 +08:00
time += dt;
}
string RenderTextureTargetNode::title()
{
return "Testing Render Target Node";
}
string RenderTextureTargetNode::subtitle()
{
return "Sprites should be equal and move with each frame";
}
2013-02-28 16:35:42 +08:00
// SpriteRenderTextureBug
SpriteRenderTextureBug::SimpleSprite::SimpleSprite() : rt(NULL) {}
SpriteRenderTextureBug::SimpleSprite* SpriteRenderTextureBug::SimpleSprite::create(const char* filename, const Rect &rect)
2013-02-28 16:35:42 +08:00
{
auto sprite = new SimpleSprite();
2013-02-28 16:35:42 +08:00
if (sprite && sprite->initWithFile(filename, rect))
{
sprite->autorelease();
}
else
{
CC_SAFE_DELETE(sprite);
}
return sprite;
}
void SpriteRenderTextureBug::SimpleSprite::draw()
{
if (rt == NULL)
{
auto s = Director::getInstance()->getWinSize();
rt = new RenderTexture();
rt->initWithWidthAndHeight(s.width, s.height, Texture2D::PixelFormat::RGBA8888);
2013-02-28 16:35:42 +08:00
}
rt->beginWithClear(0.0f, 0.0f, 0.0f, 1.0f);
rt->end();
CC_NODE_DRAW_SETUP();
BlendFunc blend = getBlendFunc();
GL::blendFunc(blend.src, blend.dst);
2013-02-28 16:35:42 +08:00
GL::bindTexture2D(getTexture()->getName());
2013-02-28 16:35:42 +08:00
//
// Attributes
//
GL::enableVertexAttribs(cocos2d::GL::VERTEX_ATTRIB_FLAG_POS_COLOR_TEX);
2013-02-28 16:35:42 +08:00
#define kQuadSize sizeof(_quad.bl)
long offset = (long)&_quad;
2013-02-28 16:35:42 +08:00
// vertex
int diff = offsetof( V3F_C4B_T2F, vertices);
glVertexAttribPointer(GLProgram::VERTEX_ATTRIB_POSITION, 3, GL_FLOAT, GL_FALSE, kQuadSize, (void*) (offset + diff));
2013-02-28 16:35:42 +08:00
// texCoods
diff = offsetof( V3F_C4B_T2F, texCoords);
glVertexAttribPointer(GLProgram::VERTEX_ATTRIB_TEX_COORDS, 2, GL_FLOAT, GL_FALSE, kQuadSize, (void*)(offset + diff));
2013-02-28 16:35:42 +08:00
// color
diff = offsetof( V3F_C4B_T2F, colors);
glVertexAttribPointer(GLProgram::VERTEX_ATTRIB_COLOR, 4, GL_UNSIGNED_BYTE, GL_TRUE, kQuadSize, (void*)(offset + diff));
2013-02-28 16:35:42 +08:00
glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
}
SpriteRenderTextureBug::SpriteRenderTextureBug()
{
setTouchEnabled(true);
auto s = Director::getInstance()->getWinSize();
2013-07-12 14:11:55 +08:00
addNewSpriteWithCoords(Point(s.width/2, s.height/2));
2013-02-28 16:35:42 +08:00
}
SpriteRenderTextureBug::SimpleSprite* SpriteRenderTextureBug::addNewSpriteWithCoords(const Point& p)
2013-02-28 16:35:42 +08:00
{
int idx = CCRANDOM_0_1() * 1400 / 100;
int x = (idx%5) * 85;
int y = (idx/5) * 121;
auto sprite = SpriteRenderTextureBug::SimpleSprite::create("Images/grossini_dance_atlas.png",
Rect(x,y,85,121));
2013-02-28 16:35:42 +08:00
addChild(sprite);
sprite->setPosition(p);
FiniteTimeAction *action = NULL;
2013-02-28 16:35:42 +08:00
float rd = CCRANDOM_0_1();
if (rd < 0.20)
action = ScaleBy::create(3, 2);
2013-02-28 16:35:42 +08:00
else if (rd < 0.40)
action = RotateBy::create(3, 360);
2013-02-28 16:35:42 +08:00
else if (rd < 0.60)
action = Blink::create(1, 3);
2013-02-28 16:35:42 +08:00
else if (rd < 0.8 )
action = TintBy::create(2, 0, -255, -255);
2013-02-28 16:35:42 +08:00
else
action = FadeOut::create(2);
2013-02-28 16:35:42 +08:00
auto action_back = action->reverse();
auto seq = Sequence::create(action, action_back, NULL);
2013-02-28 16:35:42 +08:00
sprite->runAction(RepeatForever::create(seq));
2013-02-28 16:35:42 +08:00
//return sprite;
return NULL;
}
void SpriteRenderTextureBug::ccTouchesEnded(Set* touches, Event* event)
2013-02-28 16:35:42 +08:00
{
for (auto &item: *touches)
2013-02-28 16:35:42 +08:00
{
auto touch = static_cast<Touch*>(item);
auto location = touch->getLocation();
2013-02-28 16:35:42 +08:00
addNewSpriteWithCoords(location);
}
}
std::string SpriteRenderTextureBug::title()
{
return "SpriteRenderTextureBug";
}
std::string SpriteRenderTextureBug::subtitle()
{
return "Touch the screen. Sprite should appear on under the touch";
}