mirror of https://github.com/axmolengine/axmol.git
fix some warings
This commit is contained in:
parent
aaf4b14ddf
commit
5eb8ca30fb
|
@ -1,5 +1,8 @@
|
||||||
#include "AppDelegate.h"
|
#include "AppDelegate.h"
|
||||||
|
|
||||||
|
#include <vector>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
#include "cocos2d.h"
|
#include "cocos2d.h"
|
||||||
#include "SimpleAudioEngine.h"
|
#include "SimpleAudioEngine.h"
|
||||||
#include "ScriptingCore.h"
|
#include "ScriptingCore.h"
|
||||||
|
@ -11,6 +14,7 @@
|
||||||
|
|
||||||
USING_NS_CC;
|
USING_NS_CC;
|
||||||
using namespace CocosDenshion;
|
using namespace CocosDenshion;
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
AppDelegate::AppDelegate()
|
AppDelegate::AppDelegate()
|
||||||
{
|
{
|
||||||
|
@ -34,23 +38,26 @@ bool AppDelegate::applicationDidFinishLaunching()
|
||||||
CCSize designSize = CCSizeMake(320, 480);
|
CCSize designSize = CCSizeMake(320, 480);
|
||||||
CCSize resourceSize = CCSizeMake(320, 480);
|
CCSize resourceSize = CCSizeMake(320, 480);
|
||||||
|
|
||||||
|
vector<string> searchPath;
|
||||||
|
|
||||||
if (screenSize.height > 768)
|
if (screenSize.height > 768)
|
||||||
{
|
{
|
||||||
resourceSize = CCSizeMake(1536, 2048);
|
resourceSize = CCSizeMake(1536, 2048);
|
||||||
CCFileUtils::sharedFileUtils()->setResourceDirectory("resources-ipadhd");
|
searchPath.push_back("resources-ipadhd");
|
||||||
}
|
}
|
||||||
else if (screenSize.height > 640)
|
else if (screenSize.height > 640)
|
||||||
{
|
{
|
||||||
resourceSize = CCSizeMake(768, 1536);
|
resourceSize = CCSizeMake(768, 1536);
|
||||||
CCFileUtils::sharedFileUtils()->setResourceDirectory("resources-ipad");
|
searchPath.push_back("resources-ipad");
|
||||||
}
|
}
|
||||||
else if (screenSize.height > 320)
|
else if (screenSize.height > 320)
|
||||||
{
|
{
|
||||||
resourceSize = CCSizeMake(640, 960);
|
resourceSize = CCSizeMake(640, 960);
|
||||||
CCFileUtils::sharedFileUtils()->setResourceDirectory("resources-iphonehd");
|
searchPath.push_back("resources-iphonehd");
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
CCFileUtils::sharedFileUtils()->setSearchPath(searchPath);
|
||||||
|
|
||||||
pDirector->setContentScaleFactor(resourceSize.height/designSize.height);
|
pDirector->setContentScaleFactor(resourceSize.height/designSize.height);
|
||||||
|
|
||||||
CCEGLView::sharedOpenGLView()->setDesignResolutionSize(designSize.width, designSize.height, kResolutionNoBorder);
|
CCEGLView::sharedOpenGLView()->setDesignResolutionSize(designSize.width, designSize.height, kResolutionNoBorder);
|
||||||
|
|
Loading…
Reference in New Issue