5 changed files with 80 additions and 0 deletions
-
2src/core/core.vcxproj
-
6src/core/core.vcxproj.filters
-
33src/core/hle/service/hid.cpp
-
37src/core/hle/service/hid.h
-
2src/core/hle/service/service.cpp
@ -0,0 +1,33 @@ |
|||
// Copyright 2014 Citra Emulator Project
|
|||
// Licensed under GPLv2
|
|||
// Refer to the license.txt file included.
|
|||
|
|||
#include "common/log.h"
|
|||
|
|||
#include "core/hle/hle.h"
|
|||
#include "core/hle/service/hid.h"
|
|||
|
|||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|||
// Namespace HID_User
|
|||
|
|||
namespace HID_User { |
|||
|
|||
const HLE::FunctionDef FunctionTable[] = { |
|||
{0x000A0000, NULL, "GetIPCHandles"}, |
|||
{0x00110000, NULL, "EnableAccelerometer"}, |
|||
{0x00130000, NULL, "EnableGyroscopeLow"}, |
|||
{0x00150000, NULL, "GetGyroscopeLowRawToDpsCoefficient"}, |
|||
{0x00160000, NULL, "GetGyroscopeLowCalibrateParam"}, |
|||
}; |
|||
|
|||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|||
// Interface class
|
|||
|
|||
Interface::Interface() { |
|||
Register(FunctionTable, ARRAY_SIZE(FunctionTable)); |
|||
} |
|||
|
|||
Interface::~Interface() { |
|||
} |
|||
|
|||
} // namespace
|
|||
@ -0,0 +1,37 @@ |
|||
// Copyright 2014 Citra Emulator Project |
|||
// Licensed under GPLv2 |
|||
// Refer to the license.txt file included. |
|||
|
|||
#pragma once |
|||
|
|||
#include "core/hle/service/service.h" |
|||
|
|||
//////////////////////////////////////////////////////////////////////////////////////////////////// |
|||
// Namespace HID_User |
|||
|
|||
// This service is used for interfacing to physical user controls... perhaps "Human Interface |
|||
// Devices"? Uses include game pad controls, accelerometers, gyroscopes, etc. |
|||
|
|||
namespace HID_User { |
|||
|
|||
class Interface : public Service::Interface { |
|||
public: |
|||
|
|||
Interface(); |
|||
|
|||
~Interface(); |
|||
|
|||
/** |
|||
* Gets the string port name used by CTROS for the service |
|||
* @return Port name of service |
|||
*/ |
|||
std::string GetPortName() const { |
|||
return "hid:USER"; |
|||
} |
|||
|
|||
private: |
|||
|
|||
DISALLOW_COPY_AND_ASSIGN(Interface); |
|||
}; |
|||
|
|||
} // namespace |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue