Multi-resolution support
The APIs used in this document are available since cocos2d-2.0-x-2.0.4.
The diverse set of resolutions on Android devices is hard to adapt to. Cocos2d-x offers CCEGLView::setDesignResolutionSize()
and CCDirector::setContentScaleFactor()
to help your game run on different resolutions with minimal amount of work.
The principle
We have removed all the code related to enableRetina
method since v2.0.4. On iOS, if the device supports Retina display, we enable it by default.
You can get the real screen size in pixels with CCEGLView::sharedOpenGLView()->getFrameSize()
. For example, the function returns ‘960x640’ for iPhone 4S in landscape mode.
But how does one use non-Retina coordinates for Retina devices? There are two concepts you have to know. One is designResolutionSize; the other is contentScaleFactor.
designResolutionSize
All of your game’s coordinates are based on design resolution, no matter what the size of your device screen. If the UI layout of your game is the same on all resolutions, you only need a single set of coordinates. Design resolution is set using CCEGLView::sharedOpenGLView()->setDesignResolutionSize(width, height, policy)
. The first and second parameters are the width and height of design resolution, and the third parameter is the resizing policy you want to use. I will explain the third parameter later.
Additionally, you can use more than one set of resources for different devices, to make the best use of each device’s display. This is achieved by using searchPath.push_back(largeResource.directory);
, in combination with contentScaleFactor.
Here are some code snippets in HelloCpp project.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | typedef struct tagResource { cocos2d::CCSize size; char directory[100]; }Resource; static Resource smallResource = { cocos2d::CCSizeMake(480, 320), "iphone" }; static Resource mediumResource = { cocos2d::CCSizeMake(1024, 768), "ipad" }; static Resource largeResource = { cocos2d::CCSizeMake(2048, 1536), "ipadhd" }; static cocos2d::CCSize designResolutionSize = cocos2d::CCSizeMake(480, 320); bool AppDelegate::applicationDidFinishLaunching() { // initialize director CCDirector* pDirector = CCDirector::sharedDirector(); CCEGLView* pEGLView = CCEGLView::sharedOpenGLView(); pDirector->setOpenGLView(pEGLView); // Set the design resolution pEGLView->setDesignResolutionSize(designResolutionSize.width, designResolutionSize.height, kResolutionNoBorder); CCSize frameSize = pEGLView->getFrameSize(); // In this demo, we select resource according to the frame's height. // If the resource size is different from design resolution size, you need to set contentScaleFactor. // We use the ratio of resource's height to the height of design resolution, // this can make sure that the resource's height could fit for the height of design resolution. // if the frame's height is larger than the height of medium resource size, select large resource. if (frameSize.height > mediumResource.size.height) { searchPath.push_back(largeResource.directory); pDirector->setContentScaleFactor(largeResource.size.height/designResolutionSize.height); } // if the frame's height is larger than the height of small resource size, select medium resource. else if (frameSize.height > smallResource.size.height) { searchPath.push_back(mediumResource.directory); pDirector->setContentScaleFactor(mediumResource.size.height/designResolutionSize.height); } // if the frame's height is smaller than the height of medium resource size, select small resource. else { searchPath.push_back(smallResource.directory); pDirector->setContentScaleFactor(smallResource.size.height/designResolutionSize.height); } ................... ................... } |
contentScaleFactor
ContentScaleFactor describes the ratio from ResourcesSize to designResolutionSize. Normally, it can be set by ‘ResourceBackGround.height/DesignResolution.height’ or ‘ResourceBackGround.width/DesignResolution.width’. To choose which one is based on your game design.
For illustration below, we use height to calculate the factor.
Chart 1: Resource Size = 960x640 ; Design Resolution Size = 480x320 ; Target Device Screen Size = 800x480 ; RH/DH=RW/DW=2.0f; NoBorder Policy
When using NoBorder mode, there are some areas of the backgroud out of scope. If you use absolute coordinates based on design resolution size(480x320),
some of your game UI will not be shown completely. To resolve this issue, you have to make the coordinates base on ‘visible rectangle’. You can get the origin point of ‘visible rectange’ by ‘CCDirector::sharedDirector()->getVisibleOrign()’.
Together with ‘CCDirector::sharedDirector()->getVisibleSize()’,you will be able to confirm 9 points on the screen. They are ‘Left’,‘Right’, ‘Top’,‘Bottom’,‘Center’,‘LeftTop’,‘RightTop’,‘LeftBottom’ and ‘RightBottom’.
Your game will be really full screen display if all the coordinates of your game is base on these nine points.
About how to calculate these points, please refer to ‘VisibleRect’ class in TestCpp project.
Chart 2: *Resource Size = 1024x768 ; Design Resolution Size = 480x320 ; Target Device Screen Size = 800x480 ; RH/DH  isn’t equal to DW/DH(480÷320=1.5), it’s in the Opengl Viewport, you can place your game elements onto it.
Fixed Height
The width parameter of the design resolution size is ignored and recalculated based on the height of the design resolution and the aspect ratio of the device.
The entire application is visible without distortion. However developers must make sure that they design their UI to match different aspect ratios.
Using this resolution policy will give you a different window width across devices, the window height is fixed. The visibility rect will start at 0/0.
Example: Device Resolution: 800x480px Design Resolution: 480x320px CCDirector Window Origin: 0/0 CCDirector Window Size: 534x320px Device Resolution: 854x480px Design Resolution: 480x320px CCDirector Window Origin: 0/0 CCDirector Window Size: 570x320px Device Resolution: 1024x768px Design Resolution: 480x320px CCDirector Window Origin: 0/0 CCDirector Window Size: 427x320px
As you can see the height of the display stays the same on all possible device resolutions, only the window width will be adjusted to match the device aspect ratio.
In general you can use this mode like the No Boder mode, but there is no need to use VisibleRect methods. If you place a sprite at (0/0) it will always
be in the lower left corner of the screen, If you place the sprite at (winSize.width/2, winSize.height/2) it will be in the center of the screen.
If you place the spite at (winSize.width, 0) it will be at the bottom-right corner of the screen.
Avaiable since cocos2d-x v2.1rc0-x-2.1.3
Fixed Width
This mode works the same as the fixed height mode. The difference is, that this mode will ignore the height of the design resolution size and recalcualte the height depending
on the device aspect ratio.
While the fixed height mode is useful for landscape games, you may want to prefer this resolution policy for portrait games.
Avaiable since cocos2d-x v2.1rc0-x-2.1.3
- You need to use relative coordinates only in NoBorder, FixedHeight and FixedWidth mode. Generally, developer uses NoBorder mode for better display