2015-02-16 00:49:42 +01:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BACKENDS_PLATFORM_SDL_WINDOW_H
|
|
|
|
#define BACKENDS_PLATFORM_SDL_WINDOW_H
|
|
|
|
|
|
|
|
#include "backends/platform/sdl/sdl-sys.h"
|
|
|
|
|
2020-04-16 12:28:55 +01:00
|
|
|
#include "common/rect.h"
|
2015-02-16 00:49:42 +01:00
|
|
|
#include "common/str.h"
|
|
|
|
|
|
|
|
class SdlWindow {
|
|
|
|
public:
|
|
|
|
SdlWindow();
|
|
|
|
virtual ~SdlWindow();
|
|
|
|
|
|
|
|
/**
|
2015-02-16 01:24:42 +01:00
|
|
|
* Setup the window icon.
|
2015-02-16 00:49:42 +01:00
|
|
|
*/
|
2015-02-16 01:24:42 +01:00
|
|
|
virtual void setupIcon();
|
2015-02-16 00:49:42 +01:00
|
|
|
|
|
|
|
/**
|
2015-02-16 01:24:42 +01:00
|
|
|
* Change the caption of the window.
|
2015-02-16 00:49:42 +01:00
|
|
|
*
|
2015-02-16 01:24:42 +01:00
|
|
|
* @param caption New window caption in UTF-8 encoding.
|
2015-02-16 00:49:42 +01:00
|
|
|
*/
|
2015-02-16 01:24:42 +01:00
|
|
|
void setWindowCaption(const Common::String &caption);
|
2015-02-16 00:49:42 +01:00
|
|
|
|
|
|
|
/**
|
2020-10-14 07:03:31 +01:00
|
|
|
* Grab or ungrab the mouse cursor. This decides whether the cursor can leave
|
|
|
|
* the window or not.
|
2015-02-16 00:49:42 +01:00
|
|
|
*/
|
2020-10-14 07:03:31 +01:00
|
|
|
void grabMouse(bool grab);
|
2015-02-16 00:49:42 +01:00
|
|
|
|
2020-10-13 20:31:10 +01:00
|
|
|
/**
|
|
|
|
* Lock or unlock the mouse cursor within the window.
|
|
|
|
*/
|
|
|
|
bool lockMouse(bool lock);
|
|
|
|
|
2015-02-16 00:49:42 +01:00
|
|
|
/**
|
|
|
|
* Check whether the application has mouse focus.
|
|
|
|
*/
|
|
|
|
bool hasMouseFocus() const;
|
|
|
|
|
|
|
|
/**
|
BACKENDS: Refactor OpenGL & SDL graphics backends
This patch refactors the OpenGL and SDL graphics backends,
primarily to unify window scaling and mouse handling, and to
fix coordinate mapping between the ScummVM window and the
virtual game screen when they have different aspect ratios.
Unified code for these two backends has been moved to a new
header-only WindowedGraphicsManager class, so named because it
contains code for managing graphics managers that interact with
a windowing system and render virtual screens within a larger
physical content window.
The biggest behavioral change here is with the coordinate
system mapping:
Previously, mouse offsets were converted by mapping the whole
space within the window as input to the virtual game screen
without maintaining aspect ratio. This was done to prevent
'stickiness' when the mouse cursor was within the window but
outside of the virtual game screen, but it caused noticeable
distortion of mouse movement speed on the axis with blank
space.
Instead of introducing mouse speed distortion to prevent
stickiness, this patch changes coordinate transformation to
show the system cursor when the mouse moves outside of the virtual
game screen when mouse grab is off, or by holding the mouse inside
the virtual game screen (instead of the entire window) when mouse
grab is on.
This patch also improves some other properties of the
GraphicsManager/PaletteManager interfaces:
* Nullipotent operations (getWidth, getHeight, etc.) of the
PaletteManager/GraphicsManager interfaces are now const
* Methods marked `virtual` but not inherited by any subclass have
been de-virtualized
* Extra unnecessary calculations of hardware height in
SurfaceSdlGraphicsManager have been removed
* Methods have been renamed where appropriate for clarity
(setWindowSize -> handleResize, etc.)
* C++11 support improved with `override` specifier added on
overridden virtual methods in subclasses (primarily to avoid
myself accidentally creating new methods in the subclasses
by changing types/names during refactoring)
Additional refactoring can and should be done at some point to
continue to deduplicate code between the OpenGL and SDL backends.
Since the primary goal here was to improve the coordinate mapping,
full refactoring of these backends was not completed here.
2017-07-19 19:15:12 -05:00
|
|
|
* Warp the mouse to the specified position in window coordinates. The mouse
|
|
|
|
* will only be warped if the window is focused in the window manager.
|
2017-09-15 22:59:18 -05:00
|
|
|
*
|
|
|
|
* @returns true if the system cursor was warped.
|
2015-02-16 00:49:42 +01:00
|
|
|
*/
|
2017-09-15 22:59:18 -05:00
|
|
|
bool warpMouseInWindow(int x, int y);
|
2015-02-16 00:49:42 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Iconifies the window.
|
|
|
|
*/
|
|
|
|
void iconifyWindow();
|
|
|
|
|
2015-02-16 02:13:11 +01:00
|
|
|
/**
|
|
|
|
* Query platform specific SDL window manager information.
|
|
|
|
*
|
|
|
|
* Since this is an SDL internal structure clients are responsible
|
|
|
|
* for accessing it in a version safe manner.
|
|
|
|
*/
|
|
|
|
bool getSDLWMInformation(SDL_SysWMinfo *info) const;
|
|
|
|
|
2020-04-16 12:28:55 +01:00
|
|
|
/*
|
|
|
|
* Retrieve the current desktop resolution.
|
|
|
|
*/
|
|
|
|
Common::Rect getDesktopResolution();
|
|
|
|
|
2021-08-14 14:33:05 +01:00
|
|
|
void getDisplayDpi(float *dpi, float *defaultDpi) const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the scaling mode based on the display DPI
|
|
|
|
*/
|
|
|
|
virtual float getDpiScalingFactor() const;
|
|
|
|
|
2017-10-23 22:36:04 -05:00
|
|
|
bool mouseIsGrabbed() const {
|
|
|
|
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
|
|
|
if (_window) {
|
|
|
|
return SDL_GetWindowGrab(_window) == SDL_TRUE;
|
|
|
|
}
|
2020-10-14 07:03:31 +01:00
|
|
|
#endif
|
2020-10-22 13:04:56 +01:00
|
|
|
return _inputGrabState;
|
2017-10-23 22:36:04 -05:00
|
|
|
}
|
BACKENDS: Refactor OpenGL & SDL graphics backends
This patch refactors the OpenGL and SDL graphics backends,
primarily to unify window scaling and mouse handling, and to
fix coordinate mapping between the ScummVM window and the
virtual game screen when they have different aspect ratios.
Unified code for these two backends has been moved to a new
header-only WindowedGraphicsManager class, so named because it
contains code for managing graphics managers that interact with
a windowing system and render virtual screens within a larger
physical content window.
The biggest behavioral change here is with the coordinate
system mapping:
Previously, mouse offsets were converted by mapping the whole
space within the window as input to the virtual game screen
without maintaining aspect ratio. This was done to prevent
'stickiness' when the mouse cursor was within the window but
outside of the virtual game screen, but it caused noticeable
distortion of mouse movement speed on the axis with blank
space.
Instead of introducing mouse speed distortion to prevent
stickiness, this patch changes coordinate transformation to
show the system cursor when the mouse moves outside of the virtual
game screen when mouse grab is off, or by holding the mouse inside
the virtual game screen (instead of the entire window) when mouse
grab is on.
This patch also improves some other properties of the
GraphicsManager/PaletteManager interfaces:
* Nullipotent operations (getWidth, getHeight, etc.) of the
PaletteManager/GraphicsManager interfaces are now const
* Methods marked `virtual` but not inherited by any subclass have
been de-virtualized
* Extra unnecessary calculations of hardware height in
SurfaceSdlGraphicsManager have been removed
* Methods have been renamed where appropriate for clarity
(setWindowSize -> handleResize, etc.)
* C++11 support improved with `override` specifier added on
overridden virtual methods in subclasses (primarily to avoid
myself accidentally creating new methods in the subclasses
by changing types/names during refactoring)
Additional refactoring can and should be done at some point to
continue to deduplicate code between the OpenGL and SDL backends.
Since the primary goal here was to improve the coordinate mapping,
full refactoring of these backends was not completed here.
2017-07-19 19:15:12 -05:00
|
|
|
|
2020-10-14 07:03:31 +01:00
|
|
|
bool mouseIsLocked() const {
|
|
|
|
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
|
|
|
return SDL_GetRelativeMouseMode() == SDL_TRUE;
|
|
|
|
#else
|
|
|
|
return _inputLockState;
|
|
|
|
#endif
|
|
|
|
}
|
BACKENDS: Refactor OpenGL & SDL graphics backends
This patch refactors the OpenGL and SDL graphics backends,
primarily to unify window scaling and mouse handling, and to
fix coordinate mapping between the ScummVM window and the
virtual game screen when they have different aspect ratios.
Unified code for these two backends has been moved to a new
header-only WindowedGraphicsManager class, so named because it
contains code for managing graphics managers that interact with
a windowing system and render virtual screens within a larger
physical content window.
The biggest behavioral change here is with the coordinate
system mapping:
Previously, mouse offsets were converted by mapping the whole
space within the window as input to the virtual game screen
without maintaining aspect ratio. This was done to prevent
'stickiness' when the mouse cursor was within the window but
outside of the virtual game screen, but it caused noticeable
distortion of mouse movement speed on the axis with blank
space.
Instead of introducing mouse speed distortion to prevent
stickiness, this patch changes coordinate transformation to
show the system cursor when the mouse moves outside of the virtual
game screen when mouse grab is off, or by holding the mouse inside
the virtual game screen (instead of the entire window) when mouse
grab is on.
This patch also improves some other properties of the
GraphicsManager/PaletteManager interfaces:
* Nullipotent operations (getWidth, getHeight, etc.) of the
PaletteManager/GraphicsManager interfaces are now const
* Methods marked `virtual` but not inherited by any subclass have
been de-virtualized
* Extra unnecessary calculations of hardware height in
SurfaceSdlGraphicsManager have been removed
* Methods have been renamed where appropriate for clarity
(setWindowSize -> handleResize, etc.)
* C++11 support improved with `override` specifier added on
overridden virtual methods in subclasses (primarily to avoid
myself accidentally creating new methods in the subclasses
by changing types/names during refactoring)
Additional refactoring can and should be done at some point to
continue to deduplicate code between the OpenGL and SDL backends.
Since the primary goal here was to improve the coordinate mapping,
full refactoring of these backends was not completed here.
2017-07-19 19:15:12 -05:00
|
|
|
|
2020-10-14 07:03:31 +01:00
|
|
|
private:
|
2020-04-16 12:28:55 +01:00
|
|
|
Common::Rect _desktopRes;
|
2020-10-22 13:04:56 +01:00
|
|
|
bool _inputGrabState, _inputLockState;
|
2020-04-16 12:28:55 +01:00
|
|
|
|
2015-02-16 00:49:42 +01:00
|
|
|
#if SDL_VERSION_ATLEAST(2, 0, 0)
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* @return The window ScummVM has setup with SDL.
|
|
|
|
*/
|
|
|
|
SDL_Window *getSDLWindow() const { return _window; }
|
|
|
|
|
2021-04-29 05:18:37 +01:00
|
|
|
/**
|
|
|
|
* @return The display containing the ScummVM window.
|
|
|
|
*/
|
|
|
|
int getDisplayIndex() const;
|
|
|
|
|
2015-02-16 00:49:42 +01:00
|
|
|
/**
|
2017-02-12 19:17:33 -06:00
|
|
|
* Creates or updates the SDL window.
|
2015-02-16 00:49:42 +01:00
|
|
|
*
|
|
|
|
* @param width Width of the window.
|
|
|
|
* @param height Height of the window.
|
|
|
|
* @param flags SDL flags passed to SDL_CreateWindow
|
|
|
|
* @return true on success, false otherwise
|
|
|
|
*/
|
2017-02-12 19:17:33 -06:00
|
|
|
bool createOrUpdateWindow(int width, int height, uint32 flags);
|
2015-02-16 00:49:42 +01:00
|
|
|
|
|
|
|
/**
|
2016-10-22 21:16:21 +03:00
|
|
|
* Destroys the current SDL window.
|
2015-02-16 00:49:42 +01:00
|
|
|
*/
|
|
|
|
void destroyWindow();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
SDL_Window *_window;
|
|
|
|
|
|
|
|
private:
|
2017-02-12 19:17:33 -06:00
|
|
|
uint32 _lastFlags;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Switching between software and OpenGL modes requires the window to be
|
|
|
|
* destroyed and recreated. These properties store the position of the last
|
|
|
|
* window so the new window will be created in the same place.
|
|
|
|
*/
|
|
|
|
int _lastX, _lastY;
|
|
|
|
|
2015-02-16 00:49:42 +01:00
|
|
|
Common::String _windowCaption;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2015-02-16 01:24:42 +01:00
|
|
|
class SdlIconlessWindow : public SdlWindow {
|
|
|
|
public:
|
|
|
|
virtual void setupIcon() {}
|
|
|
|
};
|
|
|
|
|
2015-02-16 00:49:42 +01:00
|
|
|
#endif
|