ddnet/src/game/client/components/countryflags.h

44 lines
1.2 KiB
C
Raw Normal View History

/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
/* If you are missing that file, acquire a complete release at teeworlds.com. */
#ifndef GAME_CLIENT_COMPONENTS_COUNTRYFLAGS_H
#define GAME_CLIENT_COMPONENTS_COUNTRYFLAGS_H
2022-05-29 16:33:38 +00:00
#include <game/client/component.h>
#include <vector>
class CCountryFlags : public CComponent
{
public:
struct CCountryFlag
{
int m_CountryCode;
char m_aCountryCodeString[8];
IGraphics::CTextureHandle m_Texture;
2020-10-08 05:28:53 +00:00
bool operator<(const CCountryFlag &Other) const { return str_comp(m_aCountryCodeString, Other.m_aCountryCodeString) < 0; }
};
virtual int Sizeof() const override { return sizeof(*this); }
void OnInit() override;
size_t Num() const;
const CCountryFlag *GetByCountryCode(int CountryCode) const;
const CCountryFlag *GetByIndex(size_t Index) const;
void Render(int CountryCode, const ColorRGBA *pColor, float x, float y, float w, float h);
private:
enum
{
CODE_LB = -1,
CODE_UB = 999,
CODE_RANGE = CODE_UB - CODE_LB + 1,
};
std::vector<CCountryFlag> m_vCountryFlags;
size_t m_aCodeIndexLUT[CODE_RANGE];
2021-09-13 21:14:04 +00:00
int m_FlagsQuadContainerIndex;
void LoadCountryflagsIndexfile();
};
#endif