2014-09-09 00:46:02 -04:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 00:38:14 -05:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-09-09 00:46:02 -04:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2017-08-08 19:57:42 -04:00
|
|
|
#include <mutex>
|
2016-12-23 08:37:40 -05:00
|
|
|
#include "core/frontend/emu_window.h"
|
2014-09-09 00:46:02 -04:00
|
|
|
|
2018-08-11 20:20:19 -04:00
|
|
|
namespace Core::Frontend {
|
|
|
|
|
2019-05-04 01:47:16 -04:00
|
|
|
GraphicsContext::~GraphicsContext() = default;
|
|
|
|
|
2017-08-08 19:57:42 -04:00
|
|
|
EmuWindow::EmuWindow() {
|
|
|
|
// TODO: Find a better place to set this.
|
2018-01-09 22:36:07 -05:00
|
|
|
config.min_client_area_size =
|
2020-05-15 16:22:27 -04:00
|
|
|
std::make_pair(Layout::MinimumSize::Width, Layout::MinimumSize::Height);
|
2017-08-08 19:57:42 -04:00
|
|
|
active_config = config;
|
2015-04-14 00:06:44 -04:00
|
|
|
}
|
|
|
|
|
2021-09-20 20:50:30 -04:00
|
|
|
EmuWindow::~EmuWindow() {}
|
2015-03-08 03:13:26 -04:00
|
|
|
|
2021-09-20 20:50:30 -04:00
|
|
|
std::pair<f32, f32> EmuWindow::MapToTouchScreen(u32 framebuffer_x, u32 framebuffer_y) const {
|
|
|
|
std::tie(framebuffer_x, framebuffer_y) = ClipToTouchScreen(framebuffer_x, framebuffer_y);
|
2021-01-02 23:04:50 -05:00
|
|
|
const float x =
|
2020-10-13 08:10:50 -04:00
|
|
|
static_cast<float>(framebuffer_x - framebuffer_layout.screen.left) /
|
|
|
|
static_cast<float>(framebuffer_layout.screen.right - framebuffer_layout.screen.left);
|
2021-01-02 23:04:50 -05:00
|
|
|
const float y =
|
2020-10-13 08:10:50 -04:00
|
|
|
static_cast<float>(framebuffer_y - framebuffer_layout.screen.top) /
|
|
|
|
static_cast<float>(framebuffer_layout.screen.bottom - framebuffer_layout.screen.top);
|
2015-03-08 03:13:26 -04:00
|
|
|
|
2021-09-20 20:50:30 -04:00
|
|
|
return std::make_pair(x, y);
|
2015-03-08 03:13:26 -04:00
|
|
|
}
|
|
|
|
|
2021-09-20 20:50:30 -04:00
|
|
|
std::pair<u32, u32> EmuWindow::ClipToTouchScreen(u32 new_x, u32 new_y) const {
|
|
|
|
new_x = std::max(new_x, framebuffer_layout.screen.left);
|
|
|
|
new_x = std::min(new_x, framebuffer_layout.screen.right - 1);
|
2015-03-08 03:13:26 -04:00
|
|
|
|
2021-09-20 20:50:30 -04:00
|
|
|
new_y = std::max(new_y, framebuffer_layout.screen.top);
|
|
|
|
new_y = std::min(new_y, framebuffer_layout.screen.bottom - 1);
|
2015-04-14 00:06:44 -04:00
|
|
|
|
2021-09-20 20:50:30 -04:00
|
|
|
return std::make_pair(new_x, new_y);
|
2015-03-08 03:13:26 -04:00
|
|
|
}
|
|
|
|
|
2021-04-23 11:17:33 -04:00
|
|
|
void EmuWindow::UpdateCurrentFramebufferLayout(u32 width, u32 height) {
|
2018-01-09 22:36:07 -05:00
|
|
|
NotifyFramebufferLayoutChanged(Layout::DefaultFrameLayout(width, height));
|
2015-03-07 17:21:19 -05:00
|
|
|
}
|
2018-08-11 20:20:19 -04:00
|
|
|
|
|
|
|
} // namespace Core::Frontend
|