72 lines
2.3 KiB
C++
72 lines
2.3 KiB
C++
/*
|
|
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license, you may redistribute it and/or modify it under version 2 of the License, or (at your option), any later version.
|
|
* Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
|
|
* Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
|
|
*/
|
|
|
|
#ifndef _REALMLIST_H
|
|
#define _REALMLIST_H
|
|
|
|
#include "Common.h"
|
|
#include <ace/INET_Addr.h>
|
|
|
|
enum RealmFlags
|
|
{
|
|
REALM_FLAG_NONE = 0x00,
|
|
REALM_FLAG_INVALID = 0x01,
|
|
REALM_FLAG_OFFLINE = 0x02,
|
|
REALM_FLAG_SPECIFYBUILD = 0x04,
|
|
REALM_FLAG_UNK1 = 0x08,
|
|
REALM_FLAG_UNK2 = 0x10,
|
|
REALM_FLAG_RECOMMENDED = 0x20,
|
|
REALM_FLAG_NEW = 0x40,
|
|
REALM_FLAG_FULL = 0x80
|
|
};
|
|
|
|
// Storage object for a realm
|
|
struct Realm
|
|
{
|
|
ACE_INET_Addr ExternalAddress;
|
|
ACE_INET_Addr LocalAddress;
|
|
ACE_INET_Addr LocalSubnetMask;
|
|
std::string name;
|
|
uint8 icon;
|
|
RealmFlags flag;
|
|
uint8 timezone;
|
|
uint32 m_ID;
|
|
AccountTypes allowedSecurityLevel;
|
|
float populationLevel;
|
|
uint32 gamebuild;
|
|
};
|
|
|
|
/// Storage object for the list of realms on the server
|
|
class RealmList
|
|
{
|
|
public:
|
|
typedef std::map<std::string, Realm> RealmMap;
|
|
|
|
RealmList();
|
|
~RealmList() = default;
|
|
|
|
static RealmList* instance();
|
|
|
|
void Initialize(uint32 updateInterval);
|
|
void UpdateIfNeed();
|
|
void AddRealm(const Realm& NewRealm) { m_realms[NewRealm.name] = NewRealm; }
|
|
|
|
[[nodiscard]] RealmMap::const_iterator begin() const { return m_realms.begin(); }
|
|
[[nodiscard]] RealmMap::const_iterator end() const { return m_realms.end(); }
|
|
[[nodiscard]] uint32 size() const { return m_realms.size(); }
|
|
|
|
private:
|
|
void UpdateRealms(bool init = false);
|
|
void UpdateRealm(uint32 id, const std::string& name, ACE_INET_Addr const& address, ACE_INET_Addr const& localAddr, ACE_INET_Addr const& localSubmask, uint8 icon, RealmFlags flag, uint8 timezone, AccountTypes allowedSecurityLevel, float popu, uint32 build);
|
|
|
|
RealmMap m_realms;
|
|
uint32 m_UpdateInterval{0};
|
|
time_t m_NextUpdateTime;
|
|
};
|
|
|
|
#define sRealmList RealmList::instance()
|
|
|
|
#endif
|