Sun, 02 Feb 2020 00:49:32 +0200
made configurationoptions.txt visible in Qt Creator
/* * LDForge: LDraw parts authoring CAD * Copyright (C) 2013 - 2020 Teemu Piippo * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "colors.h" const ldraw::ColorTable::ColorDefinition ldraw::ColorTable::unknownColor{{}, {}, "Unknown"}; void ldraw::ColorTable::clear() { definitions = {}; } Result ldraw::ColorTable::load(QIODevice& device, QTextStream& errors) { this->clear(); if (device.isReadable()) { QTextStream stream{&device}; QString line; while (stream.readLineInto(&line)) { this->loadColorFromString(line); } return Success; } else { errors << "could not read colors"; return Failure; } } const ldraw::ColorTable::ColorDefinition& ldraw::ColorTable::operator[](Color color) const { auto it = this->definitions.find(color.index); if (it != this->definitions.end()) { return *it; } else { return unknownColor; } } void ldraw::ColorTable::loadColorFromString(const QString& string) { const QRegExp pattern{ R"(^\s*0 \!COLOUR\s+([^\s]+)\s+)"_q + R"(CODE\s+(\d+)\s+)"_q + R"(VALUE\s+(\#[0-9a-fA-F]{3,6})\s+)"_q + R"(EDGE\s+(\#[0-9a-fA-F]{3,6}))"_q + R"((?:\s+ALPHA\s+(\d+))?)"_q }; if (pattern.indexIn(string) != -1) { const int code = pattern.cap(2).toInt(); ColorDefinition& definition = definitions[code]; definition = {}; // in case there's an existing definition definition.name = pattern.cap(1); definition.faceColor = pattern.cap(3); definition.edgeColor = pattern.cap(4); if (not pattern.cap(5).isEmpty()) { const int alpha = pattern.cap(5).toInt(); definition.faceColor.setAlpha(alpha); } } }