v2.5.0: undid fullscreen changes, borderless doesn't work in many cases
This commit is contained in:
@@ -174,8 +174,11 @@ public class DesktopLauncher {
|
|||||||
config.setWindowedMode( p.x, p.y );
|
config.setWindowedMode( p.x, p.y );
|
||||||
|
|
||||||
config.setMaximized(SPDSettings.windowMaximized());
|
config.setMaximized(SPDSettings.windowMaximized());
|
||||||
config.setDecorated(!SPDSettings.fullscreen());
|
|
||||||
|
//going fullscreen on launch is a bit buggy
|
||||||
|
// so game always starts windowed and then switches in DesktopPlatformSupport.updateSystemUI
|
||||||
|
//config.setFullscreenMode(Lwjgl3ApplicationConfiguration.getDisplayMode());
|
||||||
|
|
||||||
//records whether window is maximized or not for settings
|
//records whether window is maximized or not for settings
|
||||||
DesktopWindowListener listener = new DesktopWindowListener();
|
DesktopWindowListener listener = new DesktopWindowListener();
|
||||||
config.setWindowListener( listener );
|
config.setWindowListener( listener );
|
||||||
|
|||||||
@@ -22,7 +22,6 @@
|
|||||||
package com.shatteredpixel.shatteredpixeldungeon.desktop;
|
package com.shatteredpixel.shatteredpixeldungeon.desktop;
|
||||||
|
|
||||||
import com.badlogic.gdx.Gdx;
|
import com.badlogic.gdx.Gdx;
|
||||||
import com.badlogic.gdx.Graphics;
|
|
||||||
import com.badlogic.gdx.graphics.Pixmap;
|
import com.badlogic.gdx.graphics.Pixmap;
|
||||||
import com.badlogic.gdx.graphics.g2d.PixmapPacker;
|
import com.badlogic.gdx.graphics.g2d.PixmapPacker;
|
||||||
import com.badlogic.gdx.graphics.g2d.freetype.FreeTypeFontGenerator;
|
import com.badlogic.gdx.graphics.g2d.freetype.FreeTypeFontGenerator;
|
||||||
@@ -51,32 +50,21 @@ public class DesktopPlatformSupport extends PlatformSupport {
|
|||||||
previousSizes[1] = previousSizes[0];
|
previousSizes[1] = previousSizes[0];
|
||||||
}
|
}
|
||||||
previousSizes[0] = new Point(Game.width, Game.height);
|
previousSizes[0] = new Point(Game.width, Game.height);
|
||||||
if (!SPDSettings.fullscreen() && !SPDSettings.windowMaximized()) {
|
if (!SPDSettings.fullscreen()) {
|
||||||
SPDSettings.windowResolution( previousSizes[0] );
|
SPDSettings.windowResolution( previousSizes[0] );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void updateSystemUI() {
|
public void updateSystemUI() {
|
||||||
Gdx.app.postRunnable( new Runnable() {
|
Gdx.app.postRunnable( new Runnable() {
|
||||||
@Override
|
@Override
|
||||||
public void run () {
|
public void run () {
|
||||||
if (SPDSettings.fullscreen()){
|
if (SPDSettings.fullscreen()){
|
||||||
Gdx.graphics.setUndecorated( true );
|
Gdx.graphics.setFullscreenMode( Gdx.graphics.getDisplayMode() );
|
||||||
Graphics.DisplayMode display = Gdx.graphics.getDisplayMode();
|
|
||||||
Gdx.graphics.setWindowedMode( display.width, display.height );
|
|
||||||
} else {
|
} else {
|
||||||
Point p = SPDSettings.windowResolution();
|
Point p = SPDSettings.windowResolution();
|
||||||
Gdx.graphics.setUndecorated( false );
|
|
||||||
if (SPDSettings.windowMaximized()){
|
|
||||||
//if we are going from fullscreen to maximized, then don't assign window res
|
|
||||||
Point newP = SPDSettings.windowResolution();
|
|
||||||
if (newP.x == p.x && newP.y == p.y){
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Gdx.graphics.setWindowedMode( p.x, p.y );
|
Gdx.graphics.setWindowedMode( p.x, p.y );
|
||||||
SPDSettings.windowResolution( p );
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} );
|
} );
|
||||||
|
|||||||
Reference in New Issue
Block a user