Dont use boost locale anymore

This commit is contained in:
Eduardo Bart 2013-02-22 18:49:36 -03:00
parent e4e3d7d053
commit 09c937998f
8 changed files with 146 additions and 36 deletions

View File

@ -111,7 +111,12 @@ end
function onGameConnectionError(message, code) function onGameConnectionError(message, code)
CharacterList.destroyLoadBox() CharacterList.destroyLoadBox()
local text = tr('Your connection has been lost. (err: %d)', code) local text
if g_game.getProtocolGame() and g_game.getProtocolGame():isConnecting() then
text = tr('Unable to establish a connection. (err: %d)%s', code)
else
text = tr('Your connection has been lost. (err: %d)', code)
end
errorBox = displayErrorBox(tr("Connection Error"), text) errorBox = displayErrorBox(tr("Connection Error"), text)
errorBox.onOk = function() errorBox.onOk = function()
errorBox = nil errorBox = nil

View File

@ -211,7 +211,7 @@ function EnterGame.doLogin()
g_settings.set('port', G.port) g_settings.set('port', G.port)
protocolLogin = ProtocolLogin.create() protocolLogin = ProtocolLogin.create()
protocolLogin.onError = onError protocolLogin.onLoginError = onError
protocolLogin.onMotd = onMotd protocolLogin.onMotd = onMotd
protocolLogin.onCharacterList = onCharacterList protocolLogin.onCharacterList = onCharacterList
protocolLogin.onUpdateNeeded = onUpdateNeeded protocolLogin.onUpdateNeeded = onUpdateNeeded

View File

@ -85,6 +85,7 @@ function ProtocolLogin:sendLoginPacket()
end end
function ProtocolLogin:onConnect() function ProtocolLogin:onConnect()
self.gotConnection = true
self:sendLoginPacket() self:sendLoginPacket()
end end
@ -155,6 +156,11 @@ function ProtocolLogin:parseOpcode(opcode, msg)
end end
function ProtocolLogin:onError(msg, code) function ProtocolLogin:onError(msg, code)
local text = tr('Your connection has been lost. (err: %d)', code) local text
signalcall(self.onLoginError, self, opcode, text) if self:isConnecting() then
text = tr('Unable to establish a connection. (err: %d)', code)
else
text = tr('Your connection has been lost. (err: %d)', code)
end
signalcall(self.onLoginError, self, text)
end end

View File

@ -184,7 +184,7 @@ message(STATUS "Build revision: ${BUILD_REVISION}")
add_definitions(-D"BUILD_REVISION=\\\"${BUILD_REVISION}\\\"") add_definitions(-D"BUILD_REVISION=\\\"${BUILD_REVISION}\\\"")
# find boost # find boost
set(REQUIRED_BOOST_COMPONENTS locale system filesystem regex thread chrono) set(REQUIRED_BOOST_COMPONENTS system filesystem thread chrono)
if(WIN32) if(WIN32)
set(Boost_THREADAPI win32) set(Boost_THREADAPI win32)
set(framework_DEFINITIONS ${framework_DEFINITIONS} -DBOOST_THREAD_USE_LIB) # fix boost thread linkage set(framework_DEFINITIONS ${framework_DEFINITIONS} -DBOOST_THREAD_USE_LIB) # fix boost thread linkage
@ -262,8 +262,7 @@ else()
set(CMAKE_CXX_LINK_FLAGS "${CMAKE_CXX_LINK_FLAGS} -rdynamic -Wl,-rpath,./libs") # rdynamic is needed by backtrace.h used in crash handler set(CMAKE_CXX_LINK_FLAGS "${CMAKE_CXX_LINK_FLAGS} -rdynamic -Wl,-rpath,./libs") # rdynamic is needed by backtrace.h used in crash handler
set(SYSTEM_LIBRARIES dl) set(SYSTEM_LIBRARIES dl)
endif() endif()
find_package(ICU) set(framework_LIBRARIES ${framework_LIBRARIES} ${SYSTEM_LIBRARIES})
set(framework_LIBRARIES ${framework_LIBRARIES} ${ICU_LIBRARIES} ${SYSTEM_LIBRARIES})
endif() endif()
if(FRAMEWORK_GRAPHICS) if(FRAMEWORK_GRAPHICS)

