2014-09-09 04:46:02 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-09-09 04:46:02 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2015-06-21 13:02:11 +00:00
|
|
|
#include <algorithm>
|
|
|
|
#include <cmath>
|
|
|
|
#include "common/assert.h"
|
2017-05-28 01:06:59 +00:00
|
|
|
#include "core/3ds.h"
|
2017-02-20 02:18:26 +00:00
|
|
|
#include "core/core.h"
|
2016-12-23 13:37:40 +00:00
|
|
|
#include "core/frontend/emu_window.h"
|
2017-01-28 10:33:35 +00:00
|
|
|
#include "core/settings.h"
|
2014-09-09 04:46:02 +00:00
|
|
|
|
2015-03-08 07:13:26 +00: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 06:07:17 +00:00
|
|
|
static bool IsWithinTouchscreen(const Layout::FramebufferLayout& layout, unsigned framebuffer_x,
|
2015-03-09 04:14:59 +00:00
|
|
|
unsigned framebuffer_y) {
|
2016-09-18 00:38:01 +00:00
|
|
|
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 07:13:26 +00:00
|
|
|
}
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
std::tuple<unsigned, unsigned> EmuWindow::ClipToTouchScreen(unsigned new_x, unsigned new_y) {
|
2015-04-14 04:06:44 +00:00
|
|
|
new_x = std::max(new_x, framebuffer_layout.bottom_screen.left);
|
2016-09-18 00:38:01 +00:00
|
|
|
new_x = std::min(new_x, framebuffer_layout.bottom_screen.right - 1);
|
2015-05-25 18:34:09 +00:00
|
|
|
|
2015-04-14 04:06:44 +00:00
|
|
|
new_y = std::max(new_y, framebuffer_layout.bottom_screen.top);
|
2016-09-18 00:38:01 +00:00
|
|
|
new_y = std::min(new_y, framebuffer_layout.bottom_screen.bottom - 1);
|
2015-04-14 04:06:44 +00:00
|
|
|
|
|
|
|
return std::make_tuple(new_x, new_y);
|
|
|
|
}
|
|
|
|
|
2015-03-09 04:14:59 +00:00
|
|
|
void EmuWindow::TouchPressed(unsigned framebuffer_x, unsigned framebuffer_y) {
|
|
|
|
if (!IsWithinTouchscreen(framebuffer_layout, framebuffer_x, framebuffer_y))
|
|
|
|
return;
|
2015-03-08 07:13:26 +00:00
|
|
|
|
2017-05-28 01:06:59 +00:00
|
|
|
touch_x = Core::kScreenBottomWidth * (framebuffer_x - framebuffer_layout.bottom_screen.left) /
|
2016-09-18 00:38:01 +00:00
|
|
|
(framebuffer_layout.bottom_screen.right - framebuffer_layout.bottom_screen.left);
|
2017-05-28 01:06:59 +00:00
|
|
|
touch_y = Core::kScreenBottomHeight * (framebuffer_y - framebuffer_layout.bottom_screen.top) /
|
2016-09-18 00:38:01 +00:00
|
|
|
(framebuffer_layout.bottom_screen.bottom - framebuffer_layout.bottom_screen.top);
|
2015-03-08 07:13:26 +00:00
|
|
|
|
2015-03-09 04:14:59 +00:00
|
|
|
touch_pressed = true;
|
2015-03-08 07:13:26 +00:00
|
|
|
}
|
|
|
|
|
2015-03-09 04:14:59 +00:00
|
|
|
void EmuWindow::TouchReleased() {
|
|
|
|
touch_pressed = false;
|
|
|
|
touch_x = 0;
|
|
|
|
touch_y = 0;
|
2015-03-08 07:13:26 +00:00
|
|
|
}
|
|
|
|
|
2015-03-09 04:14:59 +00:00
|
|
|
void EmuWindow::TouchMoved(unsigned framebuffer_x, unsigned framebuffer_y) {
|
|
|
|
if (!touch_pressed)
|
|
|
|
return;
|
2015-03-08 07:13:26 +00:00
|
|
|
|
2015-04-14 04:06:44 +00: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 07:13:26 +00:00
|
|
|
}
|
|
|
|
|
2016-05-03 06:07:17 +00:00
|
|
|
void EmuWindow::UpdateCurrentFramebufferLayout(unsigned width, unsigned height) {
|
|
|
|
Layout::FramebufferLayout layout;
|
2017-02-01 08:22:47 +00:00
|
|
|
if (Settings::values.custom_layout == true) {
|
|
|
|
layout = Layout::CustomFrameLayout(width, height);
|
|
|
|
} else {
|
|
|
|
switch (Settings::values.layout_option) {
|
|
|
|
case Settings::LayoutOption::SingleScreen:
|
|
|
|
layout = Layout::SingleFrameLayout(width, height, Settings::values.swap_screen);
|
|
|
|
break;
|
|
|
|
case Settings::LayoutOption::LargeScreen:
|
|
|
|
layout = Layout::LargeFrameLayout(width, height, Settings::values.swap_screen);
|
|
|
|
break;
|
|
|
|
case Settings::LayoutOption::Default:
|
|
|
|
default:
|
|
|
|
layout = Layout::DefaultFrameLayout(width, height, Settings::values.swap_screen);
|
|
|
|
break;
|
|
|
|
}
|
2015-03-07 22:21:19 +00:00
|
|
|
}
|
2016-05-03 06:07:17 +00:00
|
|
|
NotifyFramebufferLayoutChanged(layout);
|
2015-03-07 22:21:19 +00:00
|
|
|
}
|