Sat, 24 Mar 2018 16:12:08 +0200
Whoops
655
b376645315ab
- renamed files to camelCase
Santeri Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
1 | /* |
b376645315ab
- renamed files to camelCase
Santeri Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
2 | * LDForge: LDraw parts authoring CAD |
1326 | 3 | * Copyright (C) 2013 - 2018 Teemu Piippo |
655
b376645315ab
- renamed files to camelCase
Santeri Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
4 | * |
b376645315ab
- renamed files to camelCase
Santeri Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
5 | * This program is free software: you can redistribute it and/or modify |
b376645315ab
- renamed files to camelCase
Santeri Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
6 | * it under the terms of the GNU General Public License as published by |
b376645315ab
- renamed files to camelCase
Santeri Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
7 | * the Free Software Foundation, either version 3 of the License, or |
b376645315ab
- renamed files to camelCase
Santeri Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
8 | * (at your option) any later version. |
b376645315ab
- renamed files to camelCase
Santeri Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
9 | * |
b376645315ab
- renamed files to camelCase
Santeri Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
10 | * This program is distributed in the hope that it will be useful, |
b376645315ab
- renamed files to camelCase
Santeri Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
b376645315ab
- renamed files to camelCase
Santeri Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
b376645315ab
- renamed files to camelCase
Santeri Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
13 | * GNU General Public License for more details. |
b376645315ab
- renamed files to camelCase
Santeri Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
14 | * |
b376645315ab
- renamed files to camelCase
Santeri Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
15 | * You should have received a copy of the GNU General Public License |
b376645315ab
- renamed files to camelCase
Santeri Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
16 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
b376645315ab
- renamed files to camelCase
Santeri Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
17 | */ |
b376645315ab
- renamed files to camelCase
Santeri Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
18 | |
b376645315ab
- renamed files to camelCase
Santeri Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
19 | #pragma once |
b376645315ab
- renamed files to camelCase
Santeri Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
20 | #include <QColor> |
974
b2fa5f89798a
Added a GuiUtilities class to contain useful non-MainWindow-related GUI functions
Teemu Piippo <crimsondusk64@gmail.com>
parents:
968
diff
changeset
|
21 | #include "basics.h" |
655
b376645315ab
- renamed files to camelCase
Santeri Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
22 | |
1044 | 23 | /* |
24 | * ColorData | |
25 | * | |
26 | * This class contains the model data for LDConfig-defined colors. | |
27 | */ | |
998 | 28 | class ColorData |
29 | { | |
30 | public: | |
31 | struct Entry | |
32 | { | |
33 | QString name; | |
34 | QColor faceColor; | |
35 | QColor edgeColor; | |
36 | }; | |
37 | ||
38 | ColorData(); | |
39 | void loadFromLdconfig(); | |
1308
dcc8c02530c2
Begin rework to add support for multiple libraries
Teemu Piippo <teemu@hecknology.net>
parents:
1269
diff
changeset
|
40 | void loadFromFile(QIODevice& device); |
1044 | 41 | bool contains(int code) const; |
42 | const Entry& get(int code) const; | |
998 | 43 | |
44 | private: | |
1044 | 45 | Entry m_data[512]; |
998 | 46 | }; |
47 | ||
1044 | 48 | /* |
49 | * LDColor | |
50 | * | |
51 | * This class represents an LDraw color. For a color index, this class provides information for that color. | |
52 | * It only contains the index of the color. Therefore it is a wrapper around an integer and should be passed by value. | |
53 | */ | |
946 | 54 | class LDColor |
55 | { | |
56 | public: | |
1044 | 57 | LDColor(); |
58 | LDColor(qint32 index); | |
1174
91696a2e022c
Cleanup ColorSelector, moved direct color composition to a new LDColor constructor.
Teemu Piippo <teemu@hecknology.net>
parents:
1114
diff
changeset
|
59 | LDColor(QColor color, bool transparent = false); |
1044 | 60 | LDColor(const LDColor& other) = default; |
806
4240f47aa2d4
- moved most of LDColorData API into LDColor
Santeri Piippo <crimsondusk64@gmail.com>
parents:
795
diff
changeset
|
61 | |
946 | 62 | bool isLDConfigColor() const; |
63 | bool isValid() const; | |
64 | QString name() const; | |
65 | QString hexcode() const; | |
66 | QColor faceColor() const; | |
67 | QColor edgeColor() const; | |
68 | qint32 index() const; | |
69 | bool isDirect() const; | |
70 | QString indexString() const; | |
806
4240f47aa2d4
- moved most of LDColorData API into LDColor
Santeri Piippo <crimsondusk64@gmail.com>
parents:
795
diff
changeset
|
71 | |
1114
ffd49a28f49e
Moved some global constants into appropriate namespaces.
Teemu Piippo <teemu@hecknology.net>
parents:
1072
diff
changeset
|
72 | static const LDColor nullColor; |
1174
91696a2e022c
Cleanup ColorSelector, moved direct color composition to a new LDColor constructor.
Teemu Piippo <teemu@hecknology.net>
parents:
1114
diff
changeset
|
73 | static qint32 directColorIndex(QColor color, bool transparent = false); |
1114
ffd49a28f49e
Moved some global constants into appropriate namespaces.
Teemu Piippo <teemu@hecknology.net>
parents:
1072
diff
changeset
|
74 | static void initColors(); |
795
195fa1fff9c3
- changed all color usage to use LDColor classes instead of color indices. Added support for direct colors.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
794
diff
changeset
|
75 | |
1044 | 76 | LDColor& operator=(qint32 index) { m_index = index; return *this; } |
77 | LDColor& operator=(const LDColor &other) = default; | |
946 | 78 | LDColor operator++() { return ++m_index; } |
1044 | 79 | LDColor operator++(int) { return m_index++; } |
946 | 80 | LDColor operator--() { return --m_index; } |
1044 | 81 | LDColor operator--(int) { return m_index--; } |
82 | bool operator==(LDColor other) const { return index() == other.index(); } | |
83 | bool operator!=(LDColor other) const { return index() != other.index(); } | |
84 | bool operator<(LDColor other) const { return index() < other.index(); } | |
85 | bool operator<=(LDColor other) const { return index() <= other.index(); } | |
86 | bool operator>(LDColor other) const { return index() > other.index(); } | |
87 | bool operator>=(LDColor other) const { return index() >= other.index(); } | |
946 | 88 | |
89 | private: | |
1114
ffd49a28f49e
Moved some global constants into appropriate namespaces.
Teemu Piippo <teemu@hecknology.net>
parents:
1072
diff
changeset
|
90 | static ColorData* colorData; |
998 | 91 | const ColorData::Entry& data() const; |
92 | ||
861
83426c5fa732
- major identifier renaming
Teemu Piippo <crimsondusk64@gmail.com>
parents:
844
diff
changeset
|
93 | qint32 m_index; |
795
195fa1fff9c3
- changed all color usage to use LDColor classes instead of color indices. Added support for direct colors.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
794
diff
changeset
|
94 | }; |
195fa1fff9c3
- changed all color usage to use LDColor classes instead of color indices. Added support for direct colors.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
794
diff
changeset
|
95 | |
1269
ec691d9472b3
Added LDObject serialization and refactored the internal resource managing to use it. No more tearing objects from one model into another, and this provides a stable way to keep an object's state in memory such as the edit history.
Santeri Piippo
parents:
1174
diff
changeset
|
96 | Q_DECLARE_METATYPE(LDColor) |
1031
55c0d3beea0d
removed removeDuplicates in favor of QSet, and the unused ObjectList class
Teemu Piippo <crimsondusk64@gmail.com>
parents:
1014
diff
changeset
|
97 | uint qHash(LDColor color); |
55c0d3beea0d
removed removeDuplicates in favor of QSet, and the unused ObjectList class
Teemu Piippo <crimsondusk64@gmail.com>
parents:
1014
diff
changeset
|
98 | |
1044 | 99 | /* |
100 | * LDConfigParser | |
101 | * | |
102 | * Parses LDConfig.ldr. | |
103 | */ | |
946 | 104 | class LDConfigParser |
655
b376645315ab
- renamed files to camelCase
Santeri Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
105 | { |
946 | 106 | public: |
1044 | 107 | LDConfigParser(QString inputText); |
946 | 108 | |
1044 | 109 | bool getToken(QString& tokenText, int position); |
110 | bool findToken(int& tokenPosition, QString needle, int args); | |
111 | bool compareToken(int inPos, QString text); | |
112 | bool parseTag(QString key, QString& value); | |
795
195fa1fff9c3
- changed all color usage to use LDColor classes instead of color indices. Added support for direct colors.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
794
diff
changeset
|
113 | |
946 | 114 | private: |
115 | QStringList m_tokens; | |
655
b376645315ab
- renamed files to camelCase
Santeri Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
116 | }; |
b376645315ab
- renamed files to camelCase
Santeri Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
117 | |
1044 | 118 | int luma(const QColor& col); |
861
83426c5fa732
- major identifier renaming
Teemu Piippo <crimsondusk64@gmail.com>
parents:
844
diff
changeset
|
119 | |
83426c5fa732
- major identifier renaming
Teemu Piippo <crimsondusk64@gmail.com>
parents:
844
diff
changeset
|
120 | enum |
83426c5fa732
- major identifier renaming
Teemu Piippo <crimsondusk64@gmail.com>
parents:
844
diff
changeset
|
121 | { |
946 | 122 | MainColor = 16, |
123 | EdgeColor = 24, | |
861
83426c5fa732
- major identifier renaming
Teemu Piippo <crimsondusk64@gmail.com>
parents:
844
diff
changeset
|
124 | }; |