Tue, 15 Nov 2016 17:37:31 +0200
Cleanup PartDownloader
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 |
1014
f0a8ecb6a357
Happy new year 2016!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
998
diff
changeset
|
3 | * Copyright (C) 2013 - 2016 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 | ~ColorData(); | |
40 | void loadFromLdconfig(); | |
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); | |
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 | |
1044 | 71 | static LDColor nullColor(); |
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
|
72 | |
1044 | 73 | LDColor& operator=(qint32 index) { m_index = index; return *this; } |
74 | LDColor& operator=(const LDColor &other) = default; | |
946 | 75 | LDColor operator++() { return ++m_index; } |
1044 | 76 | LDColor operator++(int) { return m_index++; } |
946 | 77 | LDColor operator--() { return --m_index; } |
1044 | 78 | LDColor operator--(int) { return m_index--; } |
79 | bool operator==(LDColor other) const { return index() == other.index(); } | |
80 | bool operator!=(LDColor other) const { return index() != other.index(); } | |
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(); } | |
946 | 85 | |
86 | private: | |
998 | 87 | const ColorData::Entry& data() const; |
88 | ||
861
83426c5fa732
- major identifier renaming
Teemu Piippo <crimsondusk64@gmail.com>
parents:
844
diff
changeset
|
89 | 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
|
90 | }; |
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
|
91 | |
1031
55c0d3beea0d
removed removeDuplicates in favor of QSet, and the unused ObjectList class
Teemu Piippo <crimsondusk64@gmail.com>
parents:
1014
diff
changeset
|
92 | 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
|
93 | |
1044 | 94 | /* |
95 | * LDConfigParser | |
96 | * | |
97 | * Parses LDConfig.ldr. | |
98 | */ | |
946 | 99 | class LDConfigParser |
655
b376645315ab
- renamed files to camelCase
Santeri Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
100 | { |
946 | 101 | public: |
1044 | 102 | LDConfigParser(QString inputText); |
946 | 103 | |
1044 | 104 | bool getToken(QString& tokenText, int position); |
105 | bool findToken(int& tokenPosition, QString needle, int args); | |
106 | bool compareToken(int inPos, QString text); | |
107 | 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
|
108 | |
946 | 109 | private: |
110 | QStringList m_tokens; | |
655
b376645315ab
- renamed files to camelCase
Santeri Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
111 | }; |
b376645315ab
- renamed files to camelCase
Santeri Piippo <crimsondusk64@gmail.com>
parents:
diff
changeset
|
112 | |
998 | 113 | void initColors(); |
1044 | 114 | int luma(const QColor& col); |
861
83426c5fa732
- major identifier renaming
Teemu Piippo <crimsondusk64@gmail.com>
parents:
844
diff
changeset
|
115 | |
83426c5fa732
- major identifier renaming
Teemu Piippo <crimsondusk64@gmail.com>
parents:
844
diff
changeset
|
116 | enum |
83426c5fa732
- major identifier renaming
Teemu Piippo <crimsondusk64@gmail.com>
parents:
844
diff
changeset
|
117 | { |
946 | 118 | MainColor = 16, |
119 | EdgeColor = 24, | |
861
83426c5fa732
- major identifier renaming
Teemu Piippo <crimsondusk64@gmail.com>
parents:
844
diff
changeset
|
120 | }; |