ddnet/src/game/localization.h

64 lines
1.8 KiB
C
Raw Normal View History

2010-11-20 10:37:14 +00:00
/* (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. */
2010-05-29 07:25:38 +00:00
#ifndef GAME_LOCALIZATION_H
#define GAME_LOCALIZATION_H
#include <base/tl/sorted_array.h>
#include <base/tl/string.h>
2010-05-29 07:25:38 +00:00
class CLocalizationDatabase
{
class CString
{
public:
unsigned m_Hash;
unsigned m_ContextHash;
2010-05-29 07:25:38 +00:00
// 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; }
2010-05-29 07:25:38 +00:00
};
sorted_array<CString> m_Strings;
int m_VersionCounter;
2010-05-29 07:25:38 +00:00
int m_CurrentVersion;
2010-05-29 07:25:38 +00:00
public:
CLocalizationDatabase();
2010-10-06 21:07:35 +00:00
bool Load(const char *pFilename, class IStorage *pStorage, class IConsole *pConsole);
2010-05-29 07:25:38 +00:00
2022-05-06 21:24:58 +00:00
int Version() const { return m_CurrentVersion; }
void AddString(const char *pOrgStr, const char *pNewStr, const char *pContext);
2022-05-06 21:24:58 +00:00
const char *FindString(unsigned Hash, unsigned ContextHash) const;
2010-05-29 07:25:38 +00:00
};
extern CLocalizationDatabase g_Localization;
class CLocConstString
{
const char *m_pDefaultStr;
const char *m_pCurrentStr;
unsigned m_Hash;
unsigned m_ContextHash;
2010-05-29 07:25:38 +00:00
int m_Version;
2010-05-29 07:25:38 +00:00
public:
CLocConstString(const char *pStr, const char *pContext = "");
2010-05-29 07:25:38 +00:00
void Reload();
2010-05-29 07:25:38 +00:00
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)));
2010-05-29 07:25:38 +00:00
#endif