Thu, 21 Mar 2013 18:26:57 +0200
If editing contents of a gibberish object, show the reason for the gibberishness in the dialog. Clamp the bounding box scale to at least 1.0 so that polygons are visible in new files.
30
31ff9aabd506
Licensed LDForge GPL3, added some more icons
Santeri Piippo <crimsondusk64@gmail.com>
parents:
29
diff
changeset
|
1 | /* |
31ff9aabd506
Licensed LDForge GPL3, added some more icons
Santeri Piippo <crimsondusk64@gmail.com>
parents:
29
diff
changeset
|
2 | * LDForge: LDraw parts authoring CAD |
31ff9aabd506
Licensed LDForge GPL3, added some more icons
Santeri Piippo <crimsondusk64@gmail.com>
parents:
29
diff
changeset
|
3 | * Copyright (C) 2013 Santeri `arezey` Piippo |
31ff9aabd506
Licensed LDForge GPL3, added some more icons
Santeri Piippo <crimsondusk64@gmail.com>
parents:
29
diff
changeset
|
4 | * |
31ff9aabd506
Licensed LDForge GPL3, added some more icons
Santeri Piippo <crimsondusk64@gmail.com>
parents:
29
diff
changeset
|
5 | * This program is free software: you can redistribute it and/or modify |
31ff9aabd506
Licensed LDForge GPL3, added some more icons
Santeri Piippo <crimsondusk64@gmail.com>
parents:
29
diff
changeset
|
6 | * it under the terms of the GNU General Public License as published by |
31ff9aabd506
Licensed LDForge GPL3, added some more icons
Santeri Piippo <crimsondusk64@gmail.com>
parents:
29
diff
changeset
|
7 | * the Free Software Foundation, either version 3 of the License, or |
31ff9aabd506
Licensed LDForge GPL3, added some more icons
Santeri Piippo <crimsondusk64@gmail.com>
parents:
29
diff
changeset
|
8 | * (at your option) any later version. |
31ff9aabd506
Licensed LDForge GPL3, added some more icons
Santeri Piippo <crimsondusk64@gmail.com>
parents:
29
diff
changeset
|
9 | * |
31ff9aabd506
Licensed LDForge GPL3, added some more icons
Santeri Piippo <crimsondusk64@gmail.com>
parents:
29
diff
changeset
|
10 | * This program is distributed in the hope that it will be useful, |
31ff9aabd506
Licensed LDForge GPL3, added some more icons
Santeri Piippo <crimsondusk64@gmail.com>
parents:
29
diff
changeset
|
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
31ff9aabd506
Licensed LDForge GPL3, added some more icons
Santeri Piippo <crimsondusk64@gmail.com>
parents:
29
diff
changeset
|
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
31ff9aabd506
Licensed LDForge GPL3, added some more icons
Santeri Piippo <crimsondusk64@gmail.com>
parents:
29
diff
changeset
|
13 | * GNU General Public License for more details. |
31ff9aabd506
Licensed LDForge GPL3, added some more icons
Santeri Piippo <crimsondusk64@gmail.com>
parents:
29
diff
changeset
|
14 | * |
31ff9aabd506
Licensed LDForge GPL3, added some more icons
Santeri Piippo <crimsondusk64@gmail.com>
parents:
29
diff
changeset
|
15 | * You should have received a copy of the GNU General Public License |
31ff9aabd506
Licensed LDForge GPL3, added some more icons
Santeri Piippo <crimsondusk64@gmail.com>
parents:
29
diff
changeset
|
16 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
31ff9aabd506
Licensed LDForge GPL3, added some more icons
Santeri Piippo <crimsondusk64@gmail.com>
parents:
29
diff
changeset
|
17 | */ |
31ff9aabd506
Licensed LDForge GPL3, added some more icons
Santeri Piippo <crimsondusk64@gmail.com>
parents:
29
diff
changeset
|
18 | |
0 | 19 | #ifndef __LDTYPES_H__ |
20 | #define __LDTYPES_H__ | |
21 | ||
22 | #include "common.h" | |
23 | ||
24 | #define IMPLEMENT_LDTYPE(N) \ | |
25 | LD##N (); \ | |
24
d2d4d0154338
added dummy action for future inlining command. Also GCC says that deleting instances of classes with virtual members but no virtual destructors is bad.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
23
diff
changeset
|
26 | virtual ~LD##N (); \ |
0 | 27 | virtual LDObjectType_e getType () const { \ |
28 | return OBJ_##N; \ | |
14
6d9d8efae2f8
this thing got its own reinterpret_cast now. :P Added SetContents action for altering an object by contents and reinterpreting it.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
29 | } \ |
55
b08f10e668e5
Added clipboard, added delete action
Santeri Piippo <crimsondusk64@gmail.com>
parents:
50
diff
changeset
|
30 | virtual str getContents (); \ |
b08f10e668e5
Added clipboard, added delete action
Santeri Piippo <crimsondusk64@gmail.com>
parents:
50
diff
changeset
|
31 | virtual LD##N* makeClone () { \ |
b08f10e668e5
Added clipboard, added delete action
Santeri Piippo <crimsondusk64@gmail.com>
parents:
50
diff
changeset
|
32 | return new LD##N (*this); \ |
b08f10e668e5
Added clipboard, added delete action
Santeri Piippo <crimsondusk64@gmail.com>
parents:
50
diff
changeset
|
33 | } |
14
6d9d8efae2f8
this thing got its own reinterpret_cast now. :P Added SetContents action for altering an object by contents and reinterpreting it.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
34 | |
6d9d8efae2f8
this thing got its own reinterpret_cast now. :P Added SetContents action for altering an object by contents and reinterpreting it.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
35 | class QTreeWidgetItem; |
0 | 36 | |
37 | // ============================================================================= | |
38 | // LDObjectType_e | |
39 | // | |
40 | // Object type codes | |
41 | // ============================================================================= | |
42 | enum LDObjectType_e { | |
25
c74bb88f537d
Deleted scanner.cpp (don't need it), merged model.cpp into io.cpp. Renamed LDForgeWindow to just ForgeWindow since I want the LD* prefix only be given to LDObject derivatives.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
24
diff
changeset
|
43 | OBJ_Unidentified, // Object is an uninitialized (LDObject) (SHOULD NEVER HAPPEN) |
c74bb88f537d
Deleted scanner.cpp (don't need it), merged model.cpp into io.cpp. Renamed LDForgeWindow to just ForgeWindow since I want the LD* prefix only be given to LDObject derivatives.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
24
diff
changeset
|
44 | OBJ_Gibberish, // Object is the result of failed parsing (LDGibberish) |
0 | 45 | OBJ_Empty, // Object represents an empty line (LDEmpty) |
46 | OBJ_Comment, // Object represents a comment (LDComment, code: 0) | |
47 | OBJ_Subfile, // Object represents a sub-file reference (LDSubfile, code: 1) | |
48 | OBJ_Line, // Object represents a line (LDLine, code: 2) | |
49 | OBJ_Triangle, // Object represents a triangle (LDTriangle, code: 3) | |
50 | OBJ_Quad, // Object represents a quadrilateral (LDQuad, code: 4) | |
51 | OBJ_CondLine, // Object represents a conditional line (LDCondLine, code: 5) | |
52 | OBJ_Vertex // Object is a vertex, LDForge extension object (LDVertex) | |
53 | }; | |
54 | ||
55 | // ============================================================================= | |
56 | // LDObject | |
57 | // | |
58 | // Base class object for all LD* types. Each LDObject represents a single line | |
59 | // in the LDraw code file. The virtual method getType returns an enumerator | |
60 | // which is a token of the object's type. The object can be casted into | |
61 | // sub-classes based on this enumerator. | |
62 | // ============================================================================= | |
63 | class LDObject { | |
64 | public: | |
65 | LDObject (); | |
24
d2d4d0154338
added dummy action for future inlining command. Also GCC says that deleting instances of classes with virtual members but no virtual destructors is bad.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
23
diff
changeset
|
66 | virtual ~LDObject (); |
0 | 67 | |
13
3955ff2a7d72
Added logf function to write to message log. Write warnings of unparsable files into the message log.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
68 | // Index (i.e. line number) of this object |
19
6c5977e43e73
Added pointer serializing so I can keep track of all LDObject* members. This way I can replace them all properly when needed.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
14
diff
changeset
|
69 | unsigned long getIndex (); |
13
3955ff2a7d72
Added logf function to write to message log. Write warnings of unparsable files into the message log.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
70 | |
50
7fd213c6b844
Turned the test palette action into a set color action for mass object coloring.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
43
diff
changeset
|
71 | // Color used by this object. Comments, gibberish and empty entries |
7fd213c6b844
Turned the test palette action into a set color action for mass object coloring.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
43
diff
changeset
|
72 | // do not use this field. |
7fd213c6b844
Turned the test palette action into a set color action for mass object coloring.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
43
diff
changeset
|
73 | short dColor; |
7fd213c6b844
Turned the test palette action into a set color action for mass object coloring.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
43
diff
changeset
|
74 | |
13
3955ff2a7d72
Added logf function to write to message log. Write warnings of unparsable files into the message log.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
11
diff
changeset
|
75 | // Type enumerator of this object |
0 | 76 | virtual LDObjectType_e getType () const { |
77 | return OBJ_Unidentified; | |
78 | }; | |
14
6d9d8efae2f8
this thing got its own reinterpret_cast now. :P Added SetContents action for altering an object by contents and reinterpreting it.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
79 | |
6d9d8efae2f8
this thing got its own reinterpret_cast now. :P Added SetContents action for altering an object by contents and reinterpreting it.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
80 | // A string that represents this line |
6d9d8efae2f8
this thing got its own reinterpret_cast now. :P Added SetContents action for altering an object by contents and reinterpreting it.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
81 | virtual str getContents () { |
6d9d8efae2f8
this thing got its own reinterpret_cast now. :P Added SetContents action for altering an object by contents and reinterpreting it.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
82 | return ""; |
6d9d8efae2f8
this thing got its own reinterpret_cast now. :P Added SetContents action for altering an object by contents and reinterpreting it.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
83 | } |
6d9d8efae2f8
this thing got its own reinterpret_cast now. :P Added SetContents action for altering an object by contents and reinterpreting it.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
84 | |
55
b08f10e668e5
Added clipboard, added delete action
Santeri Piippo <crimsondusk64@gmail.com>
parents:
50
diff
changeset
|
85 | virtual LDObject* makeClone () { |
b08f10e668e5
Added clipboard, added delete action
Santeri Piippo <crimsondusk64@gmail.com>
parents:
50
diff
changeset
|
86 | return new LDObject (*this); |
b08f10e668e5
Added clipboard, added delete action
Santeri Piippo <crimsondusk64@gmail.com>
parents:
50
diff
changeset
|
87 | } |
b08f10e668e5
Added clipboard, added delete action
Santeri Piippo <crimsondusk64@gmail.com>
parents:
50
diff
changeset
|
88 | |
14
6d9d8efae2f8
this thing got its own reinterpret_cast now. :P Added SetContents action for altering an object by contents and reinterpreting it.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
89 | void commonInit (); |
6d9d8efae2f8
this thing got its own reinterpret_cast now. :P Added SetContents action for altering an object by contents and reinterpreting it.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
90 | |
29
55406ce7446e
Added LDraw path setting dialog
Santeri Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
91 | // Replace this LDObject with another LDObject. This method deletes the |
55406ce7446e
Added LDraw path setting dialog
Santeri Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
92 | // object and any pointers to it become invalid. |
55406ce7446e
Added LDraw path setting dialog
Santeri Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
93 | void replace (LDObject* replacement); |
55406ce7446e
Added LDraw path setting dialog
Santeri Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
94 | |
14
6d9d8efae2f8
this thing got its own reinterpret_cast now. :P Added SetContents action for altering an object by contents and reinterpreting it.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
95 | QTreeWidgetItem* qObjListEntry; |
0 | 96 | }; |
97 | ||
98 | // ============================================================================= | |
99 | // LDGibberish | |
100 | // | |
101 | // Represents a line in the LDraw file that could not be properly parsed. It is | |
102 | // represented by a (!) ERROR in the code view. It exists for the purpose of | |
103 | // allowing garbage lines be debugged and corrected within LDForge. The member | |
104 | // zContent contains the contents of the unparsable line. | |
105 | // ============================================================================= | |
106 | class LDGibberish : public LDObject { | |
107 | public: | |
108 | IMPLEMENT_LDTYPE (Gibberish) | |
109 | ||
11
323390a03294
Color gibberish red. Check for line code length for gibberish (must be 1 to be valid)
Santeri Piippo <crimsondusk64@gmail.com>
parents:
0
diff
changeset
|
110 | LDGibberish (str _zContent, str _zReason); |
323390a03294
Color gibberish red. Check for line code length for gibberish (must be 1 to be valid)
Santeri Piippo <crimsondusk64@gmail.com>
parents:
0
diff
changeset
|
111 | |
0 | 112 | // Content of this unknown line |
14
6d9d8efae2f8
this thing got its own reinterpret_cast now. :P Added SetContents action for altering an object by contents and reinterpreting it.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
113 | str zContents; |
11
323390a03294
Color gibberish red. Check for line code length for gibberish (must be 1 to be valid)
Santeri Piippo <crimsondusk64@gmail.com>
parents:
0
diff
changeset
|
114 | |
323390a03294
Color gibberish red. Check for line code length for gibberish (must be 1 to be valid)
Santeri Piippo <crimsondusk64@gmail.com>
parents:
0
diff
changeset
|
115 | // Why is this gibberish? |
323390a03294
Color gibberish red. Check for line code length for gibberish (must be 1 to be valid)
Santeri Piippo <crimsondusk64@gmail.com>
parents:
0
diff
changeset
|
116 | str zReason; |
0 | 117 | }; |
118 | ||
119 | // ============================================================================= | |
120 | // LDEmptyLine | |
121 | // | |
122 | // Represents an empty line in the LDraw code file. | |
123 | // ============================================================================= | |
124 | class LDEmpty : public LDObject { | |
125 | public: | |
126 | IMPLEMENT_LDTYPE (Empty) | |
127 | }; | |
128 | ||
129 | // ============================================================================= | |
130 | // LDComment | |
131 | // | |
132 | // Represents a code-0 comment in the LDraw code file. Member zText contains | |
133 | // the text of the comment. | |
134 | // ============================================================================= | |
135 | class LDComment : public LDObject { | |
136 | public: | |
137 | IMPLEMENT_LDTYPE (Comment) | |
138 | ||
139 | str zText; // The text of this comment | |
140 | }; | |
141 | ||
142 | // ============================================================================= | |
143 | // LDSubfile | |
144 | // | |
145 | // Represents a single code-1 subfile reference. | |
146 | // ============================================================================= | |
147 | class LDSubfile : public LDObject { | |
148 | public: | |
149 | IMPLEMENT_LDTYPE (Subfile) | |
150 | ||
151 | vertex vPosition; // Position of the subpart | |
152 | double faMatrix[9]; // Transformation matrix for the subpart | |
153 | str zFileName; // Filename of the subpart | |
23
69a91c1ff583
begin work on subfile caching
Santeri Piippo <crimsondusk64@gmail.com>
parents:
21
diff
changeset
|
154 | OpenFile* pFile; // Pointer to opened file for this subfile. nullptr if unopened. |
0 | 155 | }; |
156 | ||
157 | // ============================================================================= | |
158 | // LDLine | |
159 | // | |
160 | // Represents a single code-2 line in the LDraw code file. v0 and v1 are the end | |
161 | // points of the line. The line is colored with dColor unless uncolored mode is | |
162 | // set. | |
163 | // ============================================================================= | |
164 | class LDLine : public LDObject { | |
165 | public: | |
166 | IMPLEMENT_LDTYPE (Line) | |
57
6e89589f1fe8
Added polygon bordering function
Santeri Piippo <crimsondusk64@gmail.com>
parents:
55
diff
changeset
|
167 | LDLine (vertex v1, vertex v2); |
0 | 168 | |
169 | vertex vaCoords[2]; // End points of this line | |
170 | }; | |
171 | ||
172 | // ============================================================================= | |
173 | // LDCondLine | |
174 | // | |
175 | // Represents a single code-5 conditional line. The end-points v0 and v1 are | |
176 | // inherited from LDLine, c0 and c1 are the control points of this line. | |
177 | // ============================================================================= | |
178 | class LDCondLine : public LDLine { | |
179 | public: | |
180 | IMPLEMENT_LDTYPE (CondLine) | |
181 | ||
40
215b9f8f0cd7
Added triangle, quad and condline to the add object dialog
Santeri Piippo <crimsondusk64@gmail.com>
parents:
39
diff
changeset
|
182 | vertex vaCoords[4]; // End points + control points of this line |
0 | 183 | }; |
184 | ||
185 | // ============================================================================= | |
186 | // LDTriangle | |
187 | // | |
188 | // Represents a single code-3 triangle in the LDraw code file. Vertices v0, v1 | |
189 | // and v2 contain the end-points of this triangle. dColor is the color the | |
190 | // triangle is colored with. | |
191 | // ============================================================================= | |
192 | class LDTriangle : public LDObject { | |
193 | public: | |
194 | IMPLEMENT_LDTYPE (Triangle) | |
195 | ||
196 | vertex vaCoords[3]; | |
197 | ||
198 | LDTriangle (vertex _v0, vertex _v1, vertex _v2) { | |
199 | vaCoords[0] = _v0; | |
200 | vaCoords[1] = _v1; | |
201 | vaCoords[2] = _v2; | |
202 | } | |
203 | }; | |
204 | ||
205 | // ============================================================================= | |
206 | // LDQuad | |
207 | // | |
208 | // Represents a single code-4 quadrilateral. v0, v1, v2 and v3 are the end points | |
209 | // of the quad, dColor is the color used for the quad. | |
210 | // ============================================================================= | |
211 | class LDQuad : public LDObject { | |
212 | public: | |
213 | IMPLEMENT_LDTYPE (Quad) | |
214 | ||
215 | vertex vaCoords[4]; | |
21
9aebaaafa5da
Added split-quads-to-triangles function
Santeri Piippo <crimsondusk64@gmail.com>
parents:
19
diff
changeset
|
216 | |
9aebaaafa5da
Added split-quads-to-triangles function
Santeri Piippo <crimsondusk64@gmail.com>
parents:
19
diff
changeset
|
217 | // Split this quad into two triangles |
9aebaaafa5da
Added split-quads-to-triangles function
Santeri Piippo <crimsondusk64@gmail.com>
parents:
19
diff
changeset
|
218 | void splitToTriangles (); |
0 | 219 | }; |
220 | ||
221 | // ============================================================================= | |
222 | // LDVertex | |
223 | // | |
224 | // The vertex is another LDForce-specific extension. It represents a single | |
225 | // vertex which can be used as a parameter to tools or to store coordinates | |
226 | // with. Vertices are a part authoring tool and they should not appear in | |
227 | // finished parts. | |
228 | // ============================================================================= | |
229 | class LDVertex : public LDObject { | |
230 | public: | |
231 | IMPLEMENT_LDTYPE (Vertex) | |
232 | ||
233 | vertex vPosition; | |
234 | }; | |
235 | ||
236 | // ============================================================================= | |
237 | // Object type names. Pass the return value of getType as the index to get a | |
238 | // string representation of the object's type. | |
239 | extern const char* g_saObjTypeNames[]; | |
240 | ||
39
110669124caf
Begin work on dialogs for adding objects. Comments functional!
Santeri Piippo <crimsondusk64@gmail.com>
parents:
30
diff
changeset
|
241 | // Icons for these types |
110669124caf
Begin work on dialogs for adding objects. Comments functional!
Santeri Piippo <crimsondusk64@gmail.com>
parents:
30
diff
changeset
|
242 | extern const char* g_saObjTypeIcons[]; |
110669124caf
Begin work on dialogs for adding objects. Comments functional!
Santeri Piippo <crimsondusk64@gmail.com>
parents:
30
diff
changeset
|
243 | |
0 | 244 | #endif |