mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 18:18:18 +00:00
3be8a592e5
Purely automatic change. In case of conflict with this change, apply the other change and rerun the formatting to restore it: $ python scripts/fix_style.py
64 lines
1.8 KiB
C++
64 lines
1.8 KiB
C++
/* (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_LOCALIZATION_H
|
|
#define GAME_LOCALIZATION_H
|
|
#include <base/tl/sorted_array.h>
|
|
#include <base/tl/string.h>
|
|
|
|
class CLocalizationDatabase
|
|
{
|
|
class CString
|
|
{
|
|
public:
|
|
unsigned m_Hash;
|
|
unsigned m_ContextHash;
|
|
|
|
// TODO: do this as an const char * and put everything on a incremental heap
|
|
string m_Replacement;
|
|
|
|
bool operator<(const CString &Other) const { return m_Hash < Other.m_Hash || (m_Hash == Other.m_Hash && m_ContextHash < Other.m_ContextHash); }
|
|
bool operator<=(const CString &Other) const { return m_Hash < Other.m_Hash || (m_Hash == Other.m_Hash && m_ContextHash <= Other.m_ContextHash); }
|
|
bool operator==(const CString &Other) const { return m_Hash == Other.m_Hash && m_ContextHash == Other.m_ContextHash; }
|
|
};
|
|
|
|
sorted_array<CString> m_Strings;
|
|
int m_VersionCounter;
|
|
int m_CurrentVersion;
|
|
|
|
public:
|
|
CLocalizationDatabase();
|
|
|
|
bool Load(const char *pFilename, class IStorage *pStorage, class IConsole *pConsole);
|
|
|
|
int Version() { return m_CurrentVersion; }
|
|
|
|
void AddString(const char *pOrgStr, const char *pNewStr, const char *pContext);
|
|
const char *FindString(unsigned Hash, unsigned ContextHash);
|
|
};
|
|
|
|
extern CLocalizationDatabase g_Localization;
|
|
|
|
class CLocConstString
|
|
{
|
|
const char *m_pDefaultStr;
|
|
const char *m_pCurrentStr;
|
|
unsigned m_Hash;
|
|
unsigned m_ContextHash;
|
|
int m_Version;
|
|
|
|
public:
|
|
CLocConstString(const char *pStr, const char *pContext = "");
|
|
void Reload();
|
|
|
|
inline operator const char *()
|
|
{
|
|
if(m_Version != g_Localization.Version())
|
|
Reload();
|
|
return m_pCurrentStr;
|
|
}
|
|
};
|
|
|
|
extern const char *Localize(const char *pStr, const char *pContext = "")
|
|
GNUC_ATTRIBUTE((format_arg(1)));
|
|
#endif
|