src/colors.h

Sat, 29 Aug 2015 19:21:49 +0300

author
Teemu Piippo <crimsondusk64@gmail.com>
date
Sat, 29 Aug 2015 19:21:49 +0300
changeset 955
39d789d675fc
parent 946
9cbd658b63f9
child 968
4b93b7963456
permissions
-rw-r--r--

Remove g_win uses from actionsEdit.cpp

/*
 *  LDForge: LDraw parts authoring CAD
 *  Copyright (C) 2013, 2014 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/>.
 */

#pragma once
#include <QColor>
#include "main.h"

class LDColor
{
public:
	LDColor() : m_index (0) {}
	LDColor (qint32 index) : m_index (index) {}
	LDColor (const LDColor& other) : m_index (other.m_index) {}

	bool isLDConfigColor() const;
	bool isValid() const;
	QString name() const;
	QString hexcode() const;
	QColor faceColor() const;
	QColor edgeColor() const;
	qint32 index() const;
	int luma() const;
	int edgeLuma() const;
	bool isDirect() const;
	QString indexString() const;

	static LDColor nullColor() { return LDColor (-1); }

	LDColor& operator= (qint32 index) { m_index = index; return *this; }
	LDColor& operator= (LDColor other) { m_index = other.index(); return *this; }
	LDColor operator++() { return ++m_index; }
	LDColor operator++ (int) { return m_index++; }
	LDColor operator--() { return --m_index; }
	LDColor operator-- (int) { return m_index--; }

	bool operator== (LDColor other) const { return index() == other.index(); }
	bool operator!= (LDColor other) const { return index() != other.index(); }
	bool operator< (LDColor other) const { return index() < other.index(); }
	bool operator<= (LDColor other) const { return index() <= other.index(); }
	bool operator> (LDColor other) const { return index() > other.index(); }
	bool operator>= (LDColor other) const { return index() >= other.index(); }

private:
	qint32 m_index;
};

//
// Parses ldconfig.ldr
//
class LDConfigParser
{
public:
	LDConfigParser (QString inText, char sep);

	bool getToken (QString& val, const int pos);
	bool findToken (int& result, char const* needle, int args);
	bool compareToken (int inPos, QString text);
	bool parseLDConfigTag (char const* tag, QString& val);

	inline QString operator[] (const int idx)
	{
		return m_tokens[idx];
	}

private:
	QStringList m_tokens;
	int m_pos;
};

void InitColors();
int Luma (const QColor& col);
int CountLDConfigColors();
void parseLDConfig();

enum
{
	MainColor = 16,
	EdgeColor = 24,
};

mercurial