2014-09-09 06:46:02 +02:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 06:38:14 +01:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-09-09 06:46:02 +02:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2015-06-21 15:02:11 +02:00
|
|
|
#include <cmath>
|
2017-08-09 01:57:42 +02:00
|
|
|
#include <mutex>
|
2016-12-23 14:37:40 +01:00
|
|
|
#include "core/frontend/emu_window.h"
|
2017-08-09 01:57:42 +02:00
|
|
|
#include "core/frontend/input.h"
|
2017-01-28 11:33:35 +01:00
|
|
|
#include "core/settings.h"
|
2014-09-09 06:46:02 +02:00
|
|
|
|
2018-08-12 02:20:19 +02:00
|
|
|
namespace Frontend {
|
2022-11-17 16:37:30 +01:00
|
|
|
/// We need a global touch state that is shared across the different window instances
|
|
|
|
static std::weak_ptr<EmuWindow::TouchState> global_touch_state;
|
2018-08-12 02:20:19 +02:00
|
|
|
|
2019-09-17 04:36:16 +02:00
|
|
|
GraphicsContext::~GraphicsContext() = default;
|
|
|
|
|
2017-08-09 01:57:42 +02:00
|
|
|
class EmuWindow::TouchState : public Input::Factory<Input::TouchDevice>,
|
|
|
|
public std::enable_shared_from_this<TouchState> {
|
|
|
|
public:
|
|
|
|
std::unique_ptr<Input::TouchDevice> Create(const Common::ParamPackage&) override {
|
|
|
|
return std::make_unique<Device>(shared_from_this());
|
|
|
|
}
|
|
|
|
|
|
|
|
std::mutex mutex;
|
|
|
|
|
|
|
|
bool touch_pressed = false; ///< True if touchpad area is currently pressed, otherwise false
|
|
|
|
|
|
|
|
float touch_x = 0.0f; ///< Touchpad X-position
|
|
|
|
float touch_y = 0.0f; ///< Touchpad Y-position
|
|
|
|
|
|
|
|
private:
|
|
|
|
class Device : public Input::TouchDevice {
|
|
|
|
public:
|
|
|
|
explicit Device(std::weak_ptr<TouchState>&& touch_state) : touch_state(touch_state) {}
|
|
|
|
std::tuple<float, float, bool> GetStatus() const override {
|
|
|
|
if (auto state = touch_state.lock()) {
|
2019-04-01 18:29:59 +02:00
|
|
|
std::lock_guard guard{state->mutex};
|
2017-08-09 01:57:42 +02:00
|
|
|
return std::make_tuple(state->touch_x, state->touch_y, state->touch_pressed);
|
|
|
|
}
|
|
|
|
return std::make_tuple(0.0f, 0.0f, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::weak_ptr<TouchState> touch_state;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
EmuWindow::EmuWindow() {
|
2022-11-17 16:37:30 +01:00
|
|
|
CreateTouchState();
|
|
|
|
};
|
2017-08-09 01:57:42 +02:00
|
|
|
|
2022-11-17 16:37:30 +01:00
|
|
|
EmuWindow::EmuWindow(bool is_secondary_) : is_secondary{is_secondary_} {
|
|
|
|
CreateTouchState();
|
2017-08-09 01:57:42 +02:00
|
|
|
}
|
|
|
|
|
2022-11-17 16:37:30 +01:00
|
|
|
EmuWindow::~EmuWindow() = default;
|
2015-03-08 08:13:26 +01:00
|
|
|
/**
|
|
|
|
* Check if the given x/y coordinates are within the touchpad specified by the framebuffer layout
|
|
|
|
* @param layout FramebufferLayout object describing the framebuffer size and screen positions
|
|
|
|
* @param framebuffer_x Framebuffer x-coordinate to check
|
|
|
|
* @param framebuffer_y Framebuffer y-coordinate to check
|
|
|
|
* @return True if the coordinates are within the touchpad, otherwise false
|
|
|
|
*/
|
2016-05-03 08:07:17 +02:00
|
|
|
static bool IsWithinTouchscreen(const Layout::FramebufferLayout& layout, unsigned framebuffer_x,
|
2015-03-09 05:14:59 +01:00
|
|
|
unsigned framebuffer_y) {
|
2019-08-09 20:00:47 +02:00
|
|
|
if (Settings::values.render_3d == Settings::StereoRenderOption::SideBySide) {
|
2018-06-17 13:52:16 +02:00
|
|
|
return (framebuffer_y >= layout.bottom_screen.top &&
|
|
|
|
framebuffer_y < layout.bottom_screen.bottom &&
|
2019-01-23 14:46:40 +01:00
|
|
|
((framebuffer_x >= layout.bottom_screen.left / 2 &&
|
|
|
|
framebuffer_x < layout.bottom_screen.right / 2) ||
|
|
|
|
(framebuffer_x >= (layout.bottom_screen.left / 2) + (layout.width / 2) &&
|
|
|
|
framebuffer_x < (layout.bottom_screen.right / 2) + (layout.width / 2))));
|
2020-06-10 12:44:21 +02:00
|
|
|
} else if (Settings::values.render_3d == Settings::StereoRenderOption::CardboardVR) {
|
|
|
|
return (framebuffer_y >= layout.bottom_screen.top &&
|
|
|
|
framebuffer_y < layout.bottom_screen.bottom &&
|
|
|
|
((framebuffer_x >= layout.bottom_screen.left &&
|
|
|
|
framebuffer_x < layout.bottom_screen.right) ||
|
|
|
|
(framebuffer_x >= layout.cardboard.bottom_screen_right_eye + (layout.width / 2) &&
|
|
|
|
framebuffer_x < layout.cardboard.bottom_screen_right_eye +
|
|
|
|
layout.bottom_screen.GetWidth() + (layout.width / 2))));
|
2018-06-17 13:52:16 +02:00
|
|
|
} else {
|
|
|
|
return (framebuffer_y >= layout.bottom_screen.top &&
|
|
|
|
framebuffer_y < layout.bottom_screen.bottom &&
|
|
|
|
framebuffer_x >= layout.bottom_screen.left &&
|
|
|
|
framebuffer_x < layout.bottom_screen.right);
|
|
|
|
}
|
2015-03-08 08:13:26 +01:00
|
|
|
}
|
|
|
|
|
2019-02-27 14:54:40 +01:00
|
|
|
std::tuple<unsigned, unsigned> EmuWindow::ClipToTouchScreen(unsigned new_x, unsigned new_y) const {
|
2020-06-10 12:44:21 +02:00
|
|
|
if (new_x >= framebuffer_layout.width / 2) {
|
|
|
|
if (Settings::values.render_3d == Settings::StereoRenderOption::SideBySide)
|
2019-01-23 14:46:40 +01:00
|
|
|
new_x -= framebuffer_layout.width / 2;
|
2020-06-10 12:44:21 +02:00
|
|
|
else if (Settings::values.render_3d == Settings::StereoRenderOption::CardboardVR)
|
|
|
|
new_x -=
|
|
|
|
(framebuffer_layout.width / 2) - (framebuffer_layout.cardboard.user_x_shift * 2);
|
|
|
|
}
|
|
|
|
if (Settings::values.render_3d == Settings::StereoRenderOption::SideBySide) {
|
2019-01-23 14:46:40 +01:00
|
|
|
new_x = std::max(new_x, framebuffer_layout.bottom_screen.left / 2);
|
|
|
|
new_x = std::min(new_x, framebuffer_layout.bottom_screen.right / 2 - 1);
|
|
|
|
} else {
|
|
|
|
new_x = std::max(new_x, framebuffer_layout.bottom_screen.left);
|
|
|
|
new_x = std::min(new_x, framebuffer_layout.bottom_screen.right - 1);
|
|
|
|
}
|
2015-05-25 20:34:09 +02:00
|
|
|
|
2015-04-14 06:06:44 +02:00
|
|
|
new_y = std::max(new_y, framebuffer_layout.bottom_screen.top);
|
2016-09-18 02:38:01 +02:00
|
|
|
new_y = std::min(new_y, framebuffer_layout.bottom_screen.bottom - 1);
|
2015-04-14 06:06:44 +02:00
|
|
|
|
|
|
|
return std::make_tuple(new_x, new_y);
|
|
|
|
}
|
|
|
|
|
2022-11-17 16:37:30 +01:00
|
|
|
void EmuWindow::CreateTouchState() {
|
|
|
|
if (touch_state = global_touch_state.lock()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
touch_state = std::make_shared<TouchState>();
|
|
|
|
Input::RegisterFactory<Input::TouchDevice>("emu_window", touch_state);
|
|
|
|
global_touch_state = touch_state;
|
|
|
|
}
|
|
|
|
|
2020-05-30 15:28:34 +02:00
|
|
|
bool EmuWindow::TouchPressed(unsigned framebuffer_x, unsigned framebuffer_y) {
|
2015-03-09 05:14:59 +01:00
|
|
|
if (!IsWithinTouchscreen(framebuffer_layout, framebuffer_x, framebuffer_y))
|
2020-05-30 15:28:34 +02:00
|
|
|
return false;
|
2015-03-08 08:13:26 +01:00
|
|
|
|
2020-06-10 12:44:21 +02:00
|
|
|
if (framebuffer_x >= framebuffer_layout.width / 2) {
|
|
|
|
if (Settings::values.render_3d == Settings::StereoRenderOption::SideBySide)
|
|
|
|
framebuffer_x -= framebuffer_layout.width / 2;
|
|
|
|
else if (Settings::values.render_3d == Settings::StereoRenderOption::CardboardVR)
|
|
|
|
framebuffer_x -=
|
|
|
|
(framebuffer_layout.width / 2) - (framebuffer_layout.cardboard.user_x_shift * 2);
|
|
|
|
}
|
2019-04-01 18:29:59 +02:00
|
|
|
std::lock_guard guard(touch_state->mutex);
|
2019-08-09 20:00:47 +02:00
|
|
|
if (Settings::values.render_3d == Settings::StereoRenderOption::SideBySide) {
|
2018-06-17 13:52:16 +02:00
|
|
|
touch_state->touch_x =
|
|
|
|
static_cast<float>(framebuffer_x - framebuffer_layout.bottom_screen.left / 2) /
|
|
|
|
(framebuffer_layout.bottom_screen.right / 2 -
|
|
|
|
framebuffer_layout.bottom_screen.left / 2);
|
|
|
|
} else {
|
|
|
|
touch_state->touch_x =
|
|
|
|
static_cast<float>(framebuffer_x - framebuffer_layout.bottom_screen.left) /
|
|
|
|
(framebuffer_layout.bottom_screen.right - framebuffer_layout.bottom_screen.left);
|
|
|
|
}
|
2017-08-09 01:57:42 +02:00
|
|
|
touch_state->touch_y =
|
|
|
|
static_cast<float>(framebuffer_y - framebuffer_layout.bottom_screen.top) /
|
|
|
|
(framebuffer_layout.bottom_screen.bottom - framebuffer_layout.bottom_screen.top);
|
2015-03-08 08:13:26 +01:00
|
|
|
|
2019-10-26 01:21:10 +02:00
|
|
|
if (!framebuffer_layout.is_rotated) {
|
|
|
|
std::swap(touch_state->touch_x, touch_state->touch_y);
|
|
|
|
touch_state->touch_x = 1.f - touch_state->touch_x;
|
|
|
|
}
|
|
|
|
|
2017-08-09 01:57:42 +02:00
|
|
|
touch_state->touch_pressed = true;
|
2020-05-30 15:28:34 +02:00
|
|
|
return true;
|
2015-03-08 08:13:26 +01:00
|
|
|
}
|
|
|
|
|
2015-03-09 05:14:59 +01:00
|
|
|
void EmuWindow::TouchReleased() {
|
2019-04-01 18:29:59 +02:00
|
|
|
std::lock_guard guard{touch_state->mutex};
|
2017-08-09 01:57:42 +02:00
|
|
|
touch_state->touch_pressed = false;
|
|
|
|
touch_state->touch_x = 0;
|
|
|
|
touch_state->touch_y = 0;
|
2015-03-08 08:13:26 +01:00
|
|
|
}
|
|
|
|
|
2015-03-09 05:14:59 +01:00
|
|
|
void EmuWindow::TouchMoved(unsigned framebuffer_x, unsigned framebuffer_y) {
|
2017-08-09 01:57:42 +02:00
|
|
|
if (!touch_state->touch_pressed)
|
2015-03-09 05:14:59 +01:00
|
|
|
return;
|
2015-03-08 08:13:26 +01:00
|
|
|
|
2015-04-14 06:06:44 +02:00
|
|
|
if (!IsWithinTouchscreen(framebuffer_layout, framebuffer_x, framebuffer_y))
|
|
|
|
std::tie(framebuffer_x, framebuffer_y) = ClipToTouchScreen(framebuffer_x, framebuffer_y);
|
|
|
|
|
|
|
|
TouchPressed(framebuffer_x, framebuffer_y);
|
2015-03-08 08:13:26 +01:00
|
|
|
}
|
|
|
|
|
2019-07-22 20:58:54 +02:00
|
|
|
void EmuWindow::UpdateCurrentFramebufferLayout(unsigned width, unsigned height,
|
|
|
|
bool is_portrait_mode) {
|
2016-05-03 08:07:17 +02:00
|
|
|
Layout::FramebufferLayout layout;
|
2020-01-22 16:51:04 +01:00
|
|
|
const auto layout_option = Settings::values.layout_option;
|
|
|
|
const auto min_size =
|
2020-01-21 22:44:04 +01:00
|
|
|
Layout::GetMinimumSizeFromLayout(layout_option, Settings::values.upright_screen);
|
|
|
|
|
2017-02-01 09:22:47 +01:00
|
|
|
if (Settings::values.custom_layout == true) {
|
|
|
|
layout = Layout::CustomFrameLayout(width, height);
|
|
|
|
} else {
|
2020-01-21 22:44:04 +01:00
|
|
|
width = std::max(width, min_size.first);
|
|
|
|
height = std::max(height, min_size.second);
|
2019-07-22 20:58:54 +02:00
|
|
|
|
|
|
|
// If in portrait mode, only the MobilePortrait option really makes sense
|
|
|
|
const Settings::LayoutOption layout_option = is_portrait_mode
|
|
|
|
? Settings::LayoutOption::MobilePortrait
|
|
|
|
: Settings::values.layout_option;
|
|
|
|
|
2020-01-21 22:44:04 +01:00
|
|
|
switch (layout_option) {
|
2017-02-01 09:22:47 +01:00
|
|
|
case Settings::LayoutOption::SingleScreen:
|
2020-01-21 22:44:04 +01:00
|
|
|
layout = Layout::SingleFrameLayout(width, height, Settings::values.swap_screen,
|
|
|
|
Settings::values.upright_screen);
|
2017-02-01 09:22:47 +01:00
|
|
|
break;
|
|
|
|
case Settings::LayoutOption::LargeScreen:
|
2020-01-21 22:44:04 +01:00
|
|
|
layout = Layout::LargeFrameLayout(width, height, Settings::values.swap_screen,
|
|
|
|
Settings::values.upright_screen);
|
2017-02-01 09:22:47 +01:00
|
|
|
break;
|
2017-08-25 23:53:07 +02:00
|
|
|
case Settings::LayoutOption::SideScreen:
|
2020-01-21 22:44:04 +01:00
|
|
|
layout = Layout::SideFrameLayout(width, height, Settings::values.swap_screen,
|
|
|
|
Settings::values.upright_screen);
|
2017-08-25 23:53:07 +02:00
|
|
|
break;
|
2022-11-17 16:37:30 +01:00
|
|
|
#ifndef ANDROID
|
|
|
|
case Settings::LayoutOption::SeparateWindows:
|
|
|
|
layout = Layout::SeparateWindowsLayout(width, height, is_secondary,
|
|
|
|
Settings::values.upright_screen);
|
|
|
|
break;
|
|
|
|
#endif
|
2019-07-21 04:59:38 +02:00
|
|
|
case Settings::LayoutOption::MobilePortrait:
|
|
|
|
layout = Layout::MobilePortraitFrameLayout(width, height, Settings::values.swap_screen);
|
|
|
|
break;
|
|
|
|
case Settings::LayoutOption::MobileLandscape:
|
|
|
|
layout = Layout::MobileLandscapeFrameLayout(width, height, Settings::values.swap_screen,
|
|
|
|
2.25f, false);
|
|
|
|
break;
|
2017-02-01 09:22:47 +01:00
|
|
|
case Settings::LayoutOption::Default:
|
|
|
|
default:
|
2020-01-21 22:44:04 +01:00
|
|
|
layout = Layout::DefaultFrameLayout(width, height, Settings::values.swap_screen,
|
|
|
|
Settings::values.upright_screen);
|
2017-02-01 09:22:47 +01:00
|
|
|
break;
|
|
|
|
}
|
2020-01-21 22:44:04 +01:00
|
|
|
UpdateMinimumWindowSize(min_size);
|
2015-03-07 23:21:19 +01:00
|
|
|
}
|
2020-06-10 12:44:21 +02:00
|
|
|
if (Settings::values.render_3d == Settings::StereoRenderOption::CardboardVR) {
|
|
|
|
layout = Layout::GetCardboardSettings(layout);
|
|
|
|
}
|
2016-05-03 08:07:17 +02:00
|
|
|
NotifyFramebufferLayoutChanged(layout);
|
2015-03-07 23:21:19 +01:00
|
|
|
}
|
2018-08-12 02:20:19 +02:00
|
|
|
|
2020-01-22 16:51:04 +01:00
|
|
|
void EmuWindow::UpdateMinimumWindowSize(std::pair<unsigned, unsigned> min_size) {
|
|
|
|
WindowConfig new_config = config;
|
|
|
|
new_config.min_client_area_size = min_size;
|
|
|
|
SetConfig(new_config);
|
|
|
|
ProcessConfigurationChanges();
|
|
|
|
}
|
|
|
|
|
2018-08-12 02:20:19 +02:00
|
|
|
} // namespace Frontend
|