Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

window.fullscreen toggling error on MacOS #1771

Open
increpare opened this issue Mar 21, 2024 · 4 comments
Open

window.fullscreen toggling error on MacOS #1771

increpare opened this issue Mar 21, 2024 · 4 comments

Comments

@increpare
Copy link

increpare commented Mar 21, 2024

  • Haxe version: 4.2.5
  • Lime version: 8.1.2
  • Affected targets: MacOS 14.0 (23A344) (cpp + neko)

Code snippet reproducing the issue:

The SimpleImage example with this main.hx file



import lime.ui.KeyModifier;
import lime.app.Application;
import lime.graphics.cairo.CairoImageSurface;
import lime.graphics.opengl.GLBuffer;
import lime.graphics.opengl.GLProgram;
import lime.graphics.opengl.GLTexture;
import lime.graphics.opengl.GLUniformLocation;
import lime.graphics.Image;
import lime.graphics.RenderContext;
import lime.math.Matrix4;
import lime.utils.Assets;
import lime.utils.Float32Array;
import lime.ui.KeyCode;

#if flash
import flash.display.Bitmap;
#end


class Main extends Application {
	
	
	private var cairoSurface:CairoImageSurface;
	private var glBuffer:GLBuffer;
	private var glMatrixUniform:GLUniformLocation;
	private var glProgram:GLProgram;
	private var glTexture:GLTexture;
	private var glTextureAttribute:Int;
	private var glVertexAttribute:Int;
	private var image:Image;
	

	public function new () {
		
		super ();
	}

	public var fullscreen_cached=false;
	public override function onKeyDown (key:KeyCode, modifier:KeyModifier):Void {
		
		trace("keydown");
		trace("old fullscreen value is "+window.fullscreen);
		switch (key) {
			case KeyCode.F:
				window.fullscreen = !window.fullscreen;
			case KeyCode.G:
				fullscreen_cached = !fullscreen_cached;
				window.fullscreen = fullscreen_cached;
			default:
				super.onKeyDown (key, modifier);
		}
		trace ("new fullscreen value is "+window.fullscreen);
	}
	
	
	public override function render (context:RenderContext):Void {
		super.render (context);
	}
	
	
}

Observed behavior:
Run the app in cpp/neko builds.
The app starts in windowed mode.
1: Press F to toggle fullscreen. The app is now in fullscreen.
2: Press F again. The app remains in fullscreen.
3: Press F again. The app is no longer in fullscreen.

Expected behavior:
I expect step 2 to bring me back to windowed mode.

Note the log output:

Source/Main.hx:44: keydown
Source/Main.hx:45: old fullscreen value is false
Source/Main.hx:55: new fullscreen value is true
Source/Main.hx:44: keydown
Source/Main.hx:45: old fullscreen value is false
Source/Main.hx:55: new fullscreen value is true
Source/Main.hx:44: keydown
Source/Main.hx:45: old fullscreen value is true
Source/Main.hx:55: new fullscreen value is false

Note that it seems that FlxG.fullscreen is somehow getting turned back to false sometime between when it's toggled on and I've entered the new frame.

Also note that pressing G, which locally caches the 'fullscreen' value, doesn't have this behaviour.

@player-03
Copy link
Contributor

Try adding event listeners to each of the following:

  • window.onFullscreen
  • window.onMaximize
  • window.onMinimize
  • window.onRestore

How many of them get dispatched, and at what point in the process?

@increpare
Copy link
Author

Okay, let's try that (for the record, here's the code with the inserted event handlers - https://gist.github.com/increpare/928e5ee0919d7da56d11ba2ab2c022b7 )

Pressing F three times:

Source/Main.hx:66: keydown
Source/Main.hx:67: old fullscreen value is false
Source/Main.hx:48: onFullscreen
Source/Main.hx:77: new fullscreen value is true
Source/Main.hx:52: onMaximize
Source/Main.hx:66: keydown
Source/Main.hx:67: old fullscreen value is false
Source/Main.hx:48: onFullscreen
Source/Main.hx:77: new fullscreen value is true
Source/Main.hx:66: keydown
Source/Main.hx:67: old fullscreen value is true
Source/Main.hx:77: new fullscreen value is false
Source/Main.hx:62: onRestore

Pressing G twice

Source/Main.hx:66: keydown
Source/Main.hx:67: old fullscreen value is false
Source/Main.hx:48: onFullscreen
Source/Main.hx:77: new fullscreen value is true
Source/Main.hx:52: onMaximize
Source/Main.hx:66: keydown
Source/Main.hx:67: old fullscreen value is false
Source/Main.hx:77: new fullscreen value is false
Source/Main.hx:62: onRestore

@player-03
Copy link
Contributor

Well, I think we found the culprit. When we receive a "maximize" window event, we set __fullscreen to false before dispatching onMaximize.

There aren't any other references to onMaximize, so I think it's safe to conclude that's where it's coming from. (Not even references that should exist, like in this list.)

When testing on Linux, I can confirm that there's no onMaximize event, and therefore window.fullscreen behaves as it should, toggling every time F is pressed. And there's also no onRestore event when exiting fullscreen. I don't know why you're getting these extra events on Mac, but they're definitely not what's supposed to happen.

@increpare
Copy link
Author

Oho. Maybe it's related to hitting the maximize button on OSX having the same effect as going fullscreen? (At some point years ago macos changed the behaviour of the fullscreen button from a more Windows-style "expand window to fill screen" to actual full-screen).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants