summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/hid')
-rw-r--r--src/core/hle/service/hid/hid.cpp425
-rw-r--r--src/core/hle/service/hid/hid.h266
-rw-r--r--src/core/hle/service/hid/hid_spvr.cpp29
-rw-r--r--src/core/hle/service/hid/hid_spvr.h22
-rw-r--r--src/core/hle/service/hid/hid_user.cpp29
-rw-r--r--src/core/hle/service/hid/hid_user.h28
6 files changed, 6 insertions, 793 deletions
diff --git a/src/core/hle/service/hid/hid.cpp b/src/core/hle/service/hid/hid.cpp
index 379fbd71c..f838713a3 100644
--- a/src/core/hle/service/hid/hid.cpp
+++ b/src/core/hle/service/hid/hid.cpp
@@ -2,437 +2,18 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
-#include <algorithm>
-#include <atomic>
-#include <cmath>
-#include <memory>
#include "common/logging/log.h"
-#include "core/3ds.h"
-#include "core/core.h"
-#include "core/core_timing.h"
-#include "core/frontend/input.h"
-#include "core/hle/ipc.h"
-#include "core/hle/kernel/event.h"
-#include "core/hle/kernel/handle_table.h"
-#include "core/hle/kernel/shared_memory.h"
#include "core/hle/service/hid/hid.h"
-#include "core/hle/service/hid/hid_spvr.h"
-#include "core/hle/service/hid/hid_user.h"
#include "core/hle/service/service.h"
namespace Service {
namespace HID {
-// Handle to shared memory region designated to HID_User service
-static Kernel::SharedPtr<Kernel::SharedMemory> shared_mem;
+void Init() {}
-// Event handles
-static Kernel::SharedPtr<Kernel::Event> event_pad_or_touch_1;
-static Kernel::SharedPtr<Kernel::Event> event_pad_or_touch_2;
-static Kernel::SharedPtr<Kernel::Event> event_accelerometer;
-static Kernel::SharedPtr<Kernel::Event> event_gyroscope;
-static Kernel::SharedPtr<Kernel::Event> event_debug_pad;
+void Shutdown() {}
-static u32 next_pad_index;
-static u32 next_touch_index;
-static u32 next_accelerometer_index;
-static u32 next_gyroscope_index;
-
-static int enable_accelerometer_count; // positive means enabled
-static int enable_gyroscope_count; // positive means enabled
-
-static int pad_update_event;
-static int accelerometer_update_event;
-static int gyroscope_update_event;
-
-// Updating period for each HID device. These empirical values are measured from a 11.2 3DS.
-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;
-
-constexpr float accelerometer_coef = 512.0f; // measured from hw test result
-constexpr float gyroscope_coef = 14.375f; // got from hwtest GetGyroscopeLowRawToDpsCoefficient call
-
-static std::atomic<bool> is_device_reload_pending;
-static std::array<std::unique_ptr<Input::ButtonDevice>, Settings::NativeButton::NUM_BUTTONS_HID>
- buttons;
-static std::unique_ptr<Input::AnalogDevice> circle_pad;
-static std::unique_ptr<Input::MotionDevice> motion_device;
-static std::unique_ptr<Input::TouchDevice> touch_device;
-
-DirectionState GetStickDirectionState(s16 circle_pad_x, s16 circle_pad_y) {
- // 30 degree and 60 degree are angular thresholds for directions
- constexpr float TAN30 = 0.577350269f;
- constexpr float TAN60 = 1 / TAN30;
- // a circle pad radius greater than 40 will trigger circle pad direction
- constexpr int CIRCLE_PAD_THRESHOLD_SQUARE = 40 * 40;
- DirectionState state{false, false, false, false};
-
- 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)
- state.right = true;
- else
- state.left = true;
- }
-
- if (circle_pad_x == 0 || t > TAN30) {
- if (circle_pad_y > 0)
- state.up = true;
- else
- state.down = true;
- }
- }
-
- return state;
-}
-
-static void LoadInputDevices() {
- std::transform(Settings::values.buttons.begin() + Settings::NativeButton::BUTTON_HID_BEGIN,
- Settings::values.buttons.begin() + Settings::NativeButton::BUTTON_HID_END,
- buttons.begin(), Input::CreateDevice<Input::ButtonDevice>);
- circle_pad = Input::CreateDevice<Input::AnalogDevice>(
- Settings::values.analogs[Settings::NativeAnalog::CirclePad]);
- motion_device = Input::CreateDevice<Input::MotionDevice>(Settings::values.motion_device);
- touch_device = Input::CreateDevice<Input::TouchDevice>(Settings::values.touch_device);
-}
-
-static void UnloadInputDevices() {
- for (auto& button : buttons) {
- button.reset();
- }
- circle_pad.reset();
- motion_device.reset();
- touch_device.reset();
-}
-
-static void UpdatePadCallback(u64 userdata, int cycles_late) {
- SharedMem* mem = reinterpret_cast<SharedMem*>(shared_mem->GetPointer());
-
- if (is_device_reload_pending.exchange(false))
- LoadInputDevices();
-
- PadState state;
- 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());
-
- // Get current circle pad position and update circle pad direction
- 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);
- 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);
-
- mem->pad.current_state.hex = state.hex;
- mem->pad.index = next_pad_index;
- next_pad_index = (next_pad_index + 1) % mem->pad.entries.size();
-
- // Get the previous Pad state
- u32 last_entry_index = (mem->pad.index - 1) % mem->pad.entries.size();
- PadState old_state = mem->pad.entries[last_entry_index].current_state;
-
- // Compute bitmask with 1s for bits different from the old state
- PadState changed = {{(state.hex ^ old_state.hex)}};
-
- // Get the current Pad entry
- PadDataEntry& pad_entry = mem->pad.entries[mem->pad.index];
-
- // Update entry properties
- pad_entry.current_state.hex = state.hex;
- pad_entry.delta_additions.hex = changed.hex & state.hex;
- 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;
-
- // If we just updated index 0, provide a new timestamp
- if (mem->pad.index == 0) {
- mem->pad.index_reset_ticks_previous = mem->pad.index_reset_ticks;
- mem->pad.index_reset_ticks = (s64)CoreTiming::GetTicks();
- }
-
- mem->touch.index = next_touch_index;
- next_touch_index = (next_touch_index + 1) % mem->touch.entries.size();
-
- // Get the current touch entry
- TouchDataEntry& touch_entry = mem->touch.entries[mem->touch.index];
- bool pressed = false;
- 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);
- touch_entry.valid.Assign(pressed ? 1 : 0);
-
- // 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
- if (mem->touch.index == 0) {
- mem->touch.index_reset_ticks_previous = mem->touch.index_reset_ticks;
- mem->touch.index_reset_ticks = (s64)CoreTiming::GetTicks();
- }
-
- // Signal both handles when there's an update to Pad or touch
- event_pad_or_touch_1->Signal();
- event_pad_or_touch_2->Signal();
-
- // Reschedule recurrent event
- CoreTiming::ScheduleEvent(pad_update_ticks - cycles_late, pad_update_event);
-}
-
-static void UpdateAccelerometerCallback(u64 userdata, int cycles_late) {
- 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();
-
- Math::Vec3<float> accel;
- std::tie(accel, std::ignore) = motion_device->GetStatus();
- accel *= accelerometer_coef;
- // TODO(wwylele): do a time stretch like the one in UpdateGyroscopeCallback
- // The time stretch formula should be like
- // stretched_vector = (raw_vector - gravity) * stretch_ratio + gravity
-
- AccelerometerDataEntry& accelerometer_entry =
- mem->accelerometer.entries[mem->accelerometer.index];
-
- accelerometer_entry.x = static_cast<s16>(accel.x);
- accelerometer_entry.y = static_cast<s16>(accel.y);
- accelerometer_entry.z = static_cast<s16>(accel.z);
-
- // 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;
- mem->accelerometer.index_reset_ticks = (s64)CoreTiming::GetTicks();
- }
-
- event_accelerometer->Signal();
-
- // Reschedule recurrent event
- CoreTiming::ScheduleEvent(accelerometer_update_ticks - cycles_late, accelerometer_update_event);
-}
-
-static void UpdateGyroscopeCallback(u64 userdata, int cycles_late) {
- SharedMem* mem = reinterpret_cast<SharedMem*>(shared_mem->GetPointer());
-
- 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];
-
- Math::Vec3<float> gyro;
- std::tie(std::ignore, gyro) = motion_device->GetStatus();
- double stretch = Core::System::GetInstance().perf_stats.GetLastFrameTimeScale();
- gyro *= gyroscope_coef * static_cast<float>(stretch);
- gyroscope_entry.x = static_cast<s16>(gyro.x);
- gyroscope_entry.y = static_cast<s16>(gyro.y);
- gyroscope_entry.z = static_cast<s16>(gyro.z);
-
- // 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;
-
- // 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;
- mem->gyroscope.index_reset_ticks = (s64)CoreTiming::GetTicks();
- }
-
- event_gyroscope->Signal();
-
- // Reschedule recurrent event
- CoreTiming::ScheduleEvent(gyroscope_update_ticks - cycles_late, gyroscope_update_event);
-}
-
-void GetIPCHandles(Service::Interface* self) {
- u32* cmd_buff = Kernel::GetCommandBuffer();
-
- cmd_buff[1] = 0; // No error
- cmd_buff[2] = 0x14000000; // IPC Command Structure translate-header
- // TODO(yuriks): Return error from SendSyncRequest is this fails (part of IPC marshalling)
- cmd_buff[3] = Kernel::g_handle_table.Create(Service::HID::shared_mem).Unwrap();
- cmd_buff[4] = Kernel::g_handle_table.Create(Service::HID::event_pad_or_touch_1).Unwrap();
- cmd_buff[5] = Kernel::g_handle_table.Create(Service::HID::event_pad_or_touch_2).Unwrap();
- cmd_buff[6] = Kernel::g_handle_table.Create(Service::HID::event_accelerometer).Unwrap();
- cmd_buff[7] = Kernel::g_handle_table.Create(Service::HID::event_gyroscope).Unwrap();
- cmd_buff[8] = Kernel::g_handle_table.Create(Service::HID::event_debug_pad).Unwrap();
-}
-
-void EnableAccelerometer(Service::Interface* self) {
- u32* cmd_buff = Kernel::GetCommandBuffer();
-
- ++enable_accelerometer_count;
-
- // Schedules the accelerometer update event if the accelerometer was just enabled
- if (enable_accelerometer_count == 1) {
- CoreTiming::ScheduleEvent(accelerometer_update_ticks, accelerometer_update_event);
- }
-
- cmd_buff[1] = RESULT_SUCCESS.raw;
-
- LOG_DEBUG(Service_HID, "called");
-}
-
-void DisableAccelerometer(Service::Interface* self) {
- u32* cmd_buff = Kernel::GetCommandBuffer();
-
- --enable_accelerometer_count;
-
- // Unschedules the accelerometer update event if the accelerometer was just disabled
- if (enable_accelerometer_count == 0) {
- CoreTiming::UnscheduleEvent(accelerometer_update_event, 0);
- }
-
- cmd_buff[1] = RESULT_SUCCESS.raw;
-
- LOG_DEBUG(Service_HID, "called");
-}
-
-void EnableGyroscopeLow(Service::Interface* self) {
- u32* cmd_buff = Kernel::GetCommandBuffer();
-
- ++enable_gyroscope_count;
-
- // Schedules the gyroscope update event if the gyroscope was just enabled
- if (enable_gyroscope_count == 1) {
- CoreTiming::ScheduleEvent(gyroscope_update_ticks, gyroscope_update_event);
- }
-
- cmd_buff[1] = RESULT_SUCCESS.raw;
-
- LOG_DEBUG(Service_HID, "called");
-}
-
-void DisableGyroscopeLow(Service::Interface* self) {
- u32* cmd_buff = Kernel::GetCommandBuffer();
-
- --enable_gyroscope_count;
-
- // Unschedules the gyroscope update event if the gyroscope was just disabled
- if (enable_gyroscope_count == 0) {
- CoreTiming::UnscheduleEvent(gyroscope_update_event, 0);
- }
-
- cmd_buff[1] = RESULT_SUCCESS.raw;
-
- LOG_DEBUG(Service_HID, "called");
-}
-
-void GetGyroscopeLowRawToDpsCoefficient(Service::Interface* self) {
- u32* cmd_buff = Kernel::GetCommandBuffer();
-
- cmd_buff[1] = RESULT_SUCCESS.raw;
-
- f32 coef = gyroscope_coef;
- memcpy(&cmd_buff[2], &coef, 4);
-}
-
-void GetGyroscopeLowCalibrateParam(Service::Interface* self) {
- u32* cmd_buff = Kernel::GetCommandBuffer();
-
- cmd_buff[1] = RESULT_SUCCESS.raw;
-
- const s16 param_unit = 6700; // an approximate value taken from hw
- GyroscopeCalibrateParam param = {
- {0, param_unit, -param_unit}, {0, param_unit, -param_unit}, {0, param_unit, -param_unit},
- };
- memcpy(&cmd_buff[2], &param, sizeof(param));
-
- LOG_WARNING(Service_HID, "(STUBBED) called");
-}
-
-void GetSoundVolume(Service::Interface* self) {
- u32* cmd_buff = Kernel::GetCommandBuffer();
-
- const u8 volume = 0x3F; // TODO(purpasmart): Find out if this is the max value for the volume
-
- cmd_buff[1] = RESULT_SUCCESS.raw;
- cmd_buff[2] = volume;
-
- LOG_WARNING(Service_HID, "(STUBBED) called");
-}
-
-void Init() {
- using namespace Kernel;
-
- AddService(new HID_U_Interface);
- AddService(new HID_SPVR_Interface);
-
- is_device_reload_pending.store(true);
-
- using Kernel::MemoryPermission;
- shared_mem =
- SharedMemory::Create(nullptr, 0x1000, MemoryPermission::ReadWrite, MemoryPermission::Read,
- 0, Kernel::MemoryRegion::BASE, "HID:SharedMemory");
-
- next_pad_index = 0;
- next_touch_index = 0;
- next_accelerometer_index = 0;
- next_gyroscope_index = 0;
-
- enable_accelerometer_count = 0;
- enable_gyroscope_count = 0;
-
- // Create event handles
- event_pad_or_touch_1 = Event::Create(ResetType::OneShot, "HID:EventPadOrTouch1");
- event_pad_or_touch_2 = Event::Create(ResetType::OneShot, "HID:EventPadOrTouch2");
- event_accelerometer = Event::Create(ResetType::OneShot, "HID:EventAccelerometer");
- event_gyroscope = Event::Create(ResetType::OneShot, "HID:EventGyroscope");
- event_debug_pad = Event::Create(ResetType::OneShot, "HID:EventDebugPad");
-
- // Register update callbacks
- pad_update_event = CoreTiming::RegisterEvent("HID::UpdatePadCallback", UpdatePadCallback);
- accelerometer_update_event =
- CoreTiming::RegisterEvent("HID::UpdateAccelerometerCallback", UpdateAccelerometerCallback);
- gyroscope_update_event =
- CoreTiming::RegisterEvent("HID::UpdateGyroscopeCallback", UpdateGyroscopeCallback);
-
- CoreTiming::ScheduleEvent(pad_update_ticks, pad_update_event);
-}
-
-void Shutdown() {
- shared_mem = nullptr;
- event_pad_or_touch_1 = nullptr;
- event_pad_or_touch_2 = nullptr;
- event_accelerometer = nullptr;
- event_gyroscope = nullptr;
- event_debug_pad = nullptr;
- UnloadInputDevices();
-}
-
-void ReloadInputDevices() {
- is_device_reload_pending.store(true);
-}
+void ReloadInputDevices() {}
} // namespace HID
-
} // namespace Service
diff --git a/src/core/hle/service/hid/hid.h b/src/core/hle/service/hid/hid.h
index ef25926b5..a1d227dfe 100644
--- a/src/core/hle/service/hid/hid.h
+++ b/src/core/hle/service/hid/hid.h
@@ -4,270 +4,9 @@
#pragma once
-#include <array>
-#ifndef _MSC_VER
-#include <cstddef>
-#endif
-#include "common/bit_field.h"
-#include "common/common_funcs.h"
-#include "common/common_types.h"
-#include "core/settings.h"
-
namespace Service {
-
-class Interface;
-
namespace HID {
-/**
- * Structure of a Pad controller state.
- */
-struct PadState {
- union {
- u32 hex{};
-
- BitField<0, 1, u32> a;
- BitField<1, 1, u32> b;
- BitField<2, 1, u32> select;
- BitField<3, 1, u32> start;
- BitField<4, 1, u32> right;
- BitField<5, 1, u32> left;
- BitField<6, 1, u32> up;
- BitField<7, 1, u32> down;
- BitField<8, 1, u32> r;
- BitField<9, 1, u32> l;
- BitField<10, 1, u32> x;
- BitField<11, 1, u32> y;
-
- BitField<28, 1, u32> circle_right;
- BitField<29, 1, u32> circle_left;
- BitField<30, 1, u32> circle_up;
- BitField<31, 1, u32> circle_down;
- };
-};
-
-/**
- * Structure of a single entry of Pad state history within HID shared memory
- */
-struct PadDataEntry {
- PadState current_state;
- PadState delta_additions;
- PadState delta_removals;
-
- s16 circle_pad_x;
- s16 circle_pad_y;
-};
-
-/**
- * Structure of a single entry of touch state history within HID shared memory
- */
-struct TouchDataEntry {
- u16 x; ///< Y-coordinate of a touchpad press on the lower screen
- u16 y; ///< X-coordinate of a touchpad press on the lower screen
- BitField<0, 7, u32> valid; ///< Set to 1 when this entry contains actual X/Y data, otherwise 0
-};
-
-/**
- * Structure of a single entry of accelerometer state history within HID shared memory
- */
-struct AccelerometerDataEntry {
- s16 x;
- s16 y;
- s16 z;
-};
-
-/**
- * Structure of a single entry of gyroscope state history within HID shared memory
- */
-struct GyroscopeDataEntry {
- s16 x;
- s16 y;
- s16 z;
-};
-
-/**
- * Structure of data stored in HID shared memory
- */
-struct SharedMem {
- /// Pad data, this is used for buttons and the circle pad
- struct {
- s64 index_reset_ticks; ///< CPU tick count for when HID module updated entry index 0
- s64 index_reset_ticks_previous; ///< Previous `index_reset_ticks`
- u32 index; ///< Index of the last updated pad state entry
-
- INSERT_PADDING_WORDS(0x2);
-
- PadState current_state; ///< Current state of the pad buttons
-
- // TODO(bunnei): Implement `raw_circle_pad_data` field
- u32 raw_circle_pad_data; ///< Raw (analog) circle pad data, before being converted
-
- INSERT_PADDING_WORDS(0x1);
-
- std::array<PadDataEntry, 8> entries; ///< Last 8 pad entries
- } pad;
-
- /// Touchpad data, this is used for touchpad input
- struct {
- s64 index_reset_ticks; ///< CPU tick count for when HID module updated entry index 0
- s64 index_reset_ticks_previous; ///< Previous `index_reset_ticks`
- u32 index; ///< Index of the last updated touch entry
-
- INSERT_PADDING_WORDS(0x1);
-
- // TODO(bunnei): Implement `raw_entry` field
- TouchDataEntry raw_entry; ///< Raw (analog) touch data, before being converted
-
- std::array<TouchDataEntry, 8> entries; ///< Last 8 touch entries, in pixel coordinates
- } touch;
-
- /// Accelerometer data
- struct {
- s64 index_reset_ticks; ///< CPU tick count for when HID module updated entry index 0
- s64 index_reset_ticks_previous; ///< Previous `index_reset_ticks`
- u32 index; ///< Index of the last updated accelerometer entry
-
- INSERT_PADDING_WORDS(0x1);
-
- AccelerometerDataEntry raw_entry;
- INSERT_PADDING_BYTES(2);
-
- std::array<AccelerometerDataEntry, 8> entries;
- } accelerometer;
-
- /// Gyroscope data
- struct {
- s64 index_reset_ticks; ///< CPU tick count for when HID module updated entry index 0
- s64 index_reset_ticks_previous; ///< Previous `index_reset_ticks`
- u32 index; ///< Index of the last updated accelerometer entry
-
- INSERT_PADDING_WORDS(0x1);
-
- GyroscopeDataEntry raw_entry;
- INSERT_PADDING_BYTES(2);
-
- std::array<GyroscopeDataEntry, 32> entries;
- } gyroscope;
-};
-
-/**
- * Structure of calibrate params that GetGyroscopeLowCalibrateParam returns
- */
-struct GyroscopeCalibrateParam {
- struct {
- // TODO (wwylele): figure out the exact meaning of these params
- s16 zero_point;
- s16 positive_unit_point;
- s16 negative_unit_point;
- } x, y, z;
-};
-
-// TODO: MSVC does not support using offsetof() on non-static data members even though this
-// is technically allowed since C++11. This macro should be enabled once MSVC adds
-// support for that.
-#ifndef _MSC_VER
-#define ASSERT_REG_POSITION(field_name, position) \
- static_assert(offsetof(SharedMem, field_name) == position * 4, \
- "Field " #field_name " has invalid position")
-
-ASSERT_REG_POSITION(pad.index_reset_ticks, 0x0);
-ASSERT_REG_POSITION(touch.index_reset_ticks, 0x2A);
-
-#undef ASSERT_REG_POSITION
-#endif // !defined(_MSC_VER)
-
-struct DirectionState {
- bool up;
- bool down;
- bool left;
- bool right;
-};
-
-/// Translates analog stick axes to directions. This is exposed for ir_rst module to use.
-DirectionState GetStickDirectionState(s16 circle_pad_x, s16 circle_pad_y);
-
-/**
- * HID::GetIPCHandles service function
- * Inputs:
- * None
- * Outputs:
- * 1 : Result of function, 0 on success, otherwise error code
- * 2 : IPC Command Structure translate-header
- * 3 : Handle to HID shared memory
- * 4 : Event signaled by HID
- * 5 : Event signaled by HID
- * 6 : Event signaled by HID
- * 7 : Gyroscope event
- * 8 : Event signaled by HID
- */
-void GetIPCHandles(Interface* self);
-
-/**
- * HID::EnableAccelerometer service function
- * Inputs:
- * None
- * Outputs:
- * 1 : Result of function, 0 on success, otherwise error code
- */
-void EnableAccelerometer(Interface* self);
-
-/**
- * HID::DisableAccelerometer service function
- * Inputs:
- * None
- * Outputs:
- * 1 : Result of function, 0 on success, otherwise error code
- */
-void DisableAccelerometer(Interface* self);
-
-/**
- * HID::EnableGyroscopeLow service function
- * Inputs:
- * None
- * Outputs:
- * 1 : Result of function, 0 on success, otherwise error code
- */
-void EnableGyroscopeLow(Interface* self);
-
-/**
- * HID::DisableGyroscopeLow service function
- * Inputs:
- * None
- * Outputs:
- * 1 : Result of function, 0 on success, otherwise error code
- */
-void DisableGyroscopeLow(Interface* self);
-
-/**
- * HID::GetSoundVolume service function
- * Inputs:
- * None
- * Outputs:
- * 1 : Result of function, 0 on success, otherwise error code
- * 2 : u8 output value
- */
-void GetSoundVolume(Interface* self);
-
-/**
- * HID::GetGyroscopeLowRawToDpsCoefficient service function
- * Inputs:
- * None
- * Outputs:
- * 1 : Result of function, 0 on success, otherwise error code
- * 2 : float output value
- */
-void GetGyroscopeLowRawToDpsCoefficient(Service::Interface* self);
-
-/**
- * HID::GetGyroscopeLowCalibrateParam service function
- * Inputs:
- * None
- * Outputs:
- * 1 : Result of function, 0 on success, otherwise error code
- * 2~6 (18 bytes) : struct GyroscopeCalibrateParam
- */
-void GetGyroscopeLowCalibrateParam(Service::Interface* self);
-
/// Initialize HID service
void Init();
@@ -276,5 +15,6 @@ void Shutdown();
/// Reload input devices. Used when input configuration changed
void ReloadInputDevices();
-}
-}
+
+} // namespace HID
+} // namespace Service
diff --git a/src/core/hle/service/hid/hid_spvr.cpp b/src/core/hle/service/hid/hid_spvr.cpp
deleted file mode 100644
index 09007e304..000000000
--- a/src/core/hle/service/hid/hid_spvr.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright 2015 Citra Emulator Project
-// Licensed under GPLv2 or any later version
-// Refer to the license.txt file included.
-
-#include "core/hle/service/hid/hid.h"
-#include "core/hle/service/hid/hid_spvr.h"
-
-namespace Service {
-namespace HID {
-
-const Interface::FunctionInfo FunctionTable[] = {
- {0x000A0000, GetIPCHandles, "GetIPCHandles"},
- {0x000B0000, nullptr, "StartAnalogStickCalibration"},
- {0x000E0000, nullptr, "GetAnalogStickCalibrateParam"},
- {0x00110000, EnableAccelerometer, "EnableAccelerometer"},
- {0x00120000, DisableAccelerometer, "DisableAccelerometer"},
- {0x00130000, EnableGyroscopeLow, "EnableGyroscopeLow"},
- {0x00140000, DisableGyroscopeLow, "DisableGyroscopeLow"},
- {0x00150000, GetGyroscopeLowRawToDpsCoefficient, "GetGyroscopeLowRawToDpsCoefficient"},
- {0x00160000, GetGyroscopeLowCalibrateParam, "GetGyroscopeLowCalibrateParam"},
- {0x00170000, GetSoundVolume, "GetSoundVolume"},
-};
-
-HID_SPVR_Interface::HID_SPVR_Interface() {
- Register(FunctionTable);
-}
-
-} // namespace HID
-} // namespace Service
diff --git a/src/core/hle/service/hid/hid_spvr.h b/src/core/hle/service/hid/hid_spvr.h
deleted file mode 100644
index ba61583d2..000000000
--- a/src/core/hle/service/hid/hid_spvr.h
+++ /dev/null
@@ -1,22 +0,0 @@
-// Copyright 2015 Citra Emulator Project
-// Licensed under GPLv2 or any later version
-// Refer to the license.txt file included.
-
-#pragma once
-
-#include "core/hle/service/service.h"
-
-namespace Service {
-namespace HID {
-
-class HID_SPVR_Interface : public Service::Interface {
-public:
- HID_SPVR_Interface();
-
- std::string GetPortName() const override {
- return "hid:SPVR";
- }
-};
-
-} // namespace HID
-} // namespace Service \ No newline at end of file
diff --git a/src/core/hle/service/hid/hid_user.cpp b/src/core/hle/service/hid/hid_user.cpp
deleted file mode 100644
index 42591543c..000000000
--- a/src/core/hle/service/hid/hid_user.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright 2015 Citra Emulator Project
-// Licensed under GPLv2 or any later version
-// Refer to the license.txt file included.
-
-#include "core/hle/service/hid/hid.h"
-#include "core/hle/service/hid/hid_user.h"
-
-namespace Service {
-namespace HID {
-
-const Interface::FunctionInfo FunctionTable[] = {
- {0x000A0000, GetIPCHandles, "GetIPCHandles"},
- {0x000B0000, nullptr, "StartAnalogStickCalibration"},
- {0x000E0000, nullptr, "GetAnalogStickCalibrateParam"},
- {0x00110000, EnableAccelerometer, "EnableAccelerometer"},
- {0x00120000, DisableAccelerometer, "DisableAccelerometer"},
- {0x00130000, EnableGyroscopeLow, "EnableGyroscopeLow"},
- {0x00140000, DisableGyroscopeLow, "DisableGyroscopeLow"},
- {0x00150000, GetGyroscopeLowRawToDpsCoefficient, "GetGyroscopeLowRawToDpsCoefficient"},
- {0x00160000, GetGyroscopeLowCalibrateParam, "GetGyroscopeLowCalibrateParam"},
- {0x00170000, GetSoundVolume, "GetSoundVolume"},
-};
-
-HID_U_Interface::HID_U_Interface() {
- Register(FunctionTable);
-}
-
-} // namespace HID
-} // namespace Service
diff --git a/src/core/hle/service/hid/hid_user.h b/src/core/hle/service/hid/hid_user.h
deleted file mode 100644
index baf7fed79..000000000
--- a/src/core/hle/service/hid/hid_user.h
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright 2015 Citra Emulator Project
-// Licensed under GPLv2 or any later version
-// Refer to the license.txt file included.
-
-#pragma once
-
-#include "core/hle/service/service.h"
-
-// This service is used for interfacing to physical user controls.
-// Uses include game pad controls, touchscreen, accelerometers, gyroscopes, and debug pad.
-
-namespace Service {
-namespace HID {
-
-/**
- * HID service interface.
- */
-class HID_U_Interface : public Service::Interface {
-public:
- HID_U_Interface();
-
- std::string GetPortName() const override {
- return "hid:USER";
- }
-};
-
-} // namespace HID
-} // namespace Service \ No newline at end of file