2011-06-14 14:31:25 +08:00
|
|
|
|
|
|
|
class CCTimer : public CCObject
|
|
|
|
{
|
2012-06-15 10:51:53 +08:00
|
|
|
float getInterval(void);
|
|
|
|
void setInterval(float fInterval);
|
|
|
|
void update(float dt);
|
2011-06-14 14:31:25 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class CCScheduler : public CCObject
|
|
|
|
{
|
2012-06-15 10:51:53 +08:00
|
|
|
float getTimeScale(void);
|
|
|
|
void setTimeScale(float fTimeScale);
|
2011-06-14 14:31:25 +08:00
|
|
|
|
|
|
|
|
2012-06-15 10:51:53 +08:00
|
|
|
unsigned int scheduleScriptFunc(LUA_FUNCTION funcID, float fInterval, bool bPaused);
|
2012-02-02 15:58:10 +08:00
|
|
|
void unscheduleScriptEntry(unsigned int uScheduleScriptEntryID);
|
2011-06-14 14:31:25 +08:00
|
|
|
|
2012-02-02 15:58:10 +08:00
|
|
|
void scheduleUpdateForTarget(CCObject *pTarget, int nPriority, bool bPaused);
|
|
|
|
void unscheduleUpdateForTarget(CCObject *pTarget);
|
2011-06-14 14:31:25 +08:00
|
|
|
|
2012-02-02 15:58:10 +08:00
|
|
|
void unscheduleAllSelectorsForTarget(CCObject *pTarget);
|
2012-02-02 14:26:38 +08:00
|
|
|
void unscheduleAllSelectors(void);
|
2011-06-14 14:31:25 +08:00
|
|
|
|
2012-02-02 15:58:10 +08:00
|
|
|
void pauseTarget(CCObject *pTarget);
|
|
|
|
void resumeTarget(CCObject *pTarget);
|
|
|
|
bool isTargetPaused(CCObject *pTarget);
|
2011-06-14 14:31:25 +08:00
|
|
|
|
|
|
|
};
|