1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2024-11-25 09:44:02 +00:00
Aquaria/BBGE/StringBank.h
fgenesis 8f565c6171 Include stringbank.txt into binary in case stringbank.txt is out of date
This makes sure engine-internal strings are always present.
2018-01-02 20:59:38 +01:00

35 lines
652 B
C++

#ifndef STRINGBANK_H
#define STRINGBANK_H
#include <string>
#include <map>
// Some strings used in BBGE
enum StringBankIndexBBGE
{
SB_BBGE_NO_KEY = 2153,
SB_BBGE_INVALID_KEY_ID = 2154,
SB_BBGE_INVALID_JOY_BTN = 2155,
SB_BBGE_INVALID_MOUSE_BTN = 2156,
SB_BBGE_INVALID_JOY_AXIS_POS = 2157,
SB_BBGE_INVALID_JOY_AXIS_NEG = 2158,
};
class StringBank
{
public:
StringBank();
bool load(const std::string &file);
void clear();
bool empty() const;
void set(int idx, const char *str);
const std::string& get(int idx) const;
protected:
typedef std::map<int, std::string> StringMap;
StringMap stringMap;
};
extern StringBank stringbank;
#endif