Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have implemented some screens using libgdx that would obviously use the Screen class provided by the libgdx framework. However, the implementation for these screens works only with pre-defined screen sizes. For example, if the sprite was meant for a 640 x 480 size screen (4:3 Aspect ratio), it won't work as intended on other screen sizes because the sprites go par the screen boundaries and are not scaled to the screen size at all. Moreover, if simple scaling would have been provided by the libgdx, the issue I am facing would have still been there because that would cause the aspect ratio of the game screen to change.

After researching on internet, I came across a blog/forum that had discussed the same issue. I have implemented it and so far it is working fine. But I want to confirm whether this is the best option to achieve this or there are other better alternatives for achieving this. Below is the code to show how I am dealing with this legitimate problem. Please give a look.

FORUM LINK: http://www.java-gaming.org/index.php?topic=25685.new

 public class SplashScreen implements Screen{
//Aspect Ratio maintenance
private static final int VIRTUAL_WIDTH = 640;
private static final int VIRTUAL_HEIGHT = 480;
private static final float ASPECT_RATIO = (float)VIRTUAL_WIDTH/(float)VIRTUAL_HEIGHT;

private Camera camera;
private Rectangle viewport;
//------end------

MainGame TempMainGame;

public Texture splashScreen;
public TextureRegion splashScreenRegion;    
public SpriteBatch splashScreenSprite;

public SplashScreen(MainGame maingame)
{
    TempMainGame=maingame;
}
@Override
public void dispose() {
    splashScreenSprite.dispose();
    splashScreen.dispose();
}

@Override
public void render(float arg0) {
    //----Aspect Ratio maintenance

    // update camera
    camera.update();
    camera.apply(Gdx.gl10);

    // set viewport
    Gdx.gl.glViewport((int) viewport.x, (int) viewport.y,
                      (int) viewport.width, (int) viewport.height);

    // clear previous frame
    Gdx.gl.glClear(GL10.GL_COLOR_BUFFER_BIT);

    // DRAW EVERYTHING
//--maintenance end--


    splashScreenSprite.begin();
    splashScreenSprite.disableBlending();
    splashScreenSprite.draw(splashScreenRegion, 0, 0);
    splashScreenSprite.end();
}

@Override
public void resize(int width, int height) {
    //--Aspect Ratio Maintenance--
    // calculate new viewport
    float aspectRatio = (float)width/(float)height;
    float scale = 1f;
    Vector2 crop = new Vector2(0f, 0f);

    if(aspectRatio > ASPECT_RATIO)
    {
        scale = (float)height/(float)VIRTUAL_HEIGHT;
        crop.x = (width - VIRTUAL_WIDTH*scale)/2f;
    }
    else if(aspectRatio < ASPECT_RATIO)
    {
        scale = (float)width/(float)VIRTUAL_WIDTH;
        crop.y = (height - VIRTUAL_HEIGHT*scale)/2f;
    }
    else
    {
        scale = (float)width/(float)VIRTUAL_WIDTH;
    }

    float w = (float)VIRTUAL_WIDTH*scale;
    float h = (float)VIRTUAL_HEIGHT*scale;
    viewport = new Rectangle(crop.x, crop.y, w, h);
//Maintenance ends here--
}


@Override
public void show() {
    camera = new OrthographicCamera(VIRTUAL_WIDTH, VIRTUAL_HEIGHT); //Aspect Ratio Maintenance

    splashScreen = new Texture(Gdx.files.internal("images/splashScreen.png"));
    splashScreenRegion = new TextureRegion(splashScreen, 0, 0, 640, 480);
    splashScreenSprite = new SpriteBatch();

    if(Assets.load()) {
        this.dispose();
        TempMainGame.setScreen(TempMainGame.mainmenu);
    }   
}

}

UPDATE: I recently came to know that libgdx has some of its own functionality to maintain aspect ratios which I would like to discuss here. While searching the aspect ratio issue across the internet, I came across several forums/developers who had this problem of "How to maintain the aspect ratio on different screen sizes?" One of the solutions that really worked for me was posted above.

Later on when I proceeded with implementing the touchDown() methods for the screen, I found that due to scaling on resize, the co-ordinates on which I had implemented touchDown() would change by a great amount. After working with some code to translate the co-ordinates in accordance with the screen resize, I reduced this amount to a great extent but I wasn't successful to maintain them with pin point accuracy. For example, if I had implemented touchDown() on a texture, resizing the screen would shift the touchListener on the texture region some pixels to the right or left, depending on the resize and this was obviously undesired.

