Viewports - garsue/libgdx GitHub Wiki
When dealing with different screens it is often necessary to decide for a certain strategy how those different screen sizes and aspect ratios should be handled. Camera and Stage support different viewport strategies, for example when doing picking via Camera.project(vec, viewportX, viewportY, viewportWidth, viewportHeight)
.
LibGDX provides a more convenient way of dealing with this problem, namely via Viewport
s.
StretchViewport
The StretchViewport
supports working with a virtual screen size. That means one can assume that a screen is always of the size virtualWidth x virtualHeight
. This virtual viewport will then always be stretched to fit the screen. There are no black bars, but the aspect ratio may not be the same after the scaling took place.
FitViewport
A FitViewport
also supports a virtual screen size. The difference to StretchViewport is that it will always maintain the aspect ratio of the virtual screen size (virtual viewport), while scaling it as much as possible to fit the screen. One disadvantage with this strategy is that there may appear black bars.
FillViewport
FillViewport
also keeps the aspect ratio of the virtual screen size, but in contrast to FitViewport, it will always fill the whole screen which might result in parts of the viewport being cut off.
ScreenViewport
This viewport does not have a constant virtual screen size. The ScreenViewport
will always match the window size which means that no scaling happens and no black bars appear. As a disadvantage this means that the gameplay might change, because a player with a bigger screen might see more of the game, than a player with a smaller screen size.
ExtendViewport
The ExtendViewport
keeps the world aspect ratio without black bars by extending the world in one direction. The world is first scaled to fit within the viewport, then the shorter dimension is lengthened to fill the viewport.
A maximum set of dimensions can be supplied to ExtendViewport
, in which case, black bars will be added when the aspect ratio falls out of the supported range.
CustomViewport
Different strategies may be implemented by doing CustomViewport extends Viewport
and implementing calculateViewport(width, height)
. Another approach is use the generic ScalingViewport
and supplying another Scaling which is not yet covered by any other Viewport. One example could be to supply Scaling.none
to it, which will result in a completely "StaticViewport", which always keeps the same size. It might look like this:
Usage
A viewport always manages a Camera's viewportWidth and viewportHeight. Thus a camera needs to be supplied to the constructors.
private Viewport viewport;
private Camera camera;
public void create() {
camera = new PerspectiveCamera();
viewport = new FixedViewport(camera, 800, 480);
}
Whenever a resize event occurs, the viewport needs to be informed about it and updated. This will automatically recalculate the viewport parameters and update the camera:
public void resize(int width, int height) {
viewport.update(width, height);
}
Furthermore it will change the OpenGL Viewport via glViewport, which may add black bars if necessary, making it impossible to render in the area of the black bars. In case black bars appear with a certain viewport strategy, the OpenGL viewport may be reset to it's standard size and the viewport can be queried for the size of the bars via Viewport.getLeftGutterWidth()
etc. For an example of how to do so, see this test. This might look like the following (probably with a more appropriate border picture...)
In case picking needs to be done, Viewport offers convenient project/unproject/getPickRay
methods, which uses the current viewport to do the correct picking. This is how you convert to and from screen and world coordinates.
When Stage is used, the Stage's viewport needs to be updated when a resize event happens.
private Stage stage;
public void create() {
stage = new Stage(new StretchViewport(width, height));
}
public void resize(int width, int height) {
// use true here to center the camera
stage.getViewport().update(width, height, false);
}
Examples
To see the viewports in action, have a look at the tests here: ViewportTest1, ViewportTest2 and ViewportTest3.