Wed, 20 Mar 2013 13:27:43 +0200
Finally got the renderer to actually draw something! Still needs a lot of work but at least it doesn't show garbage or blank anymore.
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 | } \ |
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
|
30 | 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
|
31 | |
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
|
32 | class QTreeWidgetItem; |
0 | 33 | |
34 | // ============================================================================= | |
35 | // LDObjectType_e | |
36 | // | |
37 | // Object type codes | |
38 | // ============================================================================= | |
39 | 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
|
40 | 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
|
41 | OBJ_Gibberish, // Object is the result of failed parsing (LDGibberish) |
0 | 42 | OBJ_Empty, // Object represents an empty line (LDEmpty) |
43 | OBJ_Comment, // Object represents a comment (LDComment, code: 0) | |
44 | OBJ_Subfile, // Object represents a sub-file reference (LDSubfile, code: 1) | |
45 | OBJ_Line, // Object represents a line (LDLine, code: 2) | |
46 | OBJ_Triangle, // Object represents a triangle (LDTriangle, code: 3) | |
47 | OBJ_Quad, // Object represents a quadrilateral (LDQuad, code: 4) | |
48 | OBJ_CondLine, // Object represents a conditional line (LDCondLine, code: 5) | |
49 | OBJ_Vertex // Object is a vertex, LDForge extension object (LDVertex) | |
50 | }; | |
51 | ||
52 | // ============================================================================= | |
53 | // LDObject | |
54 | // | |
55 | // Base class object for all LD* types. Each LDObject represents a single line | |
56 | // in the LDraw code file. The virtual method getType returns an enumerator | |
57 | // which is a token of the object's type. The object can be casted into | |
58 | // sub-classes based on this enumerator. | |
59 | // ============================================================================= | |
60 | class LDObject { | |
61 | public: | |
62 | 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
|
63 | virtual ~LDObject (); |
0 | 64 | |
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
|
65 | // 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
|
66 | 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
|
67 | |
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 | // Type enumerator of this object |
0 | 69 | virtual LDObjectType_e getType () const { |
70 | return OBJ_Unidentified; | |
71 | }; | |
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
|
72 | |
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
|
73 | // 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
|
74 | 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
|
75 | 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
|
76 | } |
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
|
77 | |
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
|
78 | 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
|
79 | |
29
55406ce7446e
Added LDraw path setting dialog
Santeri Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
80 | // 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
|
81 | // object and any pointers to it become invalid. |
55406ce7446e
Added LDraw path setting dialog
Santeri Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
82 | void replace (LDObject* replacement); |
55406ce7446e
Added LDraw path setting dialog
Santeri Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
83 | |
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
|
84 | QTreeWidgetItem* qObjListEntry; |
0 | 85 | }; |
86 | ||
87 | // ============================================================================= | |
88 | // LDGibberish | |
89 | // | |
90 | // Represents a line in the LDraw file that could not be properly parsed. It is | |
91 | // represented by a (!) ERROR in the code view. It exists for the purpose of | |
92 | // allowing garbage lines be debugged and corrected within LDForge. The member | |
93 | // zContent contains the contents of the unparsable line. | |
94 | // ============================================================================= | |
95 | class LDGibberish : public LDObject { | |
96 | public: | |
97 | IMPLEMENT_LDTYPE (Gibberish) | |
98 | ||
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
|
99 | 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
|
100 | |
0 | 101 | // 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
|
102 | 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
|
103 | |
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
|
104 | // 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
|
105 | str zReason; |
0 | 106 | }; |
107 | ||
108 | // ============================================================================= | |
109 | // LDEmptyLine | |
110 | // | |
111 | // Represents an empty line in the LDraw code file. | |
112 | // ============================================================================= | |
113 | class LDEmpty : public LDObject { | |
114 | public: | |
115 | IMPLEMENT_LDTYPE (Empty) | |
116 | }; | |
117 | ||
118 | // ============================================================================= | |
119 | // LDComment | |
120 | // | |
121 | // Represents a code-0 comment in the LDraw code file. Member zText contains | |
122 | // the text of the comment. | |
123 | // ============================================================================= | |
124 | class LDComment : public LDObject { | |
125 | public: | |
126 | IMPLEMENT_LDTYPE (Comment) | |
127 | ||
128 | str zText; // The text of this comment | |
129 | }; | |
130 | ||
131 | // ============================================================================= | |
132 | // LDSubfile | |
133 | // | |
134 | // Represents a single code-1 subfile reference. | |
135 | // ============================================================================= | |
136 | class LDSubfile : public LDObject { | |
137 | public: | |
138 | IMPLEMENT_LDTYPE (Subfile) | |
139 | ||
140 | short dColor; // Color used by the reference | |
141 | vertex vPosition; // Position of the subpart | |
142 | double faMatrix[9]; // Transformation matrix for the subpart | |
143 | str zFileName; // Filename of the subpart | |
23
69a91c1ff583
begin work on subfile caching
Santeri Piippo <crimsondusk64@gmail.com>
parents:
21
diff
changeset
|
144 | OpenFile* pFile; // Pointer to opened file for this subfile. nullptr if unopened. |
0 | 145 | }; |
146 | ||
147 | // ============================================================================= | |
148 | // LDLine | |
149 | // | |
150 | // Represents a single code-2 line in the LDraw code file. v0 and v1 are the end | |
151 | // points of the line. The line is colored with dColor unless uncolored mode is | |
152 | // set. | |
153 | // ============================================================================= | |
154 | class LDLine : public LDObject { | |
155 | public: | |
156 | IMPLEMENT_LDTYPE (Line) | |
157 | ||
158 | short dColor; // Color of this line | |
159 | vertex vaCoords[2]; // End points of this line | |
160 | }; | |
161 | ||
162 | // ============================================================================= | |
163 | // LDCondLine | |
164 | // | |
165 | // Represents a single code-5 conditional line. The end-points v0 and v1 are | |
166 | // inherited from LDLine, c0 and c1 are the control points of this line. | |
167 | // ============================================================================= | |
168 | class LDCondLine : public LDLine { | |
169 | public: | |
170 | IMPLEMENT_LDTYPE (CondLine) | |
171 | ||
40
215b9f8f0cd7
Added triangle, quad and condline to the add object dialog
Santeri Piippo <crimsondusk64@gmail.com>
parents:
39
diff
changeset
|
172 | short dColor; // Color of this line |
215b9f8f0cd7
Added triangle, quad and condline to the add object dialog
Santeri Piippo <crimsondusk64@gmail.com>
parents:
39
diff
changeset
|
173 | vertex vaCoords[4]; // End points + control points of this line |
0 | 174 | }; |
175 | ||
176 | // ============================================================================= | |
177 | // LDTriangle | |
178 | // | |
179 | // Represents a single code-3 triangle in the LDraw code file. Vertices v0, v1 | |
180 | // and v2 contain the end-points of this triangle. dColor is the color the | |
181 | // triangle is colored with. | |
182 | // ============================================================================= | |
183 | class LDTriangle : public LDObject { | |
184 | public: | |
185 | IMPLEMENT_LDTYPE (Triangle) | |
186 | ||
187 | short dColor; | |
188 | vertex vaCoords[3]; | |
189 | ||
190 | LDTriangle (vertex _v0, vertex _v1, vertex _v2) { | |
191 | vaCoords[0] = _v0; | |
192 | vaCoords[1] = _v1; | |
193 | vaCoords[2] = _v2; | |
194 | } | |
195 | }; | |
196 | ||
197 | // ============================================================================= | |
198 | // LDQuad | |
199 | // | |
200 | // Represents a single code-4 quadrilateral. v0, v1, v2 and v3 are the end points | |
201 | // of the quad, dColor is the color used for the quad. | |
202 | // ============================================================================= | |
203 | class LDQuad : public LDObject { | |
204 | public: | |
205 | IMPLEMENT_LDTYPE (Quad) | |
206 | ||
207 | short dColor; | |
208 | vertex vaCoords[4]; | |
21
9aebaaafa5da
Added split-quads-to-triangles function
Santeri Piippo <crimsondusk64@gmail.com>
parents:
19
diff
changeset
|
209 | |
9aebaaafa5da
Added split-quads-to-triangles function
Santeri Piippo <crimsondusk64@gmail.com>
parents:
19
diff
changeset
|
210 | // Split this quad into two triangles |
9aebaaafa5da
Added split-quads-to-triangles function
Santeri Piippo <crimsondusk64@gmail.com>
parents:
19
diff
changeset
|
211 | void splitToTriangles (); |
0 | 212 | }; |
213 | ||
214 | // ============================================================================= | |
215 | // LDVertex | |
216 | // | |
217 | // The vertex is another LDForce-specific extension. It represents a single | |
218 | // vertex which can be used as a parameter to tools or to store coordinates | |
219 | // with. Vertices are a part authoring tool and they should not appear in | |
220 | // finished parts. | |
221 | // ============================================================================= | |
222 | class LDVertex : public LDObject { | |
223 | public: | |
224 | IMPLEMENT_LDTYPE (Vertex) | |
225 | ||
29
55406ce7446e
Added LDraw path setting dialog
Santeri Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
226 | short dColor; |
0 | 227 | vertex vPosition; |
228 | }; | |
229 | ||
230 | // ============================================================================= | |
231 | // Object type names. Pass the return value of getType as the index to get a | |
232 | // string representation of the object's type. | |
233 | extern const char* g_saObjTypeNames[]; | |
234 | ||
39
110669124caf
Begin work on dialogs for adding objects. Comments functional!
Santeri Piippo <crimsondusk64@gmail.com>
parents:
30
diff
changeset
|
235 | // Icons for these types |
110669124caf
Begin work on dialogs for adding objects. Comments functional!
Santeri Piippo <crimsondusk64@gmail.com>
parents:
30
diff
changeset
|
236 | extern const char* g_saObjTypeIcons[]; |
110669124caf
Begin work on dialogs for adding objects. Comments functional!
Santeri Piippo <crimsondusk64@gmail.com>
parents:
30
diff
changeset
|
237 | |
0 | 238 | #endif |