blob: 677806b2400f6f3a0097e2ba42f7623b7be88a57 (
plain) (
tree)
|
|
#ifndef TMWA_COMMON_VERSION_HPP
#define TMWA_COMMON_VERSION_HPP
# include <cstdint>
// TODO make these bitwise enums
# define TMWA_FLAG_REGISTRATION 0x01
# define TMWA_SERVER_LOGIN 0x01
# define TMWA_SERVER_CHAR 0x02
# define TMWA_SERVER_INTER 0x04
# define TMWA_SERVER_MAP 0x08
struct Version
{
uint8_t major;
uint8_t minor; // flavor1
uint8_t patch; // flavor2
uint8_t devel; // flavor3
uint8_t flags;
uint8_t which;
uint16_t vend;
// can't add vendor name yet
};
static_assert(sizeof(Version) == 8, "this is sent over the network, can't change");
extern Version CURRENT_LOGIN_SERVER_VERSION;
extern Version CURRENT_CHAR_SERVER_VERSION;
extern Version CURRENT_MAP_SERVER_VERSION;
extern const char CURRENT_VERSION_STRING[];
#endif // TMWA_COMMON_VERSION_HPP
|