2015-01-18 23:07:48 +00:00
|
|
|
// Copyright 2015 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2017-01-20 20:46:39 +00:00
|
|
|
#include <algorithm>
|
2016-06-11 04:59:38 +00:00
|
|
|
#include <cmath>
|
2016-09-18 00:38:01 +00:00
|
|
|
#include "common/logging/log.h"
|
2017-08-08 18:34:17 +00:00
|
|
|
#include "core/3ds.h"
|
2017-08-06 19:54:19 +00:00
|
|
|
#include "core/core.h"
|
2015-03-16 16:16:59 +00:00
|
|
|
#include "core/core_timing.h"
|
2017-12-16 14:55:19 +00:00
|
|
|
#include "core/hle/ipc_helpers.h"
|
2015-01-18 23:07:48 +00:00
|
|
|
#include "core/hle/kernel/event.h"
|
2017-06-06 08:29:46 +00:00
|
|
|
#include "core/hle/kernel/handle_table.h"
|
2015-01-18 23:07:48 +00:00
|
|
|
#include "core/hle/kernel/shared_memory.h"
|
2019-01-18 04:48:50 +00:00
|
|
|
#include "core/hle/kernel/shared_page.h"
|
2016-09-21 06:52:38 +00:00
|
|
|
#include "core/hle/service/hid/hid.h"
|
2016-09-20 15:21:23 +00:00
|
|
|
#include "core/hle/service/hid/hid_spvr.h"
|
|
|
|
#include "core/hle/service/hid/hid_user.h"
|
|
|
|
#include "core/hle/service/service.h"
|
2017-12-17 03:43:09 +00:00
|
|
|
#include "core/movie.h"
|
|
|
|
#include "video_core/video_core.h"
|
2015-03-09 04:14:59 +00:00
|
|
|
|
2018-09-22 12:23:08 +00:00
|
|
|
namespace Service::HID {
|
2015-01-18 23:07:48 +00:00
|
|
|
|
2017-01-15 19:27:00 +00:00
|
|
|
// Updating period for each HID device. These empirical values are measured from a 11.2 3DS.
|
2017-01-16 07:59:16 +00:00
|
|
|
constexpr u64 pad_update_ticks = BASE_CLOCK_RATE_ARM11 / 234;
|
|
|
|
constexpr u64 accelerometer_update_ticks = BASE_CLOCK_RATE_ARM11 / 104;
|
|
|
|
constexpr u64 gyroscope_update_ticks = BASE_CLOCK_RATE_ARM11 / 101;
|
2017-01-15 19:27:00 +00:00
|
|
|
|
2017-08-06 19:54:19 +00:00
|
|
|
constexpr float accelerometer_coef = 512.0f; // measured from hw test result
|
|
|
|
constexpr float gyroscope_coef = 14.375f; // got from hwtest GetGyroscopeLowRawToDpsCoefficient call
|
|
|
|
|
2017-03-31 19:27:18 +00:00
|
|
|
DirectionState GetStickDirectionState(s16 circle_pad_x, s16 circle_pad_y) {
|
2016-09-19 01:01:46 +00:00
|
|
|
// 30 degree and 60 degree are angular thresholds for directions
|
2016-12-15 20:50:16 +00:00
|
|
|
constexpr float TAN30 = 0.577350269f;
|
|
|
|
constexpr float TAN60 = 1 / TAN30;
|
2016-09-19 01:01:46 +00:00
|
|
|
// a circle pad radius greater than 40 will trigger circle pad direction
|
|
|
|
constexpr int CIRCLE_PAD_THRESHOLD_SQUARE = 40 * 40;
|
2017-03-31 19:27:18 +00:00
|
|
|
DirectionState state{false, false, false, false};
|
2016-05-12 10:09:36 +00:00
|
|
|
|
|
|
|
if (circle_pad_x * circle_pad_x + circle_pad_y * circle_pad_y > CIRCLE_PAD_THRESHOLD_SQUARE) {
|
|
|
|
float t = std::abs(static_cast<float>(circle_pad_y) / circle_pad_x);
|
|
|
|
|
|
|
|
if (circle_pad_x != 0 && t < TAN60) {
|
|
|
|
if (circle_pad_x > 0)
|
2017-03-31 19:27:18 +00:00
|
|
|
state.right = true;
|
2016-05-12 10:09:36 +00:00
|
|
|
else
|
2017-03-31 19:27:18 +00:00
|
|
|
state.left = true;
|
2016-05-12 10:09:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (circle_pad_x == 0 || t > TAN30) {
|
|
|
|
if (circle_pad_y > 0)
|
2017-03-31 19:27:18 +00:00
|
|
|
state.up = true;
|
2016-05-12 10:09:36 +00:00
|
|
|
else
|
2017-03-31 19:27:18 +00:00
|
|
|
state.down = true;
|
2016-05-12 10:09:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return state;
|
|
|
|
}
|
2015-02-27 02:13:08 +00:00
|
|
|
|
2017-12-16 14:55:19 +00:00
|
|
|
void Module::LoadInputDevices() {
|
2018-12-29 04:31:55 +00:00
|
|
|
std::transform(Settings::values.current_input_profile.buttons.begin() +
|
|
|
|
Settings::NativeButton::BUTTON_HID_BEGIN,
|
|
|
|
Settings::values.current_input_profile.buttons.begin() +
|
|
|
|
Settings::NativeButton::BUTTON_HID_END,
|
2017-01-20 20:46:39 +00:00
|
|
|
buttons.begin(), Input::CreateDevice<Input::ButtonDevice>);
|
2017-01-20 21:58:03 +00:00
|
|
|
circle_pad = Input::CreateDevice<Input::AnalogDevice>(
|
2018-12-29 04:31:55 +00:00
|
|
|
Settings::values.current_input_profile.analogs[Settings::NativeAnalog::CirclePad]);
|
|
|
|
motion_device = Input::CreateDevice<Input::MotionDevice>(
|
|
|
|
Settings::values.current_input_profile.motion_device);
|
|
|
|
touch_device = Input::CreateDevice<Input::TouchDevice>(
|
|
|
|
Settings::values.current_input_profile.touch_device);
|
2017-01-20 20:46:39 +00:00
|
|
|
}
|
|
|
|
|
2018-07-23 21:08:14 +00:00
|
|
|
void Module::UpdatePadCallback(u64 userdata, s64 cycles_late) {
|
2015-05-10 22:47:07 +00:00
|
|
|
SharedMem* mem = reinterpret_cast<SharedMem*>(shared_mem->GetPointer());
|
2015-01-18 23:07:48 +00:00
|
|
|
|
2017-01-20 20:46:39 +00:00
|
|
|
if (is_device_reload_pending.exchange(false))
|
|
|
|
LoadInputDevices();
|
|
|
|
|
|
|
|
using namespace Settings::NativeButton;
|
|
|
|
state.a.Assign(buttons[A - BUTTON_HID_BEGIN]->GetStatus());
|
|
|
|
state.b.Assign(buttons[B - BUTTON_HID_BEGIN]->GetStatus());
|
|
|
|
state.x.Assign(buttons[X - BUTTON_HID_BEGIN]->GetStatus());
|
|
|
|
state.y.Assign(buttons[Y - BUTTON_HID_BEGIN]->GetStatus());
|
|
|
|
state.right.Assign(buttons[Right - BUTTON_HID_BEGIN]->GetStatus());
|
|
|
|
state.left.Assign(buttons[Left - BUTTON_HID_BEGIN]->GetStatus());
|
|
|
|
state.up.Assign(buttons[Up - BUTTON_HID_BEGIN]->GetStatus());
|
|
|
|
state.down.Assign(buttons[Down - BUTTON_HID_BEGIN]->GetStatus());
|
|
|
|
state.l.Assign(buttons[L - BUTTON_HID_BEGIN]->GetStatus());
|
|
|
|
state.r.Assign(buttons[R - BUTTON_HID_BEGIN]->GetStatus());
|
|
|
|
state.start.Assign(buttons[Start - BUTTON_HID_BEGIN]->GetStatus());
|
|
|
|
state.select.Assign(buttons[Select - BUTTON_HID_BEGIN]->GetStatus());
|
2018-12-28 19:33:54 +00:00
|
|
|
state.debug.Assign(buttons[Debug - BUTTON_HID_BEGIN]->GetStatus());
|
2018-12-28 23:13:37 +00:00
|
|
|
state.gpio14.Assign(buttons[Gpio14 - BUTTON_HID_BEGIN]->GetStatus());
|
2016-05-12 10:09:36 +00:00
|
|
|
|
2016-05-15 16:35:06 +00:00
|
|
|
// Get current circle pad position and update circle pad direction
|
2017-01-20 21:58:03 +00:00
|
|
|
float circle_pad_x_f, circle_pad_y_f;
|
|
|
|
std::tie(circle_pad_x_f, circle_pad_y_f) = circle_pad->GetStatus();
|
|
|
|
constexpr int MAX_CIRCLEPAD_POS = 0x9C; // Max value for a circle pad position
|
|
|
|
s16 circle_pad_x = static_cast<s16>(circle_pad_x_f * MAX_CIRCLEPAD_POS);
|
|
|
|
s16 circle_pad_y = static_cast<s16>(circle_pad_y_f * MAX_CIRCLEPAD_POS);
|
2017-12-17 03:43:09 +00:00
|
|
|
|
2017-12-17 04:55:56 +00:00
|
|
|
Core::Movie::GetInstance().HandlePadAndCircleStatus(state, circle_pad_x, circle_pad_y);
|
2017-12-17 03:43:09 +00:00
|
|
|
|
2017-03-31 19:27:18 +00:00
|
|
|
const DirectionState direction = GetStickDirectionState(circle_pad_x, circle_pad_y);
|
|
|
|
state.circle_up.Assign(direction.up);
|
|
|
|
state.circle_down.Assign(direction.down);
|
|
|
|
state.circle_left.Assign(direction.left);
|
|
|
|
state.circle_right.Assign(direction.right);
|
2016-05-12 10:09:36 +00:00
|
|
|
|
2015-03-10 03:38:52 +00:00
|
|
|
mem->pad.current_state.hex = state.hex;
|
|
|
|
mem->pad.index = next_pad_index;
|
2016-03-13 09:19:17 +00:00
|
|
|
next_pad_index = (next_pad_index + 1) % mem->pad.entries.size();
|
2015-01-18 23:07:48 +00:00
|
|
|
|
|
|
|
// Get the previous Pad state
|
2015-03-10 03:38:52 +00:00
|
|
|
u32 last_entry_index = (mem->pad.index - 1) % mem->pad.entries.size();
|
|
|
|
PadState old_state = mem->pad.entries[last_entry_index].current_state;
|
2015-01-18 23:07:48 +00:00
|
|
|
|
|
|
|
// Compute bitmask with 1s for bits different from the old state
|
2016-09-18 00:38:01 +00:00
|
|
|
PadState changed = {{(state.hex ^ old_state.hex)}};
|
2015-01-18 23:07:48 +00:00
|
|
|
|
|
|
|
// Get the current Pad entry
|
2016-03-26 07:50:02 +00:00
|
|
|
PadDataEntry& pad_entry = mem->pad.entries[mem->pad.index];
|
2015-01-18 23:07:48 +00:00
|
|
|
|
|
|
|
// Update entry properties
|
2016-03-26 07:50:02 +00:00
|
|
|
pad_entry.current_state.hex = state.hex;
|
|
|
|
pad_entry.delta_additions.hex = changed.hex & state.hex;
|
2016-05-12 10:09:36 +00:00
|
|
|
pad_entry.delta_removals.hex = changed.hex & old_state.hex;
|
|
|
|
pad_entry.circle_pad_x = circle_pad_x;
|
|
|
|
pad_entry.circle_pad_y = circle_pad_y;
|
2015-03-08 05:12:47 +00:00
|
|
|
|
|
|
|
// If we just updated index 0, provide a new timestamp
|
2015-03-10 03:38:52 +00:00
|
|
|
if (mem->pad.index == 0) {
|
|
|
|
mem->pad.index_reset_ticks_previous = mem->pad.index_reset_ticks;
|
2018-10-27 19:53:20 +00:00
|
|
|
mem->pad.index_reset_ticks = (s64)system.CoreTiming().GetTicks();
|
2015-03-08 05:12:47 +00:00
|
|
|
}
|
|
|
|
|
2015-03-10 03:38:52 +00:00
|
|
|
mem->touch.index = next_touch_index;
|
2015-05-27 16:20:09 +00:00
|
|
|
next_touch_index = (next_touch_index + 1) % mem->touch.entries.size();
|
2015-03-08 07:05:56 +00:00
|
|
|
|
|
|
|
// Get the current touch entry
|
2016-03-26 07:50:02 +00:00
|
|
|
TouchDataEntry& touch_entry = mem->touch.entries[mem->touch.index];
|
2015-03-09 04:14:59 +00:00
|
|
|
bool pressed = false;
|
2017-08-08 18:34:17 +00:00
|
|
|
float x, y;
|
|
|
|
std::tie(x, y, pressed) = touch_device->GetStatus();
|
|
|
|
touch_entry.x = static_cast<u16>(x * Core::kScreenBottomWidth);
|
|
|
|
touch_entry.y = static_cast<u16>(y * Core::kScreenBottomHeight);
|
2016-03-26 07:50:02 +00:00
|
|
|
touch_entry.valid.Assign(pressed ? 1 : 0);
|
2015-03-08 07:05:56 +00:00
|
|
|
|
2017-12-17 04:55:56 +00:00
|
|
|
Core::Movie::GetInstance().HandleTouchStatus(touch_entry);
|
2017-12-17 03:43:09 +00:00
|
|
|
|
2015-03-08 07:05:56 +00:00
|
|
|
// TODO(bunnei): We're not doing anything with offset 0xA8 + 0x18 of HID SharedMemory, which
|
|
|
|
// supposedly is "Touch-screen entry, which contains the raw coordinate data prior to being
|
|
|
|
// converted to pixel coordinates." (http://3dbrew.org/wiki/HID_Shared_Memory#Offset_0xA8).
|
|
|
|
|
|
|
|
// If we just updated index 0, provide a new timestamp
|
2015-03-10 03:38:52 +00:00
|
|
|
if (mem->touch.index == 0) {
|
|
|
|
mem->touch.index_reset_ticks_previous = mem->touch.index_reset_ticks;
|
2018-10-27 19:53:20 +00:00
|
|
|
mem->touch.index_reset_ticks = (s64)system.CoreTiming().GetTicks();
|
2015-03-08 07:05:56 +00:00
|
|
|
}
|
2015-05-25 18:34:09 +00:00
|
|
|
|
2015-03-08 07:05:56 +00:00
|
|
|
// Signal both handles when there's an update to Pad or touch
|
2015-03-10 03:38:52 +00:00
|
|
|
event_pad_or_touch_1->Signal();
|
|
|
|
event_pad_or_touch_2->Signal();
|
2016-03-18 20:27:36 +00:00
|
|
|
|
2019-01-18 04:48:50 +00:00
|
|
|
// TODO(xperia64): How the 3D Slider is updated by the HID module needs to be RE'd
|
|
|
|
// and possibly moved to its own Core::Timing event.
|
2019-01-18 21:32:16 +00:00
|
|
|
system.Kernel().GetSharedPageHandler().Set3DSlider(Settings::values.factor_3d / 100.0f);
|
2019-01-18 04:48:50 +00:00
|
|
|
|
2017-01-15 19:27:00 +00:00
|
|
|
// Reschedule recurrent event
|
2018-10-27 19:53:20 +00:00
|
|
|
system.CoreTiming().ScheduleEvent(pad_update_ticks - cycles_late, pad_update_event);
|
2017-01-15 19:27:00 +00:00
|
|
|
}
|
|
|
|
|
2018-07-23 21:08:14 +00:00
|
|
|
void Module::UpdateAccelerometerCallback(u64 userdata, s64 cycles_late) {
|
2017-01-15 19:27:00 +00:00
|
|
|
SharedMem* mem = reinterpret_cast<SharedMem*>(shared_mem->GetPointer());
|
|
|
|
|
|
|
|
mem->accelerometer.index = next_accelerometer_index;
|
|
|
|
next_accelerometer_index = (next_accelerometer_index + 1) % mem->accelerometer.entries.size();
|
2016-03-18 20:27:36 +00:00
|
|
|
|
2019-02-27 03:38:34 +00:00
|
|
|
Common::Vec3<float> accel;
|
2017-08-06 19:54:19 +00:00
|
|
|
std::tie(accel, std::ignore) = motion_device->GetStatus();
|
|
|
|
accel *= accelerometer_coef;
|
2017-08-20 05:37:48 +00:00
|
|
|
// TODO(wwylele): do a time stretch like the one in UpdateGyroscopeCallback
|
2017-08-06 19:54:19 +00:00
|
|
|
// The time stretch formula should be like
|
|
|
|
// stretched_vector = (raw_vector - gravity) * stretch_ratio + gravity
|
|
|
|
|
2017-01-15 19:27:00 +00:00
|
|
|
AccelerometerDataEntry& accelerometer_entry =
|
|
|
|
mem->accelerometer.entries[mem->accelerometer.index];
|
2017-08-06 19:54:19 +00:00
|
|
|
|
|
|
|
accelerometer_entry.x = static_cast<s16>(accel.x);
|
|
|
|
accelerometer_entry.y = static_cast<s16>(accel.y);
|
|
|
|
accelerometer_entry.z = static_cast<s16>(accel.z);
|
2017-01-15 19:27:00 +00:00
|
|
|
|
2017-12-17 04:55:56 +00:00
|
|
|
Core::Movie::GetInstance().HandleAccelerometerStatus(accelerometer_entry);
|
2017-12-17 03:43:09 +00:00
|
|
|
|
2017-01-15 19:27:00 +00:00
|
|
|
// Make up "raw" entry
|
|
|
|
// TODO(wwylele):
|
|
|
|
// From hardware testing, the raw_entry values are approximately, but not exactly, as twice as
|
|
|
|
// corresponding entries (or with a minus sign). It may caused by system calibration to the
|
|
|
|
// accelerometer. Figure out how it works, or, if no game reads raw_entry, the following three
|
|
|
|
// lines can be removed and leave raw_entry unimplemented.
|
|
|
|
mem->accelerometer.raw_entry.x = -2 * accelerometer_entry.x;
|
|
|
|
mem->accelerometer.raw_entry.z = 2 * accelerometer_entry.y;
|
|
|
|
mem->accelerometer.raw_entry.y = -2 * accelerometer_entry.z;
|
|
|
|
|
|
|
|
// If we just updated index 0, provide a new timestamp
|
|
|
|
if (mem->accelerometer.index == 0) {
|
|
|
|
mem->accelerometer.index_reset_ticks_previous = mem->accelerometer.index_reset_ticks;
|
2018-10-27 19:53:20 +00:00
|
|
|
mem->accelerometer.index_reset_ticks = (s64)system.CoreTiming().GetTicks();
|
2016-03-18 20:27:36 +00:00
|
|
|
}
|
|
|
|
|
2017-01-15 19:27:00 +00:00
|
|
|
event_accelerometer->Signal();
|
2016-03-18 20:27:36 +00:00
|
|
|
|
2017-01-15 19:27:00 +00:00
|
|
|
// Reschedule recurrent event
|
2018-10-27 19:53:20 +00:00
|
|
|
system.CoreTiming().ScheduleEvent(accelerometer_update_ticks - cycles_late,
|
|
|
|
accelerometer_update_event);
|
2017-01-15 19:27:00 +00:00
|
|
|
}
|
2016-03-18 20:27:36 +00:00
|
|
|
|
2018-07-23 21:08:14 +00:00
|
|
|
void Module::UpdateGyroscopeCallback(u64 userdata, s64 cycles_late) {
|
2017-01-15 19:27:00 +00:00
|
|
|
SharedMem* mem = reinterpret_cast<SharedMem*>(shared_mem->GetPointer());
|
2016-03-18 20:27:36 +00:00
|
|
|
|
2017-01-15 19:27:00 +00:00
|
|
|
mem->gyroscope.index = next_gyroscope_index;
|
|
|
|
next_gyroscope_index = (next_gyroscope_index + 1) % mem->gyroscope.entries.size();
|
|
|
|
|
|
|
|
GyroscopeDataEntry& gyroscope_entry = mem->gyroscope.entries[mem->gyroscope.index];
|
2017-08-06 19:54:19 +00:00
|
|
|
|
2019-02-27 03:38:34 +00:00
|
|
|
Common::Vec3<float> gyro;
|
2017-08-06 19:54:19 +00:00
|
|
|
std::tie(std::ignore, gyro) = motion_device->GetStatus();
|
2018-10-05 14:59:43 +00:00
|
|
|
double stretch = system.perf_stats.GetLastFrameTimeScale();
|
2017-09-26 23:26:09 +00:00
|
|
|
gyro *= gyroscope_coef * static_cast<float>(stretch);
|
2017-08-06 19:54:19 +00:00
|
|
|
gyroscope_entry.x = static_cast<s16>(gyro.x);
|
|
|
|
gyroscope_entry.y = static_cast<s16>(gyro.y);
|
|
|
|
gyroscope_entry.z = static_cast<s16>(gyro.z);
|
2017-01-15 19:27:00 +00:00
|
|
|
|
2017-12-17 04:55:56 +00:00
|
|
|
Core::Movie::GetInstance().HandleGyroscopeStatus(gyroscope_entry);
|
2017-12-17 03:43:09 +00:00
|
|
|
|
2017-01-15 19:27:00 +00:00
|
|
|
// Make up "raw" entry
|
|
|
|
mem->gyroscope.raw_entry.x = gyroscope_entry.x;
|
|
|
|
mem->gyroscope.raw_entry.z = -gyroscope_entry.y;
|
|
|
|
mem->gyroscope.raw_entry.y = gyroscope_entry.z;
|
2016-03-18 20:27:36 +00:00
|
|
|
|
2017-01-15 19:27:00 +00:00
|
|
|
// If we just updated index 0, provide a new timestamp
|
|
|
|
if (mem->gyroscope.index == 0) {
|
|
|
|
mem->gyroscope.index_reset_ticks_previous = mem->gyroscope.index_reset_ticks;
|
2018-10-27 19:53:20 +00:00
|
|
|
mem->gyroscope.index_reset_ticks = (s64)system.CoreTiming().GetTicks();
|
2016-03-18 20:27:36 +00:00
|
|
|
}
|
2017-01-15 19:27:00 +00:00
|
|
|
|
|
|
|
event_gyroscope->Signal();
|
|
|
|
|
|
|
|
// Reschedule recurrent event
|
2018-10-27 19:53:20 +00:00
|
|
|
system.CoreTiming().ScheduleEvent(gyroscope_update_ticks - cycles_late, gyroscope_update_event);
|
2015-03-08 07:05:56 +00:00
|
|
|
}
|
|
|
|
|
2017-12-16 14:55:19 +00:00
|
|
|
void Module::Interface::GetIPCHandles(Kernel::HLERequestContext& ctx) {
|
|
|
|
IPC::RequestParser rp{ctx, 0xA, 0, 0};
|
|
|
|
IPC::RequestBuilder rb = rp.MakeBuilder(1, 7);
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
rb.PushCopyObjects(hid->shared_mem, hid->event_pad_or_touch_1, hid->event_pad_or_touch_2,
|
|
|
|
hid->event_accelerometer, hid->event_gyroscope, hid->event_debug_pad);
|
2015-02-27 02:13:08 +00:00
|
|
|
}
|
|
|
|
|
2017-12-16 14:55:19 +00:00
|
|
|
void Module::Interface::EnableAccelerometer(Kernel::HLERequestContext& ctx) {
|
|
|
|
IPC::RequestParser rp{ctx, 0x11, 0, 0};
|
2015-03-13 21:36:19 +00:00
|
|
|
|
2017-12-16 14:55:19 +00:00
|
|
|
++hid->enable_accelerometer_count;
|
2017-01-15 19:27:00 +00:00
|
|
|
|
|
|
|
// Schedules the accelerometer update event if the accelerometer was just enabled
|
2017-12-16 14:55:19 +00:00
|
|
|
if (hid->enable_accelerometer_count == 1) {
|
2018-10-27 19:53:20 +00:00
|
|
|
hid->system.CoreTiming().ScheduleEvent(accelerometer_update_ticks,
|
|
|
|
hid->accelerometer_update_event);
|
2017-01-15 19:27:00 +00:00
|
|
|
}
|
2015-03-13 21:36:19 +00:00
|
|
|
|
2017-12-16 14:55:19 +00:00
|
|
|
IPC::RequestBuilder rb = rp.MakeBuilder(1, 0);
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
2015-03-13 21:36:19 +00:00
|
|
|
|
2018-06-29 11:18:07 +00:00
|
|
|
LOG_DEBUG(Service_HID, "called");
|
2015-03-13 21:36:19 +00:00
|
|
|
}
|
|
|
|
|
2017-12-16 14:55:19 +00:00
|
|
|
void Module::Interface::DisableAccelerometer(Kernel::HLERequestContext& ctx) {
|
|
|
|
IPC::RequestParser rp{ctx, 0x12, 0, 0};
|
2015-05-22 22:55:27 +00:00
|
|
|
|
2017-12-16 14:55:19 +00:00
|
|
|
--hid->enable_accelerometer_count;
|
2017-01-15 19:27:00 +00:00
|
|
|
|
|
|
|
// Unschedules the accelerometer update event if the accelerometer was just disabled
|
2017-12-16 14:55:19 +00:00
|
|
|
if (hid->enable_accelerometer_count == 0) {
|
2018-10-27 19:53:20 +00:00
|
|
|
hid->system.CoreTiming().UnscheduleEvent(hid->accelerometer_update_event, 0);
|
2017-01-15 19:27:00 +00:00
|
|
|
}
|
2015-05-22 22:55:27 +00:00
|
|
|
|
2017-12-16 14:55:19 +00:00
|
|
|
IPC::RequestBuilder rb = rp.MakeBuilder(1, 0);
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
2015-05-22 22:55:27 +00:00
|
|
|
|
2018-06-29 11:18:07 +00:00
|
|
|
LOG_DEBUG(Service_HID, "called");
|
2015-05-22 22:55:27 +00:00
|
|
|
}
|
|
|
|
|
2017-12-16 14:55:19 +00:00
|
|
|
void Module::Interface::EnableGyroscopeLow(Kernel::HLERequestContext& ctx) {
|
|
|
|
IPC::RequestParser rp{ctx, 0x13, 0, 0};
|
2015-03-13 21:36:19 +00:00
|
|
|
|
2017-12-16 14:55:19 +00:00
|
|
|
++hid->enable_gyroscope_count;
|
2017-01-15 19:27:00 +00:00
|
|
|
|
|
|
|
// Schedules the gyroscope update event if the gyroscope was just enabled
|
2017-12-16 14:55:19 +00:00
|
|
|
if (hid->enable_gyroscope_count == 1) {
|
2018-10-27 19:53:20 +00:00
|
|
|
hid->system.CoreTiming().ScheduleEvent(gyroscope_update_ticks, hid->gyroscope_update_event);
|
2017-01-15 19:27:00 +00:00
|
|
|
}
|
2015-03-13 21:36:19 +00:00
|
|
|
|
2017-12-16 14:55:19 +00:00
|
|
|
IPC::RequestBuilder rb = rp.MakeBuilder(1, 0);
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
2015-03-13 21:36:19 +00:00
|
|
|
|
2018-06-29 11:18:07 +00:00
|
|
|
LOG_DEBUG(Service_HID, "called");
|
2015-03-13 21:36:19 +00:00
|
|
|
}
|
|
|
|
|
2017-12-16 14:55:19 +00:00
|
|
|
void Module::Interface::DisableGyroscopeLow(Kernel::HLERequestContext& ctx) {
|
|
|
|
IPC::RequestParser rp{ctx, 0x14, 0, 0};
|
2015-05-22 22:55:27 +00:00
|
|
|
|
2017-12-16 14:55:19 +00:00
|
|
|
--hid->enable_gyroscope_count;
|
2017-01-15 19:27:00 +00:00
|
|
|
|
|
|
|
// Unschedules the gyroscope update event if the gyroscope was just disabled
|
2017-12-16 14:55:19 +00:00
|
|
|
if (hid->enable_gyroscope_count == 0) {
|
2018-10-27 19:53:20 +00:00
|
|
|
hid->system.CoreTiming().UnscheduleEvent(hid->gyroscope_update_event, 0);
|
2017-01-15 19:27:00 +00:00
|
|
|
}
|
2015-05-22 22:55:27 +00:00
|
|
|
|
2017-12-16 14:55:19 +00:00
|
|
|
IPC::RequestBuilder rb = rp.MakeBuilder(1, 0);
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
2015-05-22 22:55:27 +00:00
|
|
|
|
2018-06-29 11:18:07 +00:00
|
|
|
LOG_DEBUG(Service_HID, "called");
|
2016-03-18 20:27:36 +00:00
|
|
|
}
|
|
|
|
|
2017-12-16 14:55:19 +00:00
|
|
|
void Module::Interface::GetGyroscopeLowRawToDpsCoefficient(Kernel::HLERequestContext& ctx) {
|
|
|
|
IPC::RequestParser rp{ctx, 0x15, 0, 0};
|
2016-03-18 20:27:36 +00:00
|
|
|
|
2017-12-16 14:55:19 +00:00
|
|
|
IPC::RequestBuilder rb = rp.MakeBuilder(2, 0);
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
2019-06-09 14:03:22 +00:00
|
|
|
rb.Push(gyroscope_coef);
|
2016-03-18 20:27:36 +00:00
|
|
|
}
|
|
|
|
|
2017-12-16 14:55:19 +00:00
|
|
|
void Module::Interface::GetGyroscopeLowCalibrateParam(Kernel::HLERequestContext& ctx) {
|
|
|
|
IPC::RequestParser rp{ctx, 0x16, 0, 0};
|
2016-03-18 20:27:36 +00:00
|
|
|
|
2017-12-16 14:55:19 +00:00
|
|
|
IPC::RequestBuilder rb = rp.MakeBuilder(6, 0);
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
2016-03-18 20:27:36 +00:00
|
|
|
|
2016-03-25 08:39:59 +00:00
|
|
|
const s16 param_unit = 6700; // an approximate value taken from hw
|
|
|
|
GyroscopeCalibrateParam param = {
|
2018-03-09 17:54:43 +00:00
|
|
|
{0, param_unit, -param_unit},
|
|
|
|
{0, param_unit, -param_unit},
|
|
|
|
{0, param_unit, -param_unit},
|
2016-03-25 08:39:59 +00:00
|
|
|
};
|
2017-12-16 14:55:19 +00:00
|
|
|
rb.PushRaw(param);
|
2016-03-18 20:27:36 +00:00
|
|
|
|
2018-06-29 11:18:07 +00:00
|
|
|
LOG_WARNING(Service_HID, "(STUBBED) called");
|
2015-05-22 22:55:27 +00:00
|
|
|
}
|
|
|
|
|
2017-12-16 14:55:19 +00:00
|
|
|
void Module::Interface::GetSoundVolume(Kernel::HLERequestContext& ctx) {
|
|
|
|
IPC::RequestParser rp{ctx, 0x17, 0, 0};
|
2015-03-13 21:36:19 +00:00
|
|
|
|
2018-06-30 12:26:38 +00:00
|
|
|
const u8 volume = static_cast<u8>(0x3F * Settings::values.volume);
|
2015-03-13 21:36:19 +00:00
|
|
|
|
2017-12-16 14:55:19 +00:00
|
|
|
IPC::RequestBuilder rb = rp.MakeBuilder(2, 0);
|
|
|
|
rb.Push(RESULT_SUCCESS);
|
|
|
|
rb.Push(volume);
|
2015-03-13 21:36:19 +00:00
|
|
|
}
|
|
|
|
|
2017-12-16 14:55:19 +00:00
|
|
|
Module::Interface::Interface(std::shared_ptr<Module> hid, const char* name, u32 max_session)
|
|
|
|
: ServiceFramework(name, max_session), hid(std::move(hid)) {}
|
2015-01-23 05:11:25 +00:00
|
|
|
|
2018-10-11 09:12:07 +00:00
|
|
|
std::shared_ptr<Module> Module::Interface::GetModule() const {
|
|
|
|
return hid;
|
|
|
|
}
|
|
|
|
|
2018-10-05 14:59:43 +00:00
|
|
|
Module::Module(Core::System& system) : system(system) {
|
2017-12-16 14:55:19 +00:00
|
|
|
using namespace Kernel;
|
2017-01-20 20:46:39 +00:00
|
|
|
|
2018-11-10 16:14:29 +00:00
|
|
|
shared_mem =
|
|
|
|
system.Kernel()
|
|
|
|
.CreateSharedMemory(nullptr, 0x1000, MemoryPermission::ReadWrite,
|
|
|
|
MemoryPermission::Read, 0, MemoryRegion::BASE, "HID:SharedMemory")
|
|
|
|
.Unwrap();
|
2017-02-17 06:04:27 +00:00
|
|
|
|
2015-01-18 23:07:48 +00:00
|
|
|
// Create event handles
|
2018-10-11 19:48:16 +00:00
|
|
|
event_pad_or_touch_1 = system.Kernel().CreateEvent(ResetType::OneShot, "HID:EventPadOrTouch1");
|
|
|
|
event_pad_or_touch_2 = system.Kernel().CreateEvent(ResetType::OneShot, "HID:EventPadOrTouch2");
|
|
|
|
event_accelerometer = system.Kernel().CreateEvent(ResetType::OneShot, "HID:EventAccelerometer");
|
|
|
|
event_gyroscope = system.Kernel().CreateEvent(ResetType::OneShot, "HID:EventGyroscope");
|
|
|
|
event_debug_pad = system.Kernel().CreateEvent(ResetType::OneShot, "HID:EventDebugPad");
|
2017-01-15 19:27:00 +00:00
|
|
|
|
|
|
|
// Register update callbacks
|
2018-10-27 19:53:20 +00:00
|
|
|
Core::Timing& timing = system.CoreTiming();
|
2017-12-16 14:55:19 +00:00
|
|
|
pad_update_event =
|
2018-10-27 19:53:20 +00:00
|
|
|
timing.RegisterEvent("HID::UpdatePadCallback", [this](u64 userdata, s64 cycles_late) {
|
2017-12-16 14:55:19 +00:00
|
|
|
UpdatePadCallback(userdata, cycles_late);
|
|
|
|
});
|
2018-10-27 19:53:20 +00:00
|
|
|
accelerometer_update_event = timing.RegisterEvent(
|
2018-07-23 21:08:14 +00:00
|
|
|
"HID::UpdateAccelerometerCallback", [this](u64 userdata, s64 cycles_late) {
|
2017-12-16 14:55:19 +00:00
|
|
|
UpdateAccelerometerCallback(userdata, cycles_late);
|
|
|
|
});
|
2018-10-27 19:53:20 +00:00
|
|
|
gyroscope_update_event =
|
|
|
|
timing.RegisterEvent("HID::UpdateGyroscopeCallback", [this](u64 userdata, s64 cycles_late) {
|
|
|
|
UpdateGyroscopeCallback(userdata, cycles_late);
|
|
|
|
});
|
2017-01-15 19:27:00 +00:00
|
|
|
|
2018-10-27 19:53:20 +00:00
|
|
|
timing.ScheduleEvent(pad_update_ticks, pad_update_event);
|
2015-01-18 23:07:48 +00:00
|
|
|
}
|
|
|
|
|
2017-12-16 14:55:19 +00:00
|
|
|
void Module::ReloadInputDevices() {
|
|
|
|
is_device_reload_pending.store(true);
|
2017-01-20 20:46:39 +00:00
|
|
|
}
|
|
|
|
|
2018-11-17 01:01:10 +00:00
|
|
|
const PadState& Module::GetState() const {
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
2018-10-12 09:50:50 +00:00
|
|
|
std::shared_ptr<Module> GetModule(Core::System& system) {
|
|
|
|
auto hid = system.ServiceManager().GetService<Service::HID::Module::Interface>("hid:USER");
|
|
|
|
if (!hid)
|
|
|
|
return nullptr;
|
|
|
|
return hid->GetModule();
|
|
|
|
}
|
|
|
|
|
2018-10-05 14:59:43 +00:00
|
|
|
void InstallInterfaces(Core::System& system) {
|
|
|
|
auto& service_manager = system.ServiceManager();
|
|
|
|
auto hid = std::make_shared<Module>(system);
|
2017-12-16 14:55:19 +00:00
|
|
|
std::make_shared<User>(hid)->InstallAsService(service_manager);
|
|
|
|
std::make_shared<Spvr>(hid)->InstallAsService(service_manager);
|
2015-01-18 23:07:48 +00:00
|
|
|
}
|
|
|
|
|
2018-09-22 12:23:08 +00:00
|
|
|
} // namespace Service::HID
|