yuzu/src/core/frontend/emu_window.cpp

47 lines
1.6 KiB
C++
Raw Normal View History

2022-07-27 22:06:50 +04:00
// SPDX-FileCopyrightText: 2014 Citra Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2020-12-28 19:15:37 +04:00
#include <mutex>
#include "core/frontend/emu_window.h"
namespace Core::Frontend {
GraphicsContext::~GraphicsContext() = default;
EmuWindow::EmuWindow() {
// TODO: Find a better place to set this.
config.min_client_area_size =
std::make_pair(Layout::MinimumSize::Width, Layout::MinimumSize::Height);
active_config = config;
}
2021-11-15 05:13:48 +04:00
EmuWindow::~EmuWindow() {}
2020-12-28 19:15:37 +04:00
2021-11-15 05:13:48 +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-17 06:19:34 +04:00
const float x =
2020-12-28 19:15:37 +04:00
static_cast<float>(framebuffer_x - framebuffer_layout.screen.left) /
static_cast<float>(framebuffer_layout.screen.right - framebuffer_layout.screen.left);
2021-01-17 06:19:34 +04:00
const float y =
2020-12-28 19:15:37 +04:00
static_cast<float>(framebuffer_y - framebuffer_layout.screen.top) /
static_cast<float>(framebuffer_layout.screen.bottom - framebuffer_layout.screen.top);
2021-11-15 05:13:48 +04:00
return std::make_pair(x, y);
2021-11-15 02:19:09 +04:00
}
2020-12-28 19:15:37 +04:00
2021-11-15 05:13:48 +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);
2021-11-15 02:19:09 +04:00
2021-11-15 05:13:48 +04:00
new_y = std::max(new_y, framebuffer_layout.screen.top);
new_y = std::min(new_y, framebuffer_layout.screen.bottom - 1);
2021-11-15 02:19:09 +04:00
2021-11-15 05:13:48 +04:00
return std::make_pair(new_x, new_y);
2020-12-28 19:15:37 +04:00
}
2021-04-23 23:28:27 +04:00
void EmuWindow::UpdateCurrentFramebufferLayout(u32 width, u32 height) {
2020-12-28 19:15:37 +04:00
NotifyFramebufferLayoutChanged(Layout::DefaultFrameLayout(width, height));
}
} // namespace Core::Frontend