MiniEngine/MiniEngine.h

37 lines
899 B
C++
Raw Normal View History

#pragma once
#include <string>
#include <memory>
#include <functional>
2017-06-18 20:37:45 +08:00
#include "SDLWrapper/IncludeAll.h"
namespace MiniEngine
{
2017-03-09 18:52:57 +08:00
class StringEngine
{
public:
StringEngine(std::string StringFile,std::string LanguageTag);
StringEngine(StringEngine& )=delete;
StringEngine& operator = (StringEngine& )=delete;
int useLanaguage(std::string LanguageTag);
bool ready();
std::string getString(std::string Tag);
~StringEngine();
private:
struct impl;
impl* pimpl;
};
/// Experimental - For Experts: Use SDL ScanCode
bool GetScanKeyState(SDL_Scancode);
}/// End of namespace MiniEngine
2017-02-25 22:40:48 +08:00
std::string UTF8ToGBK(std::string UTF8String);
std::string GBKToUTF8(std::string GBKString);
2017-03-09 18:52:57 +08:00
bool canread(std::string Path);
bool canwrite(std::string Path);
bool isexist(std::string Path);
bool canexecute(std::string Path);