axmol/tools/tolua++/CCDirector.pkg

43 lines
1007 B
Plaintext
Raw Normal View History

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
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);
unsigned int getTotalFrames(void);
2011-06-14 14:31:25 +08:00
CCEGLView* getOpenGLView(void);
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
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);
void endToLua();
2011-06-14 14:31:25 +08:00
float getContentScaleFactor(void);
2011-06-14 14:31:25 +08:00
CCScheduler* getScheduler();
CCActionManager* getActionManager();
CCTouchDispatcher* getTouchDispatcher();
CCKeypadDispatcher* getKeypadDispatcher();
CCAccelerometer* getAccelerometer();
2012-02-02 14:26:38 +08:00
static CCDirector* sharedDirector(void);
};