Improve color parsing, hopefully fixes #7

This commit is contained in:
sfan5 2014-05-21 15:16:29 +02:00
parent d8cfe79116
commit dff4589152

View File

@ -264,33 +264,26 @@ void TileGenerator::generate(const std::string &input, const std::string &output
void TileGenerator::parseColorsStream(std::istream &in) void TileGenerator::parseColorsStream(std::istream &in)
{ {
char line[128], *p;
while (in.good()) { while (in.good()) {
string name; in.getline(line, 128);
ColorEntry color; p = line;
in >> name; while(*p++ != '\0')
if (name[0] == '#') { if(*p == '#') {
in.ignore(65536, '\n'); *p = '\0'; // Cut off at the first #
in >> name; break;
} }
while (name == "\n" && in.good()) {
in >> name; char name[75];
} uint8_t r, g, b, a, t;
int r, g, b, a, t; a = 255;
in >> r; t = 0;
in >> g;
in >> b; sscanf(line, "%75s %hhu %hhu %hhu %hhu %hhu", name, &r, &g, &b, &a, &t);
if(in.peek() != '\n') { if(strlen(name) == 0)
in >> a; break;
if(in.peek() != '\n') ColorEntry color = ColorEntry(r, g, b, a, t);
in >> t; m_colors[name] = color;
else
t = 0;
} else
a = 0xFF;
if (in.good()) {
color = ColorEntry(r,g,b,a,t);
m_colors[name] = color;
}
} }
} }
@ -663,4 +656,3 @@ inline int TileGenerator::getImageY(int val) const
{ {
return val + m_border; return val + m_border;
} }