Files
eden/src/core/frontend/emu_window.h
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

200 lines
7.0 KiB
C++
Raw Normal View History

2022-05-15 02:06:02 +02:00
// SPDX-FileCopyrightText: 2014 Citra Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2014-04-08 23:18:23 -04:00
#pragma once
#include <memory>
2015-06-21 14:02:11 +01:00
#include <utility>
2015-05-06 04:06:12 -03:00
#include "common/common_types.h"
2017-05-27 16:10:25 -07:00
#include "core/frontend/framebuffer_layout.h"
2015-06-21 14:02:11 +01:00
2018-08-11 20:20:19 -04:00
namespace Core::Frontend {
class GraphicsContext;
/// Information for the Graphics Backends signifying what type of screen pointer is in
/// WindowInformation
enum class WindowSystemType {
Headless,
Windows,
X11,
Wayland,
2022-11-22 19:14:46 -05:00
Cocoa,
Android,
};
2014-11-13 18:12:27 +01:00
/**
* Abstraction class used to provide an interface between emulation code and the frontend
* (e.g. SDL, QGLWidget, GLFW, etc...).
*
* Design notes on the interaction between EmuWindow and the emulation core:
* - Generally, decisions on anything visible to the user should be left up to the GUI.
* For example, the emulation core should not try to dictate some window title or size.
* This stuff is not the core's business and only causes problems with regards to thread-safety
* anyway.
* - Under certain circumstances, it may be desirable for the core to politely request the GUI
* to set e.g. a minimum window size. However, the GUI should always be free to ignore any
* such hints.
* - EmuWindow may expose some of its state as read-only to the emulation core, however care
* should be taken to make sure the provided information is self-consistent. This requires
* some sort of synchronization (most of this is still a TODO).
* - DO NOT TREAT THIS CLASS AS A GUI TOOLKIT ABSTRACTION LAYER. That's not what it is. Please
* re-read the upper points again and think about it if you don't see this.
2014-11-13 18:12:27 +01:00
*/
2020-03-24 20:58:49 -06:00
class EmuWindow {
public:
2014-11-13 18:12:27 +01:00
/// Data structure to store emuwindow configuration
2014-09-12 17:06:13 -07:00
struct WindowConfig {
bool fullscreen = false;
int res_width = 0;
int res_height = 0;
2021-04-23 11:17:33 -04:00
std::pair<u32, u32> min_client_area_size;
};
/// Data describing host window system information
struct WindowSystemInfo {
// Window system type. Determines which GL context or Vulkan WSI is used.
WindowSystemType type = WindowSystemType::Headless;
// Connection to a display server. This is used on X11 and Wayland platforms.
void* display_connection = nullptr;
// Render surface. This is a pointer to the native window handle, which depends
// on the platform. e.g. HWND for Windows, Window for X11. If the surface is
// set to nullptr, the video backend will run in headless mode.
void* render_surface = nullptr;
// Scale of the render surface. For hidpi systems, this will be >1.
float render_surface_scale = 1.0f;
};
/// Called from GPU thread when a frame is displayed.
virtual void OnFrameDisplayed() {}
2019-01-11 21:06:34 -07:00
/**
2020-03-24 20:58:49 -06:00
* Returns a GraphicsContext that the frontend provides to be used for rendering.
2019-01-11 21:06:34 -07:00
*/
2020-03-24 20:58:49 -06:00
virtual std::unique_ptr<GraphicsContext> CreateSharedContext() const = 0;
2020-01-21 16:40:53 -03:00
/// Returns if window is shown (not minimized)
virtual bool IsShown() const = 0;
2014-11-13 18:12:27 +01:00
/**
* Returns currently active configuration.
2016-09-18 09:38:01 +09:00
* @note Accesses to the returned object need not be consistent because it may be modified in
* another thread
2014-11-13 18:12:27 +01:00
*/
const WindowConfig& GetActiveConfig() const {
return active_config;
2014-04-08 23:18:23 -04:00
}
bool StrictContextRequired() const {
return strict_context_required;
}
2014-11-13 18:12:27 +01:00
/**
2016-09-18 09:38:01 +09:00
* Requests the internal configuration to be replaced by the specified argument at some point in
* the future.
* @note This method is thread-safe, because it delays configuration changes to the GUI event
* loop. Hence there is no guarantee on when the requested configuration will be active.
2014-11-13 18:12:27 +01:00
*/
2014-09-12 17:06:13 -07:00
void SetConfig(const WindowConfig& val) {
config = val;
2014-04-08 23:18:23 -04:00
}
/**
* Returns system information about the drawing area.
*/
const WindowSystemInfo& GetWindowInfo() const {
return window_info;
}
/**
* Gets the framebuffer layout (width, height, and screen regions)
* @note This method is thread-safe
*/
2016-05-03 00:07:17 -06:00
const Layout::FramebufferLayout& GetFramebufferLayout() const {
2015-03-07 17:21:19 -05:00
return framebuffer_layout;
2014-04-08 23:18:23 -04:00
}
2016-05-03 00:07:17 -06:00
/**
2016-11-05 02:58:11 -06:00
* Convenience method to update the current frame layout
2016-05-03 00:07:17 -06:00
* Read from the current settings to determine which layout to use.
*/
2021-04-23 11:17:33 -04:00
void UpdateCurrentFramebufferLayout(u32 width, u32 height);
2016-05-03 00:07:17 -06:00
protected:
explicit EmuWindow();
virtual ~EmuWindow();
2014-11-13 18:12:27 +01:00
/**
* Processes any pending configuration changes from the last SetConfig call.
* This method invokes OnMinimalClientAreaChangeRequest if the corresponding configuration
* field changed.
2014-11-13 18:12:27 +01:00
* @note Implementations will usually want to call this from the GUI thread.
2014-11-13 20:31:34 +01:00
* @todo Actually call this in existing implementations.
2014-11-13 18:12:27 +01:00
*/
void ProcessConfigurationChanges() {
// TODO: For proper thread safety, we should eventually implement a proper
// multiple-writer/single-reader queue...
if (config.min_client_area_size != active_config.min_client_area_size) {
OnMinimalClientAreaChangeRequest(config.min_client_area_size);
config.min_client_area_size = active_config.min_client_area_size;
}
}
/**
2015-03-07 17:21:19 -05:00
* Update framebuffer layout with the given parameter.
2014-11-13 18:12:27 +01:00
* @note EmuWindow implementations will usually use this in window resize event handlers.
*/
2016-05-03 00:07:17 -06:00
void NotifyFramebufferLayoutChanged(const Layout::FramebufferLayout& layout) {
2015-03-07 17:21:19 -05:00
framebuffer_layout = layout;
}
2014-11-13 18:12:27 +01:00
/**
* Update internal client area size with the given parameter.
* @note EmuWindow implementations will usually use this in window resize event handlers.
*/
2021-04-23 11:17:33 -04:00
void NotifyClientAreaSizeChanged(std::pair<u32, u32> size) {
client_area_width = size.first;
client_area_height = size.second;
}
2021-09-20 19:50:30 -05:00
/**
2023-03-11 22:10:38 -05:00
* Converts a screen position into the equivalent touchscreen position.
2021-09-20 19:50:30 -05:00
*/
std::pair<f32, f32> MapToTouchScreen(u32 framebuffer_x, u32 framebuffer_y) const;
/**
* Clip the provided coordinates to be inside the touchscreen area.
*/
std::pair<u32, u32> ClipToTouchScreen(u32 new_x, u32 new_y) const;
WindowSystemInfo window_info;
bool strict_context_required = false;
private:
/**
* Handler called when the minimal client area was requested to be changed via SetConfig.
2016-09-18 09:38:01 +09:00
* For the request to be honored, EmuWindow implementations will usually reimplement this
* function.
*/
2021-04-23 11:17:33 -04:00
virtual void OnMinimalClientAreaChangeRequest(std::pair<u32, u32>) {
// By default, ignore this request and do nothing.
}
2016-05-03 00:07:17 -06:00
Layout::FramebufferLayout framebuffer_layout; ///< Current framebuffer layout
2021-04-23 11:17:33 -04:00
u32 client_area_width; ///< Current client width, should be set by window impl.
u32 client_area_height; ///< Current client height, should be set by window impl.
2016-09-18 09:38:01 +09:00
WindowConfig config; ///< Internal configuration (changes pending for being applied in
/// ProcessConfigurationChanges)
WindowConfig active_config; ///< Internal active configuration
};
2018-08-11 20:20:19 -04:00
} // namespace Core::Frontend