View File

@ -74,10 +74,9 @@ void Application::init(std::vector<std::string>& args)
#endif #endif
// setup locale // setup locale
boost::locale::generator locgen; std::locale::global(std::locale());
std::locale::global(locgen.generate("")); std::locale utf8("en_US.UTF-8");
std::locale utf8Loc = locgen.generate("en_US.UTF-8"); boost::filesystem::path::imbue(utf8);
boost::filesystem::path::imbue(utf8Loc);
// process args encoding // process args encoding
g_platform.processArgs(args); g_platform.processArgs(args);

View File

@ -28,7 +28,6 @@
#include <boost/algorithm/string.hpp> #include <boost/algorithm/string.hpp>
#include <tchar.h> #include <tchar.h>
void Platform::processArgs(std::vector<std::string>& args) void Platform::processArgs(std::vector<std::string>& args)
{ {
int nargs; int nargs;

View File

@ -25,7 +25,6 @@
#include <boost/algorithm/string.hpp> #include <boost/algorithm/string.hpp>
#include <ctype.h> #include <ctype.h>
#include <physfs.h> #include <physfs.h>
#include <boost/locale.hpp>
namespace stdext { namespace stdext {
@ -71,44 +70,144 @@ uint64_t hex_to_dec(const std::string& str)
bool is_valid_utf8(const std::string& src) bool is_valid_utf8(const std::string& src)
{ {
try { const unsigned char *bytes = (const unsigned char *)src.c_str();
boost::locale::conv::from_utf(src, "ISO-8859-1", boost::locale::conv::stop); while(*bytes) {
return true; if( (// ASCII
} catch(...) { // use bytes[0] <= 0x7F to allow ASCII control characters
bytes[0] == 0x09 ||
bytes[0] == 0x0A ||
bytes[0] == 0x0D ||
(0x20 <= bytes[0] && bytes[0] <= 0x7E)
)
) {
bytes += 1;
continue;
}
if( (// non-overlong 2-byte
(0xC2 <= bytes[0] && bytes[0] <= 0xDF) &&
(0x80 <= bytes[1] && bytes[1] <= 0xBF)
)
) {
bytes += 2;
continue;
}
if( (// excluding overlongs
bytes[0] == 0xE0 &&
(0xA0 <= bytes[1] && bytes[1] <= 0xBF) &&
(0x80 <= bytes[2] && bytes[2] <= 0xBF)
) ||
(// straight 3-byte
((0xE1 <= bytes[0] && bytes[0] <= 0xEC) ||
bytes[0] == 0xEE ||
bytes[0] == 0xEF) &&
(0x80 <= bytes[1] && bytes[1] <= 0xBF) &&
(0x80 <= bytes[2] && bytes[2] <= 0xBF)
) ||
(// excluding surrogates
bytes[0] == 0xED &&
(0x80 <= bytes[1] && bytes[1] <= 0x9F) &&
(0x80 <= bytes[2] && bytes[2] <= 0xBF)
)
) {
bytes += 3;
continue;
}
if( (// planes 1-3
bytes[0] == 0xF0 &&
(0x90 <= bytes[1] && bytes[1] <= 0xBF) &&
(0x80 <= bytes[2] && bytes[2] <= 0xBF) &&
(0x80 <= bytes[3] && bytes[3] <= 0xBF)
) ||
(// planes 4-15
(0xF1 <= bytes[0] && bytes[0] <= 0xF3) &&
(0x80 <= bytes[1] && bytes[1] <= 0xBF) &&
(0x80 <= bytes[2] && bytes[2] <= 0xBF) &&
(0x80 <= bytes[3] && bytes[3] <= 0xBF)
) ||
(// plane 16
bytes[0] == 0xF4 &&
(0x80 <= bytes[1] && bytes[1] <= 0x8F) &&
(0x80 <= bytes[2] && bytes[2] <= 0xBF) &&
(0x80 <= bytes[3] && bytes[3] <= 0xBF)
)
) {
bytes += 4;
continue;
}
return false; return false;
} }
return true;
} }
std::string utf8_to_latin1(const std::string& src) std::string utf8_to_latin1(const std::string& src)
{ {
return boost::locale::conv::from_utf(src, "ISO-8859-1"); std::string out;
} for(uint i=0;i<src.length();) {
uchar c = src[i++];
std::wstring utf8_to_utf16(const std::string& src) if(c >= 32 && c < 128)
{ out += c;
return boost::locale::conv::utf_to_utf<wchar_t>(src); else if(c == 0xc2 || c == 0xc3) {
} uchar c2 = src[i++];
if(c == 0xc2) {
std::string utf16_to_utf8(const std::wstring& src) if(c2 > 0xa1 && c2 < 0xbb)
{ out += c2;
return boost::locale::conv::utf_to_utf<char>(src); } else if(c == 0xc3)
} out += 64 + c2;
} else if(c >= 0xc4 && c <= 0xdf)
std::string utf16_to_latin1(const std::wstring& src) i += 1;
{ else if(c >= 0xe0 && c <= 0xed)
return boost::locale::conv::from_utf(src, "ISO-8859-1"); i += 2;
else if(c >= 0xf0 && c <= 0xf4)
i += 3;
}
return out;
} }
std::string latin1_to_utf8(const std::string& src) std::string latin1_to_utf8(const std::string& src)
{ {
return boost::locale::conv::to_utf<char>(src, "ISO-8859-1"); std::string out;
for(uchar c : src) {
if(c >= 32 && c < 128)
out += c;
else {
out += 0xc2 + (c > 0xbf);
out += 0x80 + (c & 0x3f);
}
}
return out;
}
#ifdef WIN32
#include <windows.h>
std::wstring utf8_to_utf16(const std::string& src)
{
std::wstring res;
wchar_t out[4096];
if(MultiByteToWideChar(CP_UTF8, 0, src.c_str(), -1, out, 4096))
res = out;
return res;
}
std::string utf16_to_utf8(const std::wstring& src)
{
std::string res;
char out[4096];
if(WideCharToMultiByte(CP_UTF8, 0, src.c_str(), -1, out, 4096, NULL, NULL))
res = out;
return res;
} }
std::wstring latin1_to_utf16(const std::string& src) std::wstring latin1_to_utf16(const std::string& src)
{ {
return boost::locale::conv::to_utf<wchar_t>(src, "ISO-8859-1"); return utf8_to_utf16(latin1_to_utf8(src));
} }
std::string utf16_to_latin1(const std::wstring& src)
{
return utf8_to_latin1(utf16_to_utf8(src));
}
#endif
void tolower(std::string& str) void tolower(std::string& str)
{ {
std::transform(str.begin(), str.end(), str.begin(), lochar); std::transform(str.begin(), str.end(), str.begin(), lochar);

View File

@ -54,11 +54,14 @@ void replace_all(std::string& str, const std::string& search, const std::string&
bool is_valid_utf8(const std::string& src); bool is_valid_utf8(const std::string& src);
std::string utf8_to_latin1(const std::string& src); std::string utf8_to_latin1(const std::string& src);
std::string latin1_to_utf8(const std::string& src);
#ifdef WIN32
std::wstring utf8_to_utf16(const std::string& src); std::wstring utf8_to_utf16(const std::string& src);
std::string utf16_to_utf8(const std::wstring& src); std::string utf16_to_utf8(const std::wstring& src);
std::string utf16_to_latin1(const std::wstring& src); std::string utf16_to_latin1(const std::wstring& src);
std::string latin1_to_utf8(const std::string& src);
std::wstring latin1_to_utf16(const std::string& src); std::wstring latin1_to_utf16(const std::string& src);
#endif
std::vector<std::string> split(const std::string& str, const std::string& separators = " "); std::vector<std::string> split(const std::string& str, const std::string& separators = " ");
template<typename T> std::vector<T> split(const std::string& str, const std::string& separators = " ") { template<typename T> std::vector<T> split(const std::string& str, const std::string& separators = " ") {