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"
|
2016-12-11 21:32:41 +00:00
|
|
|
#include "common/profiler_reporting.h"
|
2016-12-23 13:37:40 +00:00
|
|
|
#include "core/frontend/emu_window.h"
|
|
|
|
#include "core/frontend/key_map.h"
|
2015-03-07 22:21:19 +00:00
|
|
|
#include "video_core/video_core.h"
|
2014-09-09 04:46:02 +00:00
|
|
|
|
2016-05-12 10:09:36 +00:00
|
|
|
void EmuWindow::ButtonPressed(Service::HID::PadState pad) {
|
|
|
|
pad_state.hex |= pad.hex;
|
2014-09-09 04:46:02 +00:00
|
|
|
}
|
|
|
|
|
2016-05-12 10:09:36 +00:00
|
|
|
void EmuWindow::ButtonReleased(Service::HID::PadState pad) {
|
|
|
|
pad_state.hex &= ~pad.hex;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmuWindow::CirclePadUpdated(float x, float y) {
|
|
|
|
constexpr int MAX_CIRCLEPAD_POS = 0x9C; // Max value for a circle pad position
|
|
|
|
|
|
|
|
// Make sure the coordinates are in the unit circle,
|
|
|
|
// otherwise normalize it.
|
|
|
|
float r = x * x + y * y;
|
|
|
|
if (r > 1) {
|
|
|
|
r = std::sqrt(r);
|
|
|
|
x /= r;
|
|
|
|
y /= r;
|
|
|
|
}
|
|
|
|
|
|
|
|
circle_pad_x = static_cast<s16>(x * MAX_CIRCLEPAD_POS);
|
|
|
|
circle_pad_y = static_cast<s16>(y * MAX_CIRCLEPAD_POS);
|
2014-09-09 04:46:02 +00:00
|
|
|
}
|
2015-03-07 22:21:19 +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
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
touch_x = VideoCore::kScreenBottomWidth *
|
|
|
|
(framebuffer_x - framebuffer_layout.bottom_screen.left) /
|
|
|
|
(framebuffer_layout.bottom_screen.right - framebuffer_layout.bottom_screen.left);
|
|
|
|
touch_y = VideoCore::kScreenBottomHeight *
|
|
|
|
(framebuffer_y - framebuffer_layout.bottom_screen.top) /
|
|
|
|
(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;
|
2016-02-11 17:41:15 +00:00
|
|
|
pad_state.touch.Assign(1);
|
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;
|
2016-02-11 17:41:15 +00:00
|
|
|
pad_state.touch.Assign(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-12-11 21:32:41 +00:00
|
|
|
void EmuWindow::AccelerometerChanged(float x, float y, float z) {
|
|
|
|
constexpr float coef = 512;
|
|
|
|
|
2016-12-29 19:18:36 +00:00
|
|
|
std::lock_guard<std::mutex> lock(accel_mutex);
|
|
|
|
|
2016-12-11 21:32:41 +00:00
|
|
|
// TODO(wwylele): do a time stretch as it in GyroscopeChanged
|
|
|
|
// The time stretch formula should be like
|
|
|
|
// stretched_vector = (raw_vector - gravity) * stretch_ratio + gravity
|
|
|
|
accel_x = x * coef;
|
|
|
|
accel_y = y * coef;
|
|
|
|
accel_z = z * coef;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmuWindow::GyroscopeChanged(float x, float y, float z) {
|
|
|
|
constexpr float FULL_FPS = 60;
|
|
|
|
float coef = GetGyroscopeRawToDpsCoefficient();
|
|
|
|
float stretch =
|
|
|
|
FULL_FPS / Common::Profiling::GetTimingResultsAggregator()->GetAggregatedResults().fps;
|
2016-12-29 19:18:36 +00:00
|
|
|
std::lock_guard<std::mutex> lock(gyro_mutex);
|
2016-12-11 21:32:41 +00:00
|
|
|
gyro_x = x * coef * stretch;
|
|
|
|
gyro_y = y * coef * stretch;
|
|
|
|
gyro_z = z * coef * stretch;
|
|
|
|
}
|
|
|
|
|
2016-05-03 06:07:17 +00:00
|
|
|
void EmuWindow::UpdateCurrentFramebufferLayout(unsigned width, unsigned height) {
|
|
|
|
Layout::FramebufferLayout layout;
|
|
|
|
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
|
|
|
}
|