Browse Source
Merge pull request #2249 from lioncash/ipc
ipc_helpers: Allow pushing and popping floating-point values
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
30 additions and
0 deletions
-
src/core/hle/ipc_helpers.h
|
|
|
@ -274,6 +274,20 @@ inline void ResponseBuilder::Push(u64 value) { |
|
|
|
Push(static_cast<u32>(value >> 32)); |
|
|
|
} |
|
|
|
|
|
|
|
template <> |
|
|
|
inline void ResponseBuilder::Push(float value) { |
|
|
|
u32 integral; |
|
|
|
std::memcpy(&integral, &value, sizeof(u32)); |
|
|
|
Push(integral); |
|
|
|
} |
|
|
|
|
|
|
|
template <> |
|
|
|
inline void ResponseBuilder::Push(double value) { |
|
|
|
u64 integral; |
|
|
|
std::memcpy(&integral, &value, sizeof(u64)); |
|
|
|
Push(integral); |
|
|
|
} |
|
|
|
|
|
|
|
template <> |
|
|
|
inline void ResponseBuilder::Push(bool value) { |
|
|
|
Push(static_cast<u8>(value)); |
|
|
|
@ -415,6 +429,22 @@ inline s64 RequestParser::Pop() { |
|
|
|
return static_cast<s64>(Pop<u64>()); |
|
|
|
} |
|
|
|
|
|
|
|
template <> |
|
|
|
inline float RequestParser::Pop() { |
|
|
|
const u32 value = Pop<u32>(); |
|
|
|
float real; |
|
|
|
std::memcpy(&real, &value, sizeof(real)); |
|
|
|
return real; |
|
|
|
} |
|
|
|
|
|
|
|
template <> |
|
|
|
inline double RequestParser::Pop() { |
|
|
|
const u64 value = Pop<u64>(); |
|
|
|
float real; |
|
|
|
std::memcpy(&real, &value, sizeof(real)); |
|
|
|
return real; |
|
|
|
} |
|
|
|
|
|
|
|
template <> |
|
|
|
inline bool RequestParser::Pop() { |
|
|
|
return Pop<u8>() != 0; |
|
|
|
|