mirror of https://github.com/axmolengine/axmol.git
182 lines
4.7 KiB
C++
182 lines
4.7 KiB
C++
/****************************************************************************
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
|
Copyright (c) 2010 Stuart Carnie
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
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.
|
|
****************************************************************************/
|
|
#include "CCProfiling.h"
|
|
|
|
using namespace std;
|
|
|
|
NS_CC_BEGIN
|
|
|
|
//#pragma mark - Profiling Categories
|
|
/* set to NO the categories that you don't want to profile */
|
|
bool kProfilerCategorySprite = false;
|
|
bool kProfilerCategoryBatchSprite = false;
|
|
bool kProfilerCategoryParticles = false;
|
|
|
|
|
|
static Profiler* g_sSharedProfiler = NULL;
|
|
|
|
Profiler* Profiler::getInstance()
|
|
{
|
|
if (! g_sSharedProfiler)
|
|
{
|
|
g_sSharedProfiler = new Profiler();
|
|
g_sSharedProfiler->init();
|
|
}
|
|
|
|
return g_sSharedProfiler;
|
|
}
|
|
|
|
// XXX: deprecated
|
|
Profiler* Profiler::sharedProfiler(void)
|
|
{
|
|
return Profiler::getInstance();
|
|
}
|
|
|
|
ProfilingTimer* Profiler::createAndAddTimerWithName(const char* timerName)
|
|
{
|
|
ProfilingTimer *t = new ProfilingTimer();
|
|
t->initWithName(timerName);
|
|
_activeTimers->setObject(t, timerName);
|
|
t->release();
|
|
|
|
return t;
|
|
}
|
|
|
|
void Profiler::releaseTimer(const char* timerName)
|
|
{
|
|
_activeTimers->removeObjectForKey(timerName);
|
|
}
|
|
|
|
void Profiler::releaseAllTimers()
|
|
{
|
|
_activeTimers->removeAllObjects();
|
|
}
|
|
|
|
bool Profiler::init()
|
|
{
|
|
_activeTimers = new Dictionary();
|
|
return true;
|
|
}
|
|
|
|
Profiler::~Profiler(void)
|
|
{
|
|
CC_SAFE_RELEASE(_activeTimers);
|
|
}
|
|
|
|
void Profiler::displayTimers()
|
|
{
|
|
DictElement* pElement = NULL;
|
|
CCDICT_FOREACH(_activeTimers, pElement)
|
|
{
|
|
ProfilingTimer* timer = static_cast<ProfilingTimer*>(pElement->getObject());
|
|
CCLog("%s", timer->description());
|
|
}
|
|
}
|
|
|
|
// implementation of ProfilingTimer
|
|
|
|
bool ProfilingTimer::initWithName(const char* timerName)
|
|
{
|
|
_nameStr = timerName;
|
|
numberOfCalls = 0;
|
|
_averageTime = 0.0;
|
|
totalTime = 0.0;
|
|
minTime = 10000.0;
|
|
maxTime = 0.0;
|
|
gettimeofday((struct timeval *)&_startTime, NULL);
|
|
|
|
return true;
|
|
}
|
|
|
|
ProfilingTimer::~ProfilingTimer(void)
|
|
{
|
|
|
|
}
|
|
|
|
const char* ProfilingTimer::description() const
|
|
{
|
|
static char s_szDesciption[256] = {0};
|
|
sprintf(s_szDesciption, "%s: avg time, %fms", _nameStr.c_str(), _averageTime);
|
|
return s_szDesciption;
|
|
}
|
|
|
|
void ProfilingTimer::reset()
|
|
{
|
|
numberOfCalls = 0;
|
|
_averageTime = 0;
|
|
totalTime = 0;
|
|
minTime = 10000;
|
|
maxTime = 0;
|
|
gettimeofday((struct timeval *)&_startTime, NULL);
|
|
}
|
|
|
|
void ProfilingBeginTimingBlock(const char *timerName)
|
|
{
|
|
Profiler* p = Profiler::getInstance();
|
|
ProfilingTimer* timer = (ProfilingTimer*)p->_activeTimers->objectForKey(timerName);
|
|
if( ! timer )
|
|
{
|
|
timer = p->createAndAddTimerWithName(timerName);
|
|
}
|
|
|
|
gettimeofday(&timer->_startTime, NULL);
|
|
|
|
timer->numberOfCalls++;
|
|
}
|
|
|
|
void ProfilingEndTimingBlock(const char *timerName)
|
|
{
|
|
Profiler* p = Profiler::getInstance();
|
|
ProfilingTimer* timer = (ProfilingTimer*)p->_activeTimers->objectForKey(timerName);
|
|
|
|
CCASSERT(timer, "CCProfilingTimer not found");
|
|
|
|
struct timeval currentTime;
|
|
gettimeofday(¤tTime, NULL);
|
|
|
|
double duration = (currentTime.tv_sec*1000.0 + currentTime.tv_usec/1000.0) -
|
|
(timer->_startTime.tv_sec*1000.0 + timer->_startTime.tv_usec/1000.0);
|
|
|
|
// milliseconds
|
|
timer->_averageTime = (timer->_averageTime + duration) / 2.0f;
|
|
timer->totalTime += duration;
|
|
timer->maxTime = MAX( timer->maxTime, duration);
|
|
timer->minTime = MIN( timer->minTime, duration);
|
|
|
|
}
|
|
|
|
void ProfilingResetTimingBlock(const char *timerName)
|
|
{
|
|
Profiler* p = Profiler::getInstance();
|
|
ProfilingTimer *timer = (ProfilingTimer*)p->_activeTimers->objectForKey(timerName);
|
|
|
|
CCASSERT(timer, "CCProfilingTimer not found");
|
|
|
|
timer->reset();
|
|
}
|
|
|
|
NS_CC_END
|
|
|