Later on I came to know that the stage class has its own native functionality to maintain the aspect ratio (boolean stretch = false). Now that I have implemented my screen by using the stage class, the aspect ratio is maintained well by it. However on resize or different screen sizes, the black area that is generated always appears on the right side of the screen; that is the screen is not centered which makes it quite ugly if the black area is substantially large.

Can any community member help me out to resolve this problem??

share|improve this question
Could you link to the blog or forum that had the same issue? – Steve Blackwell Feb 8 '12 at 22:59
@SteveBlackwell here is the link: java-gaming.org/index.php?topic=25685.new – Spoilt Feb 9 '12 at 11:15
@SteveBlackwell Please see the updated question and see if you can help on this. – Spoilt Feb 22 '12 at 17:13
1  
I don't know very much about the Stage, but looking here, it seems like this should have been fixed. The docs aren't too much help for centering. Maybe you could move the camera over a little bit or adjust the viewport. – Steve Blackwell Feb 22 '12 at 17:36
1  
Well my issue actually got resolved. I am posting it as the answer. – Spoilt Feb 24 '12 at 10:33
show 3 more comments

5 Answers

up vote 13 down vote accepted

As SteveBlack posted the link of the issue that was reported in the stage class, I went there just to discover that the issue (that was not actually my issue) has been resolved in the latest nightlies.

After researching here and there on the internet for the issue I was having, I couldn't find any solutions so decided to contact the person who reported the bug directly. After that, he replied me on libgdx forums and I am indebted to him for his helping me out. Here is the link

It was a single line of code and all you have to do is:

In the resize() methond:

stage.setViewport(640, 480, false);
stage.getCamera().position.set(640/2, 480/2, 0);

Where 640 X 480 is the resolution of your TextureRegion that describes the intended aspect ratio. If your TextureRegion size was 320 X 240, then both the arguments should be changed to the new resolution to do the trick.

Profile link of the original person who actually resolved my issue

share|improve this answer
1  
In libGDX 0.9.6, stage.setViewport ( 640, 480, false ) is enough as it already includes a call to stage.getCamera ().position.set ( 640 / 2, 480 / 2, 0 ); – Alexis Pautrot Aug 25 '12 at 17:35

Black bars on the left/right or top/bottom look better than just distorting your whole scene to fit the screen. If you target an aspect ratio that's in the middle of the possible ranges (4:3 is probably low end, 16:9 is probably high end), then the bars should stay small for most devices. This also let's you use most of the screen even on bigger screens, and you already have that guy's code so it's pretty easy. It would be even nicer if this was just an option built into libgdx.

But, I think the best approach is to use the whole screen. I haven't done this yet, but it will be the approach I take for my next project. The idea is that if someone has a wider screen, then they should see more on the sides. Chris Pruett talks about how to do this in one of his talks (link to spot in talk--actually, the whole thing is actually pretty good). The idea is to scale for height, and then set your viewport wide enough to fit the screen. OpenGL should take care of displaying the rest. The way he does it is here.

For libgdx, maybe there's an easy way to do this with scene2d by moving the camera over the stage, but I've never actually worked with scene2d. In any case, running the app as a native resizable window is a much easier way to test multiple screen sizes than creating a bunch of AVDs.

share|improve this answer
"In any case, running the app as a native resizable window is a much easier way to test multiple screen sizes than creating a bunch of AVDs." Well said. actually I am trying work on this phenomenon to ensure maximum compatibility instead of targeting different screen sizes with different sizes of textures. – Spoilt Feb 22 '12 at 17:15

The ResolutionFileResolver class allows you to resolve file names to the best resolution. I believe that will work with different aspect ratios as well, provided you have created sprites for those aspect ratios. There is an example use in the AssetManagerTest.

share|improve this answer

this link helped me with the aspect ratio issues:

http://blog.acamara.es/2012/02/05/keep-screen-aspect-ratio-with-different-resolutions-using-libgdx/

share|improve this answer
Well I worked with this issue and to some extent my problem was resolved. The link is also mentioned in my answer. But couldn't make my touch areas point to the right ones on resize which was again a problem. Any ways thanks. And check out the stage class. It has somewhat the same functionality and does it in a much cleaner way. – Spoilt Feb 26 '12 at 17:40
Also in this tutorial, black areas are obtained by a call to glClear. This is not fill rate friendly. Best is to not call the glClear function, and to draw the black area yourself. – Alexis Pautrot Aug 25 '12 at 17:39

See the last part of the Viewport section in the official docs: https://code.google.com/p/libgdx/wiki/scene2d#Viewport

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.