2013-03-02 01:09:58 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2013 The Chromium Authors
|
|
|
|
|
|
|
|
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 __CCAPLICATION_H__
|
|
|
|
#define __CCAPLICATION_H__
|
|
|
|
|
|
|
|
#include "platform/CCCommon.h"
|
|
|
|
#include "platform/CCApplicationProtocol.h"
|
|
|
|
|
|
|
|
NS_CC_BEGIN
|
2013-06-20 14:13:12 +08:00
|
|
|
class Rect;
|
2013-03-02 01:09:58 +08:00
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
class Application : public ApplicationProtocol
|
2013-03-02 01:09:58 +08:00
|
|
|
{
|
|
|
|
public:
|
2013-06-20 14:13:12 +08:00
|
|
|
Application();
|
|
|
|
virtual ~Application();
|
2013-03-02 01:09:58 +08:00
|
|
|
|
|
|
|
/**
|
2013-06-20 14:13:12 +08:00
|
|
|
@brief Callback by Director for limit FPS.
|
2013-03-02 01:09:58 +08:00
|
|
|
@interval The time, which expressed in second in second, between current frame and next.
|
|
|
|
*/
|
|
|
|
void setAnimationInterval(double interval);
|
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Run the message loop.
|
|
|
|
*/
|
|
|
|
int run();
|
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Get current applicaiton instance.
|
|
|
|
@return Current application instance pointer.
|
|
|
|
*/
|
2013-06-20 14:13:12 +08:00
|
|
|
static Application* sharedApplication();
|
2013-03-02 01:09:58 +08:00
|
|
|
|
|
|
|
/* override functions */
|
|
|
|
virtual ccLanguageType getCurrentLanguage();
|
|
|
|
|
|
|
|
/**
|
|
|
|
@brief Get target platform
|
|
|
|
*/
|
|
|
|
virtual TargetPlatform getTargetPlatform();
|
|
|
|
|
|
|
|
static bool isRunning() { return s_running; }
|
|
|
|
protected:
|
2013-06-15 14:03:30 +08:00
|
|
|
long _animationInterval; // microseconds
|
2013-03-02 01:09:58 +08:00
|
|
|
|
|
|
|
static bool s_running; // is the application running
|
2013-06-20 14:13:12 +08:00
|
|
|
static Application* sm_pSharedApplication;
|
2013-03-02 01:09:58 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
NS_CC_END
|
|
|
|
|
|
|
|
#endif /* __CCAPLICATION_H__ */
|