2012-08-27 11:43:47 +08:00
|
|
|
|
require "luaScript/PerformanceTest/PerformanceSpriteTest"
|
|
|
|
|
|
2013-05-09 09:57:05 +08:00
|
|
|
|
local MAX_COUNT = 5
|
2012-08-27 11:43:47 +08:00
|
|
|
|
local LINE_SPACE = 40
|
|
|
|
|
local kItemTagBasic = 1000
|
|
|
|
|
|
|
|
|
|
local testsName =
|
|
|
|
|
{
|
|
|
|
|
"PerformanceNodeChildrenTest",
|
2013-05-09 09:57:05 +08:00
|
|
|
|
"PerformanceParticleTest",
|
|
|
|
|
"PerformanceSpriteTest",
|
2012-08-27 11:43:47 +08:00
|
|
|
|
"PerformanceTextureTest",
|
|
|
|
|
"PerformanceTouchesTest"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
local s = CCDirector:sharedDirector():getWinSize()
|
|
|
|
|
|
2013-05-09 09:57:05 +08:00
|
|
|
|
--Create toMainLayr MenuItem
|
|
|
|
|
function CreatePerfomBasicLayerMenu(pMenu)
|
|
|
|
|
if nil == pMenu then
|
|
|
|
|
return
|
|
|
|
|
end
|
|
|
|
|
local function toMainLayer()
|
|
|
|
|
local pScene = PerformanceTestMain()
|
|
|
|
|
if pScene ~= nil then
|
|
|
|
|
CCDirector:sharedDirector():replaceScene(pScene)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
--Create BackMneu
|
|
|
|
|
CCMenuItemFont:setFontName("Arial")
|
2013-05-10 14:59:21 +08:00
|
|
|
|
CCMenuItemFont:setFontSize(24)
|
|
|
|
|
local pMenuItemFont = CCMenuItemFont:create("Back")
|
2013-05-09 09:57:05 +08:00
|
|
|
|
pMenuItemFont:setPosition(ccp(VisibleRect:rightBottom().x - 50, VisibleRect:rightBottom().y + 25))
|
|
|
|
|
pMenuItemFont:registerScriptTapHandler(toMainLayer)
|
|
|
|
|
pMenu:addChild(pMenuItemFont)
|
|
|
|
|
end
|
|
|
|
|
|
2012-08-27 11:43:47 +08:00
|
|
|
|
----------------------------------
|
2013-05-09 09:57:05 +08:00
|
|
|
|
--PerformanceNodeChildrenTest
|
2012-08-27 11:43:47 +08:00
|
|
|
|
----------------------------------
|
2013-05-09 09:57:05 +08:00
|
|
|
|
local NodeChildrenTestParam =
|
|
|
|
|
{
|
|
|
|
|
kTagInfoLayer = 1,
|
|
|
|
|
kTagMainLayer = 2,
|
|
|
|
|
kTagLabelAtlas = 3,
|
|
|
|
|
kTagBase = 20000,
|
|
|
|
|
TEST_COUNT = 4,
|
|
|
|
|
kMaxNodes = 15000,
|
|
|
|
|
kNodesIncrease = 500,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
local function runNodeChildrenTest()
|
|
|
|
|
--NodeChildrenMainScene
|
|
|
|
|
local nLastRenderedCount = 0
|
|
|
|
|
local nQuantityOfNodes = 0
|
|
|
|
|
local nCurrentQuantityOfNodes = 0
|
|
|
|
|
--IterateSpriteSheet
|
|
|
|
|
local pBatchNode = nil
|
|
|
|
|
|
|
|
|
|
--BasiceLayer param
|
|
|
|
|
local bControlMenuVisible = false
|
|
|
|
|
local nMaxCases = 0
|
|
|
|
|
local nCurCase = 0
|
|
|
|
|
|
|
|
|
|
local pNewscene = CCScene:create()
|
|
|
|
|
|
|
|
|
|
local function GetTitle()
|
|
|
|
|
if 0 == nCurCase then
|
|
|
|
|
return "B - Iterate SpriteSheet"
|
|
|
|
|
elseif 1 == nCurCase then
|
|
|
|
|
return "C - Add to spritesheet"
|
|
|
|
|
elseif 2 == nCurCase then
|
|
|
|
|
return "D - Del from spritesheet"
|
|
|
|
|
elseif 3 == nCurCase then
|
|
|
|
|
return "E - Reorder from spritesheet"
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function GetSubTitle()
|
|
|
|
|
if 0 == nCurCase then
|
|
|
|
|
return "Iterate children using C Array API. See console"
|
|
|
|
|
elseif 1 == nCurCase then
|
|
|
|
|
return "Adds %10 of total sprites with random z. See console"
|
|
|
|
|
elseif 2 == nCurCase then
|
|
|
|
|
return "Remove %10 of total sprites placed randomly. See console"
|
|
|
|
|
elseif 3 == nCurCase then
|
|
|
|
|
return "Reorder %10 of total sprites placed randomly. See console"
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function GetProfilerName()
|
|
|
|
|
if 0 == nCurCase then
|
|
|
|
|
return "iter c-array"
|
|
|
|
|
elseif 1 == nCurCase then
|
|
|
|
|
return "add sprites"
|
|
|
|
|
elseif 2 == nCurCase then
|
|
|
|
|
return "remove sprites"
|
|
|
|
|
elseif 3 == nCurCase then
|
|
|
|
|
return "reorder sprites"
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function CreateBasicLayerMenuItem(pMenu,bMenuVisible,nMaxCasesNum,nCurCaseIndex)
|
|
|
|
|
if nil ~= pMenu then
|
|
|
|
|
bControlMenuVisible = bMenuVisible
|
|
|
|
|
nMaxCases = nMaxCasesNum
|
|
|
|
|
nCurCase = nCurCaseIndex
|
|
|
|
|
if true == bControlMenuVisible then
|
|
|
|
|
local function backCallback()
|
|
|
|
|
nCurCase = nCurCase - 1
|
|
|
|
|
if nCurCase < 0 then
|
|
|
|
|
nCurCase = nCurCase + nMaxCases
|
|
|
|
|
end
|
|
|
|
|
ShowCurrentTest()
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function restartCallback()
|
|
|
|
|
ShowCurrentTest()
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function nextCallback()
|
|
|
|
|
nCurCase = nCurCase + 1
|
|
|
|
|
--No check nMaxCases
|
|
|
|
|
nCurCase = nCurCase % nMaxCases
|
|
|
|
|
ShowCurrentTest()
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local size = CCDirector:sharedDirector():getWinSize()
|
|
|
|
|
local item1 = CCMenuItemImage:create(s_pPathB1, s_pPathB2)
|
|
|
|
|
item1:registerScriptTapHandler(backCallback)
|
|
|
|
|
pMenu:addChild(item1,kItemTagBasic)
|
|
|
|
|
local item2 = CCMenuItemImage:create(s_pPathR1, s_pPathR2)
|
|
|
|
|
item2:registerScriptTapHandler(restartCallback)
|
|
|
|
|
pMenu:addChild(item2,kItemTagBasic)
|
|
|
|
|
local item3 = CCMenuItemImage:create(s_pPathF1, s_pPathF2)
|
|
|
|
|
pMenu:addChild(item3,kItemTagBasic)
|
|
|
|
|
item3:registerScriptTapHandler(nextCallback)
|
|
|
|
|
|
|
|
|
|
local size = CCDirector:sharedDirector():getWinSize()
|
|
|
|
|
item1:setPosition(CCPointMake(size.width / 2 - item2:getContentSize().width * 2, item2:getContentSize().height / 2))
|
|
|
|
|
item2:setPosition(CCPointMake(size.width / 2, item2:getContentSize().height / 2))
|
|
|
|
|
item3:setPosition(CCPointMake(size.width / 2 + item2:getContentSize().width * 2, item2:getContentSize().height / 2))
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function updateQuantityLabel()
|
|
|
|
|
if nQuantityOfNodes ~= nLastRenderedCount then
|
|
|
|
|
-- local pInfoLabel = pNewscene:getChildByTag(NodeChildrenTestParam.kTagInfoLayer)
|
|
|
|
|
local pInfoLabel = tolua.cast(pNewscene:getChildByTag(NodeChildrenTestParam.kTagInfoLayer), "CCLabelTTF")
|
|
|
|
|
local strNode = nQuantityOfNodes.." nodes"
|
|
|
|
|
pInfoLabel:setString(strNode)
|
|
|
|
|
nLastRenderedCount = nQuantityOfNodes
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function IterateSpriteSheetCArrayUpdate(t)
|
|
|
|
|
if nil == pBatchNode then
|
|
|
|
|
return
|
|
|
|
|
end
|
|
|
|
|
local pChildren = pBatchNode:getChildren()
|
|
|
|
|
local pObject = nil
|
|
|
|
|
if nil == pChildren then
|
|
|
|
|
return
|
|
|
|
|
end
|
|
|
|
|
local i = 0
|
|
|
|
|
local len = pChildren:count()
|
|
|
|
|
for i = 0, len - 1, 1 do
|
|
|
|
|
local child = tolua.cast(pChildren:objectAtIndex(i), "CCSprite")
|
|
|
|
|
child:setVisible(false)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2013-05-09 11:31:40 +08:00
|
|
|
|
local function AddSpriteSheetUpdate(t)
|
|
|
|
|
if nil == pBatchNode then
|
|
|
|
|
return
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
--15 percent
|
|
|
|
|
local nTotalToAdd = nCurrentQuantityOfNodes * 0.15
|
|
|
|
|
local zs = {}
|
|
|
|
|
if nTotalToAdd > 0 then
|
2013-05-10 14:59:21 +08:00
|
|
|
|
local pSprites = CCArray:createWithCapacity(nTotalToAdd)
|
2013-05-09 11:31:40 +08:00
|
|
|
|
local i = 0
|
|
|
|
|
for i = 0 , nTotalToAdd - 1 do
|
|
|
|
|
local pSprite = CCSprite:createWithTexture(pBatchNode:getTexture(), CCRectMake(0,0,32,32))
|
|
|
|
|
pSprites:addObject(pSprite)
|
|
|
|
|
zs[i] = math.random(-1,1) * 50
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
for i = 0 , nTotalToAdd - 1 do
|
|
|
|
|
local pChild = tolua.cast(pSprites:objectAtIndex(i),"CCNode")
|
2013-05-10 14:59:21 +08:00
|
|
|
|
pBatchNode:addChild(pChild, zs[i], NodeChildrenTestParam.kTagBase + i)
|
2013-05-09 11:31:40 +08:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
pBatchNode:sortAllChildren()
|
|
|
|
|
|
|
|
|
|
for i = 0 , nTotalToAdd - 1 do
|
2013-05-10 14:59:21 +08:00
|
|
|
|
pBatchNode:removeChildByTag( NodeChildrenTestParam.kTagBase + i, true)
|
2013-05-09 11:31:40 +08:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function RemoveSpriteSheetUpdate(t)
|
|
|
|
|
if nil == pBatchNode then
|
|
|
|
|
return
|
|
|
|
|
end
|
|
|
|
|
local nTotalToAdd = nCurrentQuantityOfNodes * 0.15
|
|
|
|
|
if nTotalToAdd > 0 then
|
2013-05-10 14:59:21 +08:00
|
|
|
|
local pSprites = CCArray:createWithCapacity(nTotalToAdd)
|
2013-05-09 11:31:40 +08:00
|
|
|
|
|
|
|
|
|
-- Don't include the sprite creation time as part of the profiling
|
|
|
|
|
local i = 0
|
|
|
|
|
for i = 0, nTotalToAdd - 1 do
|
2013-05-10 14:59:21 +08:00
|
|
|
|
local pSprite = CCSprite:createWithTexture(pBatchNode:getTexture(), CCRectMake(0,0,32,32))
|
|
|
|
|
pSprites:addObject(pSprite)
|
2013-05-09 11:31:40 +08:00
|
|
|
|
end
|
|
|
|
|
-- add them with random Z (very important!)
|
|
|
|
|
for i=0, nTotalToAdd - 1 do
|
|
|
|
|
local pChild = tolua.cast(pSprites:objectAtIndex(i),"CCNode")
|
|
|
|
|
pBatchNode:addChild(pChild, math.random(-1,1) * 50, NodeChildrenTestParam.kTagBase + i)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
for i = 0, nTotalToAdd - 1 do
|
2013-05-10 14:59:21 +08:00
|
|
|
|
pBatchNode:removeChildByTag( NodeChildrenTestParam.kTagBase + i, true)
|
2013-05-09 11:31:40 +08:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function ReorderSpriteSheetUpdate(t)
|
|
|
|
|
if nil == pBatchNode then
|
|
|
|
|
return
|
|
|
|
|
end
|
|
|
|
|
-- 15 percent
|
2013-05-10 14:59:21 +08:00
|
|
|
|
local nTotalToAdd = nCurrentQuantityOfNodes * 0.15
|
2013-05-09 11:31:40 +08:00
|
|
|
|
|
|
|
|
|
if nTotalToAdd > 0 then
|
2013-05-10 14:59:21 +08:00
|
|
|
|
local pSprites = CCArray:createWithCapacity(nTotalToAdd)
|
2013-05-09 11:31:40 +08:00
|
|
|
|
|
|
|
|
|
-- Don't include the sprite creation time as part of the profiling
|
|
|
|
|
local i = 0
|
|
|
|
|
for i = 0,nTotalToAdd - 1 do
|
2013-05-10 14:59:21 +08:00
|
|
|
|
local pSprite = CCSprite:createWithTexture(pBatchNode:getTexture(), CCRectMake(0,0,32,32))
|
|
|
|
|
pSprites:addObject(pSprite)
|
2013-05-09 11:31:40 +08:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
--dd them with random Z (very important!)
|
|
|
|
|
for i = 0, nTotalToAdd - 1 do
|
|
|
|
|
local pChild = tolua.cast(pSprites:objectAtIndex(i),"CCNode")
|
|
|
|
|
pBatchNode:addChild(pChild, math.random(-1,1) * 50, NodeChildrenTestParam.kTagBase + i)
|
|
|
|
|
end
|
|
|
|
|
|
2013-05-10 14:59:21 +08:00
|
|
|
|
pBatchNode:sortAllChildren()
|
2013-05-09 11:31:40 +08:00
|
|
|
|
|
|
|
|
|
-- reorder them
|
|
|
|
|
for i = 0, nTotalToAdd - 1 do
|
|
|
|
|
local pNode = tolua.cast(pBatchNode:getChildren():objectAtIndex(i),"CCNode")
|
2013-05-10 14:59:21 +08:00
|
|
|
|
pBatchNode:reorderChild(pNode, math.random(-1,1) * 50)
|
2013-05-09 11:31:40 +08:00
|
|
|
|
end
|
2013-05-10 14:59:21 +08:00
|
|
|
|
pBatchNode:sortAllChildren()
|
2013-05-09 11:31:40 +08:00
|
|
|
|
--remove them
|
|
|
|
|
for i = 0, nTotalToAdd - 1 do
|
2013-05-10 14:59:21 +08:00
|
|
|
|
pBatchNode:removeChildByTag( NodeChildrenTestParam.kTagBase+i, true)
|
2013-05-09 11:31:40 +08:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2013-05-09 09:57:05 +08:00
|
|
|
|
local function NodeChildrenScheduleUpdate()
|
|
|
|
|
if 0 == nCurCase then
|
|
|
|
|
pNewscene:scheduleUpdateWithPriorityLua(IterateSpriteSheetCArrayUpdate,0)
|
|
|
|
|
elseif 1 == nCurCase then
|
2013-05-09 11:31:40 +08:00
|
|
|
|
pNewscene:scheduleUpdateWithPriorityLua(AddSpriteSheetUpdate,0)
|
2013-05-09 09:57:05 +08:00
|
|
|
|
elseif 2 == nCurCase then
|
2013-05-09 11:31:40 +08:00
|
|
|
|
pNewscene:scheduleUpdateWithPriorityLua(RemoveSpriteSheetUpdate,0)
|
2013-05-09 09:57:05 +08:00
|
|
|
|
elseif 3 == nCurCase then
|
2013-05-09 11:31:40 +08:00
|
|
|
|
pNewscene:scheduleUpdateWithPriorityLua(ReorderSpriteSheetUpdate,0)
|
2013-05-09 09:57:05 +08:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function updateQuantityOfNodes()
|
|
|
|
|
local s = CCDirector:sharedDirector():getWinSize()
|
|
|
|
|
--increase nodes
|
|
|
|
|
if( nCurrentQuantityOfNodes < nQuantityOfNodes ) then
|
|
|
|
|
local i = 0
|
|
|
|
|
for i = 0,nQuantityOfNodes - nCurrentQuantityOfNodes - 1 do
|
|
|
|
|
local sprite = CCSprite:createWithTexture(pBatchNode:getTexture(), CCRectMake(0, 0, 32, 32))
|
|
|
|
|
pBatchNode:addChild(sprite)
|
|
|
|
|
sprite:setPosition(ccp( math.random() * s.width, math.random() * s.height))
|
|
|
|
|
if 0 ~= nCurCase then
|
|
|
|
|
sprite:setVisible(false)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
elseif (nCurrentQuantityOfNodes > nQuantityOfNodes ) then
|
|
|
|
|
i = 0
|
|
|
|
|
for i = 0, nCurrentQuantityOfNodes - nQuantityOfNodes - 1 do
|
|
|
|
|
local index = nCurrentQuantityOfNodes - i - 1
|
|
|
|
|
pBatchNode:removeChildAtIndex(index, true)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
nCurrentQuantityOfNodes = nQuantityOfNodes
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function onDecrease()
|
|
|
|
|
nQuantityOfNodes = nQuantityOfNodes - NodeChildrenTestParam.kNodesIncrease
|
|
|
|
|
if nQuantityOfNodes < 0 then
|
|
|
|
|
nQuantityOfNodes = 0
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
updateQuantityLabel()
|
|
|
|
|
updateQuantityOfNodes()
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function onIncrease()
|
|
|
|
|
nQuantityOfNodes = nQuantityOfNodes + NodeChildrenTestParam.kNodesIncrease
|
|
|
|
|
if nQuantityOfNodes > NodeChildrenTestParam.kMaxNodes then
|
|
|
|
|
nQuantityOfNodes = NodeChildrenTestParam.kMaxNodes
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
updateQuantityLabel()
|
|
|
|
|
updateQuantityOfNodes()
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
local function SpecialInitWithQuantityOfNodes()
|
2013-05-09 16:59:39 +08:00
|
|
|
|
-- if 0 == nCurCase then
|
2013-05-09 09:57:05 +08:00
|
|
|
|
pBatchNode = CCSpriteBatchNode:create("Images/spritesheet1.png")
|
|
|
|
|
pNewscene:addChild(pBatchNode)
|
2013-05-09 16:59:39 +08:00
|
|
|
|
--[[
|
2013-05-09 09:57:05 +08:00
|
|
|
|
else
|
2013-05-10 14:59:21 +08:00
|
|
|
|
pBatchNode = CCSpriteBatchNode:create("Images/spritesheet1.png")
|
|
|
|
|
pNewscene:addChild(pBatchNode)
|
2013-05-09 09:57:05 +08:00
|
|
|
|
end
|
2013-05-09 16:59:39 +08:00
|
|
|
|
]]--
|
2013-05-09 09:57:05 +08:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function MainSceneInitWithQuantityOfNodes(nNodes)
|
|
|
|
|
local s = CCDirector:sharedDirector():getWinSize()
|
|
|
|
|
|
|
|
|
|
--Title
|
|
|
|
|
local pLabel = CCLabelTTF:create(GetTitle(), "Arial", 40)
|
|
|
|
|
pNewscene:addChild(pLabel, 1)
|
|
|
|
|
pLabel:setPosition(ccp(s.width/2, s.height-32))
|
|
|
|
|
pLabel:setColor(ccc3(255,255,40))
|
|
|
|
|
|
|
|
|
|
if (nil ~= GetSubTitle()) and ("" ~= GetSubTitle()) then
|
2013-05-10 14:59:21 +08:00
|
|
|
|
local pSubLabel = CCLabelTTF:create(GetSubTitle(), "Thonburi", 16)
|
|
|
|
|
pNewscene:addChild(pSubLabel, 1)
|
2013-05-09 09:57:05 +08:00
|
|
|
|
pSubLabel:setPosition(ccp(s.width/2, s.height-80))
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
nLastRenderedCount = 0
|
|
|
|
|
nCurrentQuantityOfNodes = 0
|
|
|
|
|
nQuantityOfNodes = nNodes
|
|
|
|
|
|
|
|
|
|
--"+"<22><>"-" Menu
|
2013-05-10 14:59:21 +08:00
|
|
|
|
CCMenuItemFont:setFontSize(65)
|
2013-05-09 09:57:05 +08:00
|
|
|
|
local pDecrease = CCMenuItemFont:create(" - ")
|
|
|
|
|
pDecrease:registerScriptTapHandler(onDecrease)
|
2013-05-10 14:59:21 +08:00
|
|
|
|
pDecrease:setColor(ccc3(0,200,20))
|
2013-05-09 09:57:05 +08:00
|
|
|
|
local pIncrease = CCMenuItemFont:create(" + ")
|
|
|
|
|
pIncrease:registerScriptTapHandler(onIncrease)
|
2013-05-10 14:59:21 +08:00
|
|
|
|
pIncrease:setColor(ccc3(0,200,20))
|
2013-05-09 09:57:05 +08:00
|
|
|
|
|
|
|
|
|
local pMenuAddOrSub = CCMenu:create()
|
|
|
|
|
pMenuAddOrSub:addChild(pDecrease)
|
|
|
|
|
pMenuAddOrSub:addChild(pIncrease)
|
2013-05-10 14:59:21 +08:00
|
|
|
|
pMenuAddOrSub:alignItemsHorizontally()
|
|
|
|
|
pMenuAddOrSub:setPosition(ccp(s.width/2, s.height/2+15))
|
2013-05-09 09:57:05 +08:00
|
|
|
|
pNewscene:addChild(pMenuAddOrSub,1)
|
|
|
|
|
|
|
|
|
|
--InfoLayer
|
2013-05-10 14:59:21 +08:00
|
|
|
|
local pInfoLabel = CCLabelTTF:create("0 nodes", "Marker Felt", 30)
|
|
|
|
|
pInfoLabel:setColor(ccc3(0,200,20))
|
|
|
|
|
pInfoLabel:setPosition(ccp(s.width/2, s.height/2-15))
|
|
|
|
|
pNewscene:addChild(pInfoLabel, 1, NodeChildrenTestParam.kTagInfoLayer)
|
2013-05-09 09:57:05 +08:00
|
|
|
|
|
|
|
|
|
--NodeChildrenMenuLayer
|
|
|
|
|
local pNodeChildrenMenuLayer = CCLayer:create()
|
|
|
|
|
local pNodeChildrenMenuMenu = CCMenu:create()
|
|
|
|
|
CreatePerfomBasicLayerMenu(pNodeChildrenMenuMenu)
|
|
|
|
|
CreateBasicLayerMenuItem(pNodeChildrenMenuMenu,true,NodeChildrenTestParam.TEST_COUNT,nCurCase)
|
|
|
|
|
pNodeChildrenMenuMenu:setPosition(ccp(0, 0))
|
|
|
|
|
pNodeChildrenMenuLayer:addChild(pNodeChildrenMenuMenu)
|
|
|
|
|
pNewscene:addChild(pNodeChildrenMenuLayer)
|
|
|
|
|
|
|
|
|
|
updateQuantityLabel()
|
|
|
|
|
updateQuantityOfNodes()
|
|
|
|
|
|
2013-05-09 11:31:40 +08:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function ShowCurrentTest()
|
|
|
|
|
if nil ~= pNewscene then
|
|
|
|
|
pNewscene:unscheduleUpdate()
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
pNewscene = CCScene:create()
|
|
|
|
|
if nil ~= pNewscene then
|
|
|
|
|
SpecialInitWithQuantityOfNodes()
|
|
|
|
|
MainSceneInitWithQuantityOfNodes(nQuantityOfNodes)
|
|
|
|
|
-- pNewscene:registerScriptHandler(onNodeEvent)
|
|
|
|
|
NodeChildrenScheduleUpdate()
|
|
|
|
|
CCDirector:sharedDirector():replaceScene(pNewscene)
|
|
|
|
|
end
|
2013-05-09 09:57:05 +08:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
SpecialInitWithQuantityOfNodes()
|
|
|
|
|
MainSceneInitWithQuantityOfNodes(NodeChildrenTestParam.kNodesIncrease)
|
2013-05-09 11:31:40 +08:00
|
|
|
|
-- pNewscene:registerScriptHandler(onNodeEvent)
|
2013-05-09 09:57:05 +08:00
|
|
|
|
NodeChildrenScheduleUpdate()
|
2013-05-09 11:31:40 +08:00
|
|
|
|
|
2013-05-09 09:57:05 +08:00
|
|
|
|
return pNewscene
|
|
|
|
|
end
|
|
|
|
|
----------------------------------
|
|
|
|
|
--PerformanceParticleTest
|
|
|
|
|
----------------------------------
|
|
|
|
|
local ParticleTestParam =
|
|
|
|
|
{
|
|
|
|
|
kTagInfoLayer = 1,
|
|
|
|
|
kTagMainLayer = 2,
|
|
|
|
|
kTagParticleSystem = 3,
|
|
|
|
|
kTagLabelAtlas = 4,
|
|
|
|
|
kTagMenuLayer = 1000,
|
2012-08-27 11:43:47 +08:00
|
|
|
|
|
2013-05-09 09:57:05 +08:00
|
|
|
|
TEST_COUNT = 4,
|
|
|
|
|
kMaxParticles = 14000,
|
|
|
|
|
kNodesIncrease = 500,
|
2013-05-10 14:59:21 +08:00
|
|
|
|
|
|
|
|
|
kSubMenuBasicZOrder = 10
|
2013-05-09 09:57:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-10 14:59:21 +08:00
|
|
|
|
local function runParticleTest()
|
|
|
|
|
--PerformanceParticle param
|
|
|
|
|
local nLastRenderedCount = 0
|
|
|
|
|
local nQuantityParticles = 0
|
|
|
|
|
local nSubtestNumber = 0
|
|
|
|
|
--BasiceLayer param
|
|
|
|
|
local bControlMenuVisible = false
|
|
|
|
|
local nMaxCases = 0
|
|
|
|
|
local nCurCase = 0
|
|
|
|
|
|
|
|
|
|
local ScheduleSelector = nil
|
|
|
|
|
|
|
|
|
|
local pNewScene = CCScene:create()
|
|
|
|
|
|
|
|
|
|
local function GetTitle()
|
|
|
|
|
local strTitle = nil
|
|
|
|
|
if 0 == nCurCase then
|
|
|
|
|
strTitle = string.format("A (%d) size=4",nSubtestNumber)
|
|
|
|
|
elseif 1 == nCurCase then
|
|
|
|
|
strTitle = string.format("B (%d) size=8",nSubtestNumber)
|
|
|
|
|
elseif 2 == nCurCase then
|
|
|
|
|
strTitle = string.format("C (%d) size=32",nSubtestNumber)
|
|
|
|
|
elseif 3 == nCurCase then
|
|
|
|
|
strTitle = string.format("D (%d) size=64",nSubtestNumber)
|
|
|
|
|
end
|
|
|
|
|
return strTitle
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function CreateBasicLayerMenuItem(pMenu,bMenuVisible,nMaxCasesNum,nCurCaseIndex)
|
|
|
|
|
if nil ~= pMenu then
|
|
|
|
|
bControlMenuVisible = bMenuVisible
|
|
|
|
|
nMaxCases = nMaxCasesNum
|
|
|
|
|
nCurCase = nCurCaseIndex
|
|
|
|
|
if true == bControlMenuVisible then
|
|
|
|
|
local function backCallback()
|
|
|
|
|
nCurCase = nCurCase - 1
|
|
|
|
|
if nCurCase < 0 then
|
|
|
|
|
nCurCase = nCurCase + nMaxCases
|
|
|
|
|
end
|
|
|
|
|
ShowCurrentTest()
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function restartCallback()
|
|
|
|
|
ShowCurrentTest()
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function nextCallback()
|
|
|
|
|
nCurCase = nCurCase + 1
|
|
|
|
|
--No check nMaxCases
|
|
|
|
|
nCurCase = nCurCase % nMaxCases
|
|
|
|
|
ShowCurrentTest()
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local size = CCDirector:sharedDirector():getWinSize()
|
|
|
|
|
local item1 = CCMenuItemImage:create(s_pPathB1, s_pPathB2)
|
|
|
|
|
item1:registerScriptTapHandler(backCallback)
|
|
|
|
|
pMenu:addChild(item1,kItemTagBasic)
|
|
|
|
|
local item2 = CCMenuItemImage:create(s_pPathR1, s_pPathR2)
|
|
|
|
|
item2:registerScriptTapHandler(restartCallback)
|
|
|
|
|
pMenu:addChild(item2,kItemTagBasic)
|
|
|
|
|
local item3 = CCMenuItemImage:create(s_pPathF1, s_pPathF2)
|
|
|
|
|
pMenu:addChild(item3,kItemTagBasic)
|
|
|
|
|
item3:registerScriptTapHandler(nextCallback)
|
|
|
|
|
|
|
|
|
|
local size = CCDirector:sharedDirector():getWinSize()
|
|
|
|
|
item1:setPosition(CCPointMake(size.width / 2 - item2:getContentSize().width * 2, item2:getContentSize().height / 2))
|
|
|
|
|
item2:setPosition(CCPointMake(size.width / 2, item2:getContentSize().height / 2))
|
|
|
|
|
item3:setPosition(CCPointMake(size.width / 2 + item2:getContentSize().width * 2, item2:getContentSize().height / 2))
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function TestNCallback(tag,pMenuItem)
|
|
|
|
|
local nIndex = pMenuItem:getZOrder() - ParticleTestParam.kSubMenuBasicZOrder
|
|
|
|
|
nSubtestNumber = nIndex
|
|
|
|
|
ShowCurrentTest()
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function UpdateQuantityLabel()
|
|
|
|
|
if nQuantityParticles ~= nLastRenderedCount then
|
|
|
|
|
local pInfoLabel = tolua.cast(pNewScene:getChildByTag(ParticleTestParam.kTagInfoLayer), "CCLabelTTF")
|
|
|
|
|
local strInfo = string.format("%u particles", nQuantityParticles)
|
|
|
|
|
pInfoLabel:setString(strInfo)
|
|
|
|
|
|
|
|
|
|
nLastRenderedCount = nQuantityParticles
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function doTest()
|
|
|
|
|
local s = CCDirector:sharedDirector():getWinSize()
|
|
|
|
|
local pParticleSystem = tolua.cast(pNewScene:getChildByTag(ParticleTestParam.kTagParticleSystem),"CCParticleSystem")
|
|
|
|
|
if nil == pParticleSystem then
|
|
|
|
|
return
|
|
|
|
|
end
|
|
|
|
|
if 0 == nCurCase then
|
|
|
|
|
--duration
|
|
|
|
|
pParticleSystem:setDuration(-1)
|
|
|
|
|
|
|
|
|
|
--gravity
|
|
|
|
|
pParticleSystem:setGravity(ccp(0,-90))
|
|
|
|
|
|
|
|
|
|
--angle
|
|
|
|
|
pParticleSystem:setAngle(90)
|
|
|
|
|
pParticleSystem:setAngleVar(0)
|
|
|
|
|
|
|
|
|
|
--radial
|
|
|
|
|
pParticleSystem:setRadialAccel(0)
|
|
|
|
|
pParticleSystem:setRadialAccelVar(0)
|
|
|
|
|
|
|
|
|
|
-- speed of particles
|
|
|
|
|
pParticleSystem:setSpeed(180)
|
|
|
|
|
pParticleSystem:setSpeedVar(50)
|
|
|
|
|
|
|
|
|
|
-- emitter position
|
|
|
|
|
pParticleSystem:setPosition(ccp(s.width/2, 100))
|
|
|
|
|
pParticleSystem:setPosVar(ccp(s.width/2,0))
|
|
|
|
|
|
|
|
|
|
-- life of particles
|
|
|
|
|
pParticleSystem:setLife(2.0)
|
|
|
|
|
pParticleSystem:setLifeVar(1)
|
|
|
|
|
|
|
|
|
|
--emits per frame
|
|
|
|
|
pParticleSystem:setEmissionRate(pParticleSystem:getTotalParticles() / pParticleSystem:getLife())
|
|
|
|
|
|
|
|
|
|
--color of particles
|
|
|
|
|
pParticleSystem:setStartColor(ccc4f(0.5, 0.5, 0.5, 1.0))
|
|
|
|
|
|
|
|
|
|
pParticleSystem:setStartColorVar( ccc4f(0.5, 0.5, 0.5, 1.0))
|
|
|
|
|
|
|
|
|
|
pParticleSystem:setEndColor(ccc4f(0.1, 0.1, 0.1, 0.2))
|
|
|
|
|
|
|
|
|
|
pParticleSystem:setEndColorVar(ccc4f(0.1, 0.1, 0.1, 0.2))
|
|
|
|
|
|
|
|
|
|
-- size, in pixels
|
|
|
|
|
pParticleSystem:setEndSize(4.0)
|
|
|
|
|
pParticleSystem:setStartSize(4.0)
|
|
|
|
|
pParticleSystem:setEndSizeVar(0)
|
|
|
|
|
pParticleSystem:setStartSizeVar(0)
|
|
|
|
|
|
|
|
|
|
-- additive
|
|
|
|
|
pParticleSystem:setBlendAdditive(false)
|
|
|
|
|
|
|
|
|
|
elseif 1 == nCurCase then
|
|
|
|
|
--duration
|
|
|
|
|
pParticleSystem:setDuration(-1)
|
|
|
|
|
|
|
|
|
|
--gravity
|
|
|
|
|
pParticleSystem:setGravity(ccp(0,-90))
|
|
|
|
|
|
|
|
|
|
--angle
|
|
|
|
|
pParticleSystem:setAngle(90)
|
|
|
|
|
pParticleSystem:setAngleVar(0)
|
|
|
|
|
|
|
|
|
|
--radial
|
|
|
|
|
pParticleSystem:setRadialAccel(0)
|
|
|
|
|
pParticleSystem:setRadialAccelVar(0)
|
|
|
|
|
|
|
|
|
|
-- speed of particles
|
|
|
|
|
pParticleSystem:setSpeed(180)
|
|
|
|
|
pParticleSystem:setSpeedVar(50)
|
|
|
|
|
|
|
|
|
|
-- emitter position
|
|
|
|
|
pParticleSystem:setPosition(ccp(s.width/2, 100))
|
|
|
|
|
pParticleSystem:setPosVar(ccp(s.width/2,0))
|
|
|
|
|
|
|
|
|
|
-- life of particles
|
|
|
|
|
pParticleSystem:setLife(2.0)
|
|
|
|
|
pParticleSystem:setLifeVar(1)
|
|
|
|
|
|
|
|
|
|
--emits per frame
|
|
|
|
|
pParticleSystem:setEmissionRate(pParticleSystem:getTotalParticles() / pParticleSystem:getLife())
|
|
|
|
|
|
|
|
|
|
--color of particles
|
|
|
|
|
pParticleSystem:setStartColor(ccc4f(0.5, 0.5, 0.5, 1.0))
|
|
|
|
|
|
|
|
|
|
pParticleSystem:setStartColorVar( ccc4f(0.5, 0.5, 0.5, 1.0))
|
|
|
|
|
|
|
|
|
|
pParticleSystem:setEndColor(ccc4f(0.1, 0.1, 0.1, 0.2))
|
|
|
|
|
|
|
|
|
|
pParticleSystem:setEndColorVar(ccc4f(0.1, 0.1, 0.1, 0.2))
|
|
|
|
|
|
|
|
|
|
-- size, in pixels
|
|
|
|
|
pParticleSystem:setEndSize(8.0)
|
|
|
|
|
pParticleSystem:setStartSize(8.0)
|
|
|
|
|
pParticleSystem:setEndSizeVar(0)
|
|
|
|
|
pParticleSystem:setStartSizeVar(0)
|
|
|
|
|
|
|
|
|
|
-- additive
|
|
|
|
|
pParticleSystem:setBlendAdditive(false)
|
|
|
|
|
elseif 2 == nCurCase then
|
|
|
|
|
--duration
|
|
|
|
|
pParticleSystem:setDuration(-1)
|
|
|
|
|
|
|
|
|
|
--gravity
|
|
|
|
|
pParticleSystem:setGravity(ccp(0,-90))
|
|
|
|
|
|
|
|
|
|
--angle
|
|
|
|
|
pParticleSystem:setAngle(90)
|
|
|
|
|
pParticleSystem:setAngleVar(0)
|
|
|
|
|
|
|
|
|
|
--radial
|
|
|
|
|
pParticleSystem:setRadialAccel(0)
|
|
|
|
|
pParticleSystem:setRadialAccelVar(0)
|
|
|
|
|
|
|
|
|
|
-- speed of particles
|
|
|
|
|
pParticleSystem:setSpeed(180)
|
|
|
|
|
pParticleSystem:setSpeedVar(50)
|
|
|
|
|
|
|
|
|
|
-- emitter position
|
|
|
|
|
pParticleSystem:setPosition(ccp(s.width/2, 100))
|
|
|
|
|
pParticleSystem:setPosVar(ccp(s.width/2,0))
|
|
|
|
|
|
|
|
|
|
-- life of particles
|
|
|
|
|
pParticleSystem:setLife(2.0)
|
|
|
|
|
pParticleSystem:setLifeVar(1)
|
|
|
|
|
|
|
|
|
|
--emits per frame
|
|
|
|
|
pParticleSystem:setEmissionRate(pParticleSystem:getTotalParticles() / pParticleSystem:getLife())
|
|
|
|
|
|
|
|
|
|
--color of particles
|
|
|
|
|
pParticleSystem:setStartColor(ccc4f(0.5, 0.5, 0.5, 1.0))
|
|
|
|
|
|
|
|
|
|
pParticleSystem:setStartColorVar( ccc4f(0.5, 0.5, 0.5, 1.0))
|
|
|
|
|
|
|
|
|
|
pParticleSystem:setEndColor(ccc4f(0.1, 0.1, 0.1, 0.2))
|
|
|
|
|
|
|
|
|
|
pParticleSystem:setEndColorVar(ccc4f(0.1, 0.1, 0.1, 0.2))
|
|
|
|
|
|
|
|
|
|
-- size, in pixels
|
|
|
|
|
pParticleSystem:setEndSize(32.0)
|
|
|
|
|
pParticleSystem:setStartSize(32.0)
|
|
|
|
|
pParticleSystem:setEndSizeVar(0)
|
|
|
|
|
pParticleSystem:setStartSizeVar(0)
|
|
|
|
|
|
|
|
|
|
-- additive
|
|
|
|
|
pParticleSystem:setBlendAdditive(false)
|
|
|
|
|
elseif 3 == nCurCase then
|
|
|
|
|
--duration
|
|
|
|
|
pParticleSystem:setDuration(-1)
|
|
|
|
|
|
|
|
|
|
--gravity
|
|
|
|
|
pParticleSystem:setGravity(ccp(0,-90))
|
|
|
|
|
|
|
|
|
|
--angle
|
|
|
|
|
pParticleSystem:setAngle(90)
|
|
|
|
|
pParticleSystem:setAngleVar(0)
|
|
|
|
|
|
|
|
|
|
--radial
|
|
|
|
|
pParticleSystem:setRadialAccel(0)
|
|
|
|
|
pParticleSystem:setRadialAccelVar(0)
|
|
|
|
|
|
|
|
|
|
-- speed of particles
|
|
|
|
|
pParticleSystem:setSpeed(180)
|
|
|
|
|
pParticleSystem:setSpeedVar(50)
|
|
|
|
|
|
|
|
|
|
-- emitter position
|
|
|
|
|
pParticleSystem:setPosition(ccp(s.width/2, 100))
|
|
|
|
|
pParticleSystem:setPosVar(ccp(s.width/2,0))
|
|
|
|
|
|
|
|
|
|
-- life of particles
|
|
|
|
|
pParticleSystem:setLife(2.0)
|
|
|
|
|
pParticleSystem:setLifeVar(1)
|
|
|
|
|
|
|
|
|
|
--emits per frame
|
|
|
|
|
pParticleSystem:setEmissionRate(pParticleSystem:getTotalParticles() / pParticleSystem:getLife())
|
|
|
|
|
|
|
|
|
|
--color of particles
|
|
|
|
|
pParticleSystem:setStartColor(ccc4f(0.5, 0.5, 0.5, 1.0))
|
|
|
|
|
|
|
|
|
|
pParticleSystem:setStartColorVar( ccc4f(0.5, 0.5, 0.5, 1.0))
|
|
|
|
|
|
|
|
|
|
pParticleSystem:setEndColor(ccc4f(0.1, 0.1, 0.1, 0.2))
|
|
|
|
|
|
|
|
|
|
pParticleSystem:setEndColorVar(ccc4f(0.1, 0.1, 0.1, 0.2))
|
|
|
|
|
|
|
|
|
|
-- size, in pixels
|
|
|
|
|
pParticleSystem:setEndSize(64.0)
|
|
|
|
|
pParticleSystem:setStartSize(64.0)
|
|
|
|
|
pParticleSystem:setEndSizeVar(0)
|
|
|
|
|
pParticleSystem:setStartSizeVar(0)
|
|
|
|
|
|
|
|
|
|
-- additive
|
|
|
|
|
pParticleSystem:setBlendAdditive(false)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function CreateParticleSystem()
|
|
|
|
|
local pParticleSystem = nil
|
|
|
|
|
--[[
|
|
|
|
|
* Tests:
|
|
|
|
|
* 1: Point Particle System using 32-bit textures (PNG)
|
|
|
|
|
* 2: Point Particle System using 16-bit textures (PNG)
|
|
|
|
|
* 3: Point Particle System using 8-bit textures (PNG)
|
|
|
|
|
* 4: Point Particle System using 4-bit textures (PVRTC)
|
|
|
|
|
|
|
|
|
|
* 5: Quad Particle System using 32-bit textures (PNG)
|
|
|
|
|
* 6: Quad Particle System using 16-bit textures (PNG)
|
|
|
|
|
* 7: Quad Particle System using 8-bit textures (PNG)
|
|
|
|
|
* 8: Quad Particle System using 4-bit textures (PVRTC)
|
|
|
|
|
]]--
|
|
|
|
|
pNewScene:removeChildByTag(ParticleTestParam.kTagParticleSystem, true)
|
|
|
|
|
|
|
|
|
|
--remove the "fire.png" from the TextureCache cache.
|
|
|
|
|
local pTexture = CCTextureCache:sharedTextureCache():addImage("Images/fire.png")
|
|
|
|
|
CCTextureCache:sharedTextureCache():removeTexture(pTexture)
|
|
|
|
|
local pParticleSystem = CCParticleSystemQuad:new()
|
|
|
|
|
if 1 == nSubtestNumber then
|
|
|
|
|
CCTexture2D:setDefaultAlphaPixelFormat(kCCTexture2DPixelFormat_RGBA8888)
|
|
|
|
|
elseif 2 == nSubtestNumber then
|
|
|
|
|
CCTexture2D:setDefaultAlphaPixelFormat(kCCTexture2DPixelFormat_RGBA4444)
|
|
|
|
|
elseif 3 == nSubtestNumber then
|
|
|
|
|
CCTexture2D:setDefaultAlphaPixelFormat(kCCTexture2DPixelFormat_A8)
|
|
|
|
|
elseif 4 == nSubtestNumber then
|
|
|
|
|
CCTexture2D:setDefaultAlphaPixelFormat(kCCTexture2DPixelFormat_RGBA8888)
|
|
|
|
|
elseif 5 == nSubtestNumber then
|
|
|
|
|
CCTexture2D:setDefaultAlphaPixelFormat(kCCTexture2DPixelFormat_RGBA4444)
|
|
|
|
|
elseif 6 == nSubtestNumber then
|
|
|
|
|
CCTexture2D:setDefaultAlphaPixelFormat(kCCTexture2DPixelFormat_A8)
|
|
|
|
|
else
|
|
|
|
|
pParticleSystem = nil
|
|
|
|
|
print("Shall not happen!")
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
if nil ~= pParticleSystem then
|
|
|
|
|
pParticleSystem:initWithTotalParticles(nQuantityParticles)
|
|
|
|
|
pParticleSystem:setTexture(CCTextureCache:sharedTextureCache():addImage("Images/fire.png"))
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
pNewScene:addChild(pParticleSystem, 0, ParticleTestParam.kTagParticleSystem)
|
|
|
|
|
|
|
|
|
|
doTest()
|
|
|
|
|
--restore the default pixel format
|
|
|
|
|
CCTexture2D:setDefaultAlphaPixelFormat(kCCTexture2DPixelFormat_RGBA8888)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function step(t)
|
|
|
|
|
local pAtlas = tolua.cast(pNewScene:getChildByTag(ParticleTestParam.kTagLabelAtlas),"CCLabelAtlas")
|
|
|
|
|
local pEmitter = tolua.cast(pNewScene:getChildByTag(ParticleTestParam.kTagParticleSystem),"CCParticleSystem")
|
|
|
|
|
local strInfo = string.format("%4d",pEmitter:getParticleCount())
|
|
|
|
|
pAtlas:setString(strInfo)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function ScheduleFuncion()
|
|
|
|
|
local function OnEnterOrExit(tag)
|
|
|
|
|
local scheduler = CCDirector:sharedDirector():getScheduler()
|
|
|
|
|
if tag == "enter" then
|
|
|
|
|
ScheduleSelector = scheduler:scheduleScriptFunc(step,0,false)
|
|
|
|
|
elseif tag == "exit" then
|
|
|
|
|
scheduler:unscheduleScriptEntry(ScheduleSelector)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
pNewScene:registerScriptHandler(OnEnterOrExit)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function onDecrease()
|
|
|
|
|
nQuantityParticles = nQuantityParticles - ParticleTestParam.kNodesIncrease
|
|
|
|
|
if nQuantityParticles < 0 then
|
|
|
|
|
nQuantityParticles = 0
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
UpdateQuantityLabel()
|
|
|
|
|
CreateParticleSystem()
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function onIncrease()
|
|
|
|
|
nQuantityParticles = nQuantityParticles + ParticleTestParam.kNodesIncrease
|
|
|
|
|
if nQuantityParticles > ParticleTestParam.kMaxParticles then
|
|
|
|
|
nQuantityParticles = ParticleTestParam.kMaxParticles
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
UpdateQuantityLabel()
|
|
|
|
|
CreateParticleSystem()
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function InitWithSubTest(nSubtest,nParticles)
|
|
|
|
|
nSubtestNumber = nSubtest
|
|
|
|
|
local s = CCDirector:sharedDirector():getWinSize()
|
|
|
|
|
|
|
|
|
|
nLastRenderedCount = 0
|
|
|
|
|
nQuantityParticles = nParticles
|
|
|
|
|
|
|
|
|
|
--"+"<22><>"-" Menu
|
|
|
|
|
CCMenuItemFont:setFontSize(65)
|
|
|
|
|
local pDecrease = CCMenuItemFont:create(" - ")
|
|
|
|
|
pDecrease:registerScriptTapHandler(onDecrease)
|
|
|
|
|
pDecrease:setColor(ccc3(0,200,20))
|
|
|
|
|
local pIncrease = CCMenuItemFont:create(" + ")
|
|
|
|
|
pIncrease:registerScriptTapHandler(onIncrease)
|
|
|
|
|
pIncrease:setColor(ccc3(0,200,20))
|
|
|
|
|
|
|
|
|
|
local pMenuAddOrSub = CCMenu:create()
|
|
|
|
|
pMenuAddOrSub:addChild(pDecrease)
|
|
|
|
|
pMenuAddOrSub:addChild(pIncrease)
|
|
|
|
|
pMenuAddOrSub:alignItemsHorizontally()
|
|
|
|
|
pMenuAddOrSub:setPosition(ccp(s.width/2, s.height/2+15))
|
|
|
|
|
pNewScene:addChild(pMenuAddOrSub,1)
|
|
|
|
|
|
|
|
|
|
local pInfoLabel = CCLabelTTF:create("0 nodes", "Marker Felt", 30)
|
|
|
|
|
pInfoLabel:setColor(ccc3(0,200,20))
|
|
|
|
|
pInfoLabel:setPosition(ccp(s.width/2, s.height - 90))
|
|
|
|
|
pNewScene:addChild(pInfoLabel, 1, ParticleTestParam.kTagInfoLayer)
|
|
|
|
|
|
|
|
|
|
--particles on stage
|
|
|
|
|
local pLabelAtlas = CCLabelAtlas:create("0000", "fps_images.png", 12, 32, string.byte('.'))
|
|
|
|
|
pNewScene:addChild(pLabelAtlas, 0, ParticleTestParam.kTagLabelAtlas)
|
|
|
|
|
pLabelAtlas:setPosition(ccp(s.width-66,50))
|
|
|
|
|
|
|
|
|
|
--ParticleTestMenuLayer
|
|
|
|
|
local pParticleMenuLayer = CCLayer:create()
|
|
|
|
|
local pParticleMenu = CCMenu:create()
|
|
|
|
|
CreatePerfomBasicLayerMenu(pParticleMenu)
|
|
|
|
|
CreateBasicLayerMenuItem(pParticleMenu,true,ParticleTestParam.TEST_COUNT,nCurCase)
|
|
|
|
|
pParticleMenu:setPosition(ccp(0, 0))
|
|
|
|
|
pParticleMenuLayer:addChild(pParticleMenu)
|
|
|
|
|
pNewScene:addChild(pParticleMenuLayer)
|
|
|
|
|
|
|
|
|
|
--Sub Tests
|
|
|
|
|
CCMenuItemFont:setFontSize(40)
|
|
|
|
|
local pSubMenu = CCMenu:create()
|
|
|
|
|
local i = 1
|
|
|
|
|
for i = 1, 6 do
|
|
|
|
|
local strNum = string.format("%d ",i)
|
|
|
|
|
local pItemFont = CCMenuItemFont:create(strNum)
|
|
|
|
|
pItemFont:registerScriptTapHandler(TestNCallback)
|
|
|
|
|
pSubMenu:addChild(pItemFont, i + ParticleTestParam.kSubMenuBasicZOrder)
|
|
|
|
|
if i <= 3 then
|
|
|
|
|
pItemFont:setColor(ccc3(200,20,20))
|
|
|
|
|
else
|
|
|
|
|
pItemFont:setColor(ccc3(0,200,20))
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
pSubMenu:alignItemsHorizontally()
|
|
|
|
|
pSubMenu:setPosition(ccp(s.width/2, 80))
|
|
|
|
|
pNewScene:addChild(pSubMenu, 2)
|
|
|
|
|
|
|
|
|
|
local pLabel = CCLabelTTF:create(GetTitle(), "Arial", 40)
|
|
|
|
|
pNewScene:addChild(pLabel, 1)
|
|
|
|
|
pLabel:setPosition(ccp(s.width/2, s.height-32))
|
|
|
|
|
pLabel:setColor(ccc3(255,255,40))
|
|
|
|
|
|
|
|
|
|
UpdateQuantityLabel()
|
|
|
|
|
CreateParticleSystem()
|
|
|
|
|
ScheduleFuncion()
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function ShowCurrentTest()
|
|
|
|
|
if nil ~= pNewScene then
|
|
|
|
|
CCDirector:sharedDirector():getScheduler():unscheduleScriptEntry(ScheduleSelector)
|
|
|
|
|
end
|
|
|
|
|
pNewScene = CCScene:create()
|
|
|
|
|
InitWithSubTest(nSubtestNumber,nQuantityParticles)
|
|
|
|
|
CCDirector:sharedDirector():replaceScene(pNewScene)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InitWithSubTest(1,ParticleTestParam.kNodesIncrease)
|
|
|
|
|
return pNewScene
|
|
|
|
|
end
|
|
|
|
|
|
2013-05-09 14:46:48 +08:00
|
|
|
|
----------------------------------
|
|
|
|
|
--PerformanceTextureTest
|
|
|
|
|
----------------------------------
|
|
|
|
|
local TextureTestParam =
|
|
|
|
|
{
|
|
|
|
|
TEST_COUNT = 1,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
local function runTextureTest()
|
|
|
|
|
|
|
|
|
|
local function GetTitle()
|
|
|
|
|
return "Texture Performance Test"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function GetSubtitle()
|
|
|
|
|
return "See console for results"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local nTexCurCase = 0
|
|
|
|
|
local pNewscene = CCScene:create()
|
|
|
|
|
local pLayer = CCLayer:create()
|
|
|
|
|
local s = CCDirector:sharedDirector():getWinSize()
|
|
|
|
|
|
|
|
|
|
local function PerformTestsPNG(strFileName)
|
|
|
|
|
local time
|
|
|
|
|
local pTexture = nil
|
|
|
|
|
local pCache = CCTextureCache:sharedTextureCache()
|
|
|
|
|
print("RGBA 8888")
|
|
|
|
|
CCTexture2D:setDefaultAlphaPixelFormat(kCCTexture2DPixelFormat_RGBA8888)
|
|
|
|
|
pTexture = pCache:addImage(strFileName)
|
|
|
|
|
if nil ~= pTexture then
|
|
|
|
|
--os.time()--get secs,not micr sec
|
|
|
|
|
print("add sucess")
|
|
|
|
|
else
|
|
|
|
|
print(" ERROR")
|
|
|
|
|
end
|
|
|
|
|
pCache:removeTexture(pTexture)
|
|
|
|
|
|
2013-05-10 14:59:21 +08:00
|
|
|
|
print("RGBA 4444")
|
2013-05-09 14:46:48 +08:00
|
|
|
|
CCTexture2D:setDefaultAlphaPixelFormat(kCCTexture2DPixelFormat_RGBA4444)
|
2013-05-10 14:59:21 +08:00
|
|
|
|
--gettimeofday(&now, NULL)
|
|
|
|
|
pTexture = pCache:addImage(strFileName)
|
2013-05-09 14:46:48 +08:00
|
|
|
|
if nil ~= pTexture then
|
|
|
|
|
print("add sucess")
|
|
|
|
|
else
|
|
|
|
|
print(" ERROR")
|
|
|
|
|
end
|
|
|
|
|
pCache:removeTexture(pTexture)
|
|
|
|
|
|
2013-05-10 14:59:21 +08:00
|
|
|
|
print("RGBA 5551")
|
|
|
|
|
CCTexture2D:setDefaultAlphaPixelFormat(kCCTexture2DPixelFormat_RGB5A1)
|
|
|
|
|
--gettimeofday(&now, NULL)
|
|
|
|
|
pTexture = pCache:addImage(strFileName)
|
2013-05-09 14:46:48 +08:00
|
|
|
|
if nil ~= pTexture then
|
|
|
|
|
print("add sucess")
|
|
|
|
|
else
|
|
|
|
|
print(" ERROR")
|
|
|
|
|
end
|
2013-05-10 14:59:21 +08:00
|
|
|
|
pCache:removeTexture(pTexture)
|
2013-05-09 14:46:48 +08:00
|
|
|
|
|
2013-05-10 14:59:21 +08:00
|
|
|
|
print("RGB 565")
|
|
|
|
|
CCTexture2D:setDefaultAlphaPixelFormat(kCCTexture2DPixelFormat_RGB565)
|
|
|
|
|
-- gettimeofday(&now, NULL)
|
|
|
|
|
pTexture = pCache:addImage(strFileName)
|
2013-05-09 14:46:48 +08:00
|
|
|
|
if nil ~= pTexture then
|
2013-05-10 14:59:21 +08:00
|
|
|
|
--CCLog(" ms:%f", calculateDeltaTime(&now) )
|
2013-05-09 14:46:48 +08:00
|
|
|
|
print("add sucess")
|
|
|
|
|
else
|
2013-05-10 14:59:21 +08:00
|
|
|
|
print(" ERROR")
|
2013-05-09 14:46:48 +08:00
|
|
|
|
end
|
2013-05-10 14:59:21 +08:00
|
|
|
|
pCache:removeTexture(pTexture)
|
2013-05-09 14:46:48 +08:00
|
|
|
|
end
|
|
|
|
|
local function PerformTests()
|
|
|
|
|
print("--------")
|
|
|
|
|
print("--- PNG 128x128 ---")
|
|
|
|
|
PerformTestsPNG("Images/test_image.png")
|
|
|
|
|
|
|
|
|
|
print("--- PNG 512x512 ---")
|
|
|
|
|
PerformTestsPNG("Images/texture512x512.png")
|
|
|
|
|
|
|
|
|
|
print("EMPTY IMAGE")
|
|
|
|
|
print("--- PNG 1024x1024 ---")
|
|
|
|
|
PerformTestsPNG("Images/texture1024x1024.png")
|
|
|
|
|
|
2013-05-10 14:59:21 +08:00
|
|
|
|
print("SPRITESHEET IMAGE")
|
|
|
|
|
print("--- PNG 1024x1024 ---")
|
|
|
|
|
PerformTestsPNG("Images/PlanetCute-1024x1024.png")
|
2013-05-09 14:46:48 +08:00
|
|
|
|
|
2013-05-10 14:59:21 +08:00
|
|
|
|
print("LANDSCAPE IMAGE")
|
|
|
|
|
print("--- PNG 1024x1024 ---")
|
|
|
|
|
PerformTestsPNG("Images/landscape-1024x1024.png")
|
2013-05-09 14:46:48 +08:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function InitTextureMenuLayer()
|
|
|
|
|
if nil == pLayer then
|
|
|
|
|
return
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
--Title
|
|
|
|
|
local pLabel = CCLabelTTF:create(GetTitle(), "Arial", 40)
|
|
|
|
|
pLayer:addChild(pLabel, 1)
|
|
|
|
|
pLabel:setPosition(ccp(s.width/2, s.height-32))
|
|
|
|
|
pLabel:setColor(ccc3(255,255,40))
|
|
|
|
|
|
|
|
|
|
--Subtitle
|
|
|
|
|
local pSubLabel = CCLabelTTF:create(GetSubtitle(), "Thonburi", 16)
|
|
|
|
|
pLayer:addChild(pSubLabel, 1)
|
|
|
|
|
pSubLabel:setPosition(ccp(s.width/2, s.height-80))
|
|
|
|
|
|
|
|
|
|
--menu
|
|
|
|
|
local pMenu = CCMenu:create()
|
|
|
|
|
CreatePerfomBasicLayerMenu(pMenu)
|
|
|
|
|
pMenu:setPosition(ccp(0, 0))
|
|
|
|
|
pLayer:addChild(pMenu)
|
|
|
|
|
|
|
|
|
|
PerformTests()
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
InitTextureMenuLayer()
|
|
|
|
|
pNewscene:addChild(pLayer)
|
|
|
|
|
return pNewscene
|
2013-05-09 09:57:05 +08:00
|
|
|
|
end
|
2013-05-09 16:59:39 +08:00
|
|
|
|
----------------------------------
|
|
|
|
|
--PerformanceTouchesTest
|
|
|
|
|
----------------------------------
|
|
|
|
|
local TouchesTestParam =
|
|
|
|
|
{
|
|
|
|
|
TEST_COUNT = 2,
|
|
|
|
|
}
|
|
|
|
|
local function runTouchesTest()
|
|
|
|
|
local nTouchCurCase = 0
|
|
|
|
|
--PerformBasicLayer param
|
|
|
|
|
local bControlMenuVisible = false
|
|
|
|
|
local nMaxCases = 0
|
|
|
|
|
local nCurCase = 0
|
|
|
|
|
--TouchesMainScene param
|
|
|
|
|
local pClassLabel = nil
|
|
|
|
|
local nNumberOfTouchesB = 0
|
|
|
|
|
local nNumberOfTouchesM = 0
|
|
|
|
|
local nNumberOfTouchesE = 0
|
|
|
|
|
local nNumberOfTouchesC = 0
|
|
|
|
|
local fElapsedTime = 0.0
|
|
|
|
|
|
|
|
|
|
local s = CCDirector:sharedDirector():getWinSize()
|
|
|
|
|
local pNewscene = CCScene:create()
|
|
|
|
|
local pLayer = CCLayer:create()
|
|
|
|
|
|
|
|
|
|
local function GetTitle()
|
|
|
|
|
if 0 == nCurCase then
|
|
|
|
|
return "Targeted touches"
|
|
|
|
|
elseif 1 == nCurCase then
|
|
|
|
|
return "Standard touches"
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function CreateBasicLayerMenuItem(pMenu,bMenuVisible,nMaxCasesNum,nCurCaseIndex)
|
|
|
|
|
if nil ~= pMenu then
|
|
|
|
|
bControlMenuVisible = bMenuVisible
|
|
|
|
|
nMaxCases = nMaxCasesNum
|
|
|
|
|
nCurCase = nCurCaseIndex
|
|
|
|
|
if true == bControlMenuVisible then
|
|
|
|
|
local function backCallback()
|
|
|
|
|
nCurCase = nCurCase - 1
|
|
|
|
|
if nCurCase < 0 then
|
|
|
|
|
nCurCase = nCurCase + nMaxCases
|
|
|
|
|
end
|
|
|
|
|
ShowCurrentTest()
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function restartCallback()
|
|
|
|
|
ShowCurrentTest()
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function nextCallback()
|
|
|
|
|
nCurCase = nCurCase + 1
|
|
|
|
|
--No check nMaxCases
|
|
|
|
|
nCurCase = nCurCase % nMaxCases
|
|
|
|
|
ShowCurrentTest()
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local size = CCDirector:sharedDirector():getWinSize()
|
|
|
|
|
local item1 = CCMenuItemImage:create(s_pPathB1, s_pPathB2)
|
|
|
|
|
item1:registerScriptTapHandler(backCallback)
|
|
|
|
|
pMenu:addChild(item1,kItemTagBasic)
|
|
|
|
|
local item2 = CCMenuItemImage:create(s_pPathR1, s_pPathR2)
|
|
|
|
|
item2:registerScriptTapHandler(restartCallback)
|
|
|
|
|
pMenu:addChild(item2,kItemTagBasic)
|
|
|
|
|
local item3 = CCMenuItemImage:create(s_pPathF1, s_pPathF2)
|
|
|
|
|
pMenu:addChild(item3,kItemTagBasic)
|
|
|
|
|
item3:registerScriptTapHandler(nextCallback)
|
|
|
|
|
|
|
|
|
|
local size = CCDirector:sharedDirector():getWinSize()
|
|
|
|
|
item1:setPosition(CCPointMake(size.width / 2 - item2:getContentSize().width * 2, item2:getContentSize().height / 2))
|
|
|
|
|
item2:setPosition(CCPointMake(size.width / 2, item2:getContentSize().height / 2))
|
|
|
|
|
item3:setPosition(CCPointMake(size.width / 2 + item2:getContentSize().width * 2, item2:getContentSize().height / 2))
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function update(fTime)
|
|
|
|
|
fElapsedTime = fElapsedTime + fTime
|
|
|
|
|
|
|
|
|
|
if fElapsedTime > 1.0 then
|
|
|
|
|
local fFrameRateB = nNumberOfTouchesB / fElapsedTime
|
|
|
|
|
local fFrameRateM = nNumberOfTouchesM / fElapsedTime
|
|
|
|
|
local fFrameRateE = nNumberOfTouchesE / fElapsedTime
|
|
|
|
|
local fFrameRateC = nNumberOfTouchesC / fElapsedTime
|
2013-05-10 14:59:21 +08:00
|
|
|
|
fElapsedTime = 0
|
2013-05-09 16:59:39 +08:00
|
|
|
|
nNumberOfTouchesB = 0
|
|
|
|
|
nNumberOfTouchesM = 0
|
|
|
|
|
nNumberOfTouchesE = 0
|
|
|
|
|
nNumberOfTouchesC = 0
|
|
|
|
|
|
|
|
|
|
local strInfo = string.format("%.1f %.1f %.1f %.1f",fFrameRateB, fFrameRateM, fFrameRateE, fFrameRateC)
|
|
|
|
|
if nil ~= pClassLabel then
|
2013-05-10 14:59:21 +08:00
|
|
|
|
pClassLabel:setString(strInfo)
|
2013-05-09 16:59:39 +08:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
-- handling touch events
|
|
|
|
|
local function onTouchBegan(tableArray)
|
|
|
|
|
if 0 == nCurCase then
|
|
|
|
|
nNumberOfTouchesB = nNumberOfTouchesB + 1
|
|
|
|
|
elseif 1 == nCurCase then
|
|
|
|
|
nNumberOfTouchesB = nNumberOfTouchesB + table.getn(tableArray)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function onTouchMoved(tableArray)
|
|
|
|
|
if 0 == nCurCase then
|
|
|
|
|
nNumberOfTouchesM = nNumberOfTouchesM + 1
|
|
|
|
|
elseif 1 == nCurCase then
|
|
|
|
|
nNumberOfTouchesM = nNumberOfTouchesM + table.getn(tableArray)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function onTouchEnded(tableArray)
|
|
|
|
|
if 0 == nCurCase then
|
|
|
|
|
nNumberOfTouchesE = nNumberOfTouchesE + 1
|
|
|
|
|
elseif 1 == nCurCase then
|
|
|
|
|
nNumberOfTouchesE = nNumberOfTouchesE + table.getn(tableArray)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function onTouchCancelled(tableArray)
|
|
|
|
|
if 0 == nCurCase then
|
|
|
|
|
nNumberOfTouchesC = nNumberOfTouchesC + 1
|
|
|
|
|
elseif 1 == nCurCase then
|
|
|
|
|
nNumberOfTouchesC = nNumberOfTouchesC + table.getn(tableArray)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function onTouch(eventType,tableArray)
|
|
|
|
|
if eventType == "began" then
|
|
|
|
|
return onTouchBegan(tableArray)
|
|
|
|
|
elseif eventType == "moved" then
|
|
|
|
|
return onTouchMoved(tableArray)
|
|
|
|
|
elseif eventType == "ended" then
|
|
|
|
|
return onTouchEnded(tableArray)
|
|
|
|
|
elseif eventType == "cancelled" then
|
|
|
|
|
return onTouchCancelled(tableArray)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function InitLayer()
|
|
|
|
|
--menu
|
|
|
|
|
local pTouchesTestMenu = CCMenu:create()
|
|
|
|
|
CreatePerfomBasicLayerMenu(pTouchesTestMenu)
|
|
|
|
|
CreateBasicLayerMenuItem(pTouchesTestMenu,true,TouchesTestParam.TEST_COUNT,nCurCase)
|
|
|
|
|
pTouchesTestMenu:setPosition(ccp(0, 0))
|
|
|
|
|
pLayer:addChild(pTouchesTestMenu)
|
|
|
|
|
|
|
|
|
|
--Title
|
|
|
|
|
local pLabel = CCLabelTTF:create(GetTitle(), "Arial", 40)
|
|
|
|
|
pLayer:addChild(pLabel, 1)
|
|
|
|
|
pLabel:setPosition(ccp(s.width/2, s.height-32))
|
|
|
|
|
pLabel:setColor(ccc3(255,255,40))
|
|
|
|
|
|
|
|
|
|
pLayer:scheduleUpdateWithPriorityLua(update,0)
|
|
|
|
|
|
2013-05-10 14:59:21 +08:00
|
|
|
|
pClassLabel = CCLabelBMFont:create("00.0", "fonts/arial16.fnt")
|
|
|
|
|
pClassLabel:setPosition(ccp(s.width/2, s.height/2))
|
|
|
|
|
pLayer:addChild(pClassLabel)
|
2013-05-09 16:59:39 +08:00
|
|
|
|
|
|
|
|
|
fElapsedTime = 0.0
|
|
|
|
|
nNumberOfTouchesB = 0
|
|
|
|
|
nNumberOfTouchesM = 0
|
|
|
|
|
nNumberOfTouchesE = 0
|
|
|
|
|
nNumberOfTouchesC = 0
|
|
|
|
|
pLayer:setTouchEnabled(true)
|
|
|
|
|
|
|
|
|
|
pLayer:registerScriptTouchHandler(onTouch,true)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
function ShowCurrentTest()
|
|
|
|
|
if nil ~= pLayer then
|
|
|
|
|
pLayer:unscheduleUpdate()
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
pNewscene = CCScene:create()
|
|
|
|
|
|
|
|
|
|
if nil ~= pNewscene then
|
|
|
|
|
pLayer = CCLayer:create()
|
|
|
|
|
InitLayer()
|
|
|
|
|
pNewscene:addChild(pLayer)
|
|
|
|
|
CCDirector:sharedDirector():replaceScene(pNewscene)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
InitLayer()
|
|
|
|
|
pNewscene:addChild(pLayer)
|
|
|
|
|
return pNewscene
|
|
|
|
|
end
|
|
|
|
|
|
2013-05-09 14:46:48 +08:00
|
|
|
|
|
2013-05-09 16:59:39 +08:00
|
|
|
|
------------------------
|
|
|
|
|
--
|
|
|
|
|
------------------------
|
2013-05-09 09:57:05 +08:00
|
|
|
|
local CreatePerformancesTestTable =
|
|
|
|
|
{
|
|
|
|
|
runNodeChildrenTest,
|
|
|
|
|
runParticleTest,
|
|
|
|
|
runSpriteTest,
|
|
|
|
|
runTextureTest,
|
|
|
|
|
runTouchesTest
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
local function CreatePerformancesTestScene(nPerformanceNo)
|
|
|
|
|
local pNewscene = CreatePerformancesTestTable[nPerformanceNo]()
|
|
|
|
|
return pNewscene
|
|
|
|
|
end
|
|
|
|
|
local function menuCallback(tag, pMenuItem)
|
|
|
|
|
local scene = nil
|
|
|
|
|
local nIdx = pMenuItem:getZOrder() - kItemTagBasic
|
|
|
|
|
local PerformanceTestScene = CreatePerformancesTestScene(nIdx)
|
|
|
|
|
if nil ~= PerformanceTestScene then
|
|
|
|
|
CCDirector:sharedDirector():replaceScene(PerformanceTestScene)
|
|
|
|
|
end
|
2012-08-27 11:43:47 +08:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
local function PerformanceMainLayer()
|
|
|
|
|
local layer = CCLayer:create()
|
|
|
|
|
|
|
|
|
|
local menu = CCMenu:create()
|
|
|
|
|
menu:setPosition(CCPointMake(0, 0))
|
|
|
|
|
CCMenuItemFont:setFontName("Arial")
|
|
|
|
|
CCMenuItemFont:setFontSize(24)
|
2013-05-09 09:57:05 +08:00
|
|
|
|
for i = 1, MAX_COUNT do
|
2012-08-27 11:43:47 +08:00
|
|
|
|
local item = CCMenuItemFont:create(testsName[i])
|
2012-09-11 17:13:20 +08:00
|
|
|
|
item:registerScriptTapHandler(menuCallback)
|
2012-08-27 11:43:47 +08:00
|
|
|
|
item:setPosition(s.width / 2, s.height - (i + 1) * LINE_SPACE)
|
2013-05-09 09:57:05 +08:00
|
|
|
|
menu:addChild(item, kItemTagBasic + i)
|
2012-08-27 11:43:47 +08:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
layer:addChild(menu)
|
|
|
|
|
|
|
|
|
|
return layer
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
-------------------------------------
|
|
|
|
|
-- Performance Test
|
|
|
|
|
-------------------------------------
|
2013-05-09 09:57:05 +08:00
|
|
|
|
function PerformanceTestMain()
|
2012-08-27 11:43:47 +08:00
|
|
|
|
local scene = CCScene:create()
|
|
|
|
|
|
|
|
|
|
scene:addChild(PerformanceMainLayer())
|
|
|
|
|
scene:addChild(CreateBackMenuItem())
|
|
|
|
|
|
|
|
|
|
return scene
|
|
|
|
|
end
|