Thu, 21 Jun 2018 19:21:49 +0300
used the new CircularSectionEditor in CircularPrimitiveEditor
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(); |
1397
5d5c11af0268
cleaned up LDColor constructors
Teemu Piippo <teemu@hecknology.net>
parents:
1326
diff
changeset
|
58 | explicit LDColor(qint32 index); |
1044 | 59 | LDColor(const LDColor& other) = default; |
806
4240f47aa2d4
- moved most of LDColorData API into LDColor
Santeri Piippo <crimsondusk64@gmail.com>
parents:
795
diff
changeset
|
60 | |
946 | 61 | bool isLDConfigColor() const; |
62 | bool isValid() const; | |
63 | QString name() const; | |
64 | QString hexcode() const; | |
65 | QColor faceColor() const; | |
66 | QColor edgeColor() const; | |
67 | qint32 index() const; | |
68 | bool isDirect() const; | |
69 | QString indexString() const; | |
806
4240f47aa2d4
- moved most of LDColorData API into LDColor
Santeri Piippo <crimsondusk64@gmail.com>
parents:
795
diff
changeset
|
70 | |
1114
ffd49a28f49e
Moved some global constants into appropriate namespaces.
Teemu Piippo <teemu@hecknology.net>
parents:
1072
diff
changeset
|
71 | static const LDColor nullColor; |
1397
5d5c11af0268
cleaned up LDColor constructors
Teemu Piippo <teemu@hecknology.net>
parents:
1326
diff
changeset
|
72 | static LDColor directColor(QColor color, bool transparent = false); |
1114
ffd49a28f49e
Moved some global constants into appropriate namespaces.
Teemu Piippo <teemu@hecknology.net>
parents:
1072
diff
changeset
|
73 | 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
|
74 | |
1044 | 75 | LDColor& operator=(qint32 index) { m_index = index; return *this; } |
76 | LDColor& operator=(const LDColor &other) = default; | |
1397
5d5c11af0268
cleaned up LDColor constructors
Teemu Piippo <teemu@hecknology.net>
parents:
1326
diff
changeset
|
77 | LDColor operator++() { return LDColor {++m_index}; } |
5d5c11af0268
cleaned up LDColor constructors
Teemu Piippo <teemu@hecknology.net>
parents:
1326
diff
changeset
|
78 | LDColor operator++(int) { return LDColor {m_index++}; } |
5d5c11af0268
cleaned up LDColor constructors
Teemu Piippo <teemu@hecknology.net>
parents:
1326
diff
changeset
|
79 | LDColor operator--() { return LDColor {--m_index}; } |
5d5c11af0268
cleaned up LDColor constructors
Teemu Piippo <teemu@hecknology.net>
parents:
1326
diff
changeset
|
80 | LDColor operator--(int) { return LDColor {m_index--}; } |
1044 | 81 | bool operator==(LDColor other) const { return index() == other.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(); } | |
946 | 87 | |
88 | private: | |
1114
ffd49a28f49e
Moved some global constants into appropriate namespaces.
Teemu Piippo <teemu@hecknology.net>
parents:
1072
diff
changeset
|
89 | static ColorData* colorData; |
998 | 90 | const ColorData::Entry& data() const; |
91 | ||
861
83426c5fa732
- major identifier renaming
Teemu Piippo <crimsondusk64@gmail.com>
parents:
844
diff
changeset
|
92 | 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
|
93 | }; |
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 | |
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
|
95 | 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
|
96 | 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
|
97 | |
1044 | 98 | /* |
99 | * LDConfigParser | |
100 | * | |
101 | * Parses LDConfig.ldr. | |
102 | */ | |
946 | 103 | class LDConfigParser |
655
b376645315ab
- renamed files to camelCase
Santeri Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
104 | { |
946 | 105 | public: |
1044 | 106 | LDConfigParser(QString inputText); |
946 | 107 | |
1044 | 108 | bool getToken(QString& tokenText, int position); |
109 | bool findToken(int& tokenPosition, QString needle, int args); | |
110 | bool compareToken(int inPos, QString text); | |
111 | 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
|
112 | |
946 | 113 | private: |
114 | QStringList m_tokens; | |
655
b376645315ab
- renamed files to camelCase
Santeri Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
115 | }; |
b376645315ab
- renamed files to camelCase
Santeri Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
116 | |
1044 | 117 | int luma(const QColor& col); |
861
83426c5fa732
- major identifier renaming
Teemu Piippo <crimsondusk64@gmail.com>
parents:
844
diff
changeset
|
118 | |
1397
5d5c11af0268
cleaned up LDColor constructors
Teemu Piippo <teemu@hecknology.net>
parents:
1326
diff
changeset
|
119 | static const LDColor MainColor {16}; |
5d5c11af0268
cleaned up LDColor constructors
Teemu Piippo <teemu@hecknology.net>
parents:
1326
diff
changeset
|
120 | static const LDColor EdgeColor {24}; |