mirror of
https://github.com/minetest/minetestmapper.git
synced 2024-11-12 13:40:32 +01:00
64 lines
1.3 KiB
C++
64 lines
1.3 KiB
C++
#include <stdexcept>
|
|
#include <sstream>
|
|
|
|
#include "util.h"
|
|
|
|
inline std::string trim(const std::string &s)
|
|
{
|
|
size_t front = 0;
|
|
while(s[front] == ' ' ||
|
|
s[front] == '\t' ||
|
|
s[front] == '\r' ||
|
|
s[front] == '\n'
|
|
)
|
|
++front;
|
|
|
|
size_t back = s.size();
|
|
while(back > front &&
|
|
(s[back-1] == ' ' ||
|
|
s[back-1] == '\t' ||
|
|
s[back-1] == '\r' ||
|
|
s[back-1] == '\n'
|
|
)
|
|
)
|
|
--back;
|
|
|
|
return s.substr(front, back - front);
|
|
}
|
|
|
|
#define EOFCHECK() do { \
|
|
if (is.eof()) { \
|
|
std::ostringstream oss; \
|
|
oss << "Setting '" << name << "' not found."; \
|
|
throw std::runtime_error(oss.str()); \
|
|
} \
|
|
} while(0)
|
|
|
|
std::string read_setting(const std::string &name, std::istream &is)
|
|
{
|
|
char c;
|
|
char s[256];
|
|
std::string nm, value;
|
|
|
|
next:
|
|
while((c = is.get()) == ' ' || c == '\t' || c == '\r' || c == '\n')
|
|
;
|
|
EOFCHECK();
|
|
if(c == '#') // Ignore comments
|
|
is.ignore(0xffff, '\n');
|
|
EOFCHECK();
|
|
s[0] = c; // The current char belongs to the name too
|
|
is.get(&s[1], 255, '=');
|
|
is.ignore(1); // Jump over the =
|
|
EOFCHECK();
|
|
nm = trim(std::string(s));
|
|
is.get(s, 256, '\n');
|
|
value = trim(std::string(s));
|
|
if(name == nm)
|
|
return value;
|
|
else
|
|
goto next;
|
|
}
|
|
|
|
#undef EOFCHECK
|