parent
32fb105bca
commit
ecb789d059
|
@ -35,7 +35,6 @@
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <filesystem>
|
#include <filesystem>
|
||||||
#include <map>
|
#include <map>
|
||||||
#include <boost/algorithm/string.hpp>
|
|
||||||
|
|
||||||
CModManager::CModManager(CApplication* app, CPathManager* pathManager)
|
CModManager::CModManager(CApplication* app, CPathManager* pathManager)
|
||||||
: m_app{app},
|
: m_app{app},
|
||||||
|
|
|
@ -32,8 +32,6 @@
|
||||||
#include "common/system/system_windows.h"
|
#include "common/system/system_windows.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <boost/algorithm/string.hpp>
|
|
||||||
|
|
||||||
#include <filesystem>
|
#include <filesystem>
|
||||||
|
|
||||||
CPathManager::CPathManager(CSystemUtils* systemUtils)
|
CPathManager::CPathManager(CSystemUtils* systemUtils)
|
||||||
|
|
|
@ -84,6 +84,26 @@ std::string StrUtils::Replace(const std::string &str, const std::string &oldStr,
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void StrUtils::TrimLeft(std::string& s)
|
||||||
|
{
|
||||||
|
s.erase(s.begin(), std::find_if(s.begin(), s.end(), [](unsigned char ch) {
|
||||||
|
return !std::isspace(ch);
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
|
void StrUtils::TrimRight(std::string& s)
|
||||||
|
{
|
||||||
|
s.erase(std::find_if(s.rbegin(), s.rend(), [](unsigned char ch) {
|
||||||
|
return !std::isspace(ch);
|
||||||
|
}).base(), s.end());
|
||||||
|
}
|
||||||
|
|
||||||
|
void StrUtils::Trim(std::string& str)
|
||||||
|
{
|
||||||
|
TrimLeft(str);
|
||||||
|
TrimRight(str);
|
||||||
|
}
|
||||||
|
|
||||||
std::string StrUtils::UnicodeCharToUtf8(unsigned int ch)
|
std::string StrUtils::UnicodeCharToUtf8(unsigned int ch)
|
||||||
{
|
{
|
||||||
std::string result;
|
std::string result;
|
||||||
|
|
|
@ -68,6 +68,14 @@ std::string Format(const char *fmt, ...);
|
||||||
//! Returns a string with every occurence of \a oldStr in \a str replaced to \a newStr
|
//! Returns a string with every occurence of \a oldStr in \a str replaced to \a newStr
|
||||||
std::string Replace(const std::string &str, const std::string &oldStr, const std::string &newStr);
|
std::string Replace(const std::string &str, const std::string &oldStr, const std::string &newStr);
|
||||||
|
|
||||||
|
//! Remove whitespace from the beginning of the given string (in place)
|
||||||
|
void TrimLeft(std::string& str);
|
||||||
|
|
||||||
|
//! Remove whitespace from the end of the given string (in place)
|
||||||
|
void TrimRight(std::string& str);
|
||||||
|
|
||||||
|
//! Remove whitespace from both ends of the given string (in place)
|
||||||
|
void Trim(std::string& str);
|
||||||
|
|
||||||
//! Converts a wide Unicode char to a single UTF-8 encoded char
|
//! Converts a wide Unicode char to a single UTF-8 encoded char
|
||||||
std::string UnicodeCharToUtf8(unsigned int ch);
|
std::string UnicodeCharToUtf8(unsigned int ch);
|
||||||
|
|
|
@ -20,13 +20,12 @@
|
||||||
#include "graphics/model/model_mod.h"
|
#include "graphics/model/model_mod.h"
|
||||||
|
|
||||||
#include "common/ioutils.h"
|
#include "common/ioutils.h"
|
||||||
|
#include "common/stringutils.h"
|
||||||
#include "common/resources/inputstream.h"
|
#include "common/resources/inputstream.h"
|
||||||
|
|
||||||
#include "graphics/model/model_io_exception.h"
|
#include "graphics/model/model_io_exception.h"
|
||||||
#include "graphics/model/model_io_structs.h"
|
#include "graphics/model/model_io_structs.h"
|
||||||
|
|
||||||
#include <boost/algorithm/string.hpp>
|
|
||||||
|
|
||||||
#include <array>
|
#include <array>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
|
@ -279,8 +278,10 @@ ModelLODLevel MinMaxToLodLevel(float min, float max)
|
||||||
void ConvertOldTex1Name(ModelTriangle& triangle, const char* tex1Name)
|
void ConvertOldTex1Name(ModelTriangle& triangle, const char* tex1Name)
|
||||||
{
|
{
|
||||||
triangle.material.albedoTexture = tex1Name;
|
triangle.material.albedoTexture = tex1Name;
|
||||||
boost::replace_all(triangle.material.albedoTexture, "bmp", "png");
|
triangle.material.albedoTexture = StrUtils::Replace(
|
||||||
boost::replace_all(triangle.material.albedoTexture, "tga", "png");
|
triangle.material.albedoTexture, "bmp", "png");
|
||||||
|
triangle.material.albedoTexture = StrUtils::Replace(
|
||||||
|
triangle.material.albedoTexture, "tga", "png");
|
||||||
}
|
}
|
||||||
|
|
||||||
void ConvertFromOldRenderState(ModelTriangle& triangle, int state)
|
void ConvertFromOldRenderState(ModelTriangle& triangle, int state)
|
||||||
|
|
|
@ -20,6 +20,7 @@
|
||||||
#include "graphics/model/model_mod.h"
|
#include "graphics/model/model_mod.h"
|
||||||
|
|
||||||
#include "common/ioutils.h"
|
#include "common/ioutils.h"
|
||||||
|
#include "common/stringutils.h"
|
||||||
#include "common/resources/inputstream.h"
|
#include "common/resources/inputstream.h"
|
||||||
|
|
||||||
#include "graphics/model/model_io_exception.h"
|
#include "graphics/model/model_io_exception.h"
|
||||||
|
@ -255,7 +256,7 @@ std::string ReadLineString(std::istream& stream, const std::string& expectedPref
|
||||||
throw CModelIOException("Unexpected EOF");
|
throw CModelIOException("Unexpected EOF");
|
||||||
|
|
||||||
std::getline(stream, line);
|
std::getline(stream, line);
|
||||||
boost::trim_right(line);
|
StrUtils::TrimRight(line);
|
||||||
if (!line.empty() && line[0] != '#')
|
if (!line.empty() && line[0] != '#')
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -270,7 +271,7 @@ std::string ReadLineString(std::istream& stream, const std::string& expectedPref
|
||||||
|
|
||||||
std::string value;
|
std::string value;
|
||||||
std::getline(s, value);
|
std::getline(s, value);
|
||||||
boost::trim_left(value);
|
StrUtils::TrimLeft(value);
|
||||||
|
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,7 +38,6 @@
|
||||||
#include <set>
|
#include <set>
|
||||||
#include <regex>
|
#include <regex>
|
||||||
|
|
||||||
#include <boost/algorithm/string/trim.hpp>
|
|
||||||
#include <boost/algorithm/string/replace.hpp>
|
#include <boost/algorithm/string/replace.hpp>
|
||||||
|
|
||||||
CLevelParser::CLevelParser()
|
CLevelParser::CLevelParser()
|
||||||
|
@ -190,14 +189,14 @@ void CLevelParser::Load()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
boost::algorithm::trim(line);
|
StrUtils::Trim(line);
|
||||||
|
|
||||||
pos = line.find_first_of(" \t\n");
|
pos = line.find_first_of(" \t\n");
|
||||||
std::string command = line.substr(0, pos);
|
std::string command = line.substr(0, pos);
|
||||||
if (pos != std::string::npos)
|
if (pos != std::string::npos)
|
||||||
{
|
{
|
||||||
line = line.substr(pos + 1);
|
line = line.substr(pos + 1);
|
||||||
boost::algorithm::trim(line);
|
StrUtils::Trim(line);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -246,9 +245,9 @@ void CLevelParser::Load()
|
||||||
{
|
{
|
||||||
pos = line.find_first_of("=");
|
pos = line.find_first_of("=");
|
||||||
std::string paramName = line.substr(0, pos);
|
std::string paramName = line.substr(0, pos);
|
||||||
boost::algorithm::trim(paramName);
|
StrUtils::Trim(paramName);
|
||||||
line = line.substr(pos + 1);
|
line = line.substr(pos + 1);
|
||||||
boost::algorithm::trim(line);
|
StrUtils::Trim(line);
|
||||||
|
|
||||||
if (line[0] == '\"')
|
if (line[0] == '\"')
|
||||||
{
|
{
|
||||||
|
@ -277,14 +276,14 @@ void CLevelParser::Load()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
std::string paramValue = line.substr(0, pos + 1);
|
std::string paramValue = line.substr(0, pos + 1);
|
||||||
boost::algorithm::trim(paramValue);
|
StrUtils::Trim(paramValue);
|
||||||
|
|
||||||
parserLine->AddParam(paramName, std::make_unique<CLevelParserParam>(paramName, paramValue));
|
parserLine->AddParam(paramName, std::make_unique<CLevelParserParam>(paramName, paramValue));
|
||||||
|
|
||||||
if (pos == std::string::npos)
|
if (pos == std::string::npos)
|
||||||
break;
|
break;
|
||||||
line = line.substr(pos + 1);
|
line = line.substr(pos + 1);
|
||||||
boost::algorithm::trim(line);
|
StrUtils::Trim(line);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (parserLine->GetCommand().length() > 1 && parserLine->GetCommand()[0] == '#')
|
if (parserLine->GetCommand().length() > 1 && parserLine->GetCommand()[0] == '#')
|
||||||
|
|
|
@ -1115,7 +1115,7 @@ void CLevelParserParam::ParseArray()
|
||||||
int i = 0;
|
int i = 0;
|
||||||
for (auto& value : values)
|
for (auto& value : values)
|
||||||
{
|
{
|
||||||
boost::algorithm::trim(value);
|
StrUtils::Trim(value);
|
||||||
if (value.empty()) continue;
|
if (value.empty()) continue;
|
||||||
auto param = std::make_unique<CLevelParserParam>(m_name + "[" + StrUtils::ToString(i) + "]", value);
|
auto param = std::make_unique<CLevelParserParam>(m_name + "[" + StrUtils::ToString(i) + "]", value);
|
||||||
param->SetLine(m_line);
|
param->SetLine(m_line);
|
||||||
|
|
|
@ -40,8 +40,6 @@
|
||||||
#include "ui/controls/list.h"
|
#include "ui/controls/list.h"
|
||||||
#include "ui/controls/window.h"
|
#include "ui/controls/window.h"
|
||||||
|
|
||||||
#include <boost/algorithm/string/trim.hpp>
|
|
||||||
|
|
||||||
namespace Ui
|
namespace Ui
|
||||||
{
|
{
|
||||||
|
|
||||||
|
@ -247,7 +245,7 @@ void CScreenPlayerSelect::UpdateNameControl()
|
||||||
total = pl->GetTotal();
|
total = pl->GetTotal();
|
||||||
sel = pl->GetSelect();
|
sel = pl->GetSelect();
|
||||||
name = pe->GetText(100);
|
name = pe->GetText(100);
|
||||||
boost::trim(name);
|
StrUtils::Trim(name);
|
||||||
|
|
||||||
pb = static_cast<CButton*>(pw->SearchControl(EVENT_INTERFACE_NDELETE));
|
pb = static_cast<CButton*>(pw->SearchControl(EVENT_INTERFACE_NDELETE));
|
||||||
if ( pb != nullptr )
|
if ( pb != nullptr )
|
||||||
|
@ -382,7 +380,7 @@ bool CScreenPlayerSelect::NameCreate()
|
||||||
|
|
||||||
std::string name;
|
std::string name;
|
||||||
name = pe->GetText(100);
|
name = pe->GetText(100);
|
||||||
boost::trim(name);
|
StrUtils::Trim(name);
|
||||||
if ( name.empty() )
|
if ( name.empty() )
|
||||||
{
|
{
|
||||||
m_sound->Play(SOUND_TZOING);
|
m_sound->Play(SOUND_TZOING);
|
||||||
|
|
Loading…
Reference in New Issue