2014-04-01 00:33:55 +00:00
|
|
|
#include "stdafx.h"
|
2015-04-23 16:58:37 +00:00
|
|
|
#pragma warning(push)
|
|
|
|
#pragma message("TODO: remove wx dependency: <wx/string.h>")
|
|
|
|
#pragma warning(disable : 4996)
|
2014-08-29 19:51:11 +00:00
|
|
|
#include <wx/string.h>
|
2015-04-23 16:58:37 +00:00
|
|
|
#pragma warning(pop)
|
2014-04-01 00:33:55 +00:00
|
|
|
|
2015-08-06 13:31:13 +00:00
|
|
|
std::string v128::to_hex() const
|
2015-01-12 20:37:29 +00:00
|
|
|
{
|
2015-01-18 22:54:56 +00:00
|
|
|
return fmt::format("%016llx%016llx", _u64[1], _u64[0]);
|
2015-01-12 20:37:29 +00:00
|
|
|
}
|
|
|
|
|
2015-08-06 13:31:13 +00:00
|
|
|
std::string v128::to_xyzw() const
|
2015-01-12 20:37:29 +00:00
|
|
|
{
|
2015-08-12 18:38:17 +00:00
|
|
|
return fmt::format("x: %g y: %g z: %g w: %g", _f[3], _f[2], _f[1], _f[0]);
|
2015-01-12 20:37:29 +00:00
|
|
|
}
|
|
|
|
|
2015-01-19 13:31:02 +00:00
|
|
|
std::string fmt::to_hex(u64 value, size_t count)
|
2015-01-18 22:54:56 +00:00
|
|
|
{
|
|
|
|
assert(count - 1 < 16);
|
|
|
|
count = std::max<u64>(count, 16 - cntlz64(value) / 4);
|
|
|
|
|
|
|
|
char res[16] = {};
|
|
|
|
|
|
|
|
for (size_t i = count - 1; ~i; i--, value /= 16)
|
|
|
|
{
|
|
|
|
res[i] = "0123456789abcdef"[value % 16];
|
|
|
|
}
|
|
|
|
|
|
|
|
return std::string(res, count);
|
|
|
|
}
|
|
|
|
|
2015-01-19 13:31:02 +00:00
|
|
|
std::string fmt::to_udec(u64 value)
|
|
|
|
{
|
|
|
|
char res[20] = {};
|
|
|
|
size_t first = sizeof(res);
|
|
|
|
|
|
|
|
if (!value)
|
|
|
|
{
|
|
|
|
res[--first] = '0';
|
|
|
|
}
|
|
|
|
|
|
|
|
for (; value; value /= 10)
|
|
|
|
{
|
|
|
|
res[--first] = '0' + (value % 10);
|
|
|
|
}
|
|
|
|
|
|
|
|
return std::string(&res[first], sizeof(res) - first);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string fmt::to_sdec(s64 svalue)
|
|
|
|
{
|
|
|
|
const bool sign = svalue < 0;
|
|
|
|
u64 value = sign ? -svalue : svalue;
|
|
|
|
|
|
|
|
char res[20] = {};
|
|
|
|
size_t first = sizeof(res);
|
|
|
|
|
|
|
|
if (!value)
|
|
|
|
{
|
|
|
|
res[--first] = '0';
|
|
|
|
}
|
|
|
|
|
|
|
|
for (; value; value /= 10)
|
|
|
|
{
|
|
|
|
res[--first] = '0' + (value % 10);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sign)
|
|
|
|
{
|
|
|
|
res[--first] = '-';
|
|
|
|
}
|
|
|
|
|
|
|
|
return std::string(&res[first], sizeof(res) - first);
|
|
|
|
}
|
|
|
|
|
2015-08-12 18:38:17 +00:00
|
|
|
//extern const std::string fmt::placeholder = "???";
|
2014-04-01 17:44:38 +00:00
|
|
|
|
2015-02-02 10:21:35 +00:00
|
|
|
std::string fmt::replace_first(const std::string& src, const std::string& from, const std::string& to)
|
2014-06-07 14:15:49 +00:00
|
|
|
{
|
|
|
|
auto pos = src.find(from);
|
|
|
|
|
|
|
|
if (pos == std::string::npos)
|
|
|
|
{
|
|
|
|
return src;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (pos ? src.substr(0, pos) + to : to) + std::string(src.c_str() + pos + from.length());
|
|
|
|
}
|
|
|
|
|
2015-02-02 10:21:35 +00:00
|
|
|
std::string fmt::replace_all(const std::string &src, const std::string& from, const std::string& to)
|
2014-06-07 14:15:49 +00:00
|
|
|
{
|
2015-02-02 10:21:35 +00:00
|
|
|
std::string target = src;
|
|
|
|
for (auto pos = target.find(from); pos != std::string::npos; pos = target.find(from, pos + 1))
|
2014-06-07 14:15:49 +00:00
|
|
|
{
|
2015-02-02 10:21:35 +00:00
|
|
|
target = (pos ? target.substr(0, pos) + to : to) + std::string(target.c_str() + pos + from.length());
|
2014-06-07 14:15:49 +00:00
|
|
|
pos += to.length();
|
|
|
|
}
|
|
|
|
|
2015-02-04 12:16:10 +00:00
|
|
|
return target;
|
2014-06-07 14:15:49 +00:00
|
|
|
}
|
|
|
|
|
2014-06-08 21:02:20 +00:00
|
|
|
//TODO: move this wx Stuff somewhere else
|
|
|
|
//convert a wxString to a std::string encoded in utf8
|
|
|
|
//CAUTION, only use this to interface with wxWidgets classes
|
|
|
|
std::string fmt::ToUTF8(const wxString& right)
|
|
|
|
{
|
|
|
|
auto ret = std::string(((const char *)right.utf8_str()));
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
//convert a std::string encoded in utf8 to a wxString
|
|
|
|
//CAUTION, only use this to interface with wxWidgets classes
|
|
|
|
wxString fmt::FromUTF8(const std::string& right)
|
|
|
|
{
|
|
|
|
auto ret = wxString::FromUTF8(right.c_str());
|
|
|
|
return ret;
|
|
|
|
}
|
2014-04-01 00:33:55 +00:00
|
|
|
|
|
|
|
//TODO: remove this after every snippet that uses it is gone
|
|
|
|
//WARNING: not fully compatible with CmpNoCase from wxString
|
|
|
|
int fmt::CmpNoCase(const std::string& a, const std::string& b)
|
|
|
|
{
|
|
|
|
if (a.length() != b.length())
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return std::equal(a.begin(),
|
|
|
|
a.end(),
|
|
|
|
b.begin(),
|
2014-11-30 11:18:17 +00:00
|
|
|
[](const char& a, const char& b){return ::tolower(a) == ::tolower(b); })
|
2014-04-01 00:33:55 +00:00
|
|
|
? 0 : -1;
|
|
|
|
}
|
2014-05-02 06:30:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//TODO: remove this after every snippet that uses it is gone
|
|
|
|
//WARNING: not fully compatible with CmpNoCase from wxString
|
|
|
|
void fmt::Replace(std::string &str, const std::string &searchterm, const std::string& replaceterm)
|
|
|
|
{
|
|
|
|
size_t cursor = 0;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
cursor = str.find(searchterm, cursor);
|
|
|
|
if (cursor != std::string::npos)
|
|
|
|
{
|
|
|
|
str.replace(cursor, searchterm.size(), replaceterm);
|
|
|
|
cursor += replaceterm.size();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (true);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<std::string> fmt::rSplit(const std::string& source, const std::string& delim)
|
|
|
|
{
|
|
|
|
std::vector<std::string> ret;
|
|
|
|
size_t cursor = 0;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
size_t prevcurs = cursor;
|
|
|
|
cursor = source.find(delim, cursor);
|
|
|
|
if (cursor != std::string::npos)
|
|
|
|
{
|
|
|
|
ret.push_back(source.substr(prevcurs,cursor-prevcurs));
|
|
|
|
cursor += delim.size();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ret.push_back(source.substr(prevcurs));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (true);
|
|
|
|
return ret;
|
2014-11-29 13:16:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<std::string> fmt::split(const std::string& source, std::initializer_list<std::string> separators, bool is_skip_empty)
|
|
|
|
{
|
|
|
|
std::vector<std::string> result;
|
|
|
|
|
|
|
|
size_t cursor_begin = 0;
|
|
|
|
|
|
|
|
for (size_t cursor_end = 0; cursor_end < source.length(); ++cursor_end)
|
|
|
|
{
|
|
|
|
for (auto &separator : separators)
|
|
|
|
{
|
|
|
|
if (strncmp(source.c_str() + cursor_end, separator.c_str(), separator.length()) == 0)
|
|
|
|
{
|
|
|
|
std::string candidate = source.substr(cursor_begin, cursor_end - cursor_begin);
|
|
|
|
if (!is_skip_empty || !candidate.empty())
|
|
|
|
result.push_back(candidate);
|
|
|
|
|
|
|
|
cursor_begin = cursor_end + separator.length();
|
|
|
|
cursor_end = cursor_begin - 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cursor_begin != source.length())
|
|
|
|
{
|
|
|
|
result.push_back(source.substr(cursor_begin));
|
|
|
|
}
|
|
|
|
|
|
|
|
return std::move(result);
|
2014-11-30 11:18:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string fmt::tolower(std::string source)
|
|
|
|
{
|
|
|
|
std::transform(source.begin(), source.end(), source.begin(), ::tolower);
|
|
|
|
|
|
|
|
return source;
|
2014-12-17 16:10:20 +00:00
|
|
|
}
|
2015-02-04 12:16:10 +00:00
|
|
|
|
|
|
|
std::string fmt::toupper(std::string source)
|
|
|
|
{
|
|
|
|
std::transform(source.begin(), source.end(), source.begin(), ::toupper);
|
|
|
|
|
|
|
|
return source;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string fmt::escape(std::string source)
|
|
|
|
{
|
|
|
|
const std::pair<std::string, std::string> escape_list[] =
|
|
|
|
{
|
|
|
|
{ "\\", "\\\\" },
|
|
|
|
{ "\a", "\\a" },
|
|
|
|
{ "\b", "\\b" },
|
|
|
|
{ "\f", "\\f" },
|
2015-02-04 23:52:47 +00:00
|
|
|
{ "\n", "\\n\n" },
|
2015-02-04 12:16:10 +00:00
|
|
|
{ "\r", "\\r" },
|
|
|
|
{ "\t", "\\t" },
|
|
|
|
{ "\v", "\\v" },
|
|
|
|
};
|
|
|
|
|
|
|
|
source = fmt::replace_all(source, escape_list);
|
|
|
|
|
|
|
|
for (char c = 0; c < 32; c++)
|
|
|
|
{
|
2015-08-12 18:38:17 +00:00
|
|
|
if (c != '\n') source = fmt::replace_all(source, std::string(1, c), fmt::format("\\x%02X", c));
|
2015-02-04 12:16:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return source;
|
|
|
|
}
|