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
d7d40b3c
There was an error fetching the commit references. Please try again later.
Commit
d7d40b3c
authored
8 years ago
by
wwylele
Browse files
Options
Downloads
Patches
Plain Diff
Frontend: make motion sensor interfaced thread-safe
parent
bcf9d20d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/core/frontend/emu_window.cpp
+3
-0
3 additions, 0 deletions
src/core/frontend/emu_window.cpp
src/core/frontend/emu_window.h
+5
-2
5 additions, 2 deletions
src/core/frontend/emu_window.h
with
8 additions
and
2 deletions
src/core/frontend/emu_window.cpp
+
3
−
0
View file @
d7d40b3c
...
@@ -93,6 +93,8 @@ void EmuWindow::TouchMoved(unsigned framebuffer_x, unsigned framebuffer_y) {
...
@@ -93,6 +93,8 @@ void EmuWindow::TouchMoved(unsigned framebuffer_x, unsigned framebuffer_y) {
void
EmuWindow
::
AccelerometerChanged
(
float
x
,
float
y
,
float
z
)
{
void
EmuWindow
::
AccelerometerChanged
(
float
x
,
float
y
,
float
z
)
{
constexpr
float
coef
=
512
;
constexpr
float
coef
=
512
;
std
::
lock_guard
<
std
::
mutex
>
lock
(
accel_mutex
);
// TODO(wwylele): do a time stretch as it in GyroscopeChanged
// TODO(wwylele): do a time stretch as it in GyroscopeChanged
// The time stretch formula should be like
// The time stretch formula should be like
// stretched_vector = (raw_vector - gravity) * stretch_ratio + gravity
// stretched_vector = (raw_vector - gravity) * stretch_ratio + gravity
...
@@ -106,6 +108,7 @@ void EmuWindow::GyroscopeChanged(float x, float y, float z) {
...
@@ -106,6 +108,7 @@ void EmuWindow::GyroscopeChanged(float x, float y, float z) {
float
coef
=
GetGyroscopeRawToDpsCoefficient
();
float
coef
=
GetGyroscopeRawToDpsCoefficient
();
float
stretch
=
float
stretch
=
FULL_FPS
/
Common
::
Profiling
::
GetTimingResultsAggregator
()
->
GetAggregatedResults
().
fps
;
FULL_FPS
/
Common
::
Profiling
::
GetTimingResultsAggregator
()
->
GetAggregatedResults
().
fps
;
std
::
lock_guard
<
std
::
mutex
>
lock
(
gyro_mutex
);
gyro_x
=
x
*
coef
*
stretch
;
gyro_x
=
x
*
coef
*
stretch
;
gyro_y
=
y
*
coef
*
stretch
;
gyro_y
=
y
*
coef
*
stretch
;
gyro_z
=
z
*
coef
*
stretch
;
gyro_z
=
z
*
coef
*
stretch
;
...
...
This diff is collapsed.
Click to expand it.
src/core/frontend/emu_window.h
+
5
−
2
View file @
d7d40b3c
...
@@ -4,6 +4,7 @@
...
@@ -4,6 +4,7 @@
#pragma once
#pragma once
#include
<mutex>
#include
<tuple>
#include
<tuple>
#include
<utility>
#include
<utility>
#include
"common/common_types.h"
#include
"common/common_types.h"
...
@@ -155,10 +156,10 @@ public:
...
@@ -155,10 +156,10 @@ public:
* 1 unit of return value = 1/512 g (measured by hw test),
* 1 unit of return value = 1/512 g (measured by hw test),
* where g is the gravitational acceleration (9.8 m/sec2).
* where g is the gravitational acceleration (9.8 m/sec2).
* @note This should be called by the core emu thread to get a state set by the window thread.
* @note This should be called by the core emu thread to get a state set by the window thread.
* @todo Fix this function to be thread-safe.
* @return std::tuple of (x, y, z)
* @return std::tuple of (x, y, z)
*/
*/
std
::
tuple
<
s16
,
s16
,
s16
>
GetAccelerometerState
()
{
std
::
tuple
<
s16
,
s16
,
s16
>
GetAccelerometerState
()
{
std
::
lock_guard
<
std
::
mutex
>
lock
(
accel_mutex
);
return
std
::
make_tuple
(
accel_x
,
accel_y
,
accel_z
);
return
std
::
make_tuple
(
accel_x
,
accel_y
,
accel_z
);
}
}
...
@@ -173,10 +174,10 @@ public:
...
@@ -173,10 +174,10 @@ public:
* 1 unit of return value = (1/coef) deg/sec,
* 1 unit of return value = (1/coef) deg/sec,
* where coef is the return value of GetGyroscopeRawToDpsCoefficient().
* where coef is the return value of GetGyroscopeRawToDpsCoefficient().
* @note This should be called by the core emu thread to get a state set by the window thread.
* @note This should be called by the core emu thread to get a state set by the window thread.
* @todo Fix this function to be thread-safe.
* @return std::tuple of (x, y, z)
* @return std::tuple of (x, y, z)
*/
*/
std
::
tuple
<
s16
,
s16
,
s16
>
GetGyroscopeState
()
{
std
::
tuple
<
s16
,
s16
,
s16
>
GetGyroscopeState
()
{
std
::
lock_guard
<
std
::
mutex
>
lock
(
gyro_mutex
);
return
std
::
make_tuple
(
gyro_x
,
gyro_y
,
gyro_z
);
return
std
::
make_tuple
(
gyro_x
,
gyro_y
,
gyro_z
);
}
}
...
@@ -306,10 +307,12 @@ private:
...
@@ -306,10 +307,12 @@ private:
s16
circle_pad_x
;
///< Circle pad X-position in native 3DS pixel coordinates (-156 - 156)
s16
circle_pad_x
;
///< Circle pad X-position in native 3DS pixel coordinates (-156 - 156)
s16
circle_pad_y
;
///< Circle pad Y-position in native 3DS pixel coordinates (-156 - 156)
s16
circle_pad_y
;
///< Circle pad Y-position in native 3DS pixel coordinates (-156 - 156)
std
::
mutex
accel_mutex
;
s16
accel_x
;
///< Accelerometer X-axis value in native 3DS units
s16
accel_x
;
///< Accelerometer X-axis value in native 3DS units
s16
accel_y
;
///< Accelerometer Y-axis value in native 3DS units
s16
accel_y
;
///< Accelerometer Y-axis value in native 3DS units
s16
accel_z
;
///< Accelerometer Z-axis value in native 3DS units
s16
accel_z
;
///< Accelerometer Z-axis value in native 3DS units
std
::
mutex
gyro_mutex
;
s16
gyro_x
;
///< Gyroscope X-axis value in native 3DS units
s16
gyro_x
;
///< Gyroscope X-axis value in native 3DS units
s16
gyro_y
;
///< Gyroscope Y-axis value in native 3DS units
s16
gyro_y
;
///< Gyroscope Y-axis value in native 3DS units
s16
gyro_z
;
///< Gyroscope Z-axis value in native 3DS units
s16
gyro_z
;
///< Gyroscope Z-axis value in native 3DS units
...
...
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