mirror of
https://github.com/minetest/minetestmapper.git
synced 2024-11-14 22:50:28 +01:00
ecc2b31f78
I noticed it didn't work correctly in some cases...
46 lines
994 B
C++
46 lines
994 B
C++
#include <stdexcept>
|
|
#include <sstream>
|
|
|
|
#include "util.h"
|
|
|
|
static inline std::string trim(const std::string &s)
|
|
{
|
|
auto isspace = [] (char c) -> bool { return c == ' ' || c == '\t' || c == '\r' || c == '\n'; };
|
|
|
|
size_t front = 0;
|
|
while(isspace(s[front]))
|
|
++front;
|
|
size_t back = s.size() - 1;
|
|
while(back > front && isspace(s[back]))
|
|
--back;
|
|
|
|
return s.substr(front, back - front + 1);
|
|
}
|
|
|
|
std::string read_setting(const std::string &name, std::istream &is)
|
|
{
|
|
char linebuf[512];
|
|
while (is.good()) {
|
|
is.getline(linebuf, sizeof(linebuf));
|
|
|
|
for(char *p = linebuf; *p; p++) {
|
|
if(*p != '#')
|
|
continue;
|
|
*p = '\0'; // Cut off at the first #
|
|
break;
|
|
}
|
|
std::string line(linebuf);
|
|
|
|
auto pos = line.find('=');
|
|
if (pos == std::string::npos)
|
|
continue;
|
|
auto key = trim(line.substr(0, pos));
|
|
if (key != name)
|
|
continue;
|
|
return trim(line.substr(pos+1));
|
|
}
|
|
std::ostringstream oss;
|
|
oss << "Setting '" << name << "' not found";
|
|
throw std::runtime_error(oss.str());
|
|
}
|