diff options
author | vperus <vperus@gmail.com> | 2021-11-07 14:56:33 +0200 |
---|---|---|
committer | vperus <vperus@gmail.com> | 2021-11-29 16:33:12 +0200 |
commit | 04fa990b0ced02a7011ad4801d8c956cbc1f65ab (patch) | |
tree | eacea725e34348119594f1cb153fcf24aefde666 /src/input_common/helpers/udp_protocol.h | |
parent | 3031223153d2b11d089acf5c50718372b5c24b6b (diff) |
[input_common] Add completion test for CalibrationConfigurationJob
Diffstat (limited to 'src/input_common/helpers/udp_protocol.h')
-rw-r--r-- | src/input_common/helpers/udp_protocol.h | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/src/input_common/helpers/udp_protocol.h b/src/input_common/helpers/udp_protocol.h index bcba12c58..2d5d54ddb 100644 --- a/src/input_common/helpers/udp_protocol.h +++ b/src/input_common/helpers/udp_protocol.h @@ -54,6 +54,18 @@ struct Message { template <typename T> constexpr Type GetMessageType(); +template <typename T> +Message<T> CreateMessage(const u32 magic, const T data, const u32 sender_id) { + boost::crc_32_type crc; + Header header{ + magic, PROTOCOL_VERSION, sizeof(T) + sizeof(Type), 0, sender_id, GetMessageType<T>(), + }; + Message<T> message{header, data}; + crc.process_bytes(&message, sizeof(Message<T>)); + message.header.crc = crc.checksum(); + return message; +} + namespace Request { enum RegisterFlags : u8 { @@ -101,14 +113,7 @@ static_assert(std::is_trivially_copyable_v<PadData>, */ template <typename T> Message<T> Create(const T data, const u32 client_id = 0) { - boost::crc_32_type crc; - Header header{ - CLIENT_MAGIC, PROTOCOL_VERSION, sizeof(T) + sizeof(Type), 0, client_id, GetMessageType<T>(), - }; - Message<T> message{header, data}; - crc.process_bytes(&message, sizeof(Message<T>)); - message.header.crc = crc.checksum(); - return message; + return CreateMessage(CLIENT_MAGIC, data, client_id); } } // namespace Request |