summaryrefslogtreecommitdiff
path: root/context.h
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2023-03-02 15:25:43 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2023-03-02 15:25:43 -0400
commit7add9178473b74f5a922997d93bbca7d09e6a5c5 (patch)
treea9d576676f584f236fce5cb28be7434c6ce33dcf /context.h
parentedffe62dde3967f4065f5baf45d3115d574fe3cf (diff)
TPlyGuildCardTag: Make variable members private, and add accessors for
them
Diffstat (limited to 'context.h')
-rw-r--r--context.h24
1 files changed, 19 insertions, 5 deletions
diff --git a/context.h b/context.h
index fb4b418..b268acf 100644
--- a/context.h
+++ b/context.h
@@ -534,6 +534,13 @@ struct packet_header {
void bswap();
} __packed__;
+// pso/TPlyGuildCardTag.h
+struct gc_tag {
+ u8 tag0;
+ u8 tag1;
+ u16 tag2;
+};
+
// TTcpSocket.cpp, but they're really from AVE-TCP
struct at_ip4_opt {
u8 ttl;
@@ -610,13 +617,20 @@ static inline void operator|=(object_flags &a, object_flags b) { a = a | b; };
// Class defs.
class TPlyGuildCardTag {
- public:
- u8 tag0;
- u8 tag1;
- u16 tag2;
- u32 guildcard_number;
+public:
TPlyGuildCardTag &operator=(const TPlyGuildCardTag &src);
void bswap();
+
+ PRIVATE_MEMBER_ACCESSORS(gc_tag, tag);
+ PRIVATE_MEMBER_ACCESSORS(u32, tag_u32);
+ PRIVATE_MEMBER_ACCESSORS(u32, guildcard_number);
+
+private:
+ union {
+ gc_tag m_tag;
+ u32 m_tag_u32;
+ };
+ u32 m_guildcard_number;
} __packed__;
// pso/PSOV3EncryptionTCP.h