axmol/cocos2dx/include/CCDirector.h

544 lines
17 KiB
C
Raw Normal View History

/****************************************************************************
Copyright (c) 2010 cocos2d-x.org
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.
****************************************************************************/
#ifndef __CCDIRECTOR_H__
#define __CCDIRECTOR_H__
#include "ccConfig.h"
#include "ccTypes.h"
2010-11-13 11:34:49 +08:00
#include "CCXCocos2dDefine.h"
#include "NSObject.h"
#include "CGGeometry.h"
#include "NSMutableArray.h"
#include "CGGeometry.h"
#include "CCXEGLView.h"
2010-08-02 11:13:36 +08:00
#include "ccxCommon.h"
2010-08-02 12:00:06 +08:00
#include <assert.h>
2010-09-28 16:18:05 +08:00
namespace cocos2d {
/** @typedef tPixelFormat
Possible Pixel Formats for the CCXEGLView
*/
typedef enum {
/** RGB565 pixel format. No alpha. 16-bit. (Default) */
kCCPixelFormatRGB565,
/** RGBA format. 32-bit. Needed for some 3D effects. It is not as fast as the RGB565 format. */
kCCPixelFormatRGBA8888,
/** default pixel format */
kCCPixelFormatDefault = kCCPixelFormatRGB565,
// backward compatibility stuff
kPixelFormatRGB565 = kCCPixelFormatRGB565,
kRGB565 = kCCPixelFormatRGB565,
kPixelFormatRGBA8888 = kCCPixelFormatRGBA8888,
kRGBA8 = kCCPixelFormatRGBA8888,
} tPixelFormat;
/** @typedef tDepthBufferFormat
Possible DepthBuffer Formats for the CCXEGLView.
Use 16 or 24 bit depth buffers if you are going to use real 3D objects.
*/
typedef enum {
/// A Depth Buffer of 0 bits will be used (default)
kCCDepthBufferNone,
/// A depth buffer of 16 bits will be used
kCCDepthBuffer16,
/// A depth buffer of 24 bits will be used
kCCDepthBuffer24,
// backward compatibility stuff
kDepthBuffer16 = kCCDepthBuffer16,
kDepthBuffer24 = kCCDepthBuffer24,
} tDepthBufferFormat;
/** @typedef ccDirectorProjection
Possible OpenGL projections used by director
*/
typedef enum {
/// sets a 2D projection (orthogonal projection)
kCCDirectorProjection2D,
/// sets a 3D projection with a fovy=60, znear=0.5f and zfar=1500.
kCCDirectorProjection3D,
/// it does nothing. But if you are using a custom projection set it this value.
kCCDirectorProjectionCustom,
/// Detault projection is 3D projection
kCCDirectorProjectionDefault = kCCDirectorProjection3D,
// backward compatibility stuff
CCDirectorProjection2D = kCCDirectorProjection2D,
CCDirectorProjection3D = kCCDirectorProjection3D,
CCDirectorProjectionCustom = kCCDirectorProjectionCustom,
} ccDirectorProjection;
/** @typedef ccDirectorType
Possible Director Types.
@since v0.8.2
*/
typedef enum {
/** Will use a Director that triggers the main loop from an NSTimer object
*
* Features and Limitations:
* - Integrates OK with UIKit objects
* - It the slowest director
2010-09-29 17:39:45 +08:00
* - The interval update is customizable from 1 to 60
*/
kCCDirectorTypeNSTimer,
/** will use a Director that triggers the main loop from a custom main loop.
*
* Features and Limitations:
* - Faster than NSTimer Director
2010-09-29 17:39:45 +08:00
* - It doesn't integrate well with UIKit objects
* - The interval update can't be customizable
*/
kCCDirectorTypeMainLoop,
/** Will use a Director that triggers the main loop from a thread, but the main loop will be executed on the main thread.
*
* Features and Limitations:
* - Faster than NSTimer Director
2010-09-29 17:39:45 +08:00
* - It doesn't integrate well with UIKit objects
* - The interval update can't be customizable
*/
kCCDirectorTypeThreadMainLoop,
/** Will use a Director that synchronizes timers with the refresh rate of the display.
*
* Features and Limitations:
* - Faster than NSTimer Director
* - Only available on 3.1+
* - Scheduled timers & drawing are synchronizes with the refresh rate of the display
* - Integrates OK with UIKit objects
* - The interval update can be 1/60, 1/30, 1/15
*/
kCCDirectorTypeDisplayLink,
/** Default director is the NSTimer directory */
kCCDirectorTypeDefault = kCCDirectorTypeNSTimer,
// backward compatibility stuff
CCDirectorTypeNSTimer = kCCDirectorTypeNSTimer,
CCDirectorTypeMainLoop = kCCDirectorTypeMainLoop,
CCDirectorTypeThreadMainLoop = kCCDirectorTypeThreadMainLoop,
CCDirectorTypeDisplayLink = kCCDirectorTypeDisplayLink,
CCDirectorTypeDefault =kCCDirectorTypeDefault,
} ccDirectorType;
/** @typedef ccDeviceOrientation
Possible device orientations
*/
typedef enum {
/// Device oriented vertically, home button on the bottom
kCCDeviceOrientationPortrait = 0, // UIDeviceOrientationPortrait,
/// Device oriented vertically, home button on the top
kCCDeviceOrientationPortraitUpsideDown = 1, // UIDeviceOrientationPortraitUpsideDown,
/// Device oriented horizontally, home button on the right
kCCDeviceOrientationLandscapeLeft = 2, // UIDeviceOrientationLandscapeLeft,
/// Device oriented horizontally, home button on the left
kCCDeviceOrientationLandscapeRight = 3, // UIDeviceOrientationLandscapeRight,
// Backward compatibility stuff
CCDeviceOrientationPortrait = kCCDeviceOrientationPortrait,
CCDeviceOrientationPortraitUpsideDown = kCCDeviceOrientationPortraitUpsideDown,
CCDeviceOrientationLandscapeLeft = kCCDeviceOrientationLandscapeLeft,
CCDeviceOrientationLandscapeRight = kCCDeviceOrientationLandscapeRight,
} ccDeviceOrientation;
2010-12-24 17:07:31 +08:00
class CCLabelTTF;
class CCScene;
class cocos2d::CCXEGLView;
2010-09-28 18:27:33 +08:00
/**
@brief Class that creates and handle the main Window and manages how
and when to execute the Scenes.
2010-09-28 16:18:05 +08:00
The CCDirector is also responsible for:
- initializing the OpenGL ES context
- setting the OpenGL ES pixel format (default on is RGB565)
- setting the OpenGL ES buffer depth (default one is 0-bit)
- setting the projection (default one is 2D)
- setting the orientation (default one is Protrait)
Since the CCDirector is a singleton, the standard way to use it is by calling:
2010-11-11 11:18:58 +08:00
_ CCDirector::sharedDirector()->xxx();
The CCDirector also sets the default OpenGL ES context:
- GL_TEXTURE_2D is enabled
- GL_VERTEX_ARRAY is enabled
- GL_COLOR_ARRAY is enabled
- GL_TEXTURE_COORD_ARRAY is enabled
*/
2010-08-02 11:13:36 +08:00
class CCX_DLL CCDirector : public NSObject
{
public:
virtual bool init(void);
virtual ~CCDirector(void);
CCDirector(void) {}
// attribute
2010-09-29 17:39:45 +08:00
/** Get current running Scene. Director can only run one Scene at the time */
2010-08-02 12:00:06 +08:00
inline CCScene* getRunningScene(void) { return m_pRunningScene; }
2010-09-29 17:39:45 +08:00
/** Get the FPS value */
2010-08-02 12:00:06 +08:00
inline double getAnimationInterval(void) { return m_dAnimationInterval; }
2010-09-30 15:54:15 +08:00
/** Set the FPS value. */
virtual void setAnimationInterval(double dValue);
2010-09-28 16:18:05 +08:00
/** Whether or not to display the FPS on the bottom-left corner */
2010-08-02 12:00:06 +08:00
inline bool isDisplayFPS(void) { return m_bDisplayFPS; }
2010-09-29 17:39:45 +08:00
/** Display the FPS on the bottom-left corner */
2010-08-02 12:00:06 +08:00
inline void setDisplayFPS(bool bDisplayFPS) { m_bDisplayFPS = bDisplayFPS; }
2010-09-29 17:39:45 +08:00
/** Get the CCXEGLView, where everything is rendered */
2010-08-02 12:00:06 +08:00
inline cocos2d::CCXEGLView* getOpenGLView(void) { return m_pobOpenGLView; }
void setOpenGLView(cocos2d::CCXEGLView *pobOpenGLView);
2010-08-02 12:00:06 +08:00
inline bool isNextDeltaTimeZero(void) { return m_bNextDeltaTimeZero; }
void setNextDeltaTimeZero(bool bNextDeltaTimeZero);
2010-08-02 12:00:06 +08:00
inline ccDeviceOrientation getDeviceOrientation(void) { return m_eDeviceOrientation; }
void setDeviceOrientation(ccDeviceOrientation kDeviceOrientation);
2010-09-28 16:18:05 +08:00
/** Whether or not the Director is paused */
2010-08-02 12:00:06 +08:00
inline bool isPaused(void) { return m_bPaused; }
/** Sets an OpenGL projection
@since v0.8.2
*/
2010-08-02 12:00:06 +08:00
inline ccDirectorProjection getProjection(void) { return m_eProjection; }
void setProjection(ccDirectorProjection kProjection);
/** Whether or not the replaced scene will receive the cleanup message.
If the new scene is pushed, then the old scene won't receive the "cleanup" message.
If the new scene replaces the old one, the it will receive the "cleanup" message.
@since v0.99.0
*/
2010-08-02 12:00:06 +08:00
inline bool isSendCleanupToScene(void) { return m_bSendCleanupToScene; }
/** The size in pixels of the surface. It could be different than the screen size.
High-res devices might have a higher surface size than the screen size.
Only available when compiled using SDK >= 4.0.
@since v0.99.4
*/
2010-10-15 15:47:48 +08:00
void setContentScaleFactor(CGFloat scaleFactor);
2010-08-02 12:00:06 +08:00
inline CGFloat getContentScaleFactor(void) { return m_fContentScaleFactor; }
// UI dependent
/** Uses a new pixel format for the CCXEGLView.
Call this class method before attaching it to a UIView
Default pixel format: kRGB565. Supported pixel formats: kRGBA8 and kRGB565
@deprecated Set the pixel format when creating the CCXEGLView. This method will be removed in v1.0
*/
2010-08-02 12:00:06 +08:00
inline void setPixelFormat(tPixelFormat kPixelFormat)
{
2010-11-13 11:34:49 +08:00
// assert(! isOpenGLAttached());
2010-08-02 12:00:06 +08:00
m_ePixelFormat = kPixelFormat;
}
2010-09-28 16:18:05 +08:00
/** Pixel format used to create the context */
2010-08-02 12:00:06 +08:00
inline tPixelFormat getPiexFormat(void) { return m_ePixelFormat; }
/** Change depth buffer format of the render buffer.
Call this class method before attaching it to a UIWindow/UIView
Default depth buffer: 0 (none). Supported: kCCDepthBufferNone, kCCDepthBuffer16, and kCCDepthBuffer24
@deprecated Set the depth buffer format when creating the CCXEGLView. This method will be removed in v1.0
*/
2010-08-02 12:00:06 +08:00
inline void setDepthBufferFormat(tDepthBufferFormat kDepthBufferFormat)
{
assert(! isOpenGLAttached());
m_eDepthBufferFormat = kDepthBufferFormat;
}
2010-11-13 11:34:49 +08:00
// Integration with UI
/** detach the cocos2d view from the view/window */
bool detach(void);
// Landspace
2010-09-28 16:18:05 +08:00
/** returns the size of the OpenGL view in pixels, according to the landspace */
CGSize getWinSize(void);
2010-09-28 16:18:05 +08:00
/** returns the display size of the OpenGL view in pixels */
CGSize getDisplaySize(void);
/** converts a UIKit coordinate to an OpenGL coordinate
2010-09-28 16:18:05 +08:00
Useful to convert (multi) touches coordinates to the current layout (portrait or landscape)
*/
CGPoint convertToGL(CGPoint obPoint);
/** converts an OpenGL coordinate to a UIKit coordinate
Useful to convert node points to window points for calls such as glScissor
*/
CGPoint convertToUI(CGPoint obPoint);
2010-09-28 16:18:05 +08:00
/** rotates the screen if an orientation different than Portrait is used */
2010-09-24 18:10:32 +08:00
void applyOrientation(void);
2010-09-28 16:18:05 +08:00
/// XXX: missing description
float getZEye(void);
// Scene Management
/**Enters the Director's main loop with the given Scene.
* Call it to run only your FIRST scene.
* Don't call it if there is already a running scene.
*/
void runWithScene(CCScene *pScene);
/**Suspends the execution of the running scene, pushing it on the stack of suspended scenes.
* The new scene will be executed.
* Try to avoid big stacks of pushed scenes to reduce memory allocation.
* ONLY call it if there is a running scene.
*/
void pushScene(CCScene *pScene);
/**Pops out a scene from the queue.
* This scene will replace the running one.
* The running scene will be deleted. If there are no more scenes in the stack the execution is terminated.
* ONLY call it if there is a running scene.
*/
void popScene(void);
/** Replaces the running scene with a new one. The running scene is terminated.
* ONLY call it if there is a running scene.
*/
void replaceScene(CCScene *pScene);
/** Ends the execution, releases the running scene.
It doesn't remove the OpenGL view from its parent. You have to do it manually.
*/
void end(void);
/** Pauses the running scene.
The running scene will be _drawed_ but all scheduled timers will be paused
2010-09-30 15:54:15 +08:00
While paused, the draw rate will be 4 FPS to reduce CPU consumption
*/
void pause(void);
/** Resumes the paused scene
The scheduled timers will be activated again.
The "delta time" will be 0 (as if the game wasn't paused)
*/
void resume(void);
/** Stops the animation. Nothing will be drawn. The main loop won't be triggered anymore.
2010-09-30 15:54:15 +08:00
If you don't want to pause your animation call [pause] instead.
*/
virtual void stopAnimation(void);
/** The main loop is triggered again.
Call this function only if [stopAnimation] was called earlier
2010-09-30 15:54:15 +08:00
@warning Don't call this function to start the main loop. To run the main loop call runWithScene
*/
virtual void startAnimation(void);
2010-11-13 11:34:49 +08:00
/** Draw the scene.
This method is called every frame. Don't call it manually.
*/
2010-09-24 18:10:32 +08:00
void drawScene(void);
// Memory Helper
/** Removes cached all cocos2d cached data.
It will purge the CCTextureCache, CCSpriteFrameCache, CCBitmapFont cache
@since v0.99.3
*/
void purgeCachedData(void);
// OpenGL Helper
2010-09-28 16:18:05 +08:00
/** sets the OpenGL default values */
void setGLDefaultValues(void);
2010-09-28 16:18:05 +08:00
/** enables/disables OpenGL alpha blending */
void setAlphaBlending(bool bOn);
2010-09-28 16:18:05 +08:00
/** enables/disables OpenGL depth test */
void setDepthTest(bool bOn);
virtual void preMainLoop(void);
public:
2010-09-28 16:18:05 +08:00
/** returns a shared instance of the director */
2010-11-11 11:18:58 +08:00
static CCDirector* sharedDirector(void);
/** There are 4 types of Director.
2010-09-24 18:10:32 +08:00
- kCCDirectorTypeNSTimer (default)
- kCCDirectorTypeMainLoop
- kCCDirectorTypeThreadMainLoop
- kCCDirectorTypeDisplayLink
Each Director has it's own benefits, limitations.
2010-09-30 15:54:15 +08:00
Now we only support DisplayLink director, so it has not effect.
This method should be called before any other call to the director.
@since v0.8.2
*/
2010-11-11 11:18:58 +08:00
static bool setDirectorType(ccDirectorType obDirectorType);
2010-11-16 12:02:45 +08:00
/** recalculate the projection view and projection size based on the EAGLVIEW
@since v0.99.4
*/
void recalculateProjectionAndEAGLViewSize();
protected:
bool isOpenGLAttached(void);
2010-09-24 18:10:32 +08:00
void updateContentScaleFactor(void);
void setNextScene(void);
2010-09-28 16:18:05 +08:00
2010-08-24 09:56:09 +08:00
#if CC_DIRECTOR_FAST_FPS
2010-09-28 16:18:05 +08:00
/** shows the FPS in the screen */
void showFPS(void);
2010-08-24 09:56:09 +08:00
#else
void showFPS(void) {}
#endif // CC_DIRECTOR_FAST_FPS
2010-09-28 16:18:05 +08:00
/** calculates delta time since last time it was called */
2010-10-16 15:29:53 +08:00
void calculateDeltaTime();
2010-08-24 09:56:09 +08:00
#if CC_ENABLE_PROFILERS
void showProfilers(void);
#endif // CC_ENABLE_PROFILERS
2010-09-30 15:54:15 +08:00
protected:
2010-10-16 15:29:53 +08:00
// compute frame rate
2010-11-16 12:02:45 +08:00
void computeFrameRate(void);
2010-10-16 15:29:53 +08:00
// compute delta time between computing frame rate
void calculateFramerateDeltaTime(void);
2010-09-30 15:54:15 +08:00
protected:
2010-09-29 17:39:45 +08:00
/* The CCXEGLView, where everything is rendered */
cocos2d::CCXEGLView *m_pobOpenGLView;
double m_dAnimationInterval;
double m_dOldAnimationInterval;
tPixelFormat m_ePixelFormat;
tDepthBufferFormat m_eDepthBufferFormat;
/* landscape mode ? */
bool m_bLandscape;
2010-09-29 17:39:45 +08:00
/* The device orientation */
ccDeviceOrientation m_eDeviceOrientation;
2010-09-29 17:39:45 +08:00
bool m_bDisplayFPS;
int m_nFrames;
ccTime m_fAccumDt;
ccTime m_fFrameRate;
2010-09-30 15:54:15 +08:00
ccTime m_fExpectedFrameRate;
#if CC_DIRECTOR_FAST_FPS
2010-12-24 17:07:31 +08:00
CCLabelTTF *m_pFPSLabel;
#endif
/* is the running scene paused */
bool m_bPaused;
/* The running scene */
CCScene *m_pRunningScene;
/* will be the next 'runningScene' in the next frame
nextScene is a weak reference. */
CCScene *m_pNextScene;
/* If YES, then "old" scene will receive the cleanup message */
bool m_bSendCleanupToScene;
/* scheduled scenes */
NSMutableArray<CCScene*> *m_pobScenesStack;
/* last time the main loop was updated */
struct cc_timeval *m_pLastUpdate;
/* delta time since last tick to main loop */
ccTime m_fDeltaTime;
2010-10-16 15:29:53 +08:00
/* last time the director compute frame rate */
struct cc_timeval *m_pLastComputeFrameRate;
/* delta time since last computing frame rate */
ccTime m_fComputeFrameRateDeltaTime;
/* whether or not the next delta time will be zero */
bool m_bNextDeltaTimeZero;
/* projection used */
ccDirectorProjection m_eProjection;
/* screen, different than surface size */
CGSize m_obScreenSize;
/* screen, different than surface size */
CGSize m_obSurfaceSize;
/* content scale factor */
CGFloat m_fContentScaleFactor;
2010-09-24 18:10:32 +08:00
/* contentScaleFactor could be simulated */
bool m_bIsContentScaleSupported;
2010-09-30 15:54:15 +08:00
/* store the fps string */
char *m_pszFPS;
#if CC_ENABLE_PROFILERS
ccTime m_fAccumDtForProfiler;
#endif
};
2010-09-28 18:27:33 +08:00
/**
@brief DisplayLinkDirector is a Director that synchronizes timers with the refresh rate of the display.
Features and Limitations:
- Scheduled timers & drawing are synchronizes with the refresh rate of the display
- Only supports animation intervals of 1/60 1/30 & 1/15
@since v0.8.2
*/
class CCDisplayLinkDirector : public CCDirector
{
public:
CCDisplayLinkDirector(void) {}
virtual void preMainLoop(void);
virtual void setAnimationInterval(double dValue);
virtual void startAnimation(void);
virtual void stopAnimation();
protected:
bool m_bInvalid;
};
2010-11-13 11:34:49 +08:00
}//namespace cocos2d
#endif // __CCDIRECTOR_H__