2011-06-14 14:31:25 +08:00
|
|
|
|
2012-02-02 14:26:38 +08:00
|
|
|
class CCDirector : public CCObject
|
|
|
|
{
|
|
|
|
CCScene* getRunningScene(void);
|
2011-06-14 14:31:25 +08:00
|
|
|
|
2012-02-02 14:26:38 +08:00
|
|
|
double getAnimationInterval(void);
|
2011-06-14 14:31:25 +08:00
|
|
|
|
2012-04-15 15:46:01 +08:00
|
|
|
bool isDisplayStats(void);
|
|
|
|
void setDisplayStats(bool bDisplayFPS);
|
2011-06-14 14:31:25 +08:00
|
|
|
|
2012-02-02 14:26:38 +08:00
|
|
|
bool isPaused(void);
|
2012-06-15 10:51:53 +08:00
|
|
|
unsigned int getTotalFrames(void);
|
2011-06-14 14:31:25 +08:00
|
|
|
|
2012-08-28 14:53:52 +08:00
|
|
|
CCEGLViewProtocol* getOpenGLView(void);
|
2012-08-10 18:14:04 +08:00
|
|
|
bool enableRetinaDisplay(bool bEnableRetina);
|
|
|
|
|
2012-02-02 14:26:38 +08:00
|
|
|
CCSize getWinSize(void);
|
|
|
|
CCSize getWinSizeInPixels(void);
|
2011-06-14 14:31:25 +08:00
|
|
|
|
2012-02-02 14:26:38 +08:00
|
|
|
CCPoint convertToGL(CCPoint obPoint);
|
|
|
|
CCPoint convertToUI(CCPoint obPoint);
|
2011-06-14 14:31:25 +08:00
|
|
|
|
2012-08-10 18:14:04 +08:00
|
|
|
void pause();
|
|
|
|
void resume();
|
|
|
|
void purgeCachedData(void);
|
|
|
|
|
2012-02-02 14:26:38 +08:00
|
|
|
void runWithScene(CCScene *pScene);
|
|
|
|
void pushScene(CCScene *pScene);
|
|
|
|
void popScene(void);
|
|
|
|
void replaceScene(CCScene *pScene);
|
2012-08-10 18:14:04 +08:00
|
|
|
void endToLua();
|
2011-06-14 14:31:25 +08:00
|
|
|
|
2012-08-10 18:14:04 +08:00
|
|
|
float getContentScaleFactor(void);
|
2011-06-14 14:31:25 +08:00
|
|
|
|
2012-04-26 09:34:42 +08:00
|
|
|
CCScheduler* getScheduler();
|
|
|
|
CCActionManager* getActionManager();
|
|
|
|
CCTouchDispatcher* getTouchDispatcher();
|
|
|
|
CCKeypadDispatcher* getKeypadDispatcher();
|
|
|
|
CCAccelerometer* getAccelerometer();
|
|
|
|
|
2012-08-21 18:42:35 +08:00
|
|
|
void setDepthTest(bool var);
|
|
|
|
|
2012-02-02 14:26:38 +08:00
|
|
|
static CCDirector* sharedDirector(void);
|
|
|
|
};
|