From 844a33933076a8e343de944b6eab26b4166e2f6f Mon Sep 17 00:00:00 2001 From: Simon Pribylski <66266021+Persson-dev@users.noreply.github.com> Date: Thu, 21 Apr 2022 18:05:09 +0200 Subject: Protocol sources fixes (#5411) * Move HANDLE_READ to header * Fix compiler warnings * Removed unnecessary default statement --- src/Protocol/Packetizer.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'src/Protocol/Packetizer.h') diff --git a/src/Protocol/Packetizer.h b/src/Protocol/Packetizer.h index 679a26af4..ccf7234cd 100644 --- a/src/Protocol/Packetizer.h +++ b/src/Protocol/Packetizer.h @@ -24,6 +24,37 @@ class cUUID; +/** Macros used to read packets more easily */ +#define HANDLE_READ(ByteBuf, Proc, Type, Var) \ + Type Var; \ + do { \ + if (!ByteBuf.Proc(Var))\ + {\ + return;\ + } \ + } while (false) + + + + + +#define HANDLE_PACKET_READ(ByteBuf, Proc, Type, Var) \ + Type Var; \ + do { \ + { \ + if (!ByteBuf.Proc(Var)) \ + { \ + ByteBuf.CheckValid(); \ + return false; \ + } \ + ByteBuf.CheckValid(); \ + } \ + } while (false) + + + + + /** Composes an individual packet in the protocol's m_OutPacketBuffer; sends it just before being destructed. */ class cPacketizer { -- cgit v1.2.3