Skip to content

move window handling to its own class#121

Closed
farmboy0 wants to merge 11 commits intoxoreos:masterfrom
farmboy0:master
Closed

move window handling to its own class#121
farmboy0 wants to merge 11 commits intoxoreos:masterfrom
farmboy0:master

Conversation

@farmboy0
Copy link
Copy Markdown
Contributor

@farmboy0 farmboy0 commented May 7, 2016

No description provided.

@farmboy0
Copy link
Copy Markdown
Contributor Author

farmboy0 commented May 7, 2016

The following functionality should be tested:

  • changing FSAA level
  • switching between fullscreen and windowed and back
  • changing window size in windowed and fullscreen mode

Comment thread src/graphics/graphics.cpp Outdated
// Map the screen coordinates to our OpenGL GUI screen coordinates
x = x - (_width / 2.0f);
y = (_height - y) - (_height / 2.0f);
x = x - (WindowMan.getWindowWidth() / 2.0f);
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor nitpick here: space alignment not needed anymore.

@farmboy0 farmboy0 force-pushed the master branch 2 times, most recently from f402d7e to 9655ff0 Compare July 10, 2016 10:49
@farmboy0 farmboy0 force-pushed the master branch 2 times, most recently from 7e25e0c to a94e480 Compare July 25, 2016 20:08
@farmboy0 farmboy0 force-pushed the master branch 4 times, most recently from 574e02a to b506023 Compare August 21, 2016 11:44
@farmboy0 farmboy0 force-pushed the master branch 2 times, most recently from fdc595f to 087d7e2 Compare September 18, 2016 21:01
@farmboy0 farmboy0 force-pushed the master branch 4 times, most recently from 1c99378 to b737800 Compare October 13, 2016 20:41
@farmboy0 farmboy0 force-pushed the master branch 3 times, most recently from af0e96a to cec7176 Compare October 22, 2016 17:51
@DrMcCoy
Copy link
Copy Markdown
Member

DrMcCoy commented Oct 22, 2016

Yeah, this looks good, IMHO. I like it.

I especially like the use of an enum for the renderer type; that's probably what I should have done in the first place, yes.

Two things I noticed (but are not a fault of your code, just general observations for the TODO list):

  • When changing the FSAA settings in NWN (either the main menu or the ingame options menu), the highlight bounding boxes suddenly appear offset by half an object's height. This doesn't seem to change the cursor/object interactions, though. When restarting xoreos with the new FSAA settings, they're okay again, too. Very weird.
  • The game loader progress bar looks silly in higher FSAA settings, because the bar is actually a string of Unicode box glyphs. With FSAA up, the gaps between them are visible. That really shouldn't be, but the bar should probably be drawn in a better way anyway, I guess.

Do you want this to be merged now or should this wait for after @mirv-sillyfish's stuff? #123 rebases cleanly (with an automatic 3-way merge) on top of this change, but then needs a little fix in graphics.cpp to replace _width/_height by WindowMan.getWindowWidth()/WindowMan.getWindowHeight() to make it compile again.

This class does a few things differently to their current implementation
in GfxMan. Notably it fixes the following flaws in the current
implementation:
* Switching from FS to windowed mode didnt work
* Resolution switching in FS mode didnt work
* Max FSAA level would always be determined to be 16x
* Error handling was missing or wrong
@DrMcCoy
Copy link
Copy Markdown
Member

DrMcCoy commented Oct 23, 2016

Merged with 287d2d8..812b1af. Thanks! :)

I did, however, remove the SDL_WINDOW_RESIZABLE flag since it's currently not working anyway. I added "Let the user resize the xoreos window" as a TODO. If you have a working implementation, please do a PR for it. I'm really not sure how well it'll work though, what with OpenGL needing to be recreated for every change, but yeah, if I see it working, sure.

Also note that Sonic, as a Nintendo DS game, is inherently fixed-size. Currently, the engine code even overrides a user config choice there. In the future, we might add something to scale the 2D images? But even that would probably work best in full integer steps. So an engine might explictly want to disable user scaling.

I also added two issues, #131 (boundbox displacement while changing FSAA) and #132 (borked fullscreen resolution change, and added the progress bar thing as another TODO.

@DrMcCoy DrMcCoy closed this Oct 23, 2016
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

Successfully merging this pull request may close these issues.

3 participants