|
|
@ -291,6 +291,7 @@ private: |
|
|
class Hid final : public ServiceFramework<Hid> { |
|
|
class Hid final : public ServiceFramework<Hid> { |
|
|
public: |
|
|
public: |
|
|
Hid() : ServiceFramework("hid") { |
|
|
Hid() : ServiceFramework("hid") { |
|
|
|
|
|
// clang-format off
|
|
|
static const FunctionInfo functions[] = { |
|
|
static const FunctionInfo functions[] = { |
|
|
{0, &Hid::CreateAppletResource, "CreateAppletResource"}, |
|
|
{0, &Hid::CreateAppletResource, "CreateAppletResource"}, |
|
|
{1, &Hid::ActivateDebugPad, "ActivateDebugPad"}, |
|
|
{1, &Hid::ActivateDebugPad, "ActivateDebugPad"}, |
|
|
@ -333,15 +334,13 @@ public: |
|
|
{102, &Hid::SetSupportedNpadIdType, "SetSupportedNpadIdType"}, |
|
|
{102, &Hid::SetSupportedNpadIdType, "SetSupportedNpadIdType"}, |
|
|
{103, &Hid::ActivateNpad, "ActivateNpad"}, |
|
|
{103, &Hid::ActivateNpad, "ActivateNpad"}, |
|
|
{104, nullptr, "DeactivateNpad"}, |
|
|
{104, nullptr, "DeactivateNpad"}, |
|
|
{106, &Hid::AcquireNpadStyleSetUpdateEventHandle, |
|
|
|
|
|
"AcquireNpadStyleSetUpdateEventHandle"}, |
|
|
|
|
|
{107, nullptr, "DisconnectNpad"}, |
|
|
|
|
|
|
|
|
{106, &Hid::AcquireNpadStyleSetUpdateEventHandle, "AcquireNpadStyleSetUpdateEventHandle"}, |
|
|
|
|
|
{107, &Hid::DisconnectNpad, "DisconnectNpad"}, |
|
|
{108, &Hid::GetPlayerLedPattern, "GetPlayerLedPattern"}, |
|
|
{108, &Hid::GetPlayerLedPattern, "GetPlayerLedPattern"}, |
|
|
{109, nullptr, "ActivateNpadWithRevision"}, |
|
|
{109, nullptr, "ActivateNpadWithRevision"}, |
|
|
{120, &Hid::SetNpadJoyHoldType, "SetNpadJoyHoldType"}, |
|
|
{120, &Hid::SetNpadJoyHoldType, "SetNpadJoyHoldType"}, |
|
|
{121, &Hid::GetNpadJoyHoldType, "GetNpadJoyHoldType"}, |
|
|
{121, &Hid::GetNpadJoyHoldType, "GetNpadJoyHoldType"}, |
|
|
{122, &Hid::SetNpadJoyAssignmentModeSingleByDefault, |
|
|
|
|
|
"SetNpadJoyAssignmentModeSingleByDefault"}, |
|
|
|
|
|
|
|
|
{122, &Hid::SetNpadJoyAssignmentModeSingleByDefault, "SetNpadJoyAssignmentModeSingleByDefault"}, |
|
|
{123, nullptr, "SetNpadJoyAssignmentModeSingleByDefault"}, |
|
|
{123, nullptr, "SetNpadJoyAssignmentModeSingleByDefault"}, |
|
|
{124, &Hid::SetNpadJoyAssignmentModeDual, "SetNpadJoyAssignmentModeDual"}, |
|
|
{124, &Hid::SetNpadJoyAssignmentModeDual, "SetNpadJoyAssignmentModeDual"}, |
|
|
{125, &Hid::MergeSingleJoyAsDualJoy, "MergeSingleJoyAsDualJoy"}, |
|
|
{125, &Hid::MergeSingleJoyAsDualJoy, "MergeSingleJoyAsDualJoy"}, |
|
|
@ -398,6 +397,8 @@ public: |
|
|
{1000, nullptr, "SetNpadCommunicationMode"}, |
|
|
{1000, nullptr, "SetNpadCommunicationMode"}, |
|
|
{1001, nullptr, "GetNpadCommunicationMode"}, |
|
|
{1001, nullptr, "GetNpadCommunicationMode"}, |
|
|
}; |
|
|
}; |
|
|
|
|
|
// clang-format on
|
|
|
|
|
|
|
|
|
RegisterHandlers(functions); |
|
|
RegisterHandlers(functions); |
|
|
|
|
|
|
|
|
event = Kernel::Event::Create(Kernel::ResetType::OneShot, "hid:EventHandle"); |
|
|
event = Kernel::Event::Create(Kernel::ResetType::OneShot, "hid:EventHandle"); |
|
|
@ -496,6 +497,12 @@ private: |
|
|
LOG_WARNING(Service_HID, "(STUBBED) called"); |
|
|
LOG_WARNING(Service_HID, "(STUBBED) called"); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void DisconnectNpad(Kernel::HLERequestContext& ctx) { |
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 2}; |
|
|
|
|
|
rb.Push(RESULT_SUCCESS); |
|
|
|
|
|
LOG_WARNING(Service_HID, "(STUBBED) called"); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
void GetPlayerLedPattern(Kernel::HLERequestContext& ctx) { |
|
|
void GetPlayerLedPattern(Kernel::HLERequestContext& ctx) { |
|
|
IPC::ResponseBuilder rb{ctx, 2}; |
|
|
IPC::ResponseBuilder rb{ctx, 2}; |
|
|
rb.Push(RESULT_SUCCESS); |
|
|
rb.Push(RESULT_SUCCESS); |
|
|
|