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

880 lines
24 KiB
C++
Raw Normal View History

2012-11-21 15:22:54 +08:00
//
// Clipping Demo
//
//
// by Pierre-David Bélanger
//
#include "ClippingNodeTest.h"
#include "../testResource.h"
2013-12-26 15:30:13 +08:00
#include "renderer/CCRenderer.h"
2012-11-21 15:22:54 +08:00
enum {
kTagTitleLabel = 1,
kTagSubtitleLabel = 2,
kTagStencilNode = 100,
kTagClipperNode = 101,
kTagContentNode = 102,
};
2013-11-23 04:15:41 +08:00
static std::function<Layer*()> createFunctions[] = {
CL(ScrollViewDemo),
CL(HoleDemo),
CL(ShapeTest),
CL(ShapeInvertedTest),
CL(SpriteTest),
CL(SpriteNoAlphaTest),
CL(SpriteInvertedTest),
CL(NestedTest),
CL(RawStencilBufferTest),
CL(RawStencilBufferTest2),
CL(RawStencilBufferTest3),
CL(RawStencilBufferTest4),
CL(RawStencilBufferTest5),
CL(RawStencilBufferTest6)
2012-11-21 15:22:54 +08:00
};
static int sceneIdx=-1;
#define MAX_LAYER (sizeof(createFunctions) / sizeof(createFunctions[0]))
static Layer* nextAction()
2012-11-21 15:22:54 +08:00
{
sceneIdx++;
sceneIdx = sceneIdx % MAX_LAYER;
auto layer = (createFunctions[sceneIdx])();
2013-11-23 04:15:41 +08:00
return layer;
2012-11-21 15:22:54 +08:00
}
static Layer* backAction()
2012-11-21 15:22:54 +08:00
{
sceneIdx--;
int total = MAX_LAYER;
if( sceneIdx < 0 )
sceneIdx += total;
auto layer = (createFunctions[sceneIdx])();
2013-11-23 04:15:41 +08:00
return layer;
2012-11-21 15:22:54 +08:00
}
static Layer* restartAction()
2012-11-21 15:22:54 +08:00
{
auto layer = (createFunctions[sceneIdx])();
2013-11-23 04:15:41 +08:00
return layer;
2012-11-21 15:22:54 +08:00
}
//#pragma mark Demo examples start here
//@implementation BaseClippingNodeTest
bool BaseClippingNodeTest::init()
{
if (BaseTest::init()) {
2012-11-21 15:22:54 +08:00
auto background = Sprite::create(s_back3);
background->setAnchorPoint( Point::ZERO );
background->setPosition( Point::ZERO );
2012-11-21 15:22:54 +08:00
this->addChild(background, -1);
this->setup();
return true;
}
return false;
}
BaseClippingNodeTest::~BaseClippingNodeTest()
{
Director::getInstance()->getTextureCache()->removeUnusedTextures();
2012-11-21 15:22:54 +08:00
}
std::string BaseClippingNodeTest::title() const
2012-11-21 15:22:54 +08:00
{
return "Clipping Demo";
}
std::string BaseClippingNodeTest::subtitle() const
2012-11-21 15:22:54 +08:00
{
return "";
}
void BaseClippingNodeTest::restartCallback(Object* sender)
2012-11-21 15:22:54 +08:00
{
2013-11-23 04:15:41 +08:00
Scene *s = new ClippingNodeTestScene();
2012-11-21 15:22:54 +08:00
s->addChild(restartAction());
Director::getInstance()->replaceScene(s);
2013-11-23 04:15:41 +08:00
s->release();
2012-11-21 15:22:54 +08:00
}
void BaseClippingNodeTest::nextCallback(Object* sender)
2012-11-21 15:22:54 +08:00
{
2013-11-23 04:15:41 +08:00
Scene *s = new ClippingNodeTestScene();
2012-11-21 15:22:54 +08:00
s->addChild(nextAction());
Director::getInstance()->replaceScene(s);
2013-11-23 04:15:41 +08:00
s->release();
2012-11-21 15:22:54 +08:00
}
void BaseClippingNodeTest::backCallback(Object* sender)
2012-11-21 15:22:54 +08:00
{
2013-11-23 04:15:41 +08:00
Scene *s = new ClippingNodeTestScene();
2012-11-21 15:22:54 +08:00
s->addChild(backAction());
Director::getInstance()->replaceScene(s);
2013-11-23 04:15:41 +08:00
s->release();
2012-11-21 15:22:54 +08:00
}
void BaseClippingNodeTest::setup()
{
}
//#pragma mark - BasicTest
std::string BasicTest::title() const
2012-11-21 15:22:54 +08:00
{
return "Basic Test";
}
std::string BasicTest::subtitle() const
2012-11-21 15:22:54 +08:00
{
return "";
}
void BasicTest::setup()
{
auto s = Director::getInstance()->getWinSize();
2012-11-21 15:22:54 +08:00
auto stencil = this->stencil();
2012-11-21 15:22:54 +08:00
stencil->setTag( kTagStencilNode );
2013-07-12 14:11:55 +08:00
stencil->setPosition( Point(50, 50) );
2012-11-21 15:22:54 +08:00
auto clipper = this->clipper();
2012-11-21 15:22:54 +08:00
clipper->setTag( kTagClipperNode );
2013-07-12 14:11:55 +08:00
clipper->setAnchorPoint(Point(0.5, 0.5));
clipper->setPosition( Point(s.width / 2 - 50, s.height / 2 - 50) );
2012-11-21 15:22:54 +08:00
clipper->setStencil(stencil);
this->addChild(clipper);
auto content = this->content();
2013-07-12 14:11:55 +08:00
content->setPosition( Point(50, 50) );
2012-11-21 15:22:54 +08:00
clipper->addChild(content);
}
Action* BasicTest::actionRotate()
2012-11-21 15:22:54 +08:00
{
return RepeatForever::create(RotateBy::create(1.0f, 90.0f));
2012-11-21 15:22:54 +08:00
}
Action* BasicTest::actionScale()
2012-11-21 15:22:54 +08:00
{
auto scale = ScaleBy::create(1.33f, 1.5f);
return RepeatForever::create(Sequence::create(scale, scale->reverse(), NULL));
2012-11-21 15:22:54 +08:00
}
DrawNode* BasicTest::shape()
2012-11-21 15:22:54 +08:00
{
auto shape = DrawNode::create();
static Point triangle[3];
2013-07-12 14:11:55 +08:00
triangle[0] = Point(-100, -100);
triangle[1] = Point(100, -100);
triangle[2] = Point(0, 100);
2012-11-21 15:22:54 +08:00
static Color4F green(0, 1, 0, 1);
2012-11-21 15:22:54 +08:00
shape->drawPolygon(triangle, 3, green, 0, green);
return shape;
}
Sprite* BasicTest::grossini()
2012-11-21 15:22:54 +08:00
{
auto grossini = Sprite::create(s_pathGrossini);
2012-11-21 15:22:54 +08:00
grossini->setScale( 1.5 );
return grossini;
}
Node* BasicTest::stencil()
2012-11-21 15:22:54 +08:00
{
return NULL;
}
ClippingNode* BasicTest::clipper()
2012-11-21 15:22:54 +08:00
{
return ClippingNode::create();
2012-11-21 15:22:54 +08:00
}
Node* BasicTest::content()
2012-11-21 15:22:54 +08:00
{
return NULL;
}
//#pragma mark - ShapeTest
std::string ShapeTest::title() const
2012-11-21 15:22:54 +08:00
{
return "Shape Basic Test";
}
std::string ShapeTest::subtitle() const
2012-11-21 15:22:54 +08:00
{
return "A DrawNode as stencil and Sprite as content";
}
Node* ShapeTest::stencil()
2012-11-21 15:22:54 +08:00
{
auto node = this->shape();
2012-11-21 15:22:54 +08:00
node->runAction(this->actionRotate());
return node;
}
Node* ShapeTest::content()
2012-11-21 15:22:54 +08:00
{
auto node = this->grossini();
2012-11-21 15:22:54 +08:00
node->runAction(this->actionScale());
return node;
}
//#pragma mark - ShapeInvertedTest
std::string ShapeInvertedTest::title() const
2012-11-21 15:22:54 +08:00
{
return "Shape Inverted Basic Test";
}
std::string ShapeInvertedTest::subtitle() const
2012-11-21 15:22:54 +08:00
{
return "A DrawNode as stencil and Sprite as content, inverted";
}
ClippingNode* ShapeInvertedTest::clipper()
2012-11-21 15:22:54 +08:00
{
auto clipper = ShapeTest::clipper();
2012-11-21 15:22:54 +08:00
clipper->setInverted(true);
return clipper;
}
//#pragma mark - SpriteTest
std::string SpriteTest::title() const
2012-11-21 15:22:54 +08:00
{
return "Sprite Basic Test";
}
std::string SpriteTest::subtitle() const
2012-11-21 15:22:54 +08:00
{
return "A Sprite as stencil and DrawNode as content";
}
Node* SpriteTest::stencil()
2012-11-21 15:22:54 +08:00
{
auto node = this->grossini();
2012-11-21 15:22:54 +08:00
node->runAction(this->actionRotate());
return node;
}
ClippingNode* SpriteTest::clipper()
2012-11-21 15:22:54 +08:00
{
auto clipper = BasicTest::clipper();
2012-11-21 15:22:54 +08:00
clipper->setAlphaThreshold(0.05f);
return clipper;
}
Node* SpriteTest::content()
2012-11-21 15:22:54 +08:00
{
auto node = this->shape();
2012-11-21 15:22:54 +08:00
node->runAction(this->actionScale());
return node;
}
//#pragma mark - SpriteNoAlphaTest
std::string SpriteNoAlphaTest::title() const
2012-11-21 15:22:54 +08:00
{
return "Sprite No Alpha Basic Test";
}
std::string SpriteNoAlphaTest::subtitle() const
2012-11-21 15:22:54 +08:00
{
return "A Sprite as stencil and DrawNode as content, no alpha";
}
ClippingNode* SpriteNoAlphaTest::clipper()
2012-11-21 15:22:54 +08:00
{
auto clipper = SpriteTest::clipper();
2012-11-21 15:22:54 +08:00
clipper->setAlphaThreshold(1);
return clipper;
}
//#pragma mark - SpriteInvertedTest
std::string SpriteInvertedTest::title() const
2012-11-21 15:22:54 +08:00
{
return "Sprite Inverted Basic Test";
}
std::string SpriteInvertedTest::subtitle() const
2012-11-21 15:22:54 +08:00
{
return "A Sprite as stencil and DrawNode as content, inverted";
}
ClippingNode* SpriteInvertedTest::clipper()
2012-11-21 15:22:54 +08:00
{
auto clipper = SpriteTest::clipper();
2012-11-21 15:22:54 +08:00
clipper->setAlphaThreshold(0.05f);
clipper->setInverted(true);
return clipper;
}
//#pragma mark - NestedTest
std::string NestedTest::title() const
2012-11-21 15:22:54 +08:00
{
return "Nested Test";
}
std::string NestedTest::subtitle() const
2012-11-21 15:22:54 +08:00
{
return "Nest 9 Clipping Nodes, max is usually 8";
}
void NestedTest::setup()
{
static int depth = 9;
Node* parent = this;
2012-11-21 15:22:54 +08:00
for (int i = 0; i < depth; i++) {
int size = 225 - i * (225 / (depth * 2));
auto clipper = ClippingNode::create();
clipper->setContentSize(Size(size, size));
2013-07-12 14:11:55 +08:00
clipper->setAnchorPoint(Point(0.5, 0.5));
clipper->setPosition( Point(parent->getContentSize().width / 2, parent->getContentSize().height / 2) );
2012-11-21 15:22:54 +08:00
clipper->setAlphaThreshold(0.05f);
clipper->runAction(RepeatForever::create(RotateBy::create(i % 3 ? 1.33 : 1.66, i % 2 ? 90 : -90)));
2012-11-21 15:22:54 +08:00
parent->addChild(clipper);
auto stencil = Sprite::create(s_pathGrossini);
2012-11-21 15:22:54 +08:00
stencil->setScale( 2.5 - (i * (2.5 / depth)) );
2013-07-12 14:11:55 +08:00
stencil->setAnchorPoint( Point(0.5, 0.5) );
stencil->setPosition( Point(clipper->getContentSize().width / 2, clipper->getContentSize().height / 2) );
2012-11-21 15:22:54 +08:00
stencil->setVisible(false);
stencil->runAction(Sequence::createWithTwoActions(DelayTime::create(i), Show::create()));
2012-11-21 15:22:54 +08:00
clipper->setStencil(stencil);
clipper->addChild(stencil);
parent = clipper;
}
}
//#pragma mark - HoleDemo
HoleDemo::~HoleDemo()
{
CC_SAFE_RELEASE(_outerClipper);
CC_SAFE_RELEASE(_holes);
CC_SAFE_RELEASE(_holesStencil);
2012-11-21 15:22:54 +08:00
}
std::string HoleDemo::title() const
2012-11-21 15:22:54 +08:00
{
return "Hole Demo";
}
std::string HoleDemo::subtitle() const
2012-11-21 15:22:54 +08:00
{
return "Touch/click to poke holes";
}
void HoleDemo::setup()
{
auto target = Sprite::create(s_pathBlock);
target->setAnchorPoint(Point::ZERO);
2012-11-21 15:22:54 +08:00
target->setScale(3);
_outerClipper = ClippingNode::create();
_outerClipper->retain();
AffineTransform tranform = AffineTransform::IDENTITY;
tranform = AffineTransformScale(tranform, target->getScale(), target->getScale());
2012-11-21 15:22:54 +08:00
_outerClipper->setContentSize( SizeApplyAffineTransform(target->getContentSize(), tranform));
2013-07-12 14:11:55 +08:00
_outerClipper->setAnchorPoint( Point(0.5, 0.5) );
_outerClipper->setPosition(Point(this->getContentSize()) * 0.5f);
_outerClipper->runAction(RepeatForever::create(RotateBy::create(1, 45)));
2012-11-21 15:22:54 +08:00
_outerClipper->setStencil( target );
2012-11-21 15:22:54 +08:00
auto holesClipper = ClippingNode::create();
2012-11-21 15:22:54 +08:00
holesClipper->setInverted(true);
holesClipper->setAlphaThreshold( 0.05f );
holesClipper->addChild(target);
_holes = Node::create();
_holes->retain();
2012-11-21 15:22:54 +08:00
holesClipper->addChild(_holes);
2012-11-21 15:22:54 +08:00
_holesStencil = Node::create();
_holesStencil->retain();
2012-11-21 15:22:54 +08:00
holesClipper->setStencil( _holesStencil);
2012-11-21 15:22:54 +08:00
_outerClipper->addChild(holesClipper);
2012-11-21 15:22:54 +08:00
this->addChild(_outerClipper);
auto listener = EventListenerTouchAllAtOnce::create();
listener->onTouchesBegan = CC_CALLBACK_2(HoleDemo::onTouchesBegan, this);
_eventDispatcher->addEventListenerWithSceneGraphPriority(listener, this);
2012-11-21 15:22:54 +08:00
}
void HoleDemo::pokeHoleAtPoint(Point point)
2012-11-21 15:22:54 +08:00
{
float scale = CCRANDOM_0_1() * 0.2 + 0.9;
float rotation = CCRANDOM_0_1() * 360;
auto hole = Sprite::create("Images/hole_effect.png");
2012-11-21 15:22:54 +08:00
hole->setPosition( point );
hole->setRotation( rotation );
hole->setScale( scale );
_holes->addChild(hole);
2012-11-21 15:22:54 +08:00
auto holeStencil = Sprite::create("Images/hole_stencil.png");
2012-11-21 15:22:54 +08:00
holeStencil->setPosition( point );
holeStencil->setRotation( rotation );
holeStencil->setScale( scale );
_holesStencil->addChild(holeStencil);
2012-11-21 15:22:54 +08:00
_outerClipper->runAction(Sequence::createWithTwoActions(ScaleBy::create(0.05f, 0.95f),
ScaleTo::create(0.125f, 1)));
2012-11-21 15:22:54 +08:00
}
void HoleDemo::onTouchesBegan(const std::vector<Touch*>& touches, Event* event)
2012-11-21 15:22:54 +08:00
{
Touch *touch = (Touch *)touches[0];
Point point = _outerClipper->convertToNodeSpace(Director::getInstance()->convertToGL(touch->getLocationInView()));
auto rect = Rect(0, 0, _outerClipper->getContentSize().width, _outerClipper->getContentSize().height);
2012-11-21 15:22:54 +08:00
if (!rect.containsPoint(point)) return;
this->pokeHoleAtPoint(point);
}
//#pragma mark - ScrollViewDemo
std::string ScrollViewDemo::title() const
2012-11-21 15:22:54 +08:00
{
return "Scroll View Demo";
}
std::string ScrollViewDemo::subtitle() const
2012-11-21 15:22:54 +08:00
{
return "Move/drag to scroll the content";
}
void ScrollViewDemo::setup()
{
auto clipper = ClippingNode::create();
2012-11-21 15:22:54 +08:00
clipper->setTag( kTagClipperNode );
clipper->setContentSize( Size(200, 200) );
2013-07-12 14:11:55 +08:00
clipper->setAnchorPoint( Point(0.5, 0.5) );
clipper->setPosition( Point(this->getContentSize().width / 2, this->getContentSize().height / 2) );
clipper->runAction(RepeatForever::create(RotateBy::create(1, 45)));
2012-11-21 15:22:54 +08:00
this->addChild(clipper);
auto stencil = DrawNode::create();
Point rectangle[4];
2013-07-12 14:11:55 +08:00
rectangle[0] = Point(0, 0);
rectangle[1] = Point(clipper->getContentSize().width, 0);
rectangle[2] = Point(clipper->getContentSize().width, clipper->getContentSize().height);
rectangle[3] = Point(0, clipper->getContentSize().height);
2012-11-21 15:22:54 +08:00
Color4F white(1, 1, 1, 1);
2012-11-21 15:22:54 +08:00
stencil->drawPolygon(rectangle, 4, white, 1, white);
clipper->setStencil(stencil);
auto content = Sprite::create(s_back2);
2012-11-21 15:22:54 +08:00
content->setTag( kTagContentNode );
2013-07-12 14:11:55 +08:00
content->setAnchorPoint( Point(0.5, 0.5) );
content->setPosition( Point(clipper->getContentSize().width / 2, clipper->getContentSize().height / 2) );
2012-11-21 15:22:54 +08:00
clipper->addChild(content);
_scrolling = false;
2012-11-21 15:22:54 +08:00
auto listener = EventListenerTouchAllAtOnce::create();
listener->onTouchesBegan = CC_CALLBACK_2(ScrollViewDemo::onTouchesBegan, this);
listener->onTouchesMoved = CC_CALLBACK_2(ScrollViewDemo::onTouchesMoved, this);
listener->onTouchesEnded = CC_CALLBACK_2(ScrollViewDemo::onTouchesEnded, this);
_eventDispatcher->addEventListenerWithSceneGraphPriority(listener, this);
2012-11-21 15:22:54 +08:00
}
void ScrollViewDemo::onTouchesBegan(const std::vector<Touch*>& touches, Event *event)
2012-11-21 15:22:54 +08:00
{
Touch *touch = touches[0];
auto clipper = this->getChildByTag(kTagClipperNode);
Point point = clipper->convertToNodeSpace(Director::getInstance()->convertToGL(touch->getLocationInView()));
auto rect = Rect(0, 0, clipper->getContentSize().width, clipper->getContentSize().height);
_scrolling = rect.containsPoint(point);
_lastPoint = point;
2012-11-21 15:22:54 +08:00
}
void ScrollViewDemo::onTouchesMoved(const std::vector<Touch*>& touches, Event *event)
2012-11-21 15:22:54 +08:00
{
if (!_scrolling) return;
Touch *touch = touches[0];
auto clipper = this->getChildByTag(kTagClipperNode);
auto point = clipper->convertToNodeSpace(Director::getInstance()->convertToGL(touch->getLocationInView()));
Point diff = point - _lastPoint;
auto content = clipper->getChildByTag(kTagContentNode);
content->setPosition(content->getPosition() + diff);
_lastPoint = point;
2012-11-21 15:22:54 +08:00
}
void ScrollViewDemo::onTouchesEnded(const std::vector<Touch*>& touches, Event *event)
2012-11-21 15:22:54 +08:00
{
if (!_scrolling) return;
_scrolling = false;
2012-11-21 15:22:54 +08:00
}
//#pragma mark - RawStencilBufferTests
//#if COCOS2D_DEBUG > 1
static GLint _stencilBits = -1;
static const GLfloat _alphaThreshold = 0.05f;
static const int _planeCount = 8;
static const Color4F _planeColor[] = {
Color4F(0, 0, 0, 0.65f),
Color4F(0.7f, 0, 0, 0.6f),
Color4F(0, 0.7f, 0, 0.55f),
Color4F(0, 0, 0.7f, 0.5f),
Color4F(0.7f, 0.7f, 0, 0.45f),
Color4F(0, 0.7f, 0.7f, 0.4f),
Color4F(0.7f, 0, 0.7f, 0.35f),
Color4F(0.7f, 0.7f, 0.7f, 0.3f),
2012-11-21 15:22:54 +08:00
};
RawStencilBufferTest::~RawStencilBufferTest()
{
CC_SAFE_RELEASE(_sprite);
2012-11-21 15:22:54 +08:00
}
std::string RawStencilBufferTest::title() const
2012-11-21 15:22:54 +08:00
{
return "Raw Stencil Tests";
}
std::string RawStencilBufferTest::subtitle() const
2012-11-21 15:22:54 +08:00
{
return "1:Default";
}
void RawStencilBufferTest::setup()
{
glGetIntegerv(GL_STENCIL_BITS, &_stencilBits);
if (_stencilBits < 3) {
CCLOGWARN("Stencil must be enabled for the current GLView.");
2012-11-21 15:22:54 +08:00
}
_sprite = Sprite::create(s_pathGrossini);
_sprite->retain();
2013-07-12 14:11:55 +08:00
_sprite->setAnchorPoint( Point(0.5, 0) );
_sprite->setScale( 2.5f );
Director::getInstance()->setAlphaBlending(true);
2012-11-21 15:22:54 +08:00
}
void RawStencilBufferTest::draw()
{
auto winPoint = Point(Director::getInstance()->getWinSize());
2012-11-21 15:22:54 +08:00
auto planeSize = winPoint * (1.0 / _planeCount);
2012-11-21 15:22:54 +08:00
2013-12-26 15:30:13 +08:00
Renderer *renderer = Director::getInstance()->getRenderer();
2013-12-27 14:42:45 +08:00
size_t neededCmdSize = _planeCount * 2 + 2;
if(_renderCmds.size() != neededCmdSize)
{
_renderCmds.resize(neededCmdSize);
}
auto iter = _renderCmds.begin();
2013-12-26 15:30:13 +08:00
2013-12-27 14:42:45 +08:00
iter->init(0, _vertexZ);
iter->func = CC_CALLBACK_0(RawStencilBufferTest::onEnableStencil, this);
renderer->addCommand(&(*iter));
++iter;
2013-12-26 15:30:13 +08:00
2012-11-21 15:22:54 +08:00
for (int i = 0; i < _planeCount; i++) {
auto stencilPoint = planeSize * (_planeCount - i);
2012-11-21 15:22:54 +08:00
stencilPoint.x = winPoint.x;
auto spritePoint = planeSize * i;
2012-11-21 15:22:54 +08:00
spritePoint.x += planeSize.x / 2;
spritePoint.y = 0;
_sprite->setPosition( spritePoint );
2013-12-26 15:30:13 +08:00
2013-12-27 14:42:45 +08:00
iter->init(0, _vertexZ);
iter->func = CC_CALLBACK_0(RawStencilBufferTest::onBeforeDrawClip, this, i, stencilPoint);
renderer->addCommand(&(*iter));
++iter;
2012-11-21 15:22:54 +08:00
kmGLPushMatrix();
this->transform();
_sprite->visit();
2012-11-21 15:22:54 +08:00
kmGLPopMatrix();
2013-12-27 14:42:45 +08:00
iter->init(0, _vertexZ);
iter->func = CC_CALLBACK_0(RawStencilBufferTest::onBeforeDrawSprite, this, i, winPoint);
renderer->addCommand(&(*iter));
++iter;
2012-11-21 15:22:54 +08:00
kmGLPushMatrix();
this->transform();
_sprite->visit();
2012-11-21 15:22:54 +08:00
kmGLPopMatrix();
}
2013-12-27 14:42:45 +08:00
iter->init(0, _vertexZ);
iter->func = CC_CALLBACK_0(RawStencilBufferTest::onDisableStencil, this);
renderer->addCommand(&(*iter));
2013-12-26 15:30:13 +08:00
}
void RawStencilBufferTest::onEnableStencil()
{
glEnable(GL_STENCIL_TEST);
CHECK_GL_ERROR_DEBUG();
}
void RawStencilBufferTest::onDisableStencil()
{
2012-11-21 15:22:54 +08:00
glDisable(GL_STENCIL_TEST);
CHECK_GL_ERROR_DEBUG();
}
2013-12-26 15:30:13 +08:00
void RawStencilBufferTest::onBeforeDrawClip(int planeIndex, const Point& pt)
{
this->setupStencilForClippingOnPlane(planeIndex);
CHECK_GL_ERROR_DEBUG();
DrawPrimitives::drawSolidRect(Point::ZERO, pt, Color4F(1, 1, 1, 1));
}
void RawStencilBufferTest::onBeforeDrawSprite(int planeIndex, const Point& pt)
{
this->setupStencilForDrawingOnPlane(planeIndex);
CHECK_GL_ERROR_DEBUG();
DrawPrimitives::drawSolidRect(Point::ZERO, pt, _planeColor[planeIndex]);
}
2012-11-21 15:22:54 +08:00
void RawStencilBufferTest::setupStencilForClippingOnPlane(GLint plane)
{
GLint planeMask = 0x1 << plane;
glStencilMask(planeMask);
glClearStencil(0x0);
glClear(GL_STENCIL_BUFFER_BIT);
glFlush();
glStencilFunc(GL_NEVER, planeMask, planeMask);
glStencilOp(GL_REPLACE, GL_KEEP, GL_KEEP);
}
void RawStencilBufferTest::setupStencilForDrawingOnPlane(GLint plane)
{
GLint planeMask = 0x1 << plane;
glStencilFunc(GL_EQUAL, planeMask, planeMask);
2012-11-21 15:22:54 +08:00
glStencilOp(GL_KEEP, GL_KEEP, GL_KEEP);
}
//@implementation RawStencilBufferTest2
std::string RawStencilBufferTest2::subtitle() const
2012-11-21 15:22:54 +08:00
{
return "2:DepthMask:FALSE";
}
void RawStencilBufferTest2::setupStencilForClippingOnPlane(GLint plane)
{
RawStencilBufferTest::setupStencilForClippingOnPlane(plane);
glDepthMask(GL_FALSE);
}
void RawStencilBufferTest2::setupStencilForDrawingOnPlane(GLint plane)
{
glDepthMask(GL_TRUE);
RawStencilBufferTest::setupStencilForDrawingOnPlane(plane);
}
//@implementation RawStencilBufferTest3
std::string RawStencilBufferTest3::subtitle() const
2012-11-21 15:22:54 +08:00
{
return "3:DepthTest:DISABLE,DepthMask:FALSE";
}
void RawStencilBufferTest3::setupStencilForClippingOnPlane(GLint plane)
{
RawStencilBufferTest::setupStencilForClippingOnPlane(plane);
glDisable(GL_DEPTH_TEST);
glDepthMask(GL_FALSE);
}
void RawStencilBufferTest3::setupStencilForDrawingOnPlane(GLint plane)
{
glDepthMask(GL_TRUE);
2013-04-27 11:33:23 +08:00
//glEnable(GL_DEPTH_TEST);
2012-11-21 15:22:54 +08:00
RawStencilBufferTest::setupStencilForDrawingOnPlane(plane);
}
//@implementation RawStencilBufferTest4
std::string RawStencilBufferTest4::subtitle() const
2012-11-21 15:22:54 +08:00
{
return "4:DepthMask:FALSE,AlphaTest:ENABLE";
}
void RawStencilBufferTest4::setupStencilForClippingOnPlane(GLint plane)
{
RawStencilBufferTest::setupStencilForClippingOnPlane(plane);
glDepthMask(GL_FALSE);
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) || (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX) || (CC_TARGET_PLATFORM == CC_PLATFORM_MAC)
glEnable(GL_ALPHA_TEST);
glAlphaFunc(GL_GREATER, _alphaThreshold);
#else
auto program = ShaderCache::getInstance()->getProgram(GLProgram::SHADER_NAME_POSITION_TEXTURE_ALPHA_TEST);
GLint alphaValueLocation = glGetUniformLocation(program->getProgram(), GLProgram::UNIFORM_NAME_ALPHA_TEST_VALUE);
2012-11-21 15:22:54 +08:00
program->setUniformLocationWith1f(alphaValueLocation, _alphaThreshold);
_sprite->setShaderProgram(program );
2012-11-21 15:22:54 +08:00
#endif
}
void RawStencilBufferTest4::setupStencilForDrawingOnPlane(GLint plane)
{
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) || (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX) || (CC_TARGET_PLATFORM == CC_PLATFORM_MAC)
glDisable(GL_ALPHA_TEST);
#endif
glDepthMask(GL_TRUE);
RawStencilBufferTest::setupStencilForDrawingOnPlane(plane);
}
//@implementation RawStencilBufferTest5
std::string RawStencilBufferTest5::subtitle() const
2012-11-21 15:22:54 +08:00
{
return "5:DepthTest:DISABLE,DepthMask:FALSE,AlphaTest:ENABLE";
}
void RawStencilBufferTest5::setupStencilForClippingOnPlane(GLint plane)
{
RawStencilBufferTest::setupStencilForClippingOnPlane(plane);
glDisable(GL_DEPTH_TEST);
glDepthMask(GL_FALSE);
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) || (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX) || (CC_TARGET_PLATFORM == CC_PLATFORM_MAC)
glEnable(GL_ALPHA_TEST);
glAlphaFunc(GL_GREATER, _alphaThreshold);
#else
auto program = ShaderCache::getInstance()->getProgram(GLProgram::SHADER_NAME_POSITION_TEXTURE_ALPHA_TEST);
GLint alphaValueLocation = glGetUniformLocation(program->getProgram(), GLProgram::UNIFORM_NAME_ALPHA_TEST_VALUE);
2012-11-21 15:22:54 +08:00
program->setUniformLocationWith1f(alphaValueLocation, _alphaThreshold);
_sprite->setShaderProgram( program );
2012-11-21 15:22:54 +08:00
#endif
}
void RawStencilBufferTest5::setupStencilForDrawingOnPlane(GLint plane)
{
2012-11-21 16:28:31 +08:00
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) || (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX) || (CC_TARGET_PLATFORM == CC_PLATFORM_MAC)
2012-11-21 15:22:54 +08:00
glDisable(GL_ALPHA_TEST);
#endif
glDepthMask(GL_TRUE);
2013-04-27 11:33:23 +08:00
//glEnable(GL_DEPTH_TEST);
2012-11-21 15:22:54 +08:00
RawStencilBufferTest::setupStencilForDrawingOnPlane(plane);
}
//@implementation RawStencilBufferTest6
std::string RawStencilBufferTest6::subtitle() const
2012-11-21 15:22:54 +08:00
{
return "6:ManualClear,AlphaTest:ENABLE";
}
void RawStencilBufferTest6::setup()
{
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) || (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX) || (CC_TARGET_PLATFORM == CC_PLATFORM_MAC)
auto winPoint = Point(Director::getInstance()->getWinSize());
//by default, glReadPixels will pack data with 4 bytes allignment
unsigned char bits[4] = {0,0,0,0};
2012-11-21 15:22:54 +08:00
glStencilMask(~0);
glClearStencil(0);
glClear(GL_STENCIL_BUFFER_BIT);
glFlush();
glReadPixels(0, 0, 1, 1, GL_STENCIL_INDEX, GL_UNSIGNED_BYTE, &bits);
auto clearToZeroLabel = LabelTTF::create(String::createWithFormat("00=%02x", bits[0])->getCString(), "Arial", 20);
2013-07-12 18:04:32 +08:00
clearToZeroLabel->setPosition( Point((winPoint.x / 3) * 1, winPoint.y - 10) );
2012-11-21 15:22:54 +08:00
this->addChild(clearToZeroLabel);
glStencilMask(0x0F);
glClearStencil(0xAA);
glClear(GL_STENCIL_BUFFER_BIT);
glFlush();
glReadPixels(0, 0, 1, 1, GL_STENCIL_INDEX, GL_UNSIGNED_BYTE, &bits);
auto clearToMaskLabel = LabelTTF::create(String::createWithFormat("0a=%02x", bits[0])->getCString(), "Arial", 20);
2013-07-12 18:04:32 +08:00
clearToMaskLabel->setPosition( Point((winPoint.x / 3) * 2, winPoint.y - 10) );
2012-11-21 15:22:54 +08:00
this->addChild(clearToMaskLabel);
#endif
glStencilMask(~0);
RawStencilBufferTest::setup();
}
void RawStencilBufferTest6::setupStencilForClippingOnPlane(GLint plane)
{
GLint planeMask = 0x1 << plane;
glStencilMask(planeMask);
glStencilFunc(GL_NEVER, 0, planeMask);
glStencilOp(GL_REPLACE, GL_KEEP, GL_KEEP);
DrawPrimitives::drawSolidRect(Point::ZERO, Point(Director::getInstance()->getWinSize()), Color4F(1, 1, 1, 1));
2012-11-21 15:22:54 +08:00
glStencilFunc(GL_NEVER, planeMask, planeMask);
glStencilOp(GL_REPLACE, GL_KEEP, GL_KEEP);
glDisable(GL_DEPTH_TEST);
glDepthMask(GL_FALSE);
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) || (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX) || (CC_TARGET_PLATFORM == CC_PLATFORM_MAC)
glEnable(GL_ALPHA_TEST);
glAlphaFunc(GL_GREATER, _alphaThreshold);
#else
auto program = ShaderCache::getInstance()->getProgram(GLProgram::SHADER_NAME_POSITION_TEXTURE_ALPHA_TEST);
GLint alphaValueLocation = glGetUniformLocation(program->getProgram(), GLProgram::UNIFORM_NAME_ALPHA_TEST_VALUE);
2012-11-21 15:22:54 +08:00
program->setUniformLocationWith1f(alphaValueLocation, _alphaThreshold);
_sprite->setShaderProgram(program);
2012-11-21 15:22:54 +08:00
#endif
glFlush();
}
void RawStencilBufferTest6::setupStencilForDrawingOnPlane(GLint plane)
{
2012-11-21 16:28:31 +08:00
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32) || (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX) || (CC_TARGET_PLATFORM == CC_PLATFORM_MAC)
2012-11-21 15:22:54 +08:00
glDisable(GL_ALPHA_TEST);
#endif
glDepthMask(GL_TRUE);
2013-04-27 11:33:23 +08:00
//glEnable(GL_DEPTH_TEST);
2012-11-21 15:22:54 +08:00
RawStencilBufferTest::setupStencilForDrawingOnPlane(plane);
glFlush();
}
//#endif // COCOS2D_DEBUG > 1
void ClippingNodeTestScene::runThisTest()
{
auto layer = nextAction();
addChild(layer);
Director::getInstance()->replaceScene(this);
2012-11-21 15:22:54 +08:00
}