axmol/tests/cpp-tests/Classes/NewRendererTest/NewRendererTest.cpp

1077 lines
32 KiB
C++
Raw Normal View History

2013-12-18 10:41:09 +08:00
/****************************************************************************
Copyright (c) 2013 cocos2d-x.org
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
Copyright (c) 2021 Bytedance Inc.
2013-12-18 10:41:09 +08:00
https://axis-project.github.io/
2013-12-18 10:41:09 +08:00
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.
****************************************************************************/
2013-12-17 16:34:05 +08:00
#include "NewRendererTest.h"
#include <chrono>
#include <sstream>
#include "renderer/backend/Device.h"
namespace
{
enum CustomProgramType : uint32_t
{
2021-12-28 16:06:23 +08:00
BLUR = 1,
SEPIA = 2,
};
}
USING_NS_AX;
2021-12-28 16:06:23 +08:00
class DurationRecorder
{
public:
2021-12-28 17:20:17 +08:00
void startTick(std::string_view key) { _durations[key] = -now(); }
2021-12-28 17:20:17 +08:00
int endTick(std::string_view key)
2021-12-28 16:06:23 +08:00
{
auto n = now();
auto itr = _durations.find(key);
2021-12-28 16:06:23 +08:00
if (_durations.find(key) == _durations.end())
{
return -1;
}
2021-12-28 16:06:23 +08:00
else if (itr->second < 0)
{
itr->second = n + itr->second;
}
2019-10-25 16:40:30 +08:00
return static_cast<int>(itr->second);
}
2021-12-28 16:06:23 +08:00
inline int64_t now() const
{
return std::chrono::duration_cast<std::chrono::nanoseconds>(std::chrono::steady_clock::now().time_since_epoch())
.count();
}
2021-12-28 16:06:23 +08:00
void reset() { _durations.clear(); }
private:
2021-12-28 17:20:17 +08:00
hlookup::string_map<int64_t> _durations;
};
NewRendererTests::NewRendererTests()
2013-11-13 03:19:18 +08:00
{
auto programCache = backend::ProgramCache::getInstance();
programCache->registerCustomProgramFactory(CustomProgramType::BLUR, positionTextureColor_vert,
FileUtils::getInstance()->getStringFromFile("Shaders/example_Blur.fsh"));
2021-12-28 16:06:23 +08:00
programCache->registerCustomProgramFactory(
CustomProgramType::SEPIA, positionTextureColor_vert,
FileUtils::getInstance()->getStringFromFile("Shaders/example_Sepia.fsh"));
ADD_TEST_CASE(NewSpriteTest);
ADD_TEST_CASE(GroupCommandTest);
2021-12-28 16:06:23 +08:00
// ADD_TEST_CASE(NewClippingNodeTest); // When depth and stencil are used together, ...
ADD_TEST_CASE(NewDrawNodeTest);
ADD_TEST_CASE(NewCullingTest);
ADD_TEST_CASE(VBOFullTest);
ADD_TEST_CASE(CaptureScreenTest);
ADD_TEST_CASE(CaptureNodeTest);
Renderer improvments: TriangleCommand and QuadCommand merged - more options for batching (faster) - less flushing in between commands (faster) - less renderer code (easier to maintain) - less VBO/VAO (less memory) - uses temporary buffer for faster rendering (more memory) - QuadCommand is just a subclass of TriangleCommand (simpler) - but statically it allocates indices internally (like any TriangleCommand) (more memory, but not that much) - adds more tests for SpritePolygon - adds test for batching Tri + Quad command - and fixes some other bugs Squashed commit of the following: commit cce893a9114da5dda91a895e4e661894f365e2c7 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Mon Feb 8 06:56:57 2016 -0800 QuadCommand: indices are static thanks @Darinex commit e5fd1c14e93d2f07b8266bfec03cf7206d348f59 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 19:18:42 2016 -0800 little improvements in xcode proj management commit 6cd29764e01ad300f4e89e62aa6b399f73e94f01 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 19:05:52 2016 -0800 Renderer improvments: TriangleCommand and QuadCommand merged - more options for batching (faster) - less flushing in between commands (faster) - less renderer code (easier to maintain) - less VBO/VAO (less memory) - uses temporary buffer for faster rendering (more memory) and fixes some other bugs Squashed commit of the following: commit af7a209435c5f2430c31ab3ebcc7f45051eacb1a Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 18:55:27 2016 -0800 adds test for batching quads and tris commit 25816e3eaeffd4b0cfe5fa15e97ff84e9013b8be Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 18:40:15 2016 -0800 cleanup renderer commit 7f9785056681756c865d603516c7e14c46040e82 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 15:34:48 2016 -0800 clean up docs commit 92a8b679dd404e4ca2839d85e2bd925195b12996 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 15:18:52 2016 -0800 QuadCommand converted to Triangles command commit 7e21ec12d3781f6964b4d639cfa4bdc79eb8ae80 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri Feb 5 16:17:29 2016 -0800 adds missing files... new test as well commit d1bd4391785515bdc2e1bebbeb3f321f983b51f2 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri Feb 5 14:35:41 2016 -0800 more tests for poly sprites commit 5775a25b1046671bd0f5af4c5ab52b308b34bb39 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri Feb 5 00:30:13 2016 -0800 malloc instead of std::vector commit 14a5d45cc978c55a182c03f181ca2bc603776561 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 21:40:46 2016 -0800 little optimization commit 5667cb2b62416f8a439a54c3973d5841fbe1b68b Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 19:13:13 2016 -0800 quad works as expected commit 462aef05baa6586591882faa366839bead4be068 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 15:22:59 2016 -0800 works commit c789e6c42811278563c7682b5620296ae8d84aeb Merge: d6c3729 de62924 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 14:08:49 2016 -0800 Merge branch 'v3' into uniform_matrix_auto commit d6c37297954af752ebf42ec5f71e5e2fe28c9cc2 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 13:54:07 2016 -0800 works ok... commit 45c288631989ea735cc31ec5aa683d9d41aacab3 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 12:58:34 2016 -0800 quad works! commit 7137cff51df09adee7129738cea2b69da090756e Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Feb 3 16:19:34 2016 -0800 more optimizations... WIP... doesn't work yet commit a8324c1a9acb6b82102e05eee6e5e5f341306c7b Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Tue Feb 2 21:59:42 2016 -0800 compiles in release mode more tests... better threshold commit 884ffc756e7520fcbb9252260181538ec81b8368 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Tue Feb 2 17:21:32 2016 -0800 initial uniform_auto_matrix commit Changes the CC_matrix uniform in runtime depending on whether the command can be batched or not. Lot of things missing, though... like performance tests.
2016-02-09 03:25:37 +08:00
ADD_TEST_CASE(BugAutoCulling);
ADD_TEST_CASE(RendererBatchQuadTri);
2021-12-28 16:06:23 +08:00
ADD_TEST_CASE(RendererUniformBatch);
2019-05-14 09:00:27 +08:00
ADD_TEST_CASE(RendererUniformBatch2);
ADD_TEST_CASE(SpriteCreation);
ADD_TEST_CASE(NonBatchSprites);
2013-11-13 03:19:18 +08:00
};
std::string MultiSceneTest::title() const
2013-11-13 03:19:18 +08:00
{
2014-02-28 23:02:22 +08:00
return "New Renderer";
2013-11-13 03:19:18 +08:00
}
std::string MultiSceneTest::subtitle() const
2013-11-13 03:19:18 +08:00
{
2014-02-28 23:02:22 +08:00
return "MultiSceneTest";
2013-11-13 03:19:18 +08:00
}
NewSpriteTest::NewSpriteTest()
{
2021-12-28 16:06:23 +08:00
auto touchListener = EventListenerTouchAllAtOnce::create();
touchListener->onTouchesEnded = CC_CALLBACK_2(NewSpriteTest::onTouchesEnded, this);
2013-11-08 08:50:53 +08:00
createSpriteTest();
createNewSpriteTest();
}
2021-12-28 16:06:23 +08:00
NewSpriteTest::~NewSpriteTest() {}
2013-11-13 03:19:18 +08:00
void NewSpriteTest::createSpriteTest()
{
Size winSize = Director::getInstance()->getWinSize();
Sprite* parent = Sprite::create("Images/grossini.png");
2021-12-28 16:06:23 +08:00
parent->setPosition(winSize.width / 4, winSize.height / 2);
Sprite* child1 = Sprite::create("Images/grossinis_sister1.png");
child1->setPosition(0.0f, -20.0f);
Sprite* child2 = Sprite::create("Images/grossinis_sister2.png");
child2->setPosition(20.0f, -20.0f);
Sprite* child3 = Sprite::create("Images/grossinis_sister1.png");
child3->setPosition(40.0f, -20.0f);
2013-11-08 07:48:37 +08:00
Sprite* child4 = Sprite::create("Images/grossinis_sister2.png");
child4->setPosition(60.0f, -20.0f);
2013-11-08 07:48:37 +08:00
Sprite* child5 = Sprite::create("Images/grossinis_sister2.png");
child5->setPosition(80.0f, -20.0f);
Sprite* child6 = Sprite::create("Images/grossinis_sister2.png");
child6->setPosition(100.0f, -20.0f);
Sprite* child7 = Sprite::create("Images/grossinis_sister2.png");
child7->setPosition(120.0f, -20.0f);
parent->addChild(child1);
parent->addChild(child2);
parent->addChild(child3);
parent->addChild(child4);
2013-11-08 07:48:37 +08:00
parent->addChild(child5);
parent->addChild(child6);
parent->addChild(child7);
addChild(parent);
}
2013-11-13 03:19:18 +08:00
void NewSpriteTest::createNewSpriteTest()
{
Size winSize = Director::getInstance()->getWinSize();
2013-12-23 21:07:25 +08:00
Sprite* parent = Sprite::create("Images/grossini.png");
2021-12-28 16:06:23 +08:00
parent->setPosition(winSize.width * 2 / 3, winSize.height / 2);
2013-12-23 21:07:25 +08:00
Sprite* child1 = Sprite::create("Images/grossinis_sister1.png");
child1->setPosition(0.0f, -20.0f);
2013-12-23 21:07:25 +08:00
Sprite* child2 = Sprite::create("Images/grossinis_sister2.png");
child2->setPosition(20.0f, -20.0f);
2013-12-23 21:07:25 +08:00
Sprite* child3 = Sprite::create("Images/grossinis_sister1.png");
child3->setPosition(40.0f, -20.0f);
2013-12-23 21:07:25 +08:00
Sprite* child4 = Sprite::create("Images/grossinis_sister2.png");
child4->setPosition(60.0f, -20.0f);
2013-12-23 21:07:25 +08:00
Sprite* child5 = Sprite::create("Images/grossinis_sister2.png");
2013-11-08 07:48:37 +08:00
child5->setPosition(80.0f, -20.0f);
2013-12-23 21:07:25 +08:00
Sprite* child6 = Sprite::create("Images/grossinis_sister2.png");
2013-11-08 07:48:37 +08:00
child6->setPosition(100.0f, -20.0f);
2013-12-23 21:07:25 +08:00
Sprite* child7 = Sprite::create("Images/grossinis_sister2.png");
2013-11-08 07:48:37 +08:00
child7->setPosition(120.0f, -20.0f);
parent->addChild(child1);
parent->addChild(child2);
parent->addChild(child3);
parent->addChild(child4);
2013-11-08 07:48:37 +08:00
parent->addChild(child5);
parent->addChild(child6);
parent->addChild(child7);
addChild(parent);
}
2021-12-28 16:06:23 +08:00
void NewSpriteTest::onTouchesEnded(const std::vector<Touch*>& touches, Event* event) {}
std::string NewSpriteTest::title() const
{
2014-03-06 03:50:12 +08:00
return "Renderer";
2013-11-13 03:19:18 +08:00
}
std::string NewSpriteTest::subtitle() const
2013-11-13 03:19:18 +08:00
{
return "SpriteTest";
}
2013-11-13 03:53:53 +08:00
class SpriteInGroupCommand : public Sprite
{
protected:
GroupCommand _spriteWrapperCommand;
2021-12-28 16:06:23 +08:00
public:
2021-12-28 15:58:56 +08:00
static SpriteInGroupCommand* create(std::string_view filename);
2021-12-28 16:06:23 +08:00
virtual void draw(Renderer* renderer, const Mat4& transform, uint32_t flags) override;
};
2021-12-28 15:58:56 +08:00
SpriteInGroupCommand* SpriteInGroupCommand::create(std::string_view filename)
{
2021-12-08 00:11:53 +08:00
SpriteInGroupCommand* sprite = new SpriteInGroupCommand();
sprite->initWithFile(filename);
sprite->autorelease();
return sprite;
}
2021-12-28 16:06:23 +08:00
void SpriteInGroupCommand::draw(Renderer* renderer, const Mat4& transform, uint32_t flags)
{
CCASSERT(renderer, "Render is null");
_spriteWrapperCommand.init(_globalZOrder);
renderer->addCommand(&_spriteWrapperCommand);
renderer->pushGroup(_spriteWrapperCommand.getRenderQueueID());
Sprite::draw(renderer, transform, flags);
renderer->popGroup();
}
GroupCommandTest::GroupCommandTest()
{
2021-12-28 16:06:23 +08:00
auto sprite = SpriteInGroupCommand::create("Images/grossini.png");
Size winSize = Director::getInstance()->getWinSize();
2021-12-28 16:06:23 +08:00
sprite->setPosition(winSize.width / 2, winSize.height / 2);
addChild(sprite);
}
2021-12-28 16:06:23 +08:00
GroupCommandTest::~GroupCommandTest() {}
std::string GroupCommandTest::title() const
{
return "Renderer";
}
std::string GroupCommandTest::subtitle() const
{
return "GroupCommandTest: You should see a sprite";
}
2013-11-16 03:29:11 +08:00
NewClippingNodeTest::NewClippingNodeTest()
{
2013-11-16 09:32:29 +08:00
auto s = Director::getInstance()->getWinSize();
auto clipper = ClippingNode::create();
2021-12-28 16:06:23 +08:00
clipper->setTag(kTagClipperNode);
clipper->setContentSize(Size(200.0f, 200.0f));
clipper->setAnchorPoint(Vec2(0.5f, 0.5f));
clipper->setPosition(Vec2(s.width / 2, s.height / 2));
2013-11-19 07:52:47 +08:00
2013-11-16 03:29:11 +08:00
clipper->runAction(RepeatForever::create(RotateBy::create(1, 45)));
this->addChild(clipper);
// TODO: Fix draw node as clip node
2021-12-28 16:06:23 +08:00
// auto stencil = NewDrawNode::create();
// Vec2 rectangle[4];
// rectangle[0] = Vec2(0, 0);
// rectangle[1] = Vec2(clipper->getContentSize().width, 0);
// rectangle[2] = Vec2(clipper->getContentSize().width, clipper->getContentSize().height);
// rectangle[3] = Vec2(0, clipper->getContentSize().height);
//
// Color4F white(1, 1, 1, 1);
// stencil->drawPolygon(rectangle, 4, white, 1, white);
// clipper->setStencil(stencil);
// Test with alpha Test
2013-11-19 07:52:47 +08:00
clipper->setAlphaThreshold(0.05f);
2013-12-23 21:07:25 +08:00
auto stencil = Sprite::create("Images/grossini.png");
2021-12-28 16:06:23 +08:00
stencil->setPosition(s.width / 2, s.height / 2);
2013-11-19 06:58:41 +08:00
clipper->setStencil(stencil);
2013-11-16 03:29:11 +08:00
2013-12-23 21:07:25 +08:00
auto content = Sprite::create("Images/background2.png");
2021-12-28 16:06:23 +08:00
content->setTag(kTagContentNode);
content->setAnchorPoint(Vec2(0.5f, 0.5f));
content->setPosition(Vec2(clipper->getContentSize().width / 2, clipper->getContentSize().height / 2));
2013-11-16 03:29:11 +08:00
clipper->addChild(content);
_scrolling = false;
2021-12-28 16:06:23 +08:00
auto listener = EventListenerTouchAllAtOnce::create();
2013-11-16 03:29:11 +08:00
listener->onTouchesBegan = CC_CALLBACK_2(NewClippingNodeTest::onTouchesBegan, this);
listener->onTouchesMoved = CC_CALLBACK_2(NewClippingNodeTest::onTouchesMoved, this);
listener->onTouchesEnded = CC_CALLBACK_2(NewClippingNodeTest::onTouchesEnded, this);
_eventDispatcher->addEventListenerWithSceneGraphPriority(listener, this);
}
2021-12-28 16:06:23 +08:00
NewClippingNodeTest::~NewClippingNodeTest() {}
2013-11-16 03:29:11 +08:00
std::string NewClippingNodeTest::title() const
2013-11-16 03:29:11 +08:00
{
return "New Render";
}
std::string NewClippingNodeTest::subtitle() const
2013-11-16 03:29:11 +08:00
{
return "ClipNode";
}
2021-12-28 16:06:23 +08:00
void NewClippingNodeTest::onTouchesBegan(const std::vector<Touch*>& touches, Event* event)
2013-11-16 03:29:11 +08:00
{
2021-12-28 16:06:23 +08:00
Touch* touch = touches[0];
2013-11-16 03:29:11 +08:00
auto clipper = this->getChildByTag(kTagClipperNode);
2021-12-28 16:06:23 +08:00
Vec2 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;
2013-11-16 03:29:11 +08:00
}
2021-12-28 16:06:23 +08:00
void NewClippingNodeTest::onTouchesMoved(const std::vector<Touch*>& touches, Event* event)
2013-11-16 03:29:11 +08:00
{
2021-12-28 16:06:23 +08:00
if (!_scrolling)
return;
Touch* touch = touches[0];
2013-11-16 03:29:11 +08:00
auto clipper = this->getChildByTag(kTagClipperNode);
2021-12-28 16:06:23 +08:00
auto point = clipper->convertToNodeSpace(Director::getInstance()->convertToGL(touch->getLocationInView()));
Vec2 diff = point - _lastPoint;
2013-11-16 03:29:11 +08:00
auto content = clipper->getChildByTag(kTagContentNode);
content->setPosition(content->getPosition() + diff);
_lastPoint = point;
}
2021-12-28 16:06:23 +08:00
void NewClippingNodeTest::onTouchesEnded(const std::vector<Touch*>& touches, Event* event)
2013-11-16 03:29:11 +08:00
{
2021-12-28 16:06:23 +08:00
if (!_scrolling)
return;
2013-11-16 03:29:11 +08:00
_scrolling = false;
}
2013-11-20 05:57:39 +08:00
/**
2021-12-28 16:06:23 +08:00
* NewDrawNode
*/
2013-11-20 05:57:39 +08:00
NewDrawNodeTest::NewDrawNodeTest()
{
auto s = Director::getInstance()->getWinSize();
auto parent = Node::create();
2021-12-28 16:06:23 +08:00
parent->setPosition(s.width / 2, s.height / 2);
2013-11-20 05:57:39 +08:00
addChild(parent);
auto rectNode = DrawNode::create();
Squashed commit of the following: commit a9572b8913f3a38b59adbd7b4017ab9848a6b2b5 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed May 14 10:03:44 2014 -0700 math renames `Vector2` -> `Vec2` `Vector3` -> `Vec3` `Vector4` -> `Vec4` `Matrix` -> `Mat4` commit 4e107f4bd854c26bfceb52b063d6bd9cea02d6a3 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 09:24:28 2014 -0700 raw version of rename Vector3 commit 1d115573ebe96a5fc815fa44fbe6417ea7dba841 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 09:07:14 2014 -0700 rename Vector2 after merge commit ab2ed58c129dbc30a4c0970ed94568c5d271657b Merge: 1978d2d 86fb75a Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 09:05:30 2014 -0700 Merge branch 'v3' into v3_renameMathClassName Conflicts: tests/cpp-tests/Classes/UITest/CocoStudioGUITest/UIButtonTest/UIButtonTest_Editor.cpp tests/cpp-tests/Classes/UITest/CocoStudioGUITest/UICheckBoxTest/UICheckBoxTest_Editor.cpp tests/cpp-tests/Classes/UITest/CocoStudioGUITest/UISliderTest/UISliderTest_Editor.cpp tests/cpp-tests/Classes/UITest/CocoStudioGUITest/UITextFieldTest/UITextFieldTest.cpp tests/cpp-tests/Classes/UITest/CocoStudioGUITest/UITextFieldTest/UITextFieldTest_Editor.cpp commit 1978d2d174877172ccddc083020a1bbf43ad3b39 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 08:51:45 2014 -0700 rename vector2 in tests/cpp-empty-test folder commit d4e0ff13dcce62724d2fece656543f26aa28e467 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:58:23 2014 -0700 rename vector2 in tests/cpp-tests cpp files commit be50ca2ec75e0fd32a6fcdaa15fe1ebb4cafe79f Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:52:57 2014 -0700 rename vector2 in tests/cpp-tests head files commit 6daef564400d4e28c4ce20859a68e0f583fed125 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:49:48 2014 -0700 rename vector2 in extension folder commit 8f3f0f65ceea92c9e7a0d87ab54e62220c5572e2 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:47:22 2014 -0700 rename vector2 in cocos/2d cpp files commit e1f3105aae06d595661a3030f519f7cc13aefbed Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:44:39 2014 -0700 rename vector2 in cocos/2d head files commit 6708d890bfe486109120c3cd4b9fe5c078b7108f Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:40:59 2014 -0700 rename vector2 in cocos/base folder commit d3978fa5447c31ea2f3ece5469b7e746dfba4248 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:40:43 2014 -0700 rename vector2 in cocos/deprecated folder commit 4bff45139363d6b9706edbbcf9f322d48b4fd019 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:40:26 2014 -0700 rename vector2 in cocos/editor-support folder commit 353d244c995f8b5d14f635c52aed8bc5e5fc1a6f Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:36:48 2014 -0700 rename vector2 in cocos/ui folder commit 758b8f4d513084b9922d7242e9b8f2c7f316de6c Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:32:39 2014 -0700 rename vector2 in cocos/renderer folder commit 0bd2710dd8714cecb993880bc37affd9ecb05c27 Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:32:15 2014 -0700 rename vector2 in cocos/physics folder commit b7f0581c4587348bdbc1478d5374c2325735f21d Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:25:01 2014 -0700 rename vector2 in cocos/math folder commit a8631a8e1a4e2740807ccd9be9d70de6ecaad7dd Author: Huabing.Xu <dabingnn@gmail.com> Date: Wed May 14 00:16:55 2014 -0700 rename Vector2 to Vec2 deprecate typedef Vector2
2014-05-15 01:07:09 +08:00
Vec2 rectangle[4];
rectangle[0] = Vec2(-50, -50);
rectangle[1] = Vec2(50, -50);
rectangle[2] = Vec2(50, 50);
rectangle[3] = Vec2(-50, 50);
2013-11-20 05:57:39 +08:00
Color4F white(1, 1, 1, 1);
rectNode->drawPolygon(rectangle, 4, white, 1, white);
parent->addChild(rectNode);
}
2021-12-28 16:06:23 +08:00
NewDrawNodeTest::~NewDrawNodeTest() {}
2013-11-20 05:57:39 +08:00
std::string NewDrawNodeTest::title() const
2013-11-20 05:57:39 +08:00
{
return "New Render";
}
std::string NewDrawNodeTest::subtitle() const
2013-11-20 05:57:39 +08:00
{
return "DrawNode";
}
2013-11-27 10:35:23 +08:00
NewCullingTest::NewCullingTest()
{
2021-12-28 16:06:23 +08:00
Size size = Director::getInstance()->getWinSize();
auto sprite = Sprite::create("Images/btn-about-normal-vertical.png");
2014-04-15 07:46:19 +08:00
sprite->setRotation(5);
2021-12-28 16:06:23 +08:00
sprite->setPosition(Vec2(size.width / 2, size.height / 3));
sprite->setScale(2);
addChild(sprite);
auto sprite2 = Sprite::create("Images/btn-about-normal-vertical.png");
sprite2->setRotation(-85);
2021-12-28 16:06:23 +08:00
sprite2->setPosition(Vec2(size.width / 2, size.height * 2 / 3));
sprite2->setScale(2);
addChild(sprite2);
2021-12-28 16:06:23 +08:00
auto listener = EventListenerTouchOneByOne::create();
listener->setSwallowTouches(true);
2021-12-28 16:06:23 +08:00
listener->onTouchBegan = CC_CALLBACK_2(NewCullingTest::onTouchBegan, this);
listener->onTouchMoved = CC_CALLBACK_2(NewCullingTest::onTouchMoved, this);
2021-12-28 16:06:23 +08:00
_eventDispatcher->addEventListenerWithSceneGraphPriority(listener, this);
}
2013-11-27 14:30:38 +08:00
2021-12-28 16:06:23 +08:00
bool NewCullingTest::onTouchBegan(Touch* touch, Event* event)
{
auto pos = touch->getLocation();
_lastPos = pos;
return true;
}
2013-11-27 14:30:38 +08:00
2021-12-28 16:06:23 +08:00
void NewCullingTest::onTouchMoved(Touch* touch, Event* event)
{
auto pos = touch->getLocation();
2021-12-28 16:06:23 +08:00
auto offset = pos - _lastPos;
2021-12-28 16:06:23 +08:00
auto layerPos = getPosition();
2021-12-28 16:06:23 +08:00
auto newPos = layerPos + offset;
setPosition(newPos);
_lastPos = pos;
2013-11-27 10:35:23 +08:00
}
2021-12-28 16:06:23 +08:00
NewCullingTest::~NewCullingTest() {}
2013-11-27 10:35:23 +08:00
std::string NewCullingTest::title() const
2013-11-27 10:35:23 +08:00
{
return "New Render";
}
std::string NewCullingTest::subtitle() const
2013-11-27 10:35:23 +08:00
{
return "Drag the layer to test the result of culling";
2013-11-27 10:35:23 +08:00
}
SpriteCreation::SpriteCreation()
{
2021-12-28 16:06:23 +08:00
Size s = Director::getInstance()->getWinSize();
Node* parent = Node::create();
2021-12-28 16:06:23 +08:00
parent->setPosition(s.width / 2, s.height / 2);
addChild(parent);
#define KEY_CREATION "11"
#define KEY_DESTROYATION "22"
2021-12-28 16:06:23 +08:00
labelCreate = Label::createWithTTF(TTFConfig("fonts/arial.ttf"), "Sprite Creation: ..");
labelDestory = Label::createWithTTF(TTFConfig("fonts/arial.ttf"), "Destroy Sprites: ..");
MenuItemFont::setFontName("fonts/arial.ttf");
MenuItemFont::setFontSize(65);
auto decrease = MenuItemFont::create(" - ", CC_CALLBACK_1(SpriteCreation::delSpritesCallback, this));
decrease->setColor(Color3B(0, 200, 20));
auto increase = MenuItemFont::create(" + ", CC_CALLBACK_1(SpriteCreation::addSpritesCallback, this));
increase->setColor(Color3B(0, 200, 20));
auto menu = Menu::create(decrease, increase, nullptr);
menu->alignItemsHorizontally();
menu->setPosition(Vec2(s.width / 2, s.height - 105));
addChild(menu, 1);
TTFConfig ttfCount("fonts/Marker Felt.ttf", 30);
_labelSpriteNum = Label::createWithTTF(ttfCount, "Label");
_labelSpriteNum->setColor(Color3B(0, 200, 20));
_labelSpriteNum->setPosition(Vec2(s.width / 2, s.height - 130));
addChild(_labelSpriteNum);
updateSpriteCountLabel(totalSprites);
labelCreate->setPosition(0, -20);
labelDestory->setPosition(0, -50);
parent->addChild(labelCreate);
parent->addChild(labelDestory);
doTest();
}
void SpriteCreation::updateSpriteCountLabel(int x)
{
totalSprites = std::max(1, x);
std::stringstream ss;
ss << totalSprites << " sprites";
_labelSpriteNum->setString(ss.str());
}
void SpriteCreation::doTest()
{
DurationRecorder perf;
2021-12-28 16:06:23 +08:00
std::vector<std::string> predefineTextures = {"Images/concave.png",
"Images/atlastest.png",
"Images/grossini_dance_atlas-mono.png",
"Images/HelloWorld.png",
"Images/background1.png",
"Images/background2.png",
"Images/stone.png",
"Images/issue_17116.png",
"Images/sprite_polygon_crash.png",
"Images/bitmapFontTest3.png",
"Images/cocos-html5.png",
"Images/Fog.png",
"Images/poly_test_textures.png",
"Images/powered.png",
"Images/bug14017.png",
"Images/test-rgba1.png",
"Images/grossinis_heads.png",
"Images/cocos2dbanner.png"};
std::vector<Sprite*> spriteCache;
spriteCache.reserve(totalSprites);
perf.startTick(KEY_CREATION);
2021-12-28 16:06:23 +08:00
for (int i = 0; i < totalSprites; ++i)
{
auto* sprite = new Sprite();
2021-12-28 16:06:23 +08:00
if (sprite == nullptr)
{
break;
}
2021-12-28 16:06:23 +08:00
if (!sprite->initWithFile(predefineTextures[i % predefineTextures.size()]))
{
delete sprite;
break;
}
spriteCache.push_back(sprite);
}
auto creationDuration = perf.endTick(KEY_CREATION);
perf.startTick(KEY_DESTROYATION);
2021-12-28 16:06:23 +08:00
for (int i = 0; i < totalSprites; ++i)
{
spriteCache[i]->release();
}
auto destroyDuration = perf.endTick(KEY_DESTROYATION);
std::stringstream ss;
auto t1_ms = creationDuration * 1.0 / 1000000;
2021-12-28 16:06:23 +08:00
ss << "Create " << spriteCache.size() << " sprites takes " << t1_ms << " ms, "
<< (int64_t)(spriteCache.size() * 1000 / t1_ms) << " sprites per second!";
labelCreate->setString(ss.str());
2021-12-28 16:06:23 +08:00
if (t1_ms < 100)
{
suggestDelta = (int)(0.5 * totalSprites);
}
else if (t1_ms < 1000)
{
suggestDelta = (int)(0.2 * totalSprites);
}
else if (t1_ms)
{
suggestDelta = (int)(0.1 * totalSprites);
}
suggestDelta = suggestDelta < 1000 ? 1000 : suggestDelta - suggestDelta % 1000;
ss.str("");
auto t2_ms = destroyDuration * 1.0 / 1000000;
2021-12-28 16:06:23 +08:00
ss << "Destroy " << spriteCache.size() << " sprites takes " << t2_ms << " ms, "
<< (int64_t)(spriteCache.size() * 1000 / t2_ms) << " sprites per second!";
labelDestory->setString(ss.str());
spriteCache.clear();
}
void SpriteCreation::addSpritesCallback(axis::Ref*)
{
updateSpriteCountLabel(totalSprites + suggestDelta);
doTest();
}
void SpriteCreation::delSpritesCallback(axis::Ref*)
{
updateSpriteCountLabel(totalSprites - suggestDelta);
doTest();
}
2021-12-28 16:06:23 +08:00
SpriteCreation::~SpriteCreation() {}
std::string SpriteCreation::title() const
{
return "Sprite Creation";
}
std::string SpriteCreation::subtitle() const
{
#if defined(COCOS2D_DEBUG) && COCOS2D_DEBUG == 1
return "In debug mode";
#else
return "In release mode";
#endif
}
2014-01-15 09:03:54 +08:00
VBOFullTest::VBOFullTest()
{
2021-12-28 16:06:23 +08:00
Size s = Director::getInstance()->getWinSize();
2014-01-15 09:03:54 +08:00
Node* parent = Node::create();
2021-12-28 16:06:23 +08:00
parent->setPosition(0, 0);
2014-01-15 09:03:54 +08:00
addChild(parent);
2021-12-28 16:06:23 +08:00
for (int i = 0; i < Renderer::VBO_SIZE / 3.9; ++i)
2014-01-15 09:03:54 +08:00
{
Sprite* sprite = Sprite::create("Images/grossini_dance_01.png");
sprite->setScale(0.1f, 0.1f);
2021-12-28 16:06:23 +08:00
float x = ((float)std::rand()) / RAND_MAX;
float y = ((float)std::rand()) / RAND_MAX;
2014-10-16 18:30:01 +08:00
sprite->setPosition(Vec2(x * s.width, y * s.height));
2014-01-15 09:03:54 +08:00
parent->addChild(sprite);
}
}
2021-12-28 16:06:23 +08:00
VBOFullTest::~VBOFullTest() {}
2014-01-15 09:03:54 +08:00
std::string VBOFullTest::title() const
{
return "New Renderer";
}
std::string VBOFullTest::subtitle() const
{
return "VBO full Test, everything should render normally";
2014-01-15 09:11:32 +08:00
}
CaptureScreenTest::CaptureScreenTest()
{
Size s = Director::getInstance()->getWinSize();
2014-05-26 20:18:11 +08:00
Vec2 left(s.width / 4, s.height / 2);
Vec2 right(s.width / 4 * 3, s.height / 2);
2021-12-28 16:06:23 +08:00
auto sp1 = Sprite::create("Images/grossini.png");
sp1->setPosition(left);
2021-12-28 16:06:23 +08:00
auto move1 = MoveBy::create(1, Vec2(s.width / 2, 0.0f));
auto seq1 = RepeatForever::create(Sequence::create(move1, move1->reverse(), nullptr));
addChild(sp1);
sp1->runAction(seq1);
auto sp2 = Sprite::create("Images/grossinis_sister1.png");
sp2->setPosition(right);
2021-12-28 16:06:23 +08:00
auto move2 = MoveBy::create(1, Vec2(-s.width / 2, 0.0f));
auto seq2 = RepeatForever::create(Sequence::create(move2, move2->reverse(), nullptr));
addChild(sp2);
sp2->runAction(seq2);
auto label1 = Label::createWithTTF(TTFConfig("fonts/arial.ttf"), "capture all");
2021-12-28 16:06:23 +08:00
auto mi1 = MenuItemLabel::create(label1, CC_CALLBACK_1(CaptureScreenTest::onCaptured, this));
auto menu = Menu::create(mi1, nullptr);
addChild(menu);
menu->setPosition(s.width / 2, s.height / 4);
2014-05-14 01:06:26 +08:00
_filename = "";
}
CaptureScreenTest::~CaptureScreenTest()
{
Director::getInstance()->getTextureCache()->removeTextureForKey(_filename);
}
std::string CaptureScreenTest::title() const
{
return "New Renderer";
}
std::string CaptureScreenTest::subtitle() const
{
2014-05-26 16:32:13 +08:00
return "Capture screen test, press the menu items to capture the screen";
}
2014-05-26 13:42:47 +08:00
void CaptureScreenTest::onCaptured(Ref*)
{
2014-05-14 01:06:26 +08:00
Director::getInstance()->getTextureCache()->removeTextureForKey(_filename);
2014-05-26 16:32:13 +08:00
removeChildByTag(childTag);
2014-05-14 01:06:26 +08:00
_filename = "CaptureScreenTest.png";
2021-12-28 16:06:23 +08:00
// retain it to avoid crash caused by invoking afterCaptured
this->retain();
2014-05-27 14:29:52 +08:00
utils::captureScreen(CC_CALLBACK_2(CaptureScreenTest::afterCaptured, this), _filename);
}
2021-12-28 15:58:56 +08:00
void CaptureScreenTest::afterCaptured(bool succeed, std::string_view outputFile)
{
if (succeed)
{
auto sp = Sprite::create(outputFile);
2014-05-26 16:32:13 +08:00
addChild(sp, 0, childTag);
Size s = Director::getInstance()->getWinSize();
sp->setPosition(s.width / 2, s.height / 2);
sp->setScale(0.25);
2014-05-14 01:06:26 +08:00
_filename = outputFile;
}
else
{
2014-05-26 16:24:57 +08:00
log("Capture screen failed.");
}
// release it since it is retained in `CaptureScreenTest::onCaptured()`
this->release();
}
2015-06-29 17:25:13 +08:00
CaptureNodeTest::CaptureNodeTest()
{
Size s = Director::getInstance()->getWinSize();
Vec2 left(s.width / 4, s.height / 2);
Vec2 right(s.width / 4 * 3, s.height / 2);
auto sp1 = Sprite::create("Images/grossini.png");
sp1->setPosition(left);
auto move1 = MoveBy::create(1, Vec2(s.width / 2, 0.0f));
2021-12-28 16:06:23 +08:00
auto seq1 = RepeatForever::create(Sequence::create(move1, move1->reverse(), nullptr));
addChild(sp1);
sp1->runAction(seq1);
auto sp2 = Sprite::create("Images/grossinis_sister1.png");
sp2->setPosition(right);
auto move2 = MoveBy::create(1, Vec2(-s.width / 2, 0.0f));
2021-12-28 16:06:23 +08:00
auto seq2 = RepeatForever::create(Sequence::create(move2, move2->reverse(), nullptr));
addChild(sp2);
sp2->runAction(seq2);
auto label1 = Label::createWithTTF(TTFConfig("fonts/arial.ttf"), "capture this scene");
2021-12-28 16:06:23 +08:00
auto mi1 = MenuItemLabel::create(label1, CC_CALLBACK_1(CaptureNodeTest::onCaptured, this));
auto menu = Menu::create(mi1, nullptr);
addChild(menu);
menu->setPosition(s.width / 2, s.height / 4);
_filename = "";
}
CaptureNodeTest::~CaptureNodeTest()
{
Director::getInstance()->getTextureCache()->removeTextureForKey(_filename);
}
std::string CaptureNodeTest::title() const
{
return "New Renderer";
}
std::string CaptureNodeTest::subtitle() const
{
return "Capture node test, press the menu items to capture this scene with scale 0.5";
}
void CaptureNodeTest::onCaptured(Ref*)
2021-12-28 16:06:23 +08:00
{
Director::getInstance()->getTextureCache()->removeTextureForKey(_filename);
removeChildByTag(childTag);
2021-12-28 16:06:23 +08:00
_filename = FileUtils::getInstance()->getWritablePath() + "/CaptureNodeTest.png";
// capture this
2021-12-28 16:06:23 +08:00
auto callback = [&](RefPtr<Image> image) {
2019-02-27 11:29:20 +08:00
// create a sprite with the captured image directly
auto sp = Sprite::createWithTexture(Director::getInstance()->getTextureCache()->addImage(image, _filename));
addChild(sp, 0, childTag);
Size s = Director::getInstance()->getWinSize();
sp->setPosition(s.width / 2, s.height / 2);
2021-12-28 16:06:23 +08:00
2019-02-27 11:29:20 +08:00
// store to disk
image->saveToFile(_filename);
};
2021-12-28 16:06:23 +08:00
2019-02-27 11:29:20 +08:00
auto callbackFunction = std::bind(callback, std::placeholders::_1);
utils::captureNode(this, callbackFunction, 0.5);
}
2015-06-29 17:25:13 +08:00
BugAutoCulling::BugAutoCulling()
{
2021-12-28 16:06:23 +08:00
Size s = Director::getInstance()->getWinSize();
auto fastmap = axis::FastTMXTiledMap::create("TileMaps/orthogonal-test2.tmx");
2015-07-30 15:07:03 +08:00
this->addChild(fastmap);
2021-12-28 16:06:23 +08:00
for (int i = 0; i < 30; i++)
{
2015-06-29 17:25:13 +08:00
auto sprite = Sprite::create("Images/grossini.png");
2021-12-28 16:06:23 +08:00
sprite->setPosition(s.width / 2 + s.width / 10 * i, s.height / 2);
2015-06-29 17:25:13 +08:00
this->addChild(sprite);
2015-07-30 13:59:50 +08:00
auto label = Label::createWithTTF(TTFConfig("fonts/arial.ttf"), "Label");
2021-12-28 16:06:23 +08:00
label->setPosition(s.width / 2 + s.width / 10 * i, s.height / 2);
2015-07-30 13:59:50 +08:00
this->addChild(label);
2015-06-29 17:25:13 +08:00
}
2021-12-28 16:06:23 +08:00
this->scheduleOnce(
[=](float) {
auto camera = Director::getInstance()->getRunningScene()->getCameras().front();
auto move = MoveBy::create(2.0f, Vec2(2 * s.width, 0.0f));
camera->runAction(Sequence::create(move, move->reverse(), nullptr));
},
1.0f, "lambda-autoculling-bug");
2015-06-29 17:25:13 +08:00
}
std::string BugAutoCulling::title() const
{
return "Bug-AutoCulling";
}
std::string BugAutoCulling::subtitle() const
{
return "Moving the camera to the right instead of moving the layer";
Renderer improvments: TriangleCommand and QuadCommand merged - more options for batching (faster) - less flushing in between commands (faster) - less renderer code (easier to maintain) - less VBO/VAO (less memory) - uses temporary buffer for faster rendering (more memory) - QuadCommand is just a subclass of TriangleCommand (simpler) - but statically it allocates indices internally (like any TriangleCommand) (more memory, but not that much) - adds more tests for SpritePolygon - adds test for batching Tri + Quad command - and fixes some other bugs Squashed commit of the following: commit cce893a9114da5dda91a895e4e661894f365e2c7 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Mon Feb 8 06:56:57 2016 -0800 QuadCommand: indices are static thanks @Darinex commit e5fd1c14e93d2f07b8266bfec03cf7206d348f59 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 19:18:42 2016 -0800 little improvements in xcode proj management commit 6cd29764e01ad300f4e89e62aa6b399f73e94f01 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 19:05:52 2016 -0800 Renderer improvments: TriangleCommand and QuadCommand merged - more options for batching (faster) - less flushing in between commands (faster) - less renderer code (easier to maintain) - less VBO/VAO (less memory) - uses temporary buffer for faster rendering (more memory) and fixes some other bugs Squashed commit of the following: commit af7a209435c5f2430c31ab3ebcc7f45051eacb1a Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 18:55:27 2016 -0800 adds test for batching quads and tris commit 25816e3eaeffd4b0cfe5fa15e97ff84e9013b8be Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 18:40:15 2016 -0800 cleanup renderer commit 7f9785056681756c865d603516c7e14c46040e82 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 15:34:48 2016 -0800 clean up docs commit 92a8b679dd404e4ca2839d85e2bd925195b12996 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 15:18:52 2016 -0800 QuadCommand converted to Triangles command commit 7e21ec12d3781f6964b4d639cfa4bdc79eb8ae80 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri Feb 5 16:17:29 2016 -0800 adds missing files... new test as well commit d1bd4391785515bdc2e1bebbeb3f321f983b51f2 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri Feb 5 14:35:41 2016 -0800 more tests for poly sprites commit 5775a25b1046671bd0f5af4c5ab52b308b34bb39 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri Feb 5 00:30:13 2016 -0800 malloc instead of std::vector commit 14a5d45cc978c55a182c03f181ca2bc603776561 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 21:40:46 2016 -0800 little optimization commit 5667cb2b62416f8a439a54c3973d5841fbe1b68b Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 19:13:13 2016 -0800 quad works as expected commit 462aef05baa6586591882faa366839bead4be068 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 15:22:59 2016 -0800 works commit c789e6c42811278563c7682b5620296ae8d84aeb Merge: d6c3729 de62924 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 14:08:49 2016 -0800 Merge branch 'v3' into uniform_matrix_auto commit d6c37297954af752ebf42ec5f71e5e2fe28c9cc2 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 13:54:07 2016 -0800 works ok... commit 45c288631989ea735cc31ec5aa683d9d41aacab3 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 12:58:34 2016 -0800 quad works! commit 7137cff51df09adee7129738cea2b69da090756e Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Feb 3 16:19:34 2016 -0800 more optimizations... WIP... doesn't work yet commit a8324c1a9acb6b82102e05eee6e5e5f341306c7b Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Tue Feb 2 21:59:42 2016 -0800 compiles in release mode more tests... better threshold commit 884ffc756e7520fcbb9252260181538ec81b8368 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Tue Feb 2 17:21:32 2016 -0800 initial uniform_auto_matrix commit Changes the CC_matrix uniform in runtime depending on whether the command can be batched or not. Lot of things missing, though... like performance tests.
2016-02-09 03:25:37 +08:00
}
//
// RendererBatchQuadTri
//
RendererBatchQuadTri::RendererBatchQuadTri()
{
Size s = Director::getInstance()->getWinSize();
2021-12-28 16:06:23 +08:00
for (int i = 0; i < 250; i++)
Renderer improvments: TriangleCommand and QuadCommand merged - more options for batching (faster) - less flushing in between commands (faster) - less renderer code (easier to maintain) - less VBO/VAO (less memory) - uses temporary buffer for faster rendering (more memory) - QuadCommand is just a subclass of TriangleCommand (simpler) - but statically it allocates indices internally (like any TriangleCommand) (more memory, but not that much) - adds more tests for SpritePolygon - adds test for batching Tri + Quad command - and fixes some other bugs Squashed commit of the following: commit cce893a9114da5dda91a895e4e661894f365e2c7 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Mon Feb 8 06:56:57 2016 -0800 QuadCommand: indices are static thanks @Darinex commit e5fd1c14e93d2f07b8266bfec03cf7206d348f59 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 19:18:42 2016 -0800 little improvements in xcode proj management commit 6cd29764e01ad300f4e89e62aa6b399f73e94f01 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 19:05:52 2016 -0800 Renderer improvments: TriangleCommand and QuadCommand merged - more options for batching (faster) - less flushing in between commands (faster) - less renderer code (easier to maintain) - less VBO/VAO (less memory) - uses temporary buffer for faster rendering (more memory) and fixes some other bugs Squashed commit of the following: commit af7a209435c5f2430c31ab3ebcc7f45051eacb1a Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 18:55:27 2016 -0800 adds test for batching quads and tris commit 25816e3eaeffd4b0cfe5fa15e97ff84e9013b8be Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 18:40:15 2016 -0800 cleanup renderer commit 7f9785056681756c865d603516c7e14c46040e82 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 15:34:48 2016 -0800 clean up docs commit 92a8b679dd404e4ca2839d85e2bd925195b12996 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 15:18:52 2016 -0800 QuadCommand converted to Triangles command commit 7e21ec12d3781f6964b4d639cfa4bdc79eb8ae80 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri Feb 5 16:17:29 2016 -0800 adds missing files... new test as well commit d1bd4391785515bdc2e1bebbeb3f321f983b51f2 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri Feb 5 14:35:41 2016 -0800 more tests for poly sprites commit 5775a25b1046671bd0f5af4c5ab52b308b34bb39 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri Feb 5 00:30:13 2016 -0800 malloc instead of std::vector commit 14a5d45cc978c55a182c03f181ca2bc603776561 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 21:40:46 2016 -0800 little optimization commit 5667cb2b62416f8a439a54c3973d5841fbe1b68b Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 19:13:13 2016 -0800 quad works as expected commit 462aef05baa6586591882faa366839bead4be068 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 15:22:59 2016 -0800 works commit c789e6c42811278563c7682b5620296ae8d84aeb Merge: d6c3729 de62924 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 14:08:49 2016 -0800 Merge branch 'v3' into uniform_matrix_auto commit d6c37297954af752ebf42ec5f71e5e2fe28c9cc2 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 13:54:07 2016 -0800 works ok... commit 45c288631989ea735cc31ec5aa683d9d41aacab3 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 12:58:34 2016 -0800 quad works! commit 7137cff51df09adee7129738cea2b69da090756e Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Feb 3 16:19:34 2016 -0800 more optimizations... WIP... doesn't work yet commit a8324c1a9acb6b82102e05eee6e5e5f341306c7b Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Tue Feb 2 21:59:42 2016 -0800 compiles in release mode more tests... better threshold commit 884ffc756e7520fcbb9252260181538ec81b8368 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Tue Feb 2 17:21:32 2016 -0800 initial uniform_auto_matrix commit Changes the CC_matrix uniform in runtime depending on whether the command can be batched or not. Lot of things missing, though... like performance tests.
2016-02-09 03:25:37 +08:00
{
int x = CCRANDOM_0_1() * s.width;
int y = CCRANDOM_0_1() * s.height;
auto label = LabelAtlas::create("This is a label", "fonts/tuffy_bold_italic-charmap.plist");
label->setColor(Color3B::RED);
2021-12-28 16:06:23 +08:00
label->setPosition(Vec2(x, y));
Renderer improvments: TriangleCommand and QuadCommand merged - more options for batching (faster) - less flushing in between commands (faster) - less renderer code (easier to maintain) - less VBO/VAO (less memory) - uses temporary buffer for faster rendering (more memory) - QuadCommand is just a subclass of TriangleCommand (simpler) - but statically it allocates indices internally (like any TriangleCommand) (more memory, but not that much) - adds more tests for SpritePolygon - adds test for batching Tri + Quad command - and fixes some other bugs Squashed commit of the following: commit cce893a9114da5dda91a895e4e661894f365e2c7 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Mon Feb 8 06:56:57 2016 -0800 QuadCommand: indices are static thanks @Darinex commit e5fd1c14e93d2f07b8266bfec03cf7206d348f59 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 19:18:42 2016 -0800 little improvements in xcode proj management commit 6cd29764e01ad300f4e89e62aa6b399f73e94f01 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 19:05:52 2016 -0800 Renderer improvments: TriangleCommand and QuadCommand merged - more options for batching (faster) - less flushing in between commands (faster) - less renderer code (easier to maintain) - less VBO/VAO (less memory) - uses temporary buffer for faster rendering (more memory) and fixes some other bugs Squashed commit of the following: commit af7a209435c5f2430c31ab3ebcc7f45051eacb1a Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 18:55:27 2016 -0800 adds test for batching quads and tris commit 25816e3eaeffd4b0cfe5fa15e97ff84e9013b8be Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 18:40:15 2016 -0800 cleanup renderer commit 7f9785056681756c865d603516c7e14c46040e82 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 15:34:48 2016 -0800 clean up docs commit 92a8b679dd404e4ca2839d85e2bd925195b12996 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 15:18:52 2016 -0800 QuadCommand converted to Triangles command commit 7e21ec12d3781f6964b4d639cfa4bdc79eb8ae80 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri Feb 5 16:17:29 2016 -0800 adds missing files... new test as well commit d1bd4391785515bdc2e1bebbeb3f321f983b51f2 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri Feb 5 14:35:41 2016 -0800 more tests for poly sprites commit 5775a25b1046671bd0f5af4c5ab52b308b34bb39 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri Feb 5 00:30:13 2016 -0800 malloc instead of std::vector commit 14a5d45cc978c55a182c03f181ca2bc603776561 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 21:40:46 2016 -0800 little optimization commit 5667cb2b62416f8a439a54c3973d5841fbe1b68b Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 19:13:13 2016 -0800 quad works as expected commit 462aef05baa6586591882faa366839bead4be068 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 15:22:59 2016 -0800 works commit c789e6c42811278563c7682b5620296ae8d84aeb Merge: d6c3729 de62924 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 14:08:49 2016 -0800 Merge branch 'v3' into uniform_matrix_auto commit d6c37297954af752ebf42ec5f71e5e2fe28c9cc2 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 13:54:07 2016 -0800 works ok... commit 45c288631989ea735cc31ec5aa683d9d41aacab3 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 12:58:34 2016 -0800 quad works! commit 7137cff51df09adee7129738cea2b69da090756e Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Feb 3 16:19:34 2016 -0800 more optimizations... WIP... doesn't work yet commit a8324c1a9acb6b82102e05eee6e5e5f341306c7b Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Tue Feb 2 21:59:42 2016 -0800 compiles in release mode more tests... better threshold commit 884ffc756e7520fcbb9252260181538ec81b8368 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Tue Feb 2 17:21:32 2016 -0800 initial uniform_auto_matrix commit Changes the CC_matrix uniform in runtime depending on whether the command can be batched or not. Lot of things missing, though... like performance tests.
2016-02-09 03:25:37 +08:00
addChild(label);
auto sprite = Sprite::create("fonts/tuffy_bold_italic-charmap.png");
2021-12-28 16:06:23 +08:00
sprite->setTextureRect(Rect(0.0f, 0.0f, 100.0f, 100.0f));
sprite->setPosition(Vec2(x, y));
Renderer improvments: TriangleCommand and QuadCommand merged - more options for batching (faster) - less flushing in between commands (faster) - less renderer code (easier to maintain) - less VBO/VAO (less memory) - uses temporary buffer for faster rendering (more memory) - QuadCommand is just a subclass of TriangleCommand (simpler) - but statically it allocates indices internally (like any TriangleCommand) (more memory, but not that much) - adds more tests for SpritePolygon - adds test for batching Tri + Quad command - and fixes some other bugs Squashed commit of the following: commit cce893a9114da5dda91a895e4e661894f365e2c7 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Mon Feb 8 06:56:57 2016 -0800 QuadCommand: indices are static thanks @Darinex commit e5fd1c14e93d2f07b8266bfec03cf7206d348f59 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 19:18:42 2016 -0800 little improvements in xcode proj management commit 6cd29764e01ad300f4e89e62aa6b399f73e94f01 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 19:05:52 2016 -0800 Renderer improvments: TriangleCommand and QuadCommand merged - more options for batching (faster) - less flushing in between commands (faster) - less renderer code (easier to maintain) - less VBO/VAO (less memory) - uses temporary buffer for faster rendering (more memory) and fixes some other bugs Squashed commit of the following: commit af7a209435c5f2430c31ab3ebcc7f45051eacb1a Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 18:55:27 2016 -0800 adds test for batching quads and tris commit 25816e3eaeffd4b0cfe5fa15e97ff84e9013b8be Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 18:40:15 2016 -0800 cleanup renderer commit 7f9785056681756c865d603516c7e14c46040e82 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 15:34:48 2016 -0800 clean up docs commit 92a8b679dd404e4ca2839d85e2bd925195b12996 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Sun Feb 7 15:18:52 2016 -0800 QuadCommand converted to Triangles command commit 7e21ec12d3781f6964b4d639cfa4bdc79eb8ae80 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri Feb 5 16:17:29 2016 -0800 adds missing files... new test as well commit d1bd4391785515bdc2e1bebbeb3f321f983b51f2 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri Feb 5 14:35:41 2016 -0800 more tests for poly sprites commit 5775a25b1046671bd0f5af4c5ab52b308b34bb39 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri Feb 5 00:30:13 2016 -0800 malloc instead of std::vector commit 14a5d45cc978c55a182c03f181ca2bc603776561 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 21:40:46 2016 -0800 little optimization commit 5667cb2b62416f8a439a54c3973d5841fbe1b68b Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 19:13:13 2016 -0800 quad works as expected commit 462aef05baa6586591882faa366839bead4be068 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 15:22:59 2016 -0800 works commit c789e6c42811278563c7682b5620296ae8d84aeb Merge: d6c3729 de62924 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 14:08:49 2016 -0800 Merge branch 'v3' into uniform_matrix_auto commit d6c37297954af752ebf42ec5f71e5e2fe28c9cc2 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 13:54:07 2016 -0800 works ok... commit 45c288631989ea735cc31ec5aa683d9d41aacab3 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu Feb 4 12:58:34 2016 -0800 quad works! commit 7137cff51df09adee7129738cea2b69da090756e Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Feb 3 16:19:34 2016 -0800 more optimizations... WIP... doesn't work yet commit a8324c1a9acb6b82102e05eee6e5e5f341306c7b Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Tue Feb 2 21:59:42 2016 -0800 compiles in release mode more tests... better threshold commit 884ffc756e7520fcbb9252260181538ec81b8368 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Tue Feb 2 17:21:32 2016 -0800 initial uniform_auto_matrix commit Changes the CC_matrix uniform in runtime depending on whether the command can be batched or not. Lot of things missing, though... like performance tests.
2016-02-09 03:25:37 +08:00
sprite->setColor(Color3B::BLUE);
addChild(sprite);
}
}
std::string RendererBatchQuadTri::title() const
{
return "RendererBatchQuadTri";
}
std::string RendererBatchQuadTri::subtitle() const
{
return "QuadCommand and TriangleCommands are batched together";
}
//
//
// RendererUniformBatch
//
2019-05-14 09:00:27 +08:00
RendererUniformBatch::RendererUniformBatch()
{
Size s = Director::getInstance()->getWinSize();
2021-12-28 16:06:23 +08:00
auto blurState = createBlurProgramState();
2019-05-14 09:00:27 +08:00
auto sepiaState = createSepiaProgramState();
auto x_inc = s.width / 20;
auto y_inc = s.height / 6;
2021-12-28 16:06:23 +08:00
for (int y = 0; y < 6; ++y)
2019-05-14 09:00:27 +08:00
{
2021-12-28 16:06:23 +08:00
for (int x = 0; x < 20; ++x)
2019-05-14 09:00:27 +08:00
{
auto sprite = Sprite::create("Images/grossini.png");
sprite->setPosition(Vec2(x * x_inc, y * y_inc));
sprite->setScale(0.4);
addChild(sprite);
2021-12-28 16:06:23 +08:00
if (y >= 4)
{
2019-05-14 09:00:27 +08:00
sprite->setProgramState(sepiaState);
2021-12-28 16:06:23 +08:00
}
else if (y >= 2)
{
2019-05-14 09:00:27 +08:00
sprite->setProgramState(blurState);
}
}
}
}
axis::backend::ProgramState* RendererUniformBatch::createBlurProgramState()
2019-05-14 09:00:27 +08:00
{
2021-12-28 16:06:23 +08:00
auto programState =
new backend::ProgramState(backend::ProgramCache::getInstance()->getCustomProgram(CustomProgramType::BLUR));
programState->autorelease();
2019-05-14 09:00:27 +08:00
backend::UniformLocation loc = programState->getUniformLocation("resolution");
2021-12-28 16:06:23 +08:00
auto resolution = Vec2(85, 121);
2019-05-14 09:00:27 +08:00
programState->setUniform(loc, &resolution, sizeof(resolution));
2021-12-28 16:06:23 +08:00
loc = programState->getUniformLocation("blurRadius");
2019-05-14 09:00:27 +08:00
float blurRadius = 10.0f;
programState->setUniform(loc, &blurRadius, sizeof(blurRadius));
2021-12-28 16:06:23 +08:00
loc = programState->getUniformLocation("sampleNum");
2019-05-14 09:00:27 +08:00
float sampleNum = 5.0f;
programState->setUniform(loc, &sampleNum, sizeof(sampleNum));
return programState;
}
axis::backend::ProgramState* RendererUniformBatch::createSepiaProgramState()
2019-05-14 09:00:27 +08:00
{
2021-12-28 16:06:23 +08:00
auto programState =
new backend::ProgramState(backend::ProgramCache::getInstance()->getCustomProgram(CustomProgramType::SEPIA));
2021-12-28 16:06:23 +08:00
// programState->updateUniformID();
2019-05-14 09:00:27 +08:00
programState->autorelease();
return programState;
2019-05-14 09:00:27 +08:00
}
std::string RendererUniformBatch::title() const
{
return "RendererUniformBatch";
}
std::string RendererUniformBatch::subtitle() const
{
return "Only 9 draw calls should appear";
}
2019-02-19 11:57:13 +08:00
////
//// RendererUniformBatch2
////
2019-05-14 09:00:27 +08:00
RendererUniformBatch2::RendererUniformBatch2()
{
Size s = Director::getInstance()->getWinSize();
2021-12-28 16:06:23 +08:00
auto blurState = createBlurProgramState();
2019-05-14 09:00:27 +08:00
auto sepiaState = createSepiaProgramState();
auto x_inc = s.width / 20;
auto y_inc = s.height / 6;
2021-12-28 16:06:23 +08:00
for (int y = 0; y < 6; ++y)
2019-05-14 09:00:27 +08:00
{
2021-12-28 16:06:23 +08:00
for (int x = 0; x < 20; ++x)
2019-05-14 09:00:27 +08:00
{
auto sprite = Sprite::create("Images/grossini.png");
sprite->setPosition(Vec2(x * x_inc, y * y_inc));
sprite->setScale(0.4);
addChild(sprite);
auto r = CCRANDOM_0_1();
if (r < 0.33)
sprite->setProgramState(sepiaState);
else if (r < 0.66)
sprite->setProgramState(blurState);
}
}
}
backend::ProgramState* RendererUniformBatch2::createBlurProgramState()
{
2021-12-28 16:06:23 +08:00
auto programState =
new backend::ProgramState(backend::ProgramCache::getInstance()->getCustomProgram(CustomProgramType::BLUR));
2019-05-14 09:00:27 +08:00
backend::UniformLocation loc = programState->getUniformLocation("resolution");
2021-12-28 16:06:23 +08:00
auto resolution = Vec2(85, 121);
2019-05-14 09:00:27 +08:00
programState->setUniform(loc, &resolution, sizeof(resolution));
2021-12-28 16:06:23 +08:00
loc = programState->getUniformLocation("blurRadius");
2019-05-14 09:00:27 +08:00
float blurRadius = 10.0f;
programState->setUniform(loc, &blurRadius, sizeof(blurRadius));
2021-12-28 16:06:23 +08:00
loc = programState->getUniformLocation("sampleNum");
2019-05-14 09:00:27 +08:00
float sampleNum = 5.0f;
programState->setUniform(loc, &sampleNum, sizeof(sampleNum));
return programState;
}
2021-12-28 16:06:23 +08:00
backend::ProgramState* RendererUniformBatch2::createSepiaProgramState()
2019-05-14 09:00:27 +08:00
{
2021-12-28 16:06:23 +08:00
auto programState =
new backend::ProgramState(backend::ProgramCache::getInstance()->getCustomProgram(CustomProgramType::SEPIA));
programState->autorelease();
return programState;
2019-05-14 09:00:27 +08:00
}
std::string RendererUniformBatch2::title() const
{
return "RendererUniformBatch 2";
}
std::string RendererUniformBatch2::subtitle() const
{
return "Mixing different shader states should work ok";
}
NonBatchSprites::NonBatchSprites()
{
2021-12-28 16:06:23 +08:00
Size s = Director::getInstance()->getWinSize();
_spritesAnchor = Node::create();
_spritesAnchor->setPosition(0, 0);
addChild(_spritesAnchor);
_totalSprites = Label::createWithTTF(TTFConfig("fonts/arial.ttf"), "sprites");
_totalSprites->setColor(Color3B::YELLOW);
_totalSprites->enableOutline(Color4B::RED, 2);
2021-12-28 16:06:23 +08:00
_totalSprites->setPosition(s.width / 2, s.height / 2);
addChild(_totalSprites);
scheduleUpdate();
}
void NonBatchSprites::createSprite()
{
2021-12-28 16:06:23 +08:00
Size s = Director::getInstance()->getWinSize();
Sprite* sprite = nullptr;
if (_spriteIndex % 2 == 0)
{
sprite = Sprite::create("Images/grossini_dance_05.png");
}
else
{
sprite = Sprite::create("Images/grossini_dance_01.png");
}
2019-05-14 09:00:27 +08:00
2021-12-28 16:06:23 +08:00
if (!sprite)
return;
auto r = rand_0_1() * 0.6 + 0.2;
sprite->setScale(r, r);
float x = ((float)std::rand()) / RAND_MAX;
float y = ((float)std::rand()) / RAND_MAX;
sprite->runAction(RepeatForever::create(RotateBy::create(1, 45)));
2019-05-14 09:00:27 +08:00
sprite->setPosition(Vec2(x * s.width, y * s.height));
_spritesAnchor->addChild(sprite);
_spriteIndex++;
std::stringstream ss;
ss << _spriteIndex << " sprites";
_totalSprites->setString(ss.str());
}
void NonBatchSprites::update(float dt)
{
2021-12-28 16:06:23 +08:00
if (dt <= 1.0f / 28.0f && dt >= 1.0f / 31.0f)
{
_around30fps.hit();
}
else
{
_around30fps.cancel();
}
2021-12-28 16:06:23 +08:00
_maDt = 0.7f * _maDt + 0.3f * dt;
_rmaDt = 0.5f * _rmaDt + 0.5f * dt;
if (_maDt <= DEST_DT_30FPS)
{
_contSlow.cancel();
_contFast.hit();
2021-12-28 16:06:23 +08:00
if (_contFast.ok())
{
auto t2 = DEST_DT_30FPS - _rmaDt;
auto delta = (int)(t2 / _rmaDt * _spriteIndex * 0.1);
2021-12-28 16:06:23 +08:00
delta = std::min(20, std::max(1, delta));
for (int i = 0; i < delta; i++)
{
createSprite();
}
}
2021-12-28 16:06:23 +08:00
}
else
{
_contSlow.hit();
_contFast.cancel();
}
2021-12-28 16:06:23 +08:00
if (_contSlow.ok() || _around30fps.ok())
{
unscheduleUpdate();
std::stringstream ss;
ss << _spriteIndex << " sprites, DONE!";
_totalSprites->setString(ss.str());
_totalSprites->setScale(1.2);
}
}
2021-12-28 16:06:23 +08:00
NonBatchSprites::~NonBatchSprites() {}
std::string NonBatchSprites::title() const
{
return "Non Batched Sprites";
}
std::string NonBatchSprites::subtitle() const
{
#if defined(COCOS2D_DEBUG) && COCOS2D_DEBUG == 1
return "DEBUG: simulate lots of sprites, drop to 30 fps";
#else
return "RELEASE: simulate lots of sprites, drop to 30 fps";
#endif
}