2015-01-07 17:50:15 +08:00
|
|
|
//
|
|
|
|
// AppLang.h
|
|
|
|
// Simulator
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef __Simulator__AppLang__
|
|
|
|
#define __Simulator__AppLang__
|
|
|
|
|
|
|
|
#include "cocos2d.h"
|
|
|
|
#include <map>
|
|
|
|
|
2016-11-04 09:36:59 +08:00
|
|
|
#include "json/document-wrapper.h"
|
2015-01-07 17:50:15 +08:00
|
|
|
#include "DeviceEx.h"
|
2015-11-25 21:52:44 +08:00
|
|
|
#include "SimulatorExport.h"
|
2015-01-07 17:50:15 +08:00
|
|
|
|
2015-11-25 21:52:44 +08:00
|
|
|
class CC_LIBSIM_DLL AppLang
|
2015-01-07 17:50:15 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
static AppLang* getInstance();
|
|
|
|
|
|
|
|
std::string getString(const std::string &lang, const std::string& key);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
AppLang();
|
|
|
|
void readLocalizationFile();
|
|
|
|
|
|
|
|
bool _hasInit;
|
|
|
|
std::string _localizationFileName;
|
|
|
|
rapidjson::Document _docRootjson;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define tr(key) AppLang::getInstance()->getString(player::DeviceEx::getInstance()->getCurrentUILangName(), key)
|
|
|
|
|
|
|
|
#endif /* defined(__Simulator__AppLang__) */
|