2013-09-06 11:02:04 +08:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#include "PerformanceAllocTest.h"
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
// Enable profiles for this file
|
|
|
|
#undef CC_PROFILER_DISPLAY_TIMERS
|
|
|
|
#define CC_PROFILER_DISPLAY_TIMERS() Profiler::getInstance()->displayTimers()
|
|
|
|
#undef CC_PROFILER_PURGE_ALL
|
|
|
|
#define CC_PROFILER_PURGE_ALL() Profiler::getInstance()->releaseAllTimers()
|
|
|
|
|
|
|
|
#undef CC_PROFILER_START
|
|
|
|
#define CC_PROFILER_START(__name__) ProfilingBeginTimingBlock(__name__)
|
|
|
|
#undef CC_PROFILER_STOP
|
|
|
|
#define CC_PROFILER_STOP(__name__) ProfilingEndTimingBlock(__name__)
|
|
|
|
#undef CC_PROFILER_RESET
|
|
|
|
#define CC_PROFILER_RESET(__name__) ProfilingResetTimingBlock(__name__)
|
|
|
|
|
|
|
|
#undef CC_PROFILER_START_CATEGORY
|
|
|
|
#define CC_PROFILER_START_CATEGORY(__cat__, __name__) do{ if(__cat__) ProfilingBeginTimingBlock(__name__); } while(0)
|
|
|
|
#undef CC_PROFILER_STOP_CATEGORY
|
|
|
|
#define CC_PROFILER_STOP_CATEGORY(__cat__, __name__) do{ if(__cat__) ProfilingEndTimingBlock(__name__); } while(0)
|
|
|
|
#undef CC_PROFILER_RESET_CATEGORY
|
|
|
|
#define CC_PROFILER_RESET_CATEGORY(__cat__, __name__) do{ if(__cat__) ProfilingResetTimingBlock(__name__); } while(0)
|
|
|
|
|
|
|
|
#undef CC_PROFILER_START_INSTANCE
|
|
|
|
#define CC_PROFILER_START_INSTANCE(__id__, __name__) do{ ProfilingBeginTimingBlock( String::createWithFormat("%08X - %s", __id__, __name__)->getCString() ); } while(0)
|
|
|
|
#undef CC_PROFILER_STOP_INSTANCE
|
|
|
|
#define CC_PROFILER_STOP_INSTANCE(__id__, __name__) do{ ProfilingEndTimingBlock( String::createWithFormat("%08X - %s", __id__, __name__)->getCString() ); } while(0)
|
|
|
|
#undef CC_PROFILER_RESET_INSTANCE
|
|
|
|
#define CC_PROFILER_RESET_INSTANCE(__id__, __name__) do{ ProfilingResetTimingBlock( String::createWithFormat("%08X - %s", __id__, __name__)->getCString() ); } while(0)
|
|
|
|
|
|
|
|
static std::function<PerformceAllocScene*()> createFunctions[] =
|
|
|
|
{
|
|
|
|
CL(NodeCreateTest),
|
|
|
|
CL(NodeDeallocTest),
|
2013-09-06 12:35:15 +08:00
|
|
|
CL(SpriteCreateEmptyTest),
|
2013-09-06 11:02:04 +08:00
|
|
|
CL(SpriteCreateTest),
|
|
|
|
CL(SpriteDeallocTest),
|
|
|
|
};
|
|
|
|
|
|
|
|
#define MAX_LAYER (sizeof(createFunctions) / sizeof(createFunctions[0]))
|
|
|
|
|
|
|
|
enum {
|
|
|
|
kTagInfoLayer = 1,
|
|
|
|
|
|
|
|
kTagBase = 20000,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
kMaxNodes = 15000,
|
|
|
|
kNodesIncrease = 500,
|
|
|
|
};
|
|
|
|
|
|
|
|
static int g_curCase = 0;
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// AllocBasicLayer
|
|
|
|
//
|
|
|
|
////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
AllocBasicLayer::AllocBasicLayer(bool bControlMenuVisible, int nMaxCases, int nCurCase)
|
|
|
|
: PerformBasicLayer(bControlMenuVisible, nMaxCases, nCurCase)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void AllocBasicLayer::showCurrentTest()
|
|
|
|
{
|
|
|
|
int nodes = ((PerformceAllocScene*)getParent())->getQuantityOfNodes();
|
|
|
|
|
|
|
|
auto scene = createFunctions[_curCase]();
|
|
|
|
|
|
|
|
g_curCase = _curCase;
|
|
|
|
|
|
|
|
if (scene)
|
|
|
|
{
|
|
|
|
scene->initWithQuantityOfNodes(nodes);
|
|
|
|
|
|
|
|
Director::getInstance()->replaceScene(scene);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// PerformceAllocScene
|
|
|
|
//
|
|
|
|
////////////////////////////////////////////////////////
|
|
|
|
void PerformceAllocScene::initWithQuantityOfNodes(unsigned int nNodes)
|
|
|
|
{
|
|
|
|
//srand(time());
|
|
|
|
auto s = Director::getInstance()->getWinSize();
|
|
|
|
|
|
|
|
// Title
|
2014-04-09 23:31:05 +08:00
|
|
|
auto label = Label::createWithTTF(title().c_str(), "fonts/arial.ttf", 32);
|
2013-09-06 11:02:04 +08:00
|
|
|
addChild(label, 1);
|
2014-05-15 01:07:09 +08:00
|
|
|
label->setPosition(Vec2(s.width/2, s.height-50));
|
2013-09-06 11:02:04 +08:00
|
|
|
|
|
|
|
// Subtitle
|
|
|
|
std::string strSubTitle = subtitle();
|
|
|
|
if(strSubTitle.length())
|
|
|
|
{
|
2014-04-09 23:31:05 +08:00
|
|
|
auto l = Label::createWithTTF(strSubTitle.c_str(), "fonts/Thonburi.ttf", 16);
|
2013-09-06 11:02:04 +08:00
|
|
|
addChild(l, 1);
|
2014-05-15 01:07:09 +08:00
|
|
|
l->setPosition(Vec2(s.width/2, s.height-80));
|
2013-09-06 11:02:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
lastRenderedCount = 0;
|
|
|
|
currentQuantityOfNodes = 0;
|
|
|
|
quantityOfNodes = nNodes;
|
|
|
|
|
|
|
|
MenuItemFont::setFontSize(65);
|
2014-02-20 10:53:49 +08:00
|
|
|
auto decrease = MenuItemFont::create(" - ", [&](Ref *sender) {
|
2013-09-06 11:02:04 +08:00
|
|
|
quantityOfNodes -= kNodesIncrease;
|
|
|
|
if( quantityOfNodes < 0 )
|
|
|
|
quantityOfNodes = 0;
|
|
|
|
|
|
|
|
updateQuantityLabel();
|
|
|
|
updateQuantityOfNodes();
|
|
|
|
updateProfilerName();
|
|
|
|
CC_PROFILER_PURGE_ALL();
|
2013-09-06 12:51:37 +08:00
|
|
|
srand(0);
|
2013-09-06 11:02:04 +08:00
|
|
|
});
|
|
|
|
decrease->setColor(Color3B(0,200,20));
|
2014-02-20 10:53:49 +08:00
|
|
|
auto increase = MenuItemFont::create(" + ", [&](Ref *sender) {
|
2013-09-06 11:02:04 +08:00
|
|
|
quantityOfNodes += kNodesIncrease;
|
|
|
|
if( quantityOfNodes > kMaxNodes )
|
|
|
|
quantityOfNodes = kMaxNodes;
|
|
|
|
|
|
|
|
updateQuantityLabel();
|
|
|
|
updateQuantityOfNodes();
|
|
|
|
updateProfilerName();
|
|
|
|
CC_PROFILER_PURGE_ALL();
|
2013-09-06 12:51:37 +08:00
|
|
|
srand(0);
|
2013-09-06 11:02:04 +08:00
|
|
|
});
|
|
|
|
increase->setColor(Color3B(0,200,20));
|
|
|
|
|
2014-07-10 00:45:27 +08:00
|
|
|
auto menu = Menu::create(decrease, increase, nullptr);
|
2013-09-06 11:02:04 +08:00
|
|
|
menu->alignItemsHorizontally();
|
2014-05-15 01:07:09 +08:00
|
|
|
menu->setPosition(Vec2(s.width/2, s.height/2+15));
|
2013-09-06 11:02:04 +08:00
|
|
|
addChild(menu, 1);
|
|
|
|
|
2014-04-09 23:31:05 +08:00
|
|
|
auto infoLabel = Label::createWithTTF("0 nodes", "fonts/Marker Felt.ttf", 30);
|
2013-09-06 11:02:04 +08:00
|
|
|
infoLabel->setColor(Color3B(0,200,20));
|
2014-05-15 01:07:09 +08:00
|
|
|
infoLabel->setPosition(Vec2(s.width/2, s.height/2-15));
|
2013-09-06 11:02:04 +08:00
|
|
|
addChild(infoLabel, 1, kTagInfoLayer);
|
|
|
|
|
|
|
|
auto menuLayer = new AllocBasicLayer(true, MAX_LAYER, g_curCase);
|
|
|
|
addChild(menuLayer);
|
|
|
|
menuLayer->release();
|
|
|
|
|
|
|
|
updateQuantityLabel();
|
|
|
|
updateQuantityOfNodes();
|
|
|
|
updateProfilerName();
|
2013-09-06 12:51:37 +08:00
|
|
|
srand(0);
|
2013-09-06 11:02:04 +08:00
|
|
|
}
|
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
std::string PerformceAllocScene::title() const
|
2013-09-06 11:02:04 +08:00
|
|
|
{
|
|
|
|
return "No title";
|
|
|
|
}
|
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
std::string PerformceAllocScene::subtitle() const
|
2013-09-06 11:02:04 +08:00
|
|
|
{
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
void PerformceAllocScene::updateQuantityLabel()
|
|
|
|
{
|
|
|
|
if( quantityOfNodes != lastRenderedCount )
|
|
|
|
{
|
2014-03-26 23:33:58 +08:00
|
|
|
auto infoLabel = static_cast<Label*>( getChildByTag(kTagInfoLayer) );
|
2013-09-06 11:02:04 +08:00
|
|
|
char str[20] = {0};
|
|
|
|
sprintf(str, "%u nodes", quantityOfNodes);
|
|
|
|
infoLabel->setString(str);
|
|
|
|
|
|
|
|
lastRenderedCount = quantityOfNodes;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const char * PerformceAllocScene::profilerName()
|
|
|
|
{
|
|
|
|
return _profilerName;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PerformceAllocScene::updateProfilerName()
|
|
|
|
{
|
|
|
|
snprintf(_profilerName, sizeof(_profilerName)-1, "%s(%d)", testName(), quantityOfNodes);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PerformceAllocScene::onExitTransitionDidStart()
|
|
|
|
{
|
|
|
|
Scene::onExitTransitionDidStart();
|
|
|
|
|
|
|
|
auto director = Director::getInstance();
|
|
|
|
auto sched = director->getScheduler();
|
|
|
|
|
2014-03-03 11:00:30 +08:00
|
|
|
sched->unschedule(schedule_selector(PerformceAllocScene::dumpProfilerInfo), this);
|
2013-09-06 11:02:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void PerformceAllocScene::onEnterTransitionDidFinish()
|
|
|
|
{
|
|
|
|
Scene::onEnterTransitionDidFinish();
|
|
|
|
|
|
|
|
auto director = Director::getInstance();
|
|
|
|
auto sched = director->getScheduler();
|
|
|
|
|
|
|
|
CC_PROFILER_PURGE_ALL();
|
2014-03-03 11:00:30 +08:00
|
|
|
sched->schedule(schedule_selector(PerformceAllocScene::dumpProfilerInfo), this, 2, false);
|
2013-09-06 11:02:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void PerformceAllocScene::dumpProfilerInfo(float dt)
|
|
|
|
{
|
|
|
|
CC_PROFILER_DISPLAY_TIMERS();
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// NodeCreateTest
|
|
|
|
//
|
|
|
|
////////////////////////////////////////////////////////
|
|
|
|
void NodeCreateTest::updateQuantityOfNodes()
|
|
|
|
{
|
|
|
|
currentQuantityOfNodes = quantityOfNodes;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NodeCreateTest::initWithQuantityOfNodes(unsigned int nNodes)
|
|
|
|
{
|
|
|
|
PerformceAllocScene::initWithQuantityOfNodes(nNodes);
|
|
|
|
|
2014-07-18 10:20:37 +08:00
|
|
|
log("Size of Node: %u\n", sizeof(Node));
|
2013-09-06 11:02:04 +08:00
|
|
|
|
|
|
|
scheduleUpdate();
|
|
|
|
}
|
|
|
|
|
|
|
|
void NodeCreateTest::update(float dt)
|
|
|
|
{
|
|
|
|
// iterate using fast enumeration protocol
|
|
|
|
|
|
|
|
Node **nodes = new Node*[quantityOfNodes];
|
|
|
|
|
|
|
|
CC_PROFILER_START(this->profilerName());
|
|
|
|
for( int i=0; i<quantityOfNodes; ++i)
|
|
|
|
nodes[i] = Node::create();
|
|
|
|
CC_PROFILER_STOP(this->profilerName());
|
|
|
|
|
|
|
|
delete [] nodes;
|
|
|
|
}
|
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
std::string NodeCreateTest::title() const
|
2013-09-06 11:02:04 +08:00
|
|
|
{
|
|
|
|
return "Node Create Perf test.";
|
|
|
|
}
|
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
std::string NodeCreateTest::subtitle() const
|
2013-09-06 11:02:04 +08:00
|
|
|
{
|
|
|
|
return "Node Create Perf test. See console";
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* NodeCreateTest::testName()
|
|
|
|
{
|
|
|
|
return "Node::create()";
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// NodeDeallocTest
|
|
|
|
//
|
|
|
|
////////////////////////////////////////////////////////
|
|
|
|
void NodeDeallocTest::updateQuantityOfNodes()
|
|
|
|
{
|
|
|
|
currentQuantityOfNodes = quantityOfNodes;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NodeDeallocTest::initWithQuantityOfNodes(unsigned int nNodes)
|
|
|
|
{
|
|
|
|
PerformceAllocScene::initWithQuantityOfNodes(nNodes);
|
|
|
|
|
2014-07-18 10:20:37 +08:00
|
|
|
log("Size of Node: %u\n", sizeof(Node));
|
2013-09-06 11:02:04 +08:00
|
|
|
|
|
|
|
scheduleUpdate();
|
|
|
|
}
|
|
|
|
|
|
|
|
void NodeDeallocTest::update(float dt)
|
|
|
|
{
|
|
|
|
// iterate using fast enumeration protocol
|
|
|
|
|
|
|
|
Node **nodes = new Node*[quantityOfNodes];
|
|
|
|
|
|
|
|
for( int i=0; i<quantityOfNodes; ++i) {
|
2013-11-14 07:55:36 +08:00
|
|
|
nodes[i] = Node::create();
|
2014-01-24 14:48:07 +08:00
|
|
|
nodes[i]->retain();
|
2013-09-06 11:02:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
CC_PROFILER_START(this->profilerName());
|
|
|
|
for( int i=0; i<quantityOfNodes; ++i)
|
|
|
|
nodes[i]->release();
|
|
|
|
CC_PROFILER_STOP(this->profilerName());
|
|
|
|
|
|
|
|
delete [] nodes;
|
|
|
|
}
|
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
std::string NodeDeallocTest::title() const
|
2013-09-06 11:02:04 +08:00
|
|
|
{
|
|
|
|
return "Node Dealloc Perf test.";
|
|
|
|
}
|
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
std::string NodeDeallocTest::subtitle() const
|
2013-09-06 11:02:04 +08:00
|
|
|
{
|
|
|
|
return "Node Dealloc Perf test. See console";
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* NodeDeallocTest::testName()
|
|
|
|
{
|
|
|
|
return "Node::~Node()";
|
|
|
|
}
|
|
|
|
|
2013-09-06 12:35:15 +08:00
|
|
|
////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// SpriteCreateEmptyTest
|
|
|
|
//
|
|
|
|
////////////////////////////////////////////////////////
|
|
|
|
void SpriteCreateEmptyTest::updateQuantityOfNodes()
|
|
|
|
{
|
|
|
|
currentQuantityOfNodes = quantityOfNodes;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpriteCreateEmptyTest::initWithQuantityOfNodes(unsigned int nNodes)
|
|
|
|
{
|
|
|
|
PerformceAllocScene::initWithQuantityOfNodes(nNodes);
|
|
|
|
|
2014-07-18 10:20:37 +08:00
|
|
|
log("Size of Sprite: %u\n", sizeof(Sprite));
|
2013-09-06 12:35:15 +08:00
|
|
|
|
|
|
|
scheduleUpdate();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpriteCreateEmptyTest::update(float dt)
|
|
|
|
{
|
|
|
|
// iterate using fast enumeration protocol
|
|
|
|
|
|
|
|
Sprite **sprites = new Sprite*[quantityOfNodes];
|
|
|
|
|
|
|
|
Sprite::create("Images/grossini.png");
|
|
|
|
|
|
|
|
CC_PROFILER_START(this->profilerName());
|
|
|
|
for( int i=0; i<quantityOfNodes; ++i)
|
|
|
|
sprites[i] = Sprite::create();
|
|
|
|
CC_PROFILER_STOP(this->profilerName());
|
|
|
|
|
|
|
|
delete [] sprites;
|
|
|
|
}
|
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
std::string SpriteCreateEmptyTest::title() const
|
2013-09-06 12:35:15 +08:00
|
|
|
{
|
|
|
|
return "Create Empty Sprite";
|
|
|
|
}
|
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
std::string SpriteCreateEmptyTest::subtitle() const
|
2013-09-06 12:35:15 +08:00
|
|
|
{
|
|
|
|
return "Create Empty Sprite Perf test. See console";
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* SpriteCreateEmptyTest::testName()
|
|
|
|
{
|
|
|
|
return "Sprite::create(void)";
|
|
|
|
}
|
|
|
|
|
2013-09-06 11:02:04 +08:00
|
|
|
////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// SpriteCreateTest
|
|
|
|
//
|
|
|
|
////////////////////////////////////////////////////////
|
|
|
|
void SpriteCreateTest::updateQuantityOfNodes()
|
|
|
|
{
|
|
|
|
currentQuantityOfNodes = quantityOfNodes;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpriteCreateTest::initWithQuantityOfNodes(unsigned int nNodes)
|
|
|
|
{
|
|
|
|
PerformceAllocScene::initWithQuantityOfNodes(nNodes);
|
|
|
|
|
2014-07-18 10:20:37 +08:00
|
|
|
log("Size of Sprite: %u\n", sizeof(Sprite));
|
2013-09-06 11:02:04 +08:00
|
|
|
|
|
|
|
scheduleUpdate();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpriteCreateTest::update(float dt)
|
|
|
|
{
|
|
|
|
// iterate using fast enumeration protocol
|
|
|
|
|
|
|
|
Sprite **sprites = new Sprite*[quantityOfNodes];
|
|
|
|
|
2013-09-06 12:35:15 +08:00
|
|
|
Sprite::create("Images/grossini.png");
|
|
|
|
|
2013-09-06 11:02:04 +08:00
|
|
|
CC_PROFILER_START(this->profilerName());
|
|
|
|
for( int i=0; i<quantityOfNodes; ++i)
|
2013-09-06 12:35:15 +08:00
|
|
|
sprites[i] = Sprite::create("Images/grossini.png");
|
2013-09-06 11:02:04 +08:00
|
|
|
CC_PROFILER_STOP(this->profilerName());
|
|
|
|
|
|
|
|
delete [] sprites;
|
|
|
|
}
|
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
std::string SpriteCreateTest::title() const
|
2013-09-06 11:02:04 +08:00
|
|
|
{
|
2013-09-07 06:33:28 +08:00
|
|
|
return "Create Sprite";
|
2013-09-06 11:02:04 +08:00
|
|
|
}
|
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
std::string SpriteCreateTest::subtitle() const
|
2013-09-06 11:02:04 +08:00
|
|
|
{
|
2013-09-06 12:35:15 +08:00
|
|
|
return "Create Empty Sprite. See console";
|
2013-09-06 11:02:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const char* SpriteCreateTest::testName()
|
|
|
|
{
|
2013-09-06 12:35:15 +08:00
|
|
|
return "Sprite::create(\"image\")";
|
2013-09-06 11:02:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// SpriteDeallocTest
|
|
|
|
//
|
|
|
|
////////////////////////////////////////////////////////
|
|
|
|
void SpriteDeallocTest::updateQuantityOfNodes()
|
|
|
|
{
|
|
|
|
currentQuantityOfNodes = quantityOfNodes;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpriteDeallocTest::initWithQuantityOfNodes(unsigned int nNodes)
|
|
|
|
{
|
|
|
|
PerformceAllocScene::initWithQuantityOfNodes(nNodes);
|
|
|
|
|
2014-07-18 10:20:37 +08:00
|
|
|
log("Size of sprite: %u\n", sizeof(Sprite));
|
2013-09-06 11:02:04 +08:00
|
|
|
|
|
|
|
scheduleUpdate();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SpriteDeallocTest::update(float dt)
|
|
|
|
{
|
|
|
|
// iterate using fast enumeration protocol
|
|
|
|
|
|
|
|
Sprite **sprites = new Sprite*[quantityOfNodes];
|
|
|
|
|
|
|
|
for( int i=0; i<quantityOfNodes; ++i) {
|
2013-11-14 07:55:36 +08:00
|
|
|
sprites[i] = Sprite::create();
|
|
|
|
sprites[i]->retain();
|
2013-09-06 11:02:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
CC_PROFILER_START(this->profilerName());
|
|
|
|
for( int i=0; i<quantityOfNodes; ++i)
|
|
|
|
sprites[i]->release();
|
|
|
|
CC_PROFILER_STOP(this->profilerName());
|
|
|
|
|
|
|
|
delete [] sprites;
|
|
|
|
}
|
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
std::string SpriteDeallocTest::title() const
|
2013-09-06 11:02:04 +08:00
|
|
|
{
|
|
|
|
return "Sprite Dealloc Perf test.";
|
|
|
|
}
|
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
std::string SpriteDeallocTest::subtitle() const
|
2013-09-06 11:02:04 +08:00
|
|
|
{
|
|
|
|
return "Sprite Dealloc Perf test. See console";
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* SpriteDeallocTest::testName()
|
|
|
|
{
|
|
|
|
return "Sprite::~Sprite()";
|
|
|
|
}
|
|
|
|
|
|
|
|
///----------------------------------------
|
|
|
|
void runAllocPerformanceTest()
|
|
|
|
{
|
|
|
|
auto scene = createFunctions[g_curCase]();
|
|
|
|
scene->initWithQuantityOfNodes(kNodesIncrease);
|
|
|
|
|
|
|
|
Director::getInstance()->replaceScene(scene);
|
|
|
|
}
|