Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Suyu
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Suyu
Commits
867eabd6
There was an error fetching the commit references. Please try again later.
Commit
867eabd6
authored
7 years ago
by
wwylele
Browse files
Options
Downloads
Patches
Plain Diff
HID: use MotionDevice for Accelerometer and Gyroscope
parent
53ef90d1
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/core/frontend/input.h
+20
-0
20 additions, 0 deletions
src/core/frontend/input.h
src/core/hle/service/hid/hid.cpp
+27
-5
27 additions, 5 deletions
src/core/hle/service/hid/hid.cpp
src/core/settings.h
+1
-0
1 addition, 0 deletions
src/core/settings.h
with
48 additions
and
5 deletions
src/core/frontend/input.h
+
20
−
0
View file @
867eabd6
...
@@ -11,6 +11,7 @@
...
@@ -11,6 +11,7 @@
#include
<utility>
#include
<utility>
#include
"common/logging/log.h"
#include
"common/logging/log.h"
#include
"common/param_package.h"
#include
"common/param_package.h"
#include
"common/vector_math.h"
namespace
Input
{
namespace
Input
{
...
@@ -107,4 +108,23 @@ using ButtonDevice = InputDevice<bool>;
...
@@ -107,4 +108,23 @@ using ButtonDevice = InputDevice<bool>;
*/
*/
using
AnalogDevice
=
InputDevice
<
std
::
tuple
<
float
,
float
>>
;
using
AnalogDevice
=
InputDevice
<
std
::
tuple
<
float
,
float
>>
;
/**
* A motion device is an input device that returns a tuple of accelerometer state vector and
* gyroscope state vector.
*
* For accelerometer state vector:
* x+ is the same direction as LEFT on D-pad.
* y+ is normal to the touch screen, pointing outward.
* z+ is the same direction as UP on D-pad.
* Units: measured in unit of gravitational acceleration
*
* For gyroscope state vector:
* x+ is the same direction as LEFT on D-pad.
* y+ is normal to the touch screen, pointing outward.
* z+ is the same direction as UP on D-pad.
* Orientation is determined by right-hand rule.
* Units: deg/sec
*/
using
MotionDevice
=
InputDevice
<
std
::
tuple
<
Math
::
Vec3
<
float
>
,
Math
::
Vec3
<
float
>>>
;
}
// namespace Input
}
// namespace Input
This diff is collapsed.
Click to expand it.
src/core/hle/service/hid/hid.cpp
+
27
−
5
View file @
867eabd6
...
@@ -7,6 +7,7 @@
...
@@ -7,6 +7,7 @@
#include
<cmath>
#include
<cmath>
#include
<memory>
#include
<memory>
#include
"common/logging/log.h"
#include
"common/logging/log.h"
#include
"core/core.h"
#include
"core/core_timing.h"
#include
"core/core_timing.h"
#include
"core/frontend/emu_window.h"
#include
"core/frontend/emu_window.h"
#include
"core/frontend/input.h"
#include
"core/frontend/input.h"
...
@@ -50,10 +51,14 @@ constexpr u64 pad_update_ticks = BASE_CLOCK_RATE_ARM11 / 234;
...
@@ -50,10 +51,14 @@ constexpr u64 pad_update_ticks = BASE_CLOCK_RATE_ARM11 / 234;
constexpr
u64
accelerometer_update_ticks
=
BASE_CLOCK_RATE_ARM11
/
104
;
constexpr
u64
accelerometer_update_ticks
=
BASE_CLOCK_RATE_ARM11
/
104
;
constexpr
u64
gyroscope_update_ticks
=
BASE_CLOCK_RATE_ARM11
/
101
;
constexpr
u64
gyroscope_update_ticks
=
BASE_CLOCK_RATE_ARM11
/
101
;
constexpr
float
accelerometer_coef
=
512.0
f
;
// measured from hw test result
constexpr
float
gyroscope_coef
=
14.375
f
;
// got from hwtest GetGyroscopeLowRawToDpsCoefficient call
static
std
::
atomic
<
bool
>
is_device_reload_pending
;
static
std
::
atomic
<
bool
>
is_device_reload_pending
;
static
std
::
array
<
std
::
unique_ptr
<
Input
::
ButtonDevice
>
,
Settings
::
NativeButton
::
NUM_BUTTONS_HID
>
static
std
::
array
<
std
::
unique_ptr
<
Input
::
ButtonDevice
>
,
Settings
::
NativeButton
::
NUM_BUTTONS_HID
>
buttons
;
buttons
;
static
std
::
unique_ptr
<
Input
::
AnalogDevice
>
circle_pad
;
static
std
::
unique_ptr
<
Input
::
AnalogDevice
>
circle_pad
;
static
std
::
unique_ptr
<
Input
::
MotionDevice
>
motion_device
;
DirectionState
GetStickDirectionState
(
s16
circle_pad_x
,
s16
circle_pad_y
)
{
DirectionState
GetStickDirectionState
(
s16
circle_pad_x
,
s16
circle_pad_y
)
{
// 30 degree and 60 degree are angular thresholds for directions
// 30 degree and 60 degree are angular thresholds for directions
...
@@ -90,6 +95,7 @@ static void LoadInputDevices() {
...
@@ -90,6 +95,7 @@ static void LoadInputDevices() {
buttons
.
begin
(),
Input
::
CreateDevice
<
Input
::
ButtonDevice
>
);
buttons
.
begin
(),
Input
::
CreateDevice
<
Input
::
ButtonDevice
>
);
circle_pad
=
Input
::
CreateDevice
<
Input
::
AnalogDevice
>
(
circle_pad
=
Input
::
CreateDevice
<
Input
::
AnalogDevice
>
(
Settings
::
values
.
analogs
[
Settings
::
NativeAnalog
::
CirclePad
]);
Settings
::
values
.
analogs
[
Settings
::
NativeAnalog
::
CirclePad
]);
motion_device
=
Input
::
CreateDevice
<
Input
::
MotionDevice
>
(
Settings
::
values
.
motion_device
);
}
}
static
void
UnloadInputDevices
()
{
static
void
UnloadInputDevices
()
{
...
@@ -97,6 +103,7 @@ static void UnloadInputDevices() {
...
@@ -97,6 +103,7 @@ static void UnloadInputDevices() {
button
.
reset
();
button
.
reset
();
}
}
circle_pad
.
reset
();
circle_pad
.
reset
();
motion_device
.
reset
();
}
}
static
void
UpdatePadCallback
(
u64
userdata
,
int
cycles_late
)
{
static
void
UpdatePadCallback
(
u64
userdata
,
int
cycles_late
)
{
...
@@ -193,10 +200,19 @@ static void UpdateAccelerometerCallback(u64 userdata, int cycles_late) {
...
@@ -193,10 +200,19 @@ static void UpdateAccelerometerCallback(u64 userdata, int cycles_late) {
mem
->
accelerometer
.
index
=
next_accelerometer_index
;
mem
->
accelerometer
.
index
=
next_accelerometer_index
;
next_accelerometer_index
=
(
next_accelerometer_index
+
1
)
%
mem
->
accelerometer
.
entries
.
size
();
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 as it in UpdateGyroscopeCallback
// The time stretch formula should be like
// stretched_vector = (raw_vector - gravity) * stretch_ratio + gravity
AccelerometerDataEntry
&
accelerometer_entry
=
AccelerometerDataEntry
&
accelerometer_entry
=
mem
->
accelerometer
.
entries
[
mem
->
accelerometer
.
index
];
mem
->
accelerometer
.
entries
[
mem
->
accelerometer
.
index
];
std
::
tie
(
accelerometer_entry
.
x
,
accelerometer_entry
.
y
,
accelerometer_entry
.
z
)
=
VideoCore
::
g_emu_window
->
GetAccelerometerState
();
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
// Make up "raw" entry
// TODO(wwylele):
// TODO(wwylele):
...
@@ -227,8 +243,14 @@ static void UpdateGyroscopeCallback(u64 userdata, int cycles_late) {
...
@@ -227,8 +243,14 @@ static void UpdateGyroscopeCallback(u64 userdata, int cycles_late) {
next_gyroscope_index
=
(
next_gyroscope_index
+
1
)
%
mem
->
gyroscope
.
entries
.
size
();
next_gyroscope_index
=
(
next_gyroscope_index
+
1
)
%
mem
->
gyroscope
.
entries
.
size
();
GyroscopeDataEntry
&
gyroscope_entry
=
mem
->
gyroscope
.
entries
[
mem
->
gyroscope
.
index
];
GyroscopeDataEntry
&
gyroscope_entry
=
mem
->
gyroscope
.
entries
[
mem
->
gyroscope
.
index
];
std
::
tie
(
gyroscope_entry
.
x
,
gyroscope_entry
.
y
,
gyroscope_entry
.
z
)
=
VideoCore
::
g_emu_window
->
GetGyroscopeState
();
Math
::
Vec3
<
float
>
gyro
;
std
::
tie
(
std
::
ignore
,
gyro
)
=
motion_device
->
GetStatus
();
float
stretch
=
Core
::
System
::
GetInstance
().
perf_stats
.
GetLastFrameTimeScale
();
gyro
*=
gyroscope_coef
*
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
// Make up "raw" entry
mem
->
gyroscope
.
raw_entry
.
x
=
gyroscope_entry
.
x
;
mem
->
gyroscope
.
raw_entry
.
x
=
gyroscope_entry
.
x
;
...
@@ -326,7 +348,7 @@ void GetGyroscopeLowRawToDpsCoefficient(Service::Interface* self) {
...
@@ -326,7 +348,7 @@ void GetGyroscopeLowRawToDpsCoefficient(Service::Interface* self) {
cmd_buff
[
1
]
=
RESULT_SUCCESS
.
raw
;
cmd_buff
[
1
]
=
RESULT_SUCCESS
.
raw
;
f32
coef
=
VideoCore
::
g_emu_window
->
GetGyroscopeRawToDpsCoefficient
()
;
f32
coef
=
gyroscope_coef
;
memcpy
(
&
cmd_buff
[
2
],
&
coef
,
4
);
memcpy
(
&
cmd_buff
[
2
],
&
coef
,
4
);
}
}
...
...
This diff is collapsed.
Click to expand it.
src/core/settings.h
+
1
−
0
View file @
867eabd6
...
@@ -79,6 +79,7 @@ struct Values {
...
@@ -79,6 +79,7 @@ struct Values {
// Controls
// Controls
std
::
array
<
std
::
string
,
NativeButton
::
NumButtons
>
buttons
;
std
::
array
<
std
::
string
,
NativeButton
::
NumButtons
>
buttons
;
std
::
array
<
std
::
string
,
NativeAnalog
::
NumAnalogs
>
analogs
;
std
::
array
<
std
::
string
,
NativeAnalog
::
NumAnalogs
>
analogs
;
std
::
string
motion_device
;
// Core
// Core
bool
use_cpu_jit
;
bool
use_cpu_jit
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment