Mon, 15 Apr 2013 02:56:42 +0300
Picking improvements
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 |
104 | 3 | * Copyright (C) 2013 Santeri Piippo |
30
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" | |
64
ada4679d5bce
Considerably improved sub-file inlining. Use a matrix class instead of double[9], educated myself on what matrix multiplication actually is and fixed the algorithm up. Aside from I/O problems, 32551.dat is correctly rendered now.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
63
diff
changeset
|
23 | #include "types.h" |
0 | 24 | |
25 | #define IMPLEMENT_LDTYPE(N) \ | |
26 | 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
|
27 | virtual ~LD##N (); \ |
0 | 28 | virtual LDObjectType_e getType () const { \ |
29 | 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
|
30 | } \ |
55
b08f10e668e5
Added clipboard, added delete action
Santeri Piippo <crimsondusk64@gmail.com>
parents:
50
diff
changeset
|
31 | virtual str getContents (); \ |
76
42284126072a
Added a New Part dialog
Santeri Piippo <crimsondusk64@gmail.com>
parents:
73
diff
changeset
|
32 | virtual LD##N* clone () { \ |
55
b08f10e668e5
Added clipboard, added delete action
Santeri Piippo <crimsondusk64@gmail.com>
parents:
50
diff
changeset
|
33 | return new LD##N (*this); \ |
102
cacd4681ccb4
Added basic object moving with MLCAD-like controls.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
96
diff
changeset
|
34 | } \ |
cacd4681ccb4
Added basic object moving with MLCAD-like controls.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
96
diff
changeset
|
35 | virtual void move (vertex vVector); |
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
|
36 | |
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
|
37 | class QTreeWidgetItem; |
104 | 38 | class LDSubfile; |
0 | 39 | |
40 | // ============================================================================= | |
41 | // LDObjectType_e | |
42 | // | |
96
2f175b3d8211
Added history dialog, cannot display all types yet
Santeri Piippo <crimsondusk64@gmail.com>
parents:
91
diff
changeset
|
43 | // Object type codes. Codes are sorted in order of significance. |
0 | 44 | // ============================================================================= |
45 | enum LDObjectType_e { | |
96
2f175b3d8211
Added history dialog, cannot display all types yet
Santeri Piippo <crimsondusk64@gmail.com>
parents:
91
diff
changeset
|
46 | OBJ_Subfile, // Object represents a sub-file reference |
2f175b3d8211
Added history dialog, cannot display all types yet
Santeri Piippo <crimsondusk64@gmail.com>
parents:
91
diff
changeset
|
47 | OBJ_Quad, // Object represents a quadrilateral |
2f175b3d8211
Added history dialog, cannot display all types yet
Santeri Piippo <crimsondusk64@gmail.com>
parents:
91
diff
changeset
|
48 | OBJ_Triangle, // Object represents a triangle |
2f175b3d8211
Added history dialog, cannot display all types yet
Santeri Piippo <crimsondusk64@gmail.com>
parents:
91
diff
changeset
|
49 | OBJ_Line, // Object represents a line |
2f175b3d8211
Added history dialog, cannot display all types yet
Santeri Piippo <crimsondusk64@gmail.com>
parents:
91
diff
changeset
|
50 | OBJ_CondLine, // Object represents a conditional line |
2f175b3d8211
Added history dialog, cannot display all types yet
Santeri Piippo <crimsondusk64@gmail.com>
parents:
91
diff
changeset
|
51 | OBJ_Vertex, // Object is a vertex, LDForge extension object |
73
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
52 | OBJ_BFC, // Object represents a BFC statement |
96
2f175b3d8211
Added history dialog, cannot display all types yet
Santeri Piippo <crimsondusk64@gmail.com>
parents:
91
diff
changeset
|
53 | OBJ_Comment, // Object represents a comment |
2f175b3d8211
Added history dialog, cannot display all types yet
Santeri Piippo <crimsondusk64@gmail.com>
parents:
91
diff
changeset
|
54 | OBJ_Gibberish, // Object is the result of failed parsing |
2f175b3d8211
Added history dialog, cannot display all types yet
Santeri Piippo <crimsondusk64@gmail.com>
parents:
91
diff
changeset
|
55 | OBJ_Empty, // Object represents an empty line |
2f175b3d8211
Added history dialog, cannot display all types yet
Santeri Piippo <crimsondusk64@gmail.com>
parents:
91
diff
changeset
|
56 | OBJ_Unidentified, // Object is an uninitialized (SHOULD NEVER HAPPEN) |
2f175b3d8211
Added history dialog, cannot display all types yet
Santeri Piippo <crimsondusk64@gmail.com>
parents:
91
diff
changeset
|
57 | NUM_ObjectTypes // Amount of object types |
0 | 58 | }; |
59 | ||
60 | // ============================================================================= | |
61 | // LDObject | |
62 | // | |
63 | // Base class object for all LD* types. Each LDObject represents a single line | |
64 | // in the LDraw code file. The virtual method getType returns an enumerator | |
65 | // which is a token of the object's type. The object can be casted into | |
66 | // sub-classes based on this enumerator. | |
67 | // ============================================================================= | |
68 | class LDObject { | |
69 | public: | |
70 | 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
|
71 | virtual ~LDObject (); |
0 | 72 | |
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
|
73 | // Index (i.e. line number) of this object |
66
12aca5d5a51e
Restructured inlining to use a proper caching.. one cache per sub-file reference? What was I thinking? *whacks self with a 55295.dat*
Santeri Piippo <crimsondusk64@gmail.com>
parents:
64
diff
changeset
|
74 | long getIndex (OpenFile* pFile); |
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 | |
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
|
76 | // 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
|
77 | // 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
|
78 | 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
|
79 | |
103
b0a345196435
Added the ability to add vertices to object corners
Santeri Piippo <crimsondusk64@gmail.com>
parents:
102
diff
changeset
|
80 | // OpenGL list for this object |
107
195aa036da7f
Picking improvements
Santeri Piippo <crimsondusk64@gmail.com>
parents:
104
diff
changeset
|
81 | uint uGLList, uGLPickList; |
103
b0a345196435
Added the ability to add vertices to object corners
Santeri Piippo <crimsondusk64@gmail.com>
parents:
102
diff
changeset
|
82 | |
104 | 83 | // Object this object was referenced from, if any |
84 | LDSubfile* parent; | |
85 | ||
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
|
86 | // Type enumerator of this object |
0 | 87 | virtual LDObjectType_e getType () const { |
88 | return OBJ_Unidentified; | |
89 | }; | |
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
|
90 | |
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
|
91 | // 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
|
92 | 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
|
93 | 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
|
94 | } |
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 | |
76
42284126072a
Added a New Part dialog
Santeri Piippo <crimsondusk64@gmail.com>
parents:
73
diff
changeset
|
96 | // Creates a new LDObject identical to this one and returns a pointer to it. |
42284126072a
Added a New Part dialog
Santeri Piippo <crimsondusk64@gmail.com>
parents:
73
diff
changeset
|
97 | virtual LDObject* clone () { |
55
b08f10e668e5
Added clipboard, added delete action
Santeri Piippo <crimsondusk64@gmail.com>
parents:
50
diff
changeset
|
98 | return new LDObject (*this); |
b08f10e668e5
Added clipboard, added delete action
Santeri Piippo <crimsondusk64@gmail.com>
parents:
50
diff
changeset
|
99 | } |
b08f10e668e5
Added clipboard, added delete action
Santeri Piippo <crimsondusk64@gmail.com>
parents:
50
diff
changeset
|
100 | |
104 | 101 | // Sets data common to all objects. |
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 | 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
|
103 | |
29
55406ce7446e
Added LDraw path setting dialog
Santeri Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
104 | // 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
|
105 | // object and any pointers to it become invalid. |
55406ce7446e
Added LDraw path setting dialog
Santeri Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
106 | void replace (LDObject* replacement); |
55406ce7446e
Added LDraw path setting dialog
Santeri Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
107 | |
84
c9438ea54ed9
Added move up/down actions.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
76
diff
changeset
|
108 | // Swap this object with another. |
c9438ea54ed9
Added move up/down actions.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
76
diff
changeset
|
109 | void swap (LDObject* other); |
c9438ea54ed9
Added move up/down actions.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
76
diff
changeset
|
110 | |
102
cacd4681ccb4
Added basic object moving with MLCAD-like controls.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
96
diff
changeset
|
111 | // Moves this object using the given vertex as a movement vector |
cacd4681ccb4
Added basic object moving with MLCAD-like controls.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
96
diff
changeset
|
112 | virtual void move (vertex vVector); |
cacd4681ccb4
Added basic object moving with MLCAD-like controls.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
96
diff
changeset
|
113 | |
104 | 114 | // What subfile in the current file ultimately references this? |
115 | LDSubfile* topLevelParent (); | |
116 | ||
91
b4dda6348e7e
History handling for list moving
Santeri Piippo <crimsondusk64@gmail.com>
parents:
84
diff
changeset
|
117 | static void moveObjects (std::vector<LDObject*> objs, const bool bUp); |
96
2f175b3d8211
Added history dialog, cannot display all types yet
Santeri Piippo <crimsondusk64@gmail.com>
parents:
91
diff
changeset
|
118 | static str objectListContents (std::vector<LDObject*>& objs); |
91
b4dda6348e7e
History handling for list moving
Santeri Piippo <crimsondusk64@gmail.com>
parents:
84
diff
changeset
|
119 | |
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
|
120 | QTreeWidgetItem* qObjListEntry; |
0 | 121 | }; |
122 | ||
123 | // ============================================================================= | |
124 | // LDGibberish | |
125 | // | |
126 | // Represents a line in the LDraw file that could not be properly parsed. It is | |
127 | // represented by a (!) ERROR in the code view. It exists for the purpose of | |
128 | // allowing garbage lines be debugged and corrected within LDForge. The member | |
129 | // zContent contains the contents of the unparsable line. | |
130 | // ============================================================================= | |
131 | class LDGibberish : public LDObject { | |
132 | public: | |
133 | IMPLEMENT_LDTYPE (Gibberish) | |
134 | ||
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
|
135 | 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
|
136 | |
0 | 137 | // 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
|
138 | 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
|
139 | |
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
|
140 | // 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
|
141 | str zReason; |
0 | 142 | }; |
143 | ||
144 | // ============================================================================= | |
145 | // LDEmptyLine | |
146 | // | |
147 | // Represents an empty line in the LDraw code file. | |
148 | // ============================================================================= | |
149 | class LDEmpty : public LDObject { | |
150 | public: | |
151 | IMPLEMENT_LDTYPE (Empty) | |
152 | }; | |
153 | ||
154 | // ============================================================================= | |
155 | // LDComment | |
156 | // | |
157 | // Represents a code-0 comment in the LDraw code file. Member zText contains | |
158 | // the text of the comment. | |
159 | // ============================================================================= | |
160 | class LDComment : public LDObject { | |
161 | public: | |
162 | IMPLEMENT_LDTYPE (Comment) | |
104 | 163 | LDComment (str zText) : zText (zText) { commonInit (); } |
0 | 164 | |
165 | str zText; // The text of this comment | |
166 | }; | |
167 | ||
168 | // ============================================================================= | |
73
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
169 | // LDBFC |
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
170 | // |
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
171 | // Represents a 0 BFC statement in the LDraw code. eStatement contains the type |
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
172 | // of this statement. |
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
173 | // ============================================================================= |
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
174 | class LDBFC : public LDComment { |
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
175 | public: |
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
176 | IMPLEMENT_LDTYPE (BFC) |
104 | 177 | LDBFC (const int dType) : dStatement (dType) { commonInit (); } |
73
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
178 | |
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
179 | // Statement strings |
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
180 | static const char* saStatements[]; |
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
181 | |
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
182 | static str statementString (short dValue); |
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
183 | short dStatement; |
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
184 | }; |
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
185 | |
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
186 | |
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
187 | // ----------------------------------------------------------------------------- |
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
188 | // Enumerator for LDBFC's dStatement |
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
189 | enum LDBFCType_e { |
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
190 | BFC_CertifyCCW, |
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
191 | BFC_CCW, |
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
192 | BFC_CertifyCW, |
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
193 | BFC_CW, |
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
194 | BFC_NoCertify, // Winding becomes disabled (0 BFC NOCERTIFY) |
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
195 | BFC_InvertNext, // Winding is inverted for next object (0 BFC INVERTNEXT) |
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
196 | NUM_BFCStatements |
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
197 | }; |
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
198 | |
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
199 | // ============================================================================= |
0 | 200 | // LDSubfile |
201 | // | |
202 | // Represents a single code-1 subfile reference. | |
203 | // ============================================================================= | |
204 | class LDSubfile : public LDObject { | |
205 | public: | |
206 | IMPLEMENT_LDTYPE (Subfile) | |
207 | ||
208 | vertex vPosition; // Position of the subpart | |
64
ada4679d5bce
Considerably improved sub-file inlining. Use a matrix class instead of double[9], educated myself on what matrix multiplication actually is and fixed the algorithm up. Aside from I/O problems, 32551.dat is correctly rendered now.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
63
diff
changeset
|
209 | matrix mMatrix; // Transformation matrix for the subpart |
0 | 210 | str zFileName; // Filename of the subpart |
104 | 211 | OpenFile* pFile; // Pointer to opened file for this subfile. null if unopened. |
62
915fc477cb6a
Got inlining working. 3002.dat renders properly now! Now just to iron out the bugs and hone the behavior..
Santeri Piippo <crimsondusk64@gmail.com>
parents:
57
diff
changeset
|
212 | |
915fc477cb6a
Got inlining working. 3002.dat renders properly now! Now just to iron out the bugs and hone the behavior..
Santeri Piippo <crimsondusk64@gmail.com>
parents:
57
diff
changeset
|
213 | // Gets the inlined contents of this subfile. |
66
12aca5d5a51e
Restructured inlining to use a proper caching.. one cache per sub-file reference? What was I thinking? *whacks self with a 55295.dat*
Santeri Piippo <crimsondusk64@gmail.com>
parents:
64
diff
changeset
|
214 | std::vector<LDObject*> inlineContents (bool bDeepInline, bool bCache); |
0 | 215 | }; |
216 | ||
217 | // ============================================================================= | |
218 | // LDLine | |
219 | // | |
220 | // Represents a single code-2 line in the LDraw code file. v0 and v1 are the end | |
221 | // points of the line. The line is colored with dColor unless uncolored mode is | |
222 | // set. | |
223 | // ============================================================================= | |
224 | class LDLine : public LDObject { | |
225 | public: | |
226 | IMPLEMENT_LDTYPE (Line) | |
57
6e89589f1fe8
Added polygon bordering function
Santeri Piippo <crimsondusk64@gmail.com>
parents:
55
diff
changeset
|
227 | LDLine (vertex v1, vertex v2); |
0 | 228 | |
229 | vertex vaCoords[2]; // End points of this line | |
230 | }; | |
231 | ||
232 | // ============================================================================= | |
233 | // LDCondLine | |
234 | // | |
235 | // Represents a single code-5 conditional line. The end-points v0 and v1 are | |
236 | // inherited from LDLine, c0 and c1 are the control points of this line. | |
237 | // ============================================================================= | |
238 | class LDCondLine : public LDLine { | |
239 | public: | |
240 | IMPLEMENT_LDTYPE (CondLine) | |
241 | ||
40
215b9f8f0cd7
Added triangle, quad and condline to the add object dialog
Santeri Piippo <crimsondusk64@gmail.com>
parents:
39
diff
changeset
|
242 | vertex vaCoords[4]; // End points + control points of this line |
0 | 243 | }; |
244 | ||
245 | // ============================================================================= | |
246 | // LDTriangle | |
247 | // | |
248 | // Represents a single code-3 triangle in the LDraw code file. Vertices v0, v1 | |
249 | // and v2 contain the end-points of this triangle. dColor is the color the | |
250 | // triangle is colored with. | |
251 | // ============================================================================= | |
252 | class LDTriangle : public LDObject { | |
253 | public: | |
254 | IMPLEMENT_LDTYPE (Triangle) | |
255 | ||
256 | vertex vaCoords[3]; | |
257 | ||
258 | LDTriangle (vertex _v0, vertex _v1, vertex _v2) { | |
259 | vaCoords[0] = _v0; | |
260 | vaCoords[1] = _v1; | |
261 | vaCoords[2] = _v2; | |
262 | } | |
263 | }; | |
264 | ||
265 | // ============================================================================= | |
266 | // LDQuad | |
267 | // | |
268 | // Represents a single code-4 quadrilateral. v0, v1, v2 and v3 are the end points | |
269 | // of the quad, dColor is the color used for the quad. | |
270 | // ============================================================================= | |
271 | class LDQuad : public LDObject { | |
272 | public: | |
273 | IMPLEMENT_LDTYPE (Quad) | |
274 | ||
275 | vertex vaCoords[4]; | |
21
9aebaaafa5da
Added split-quads-to-triangles function
Santeri Piippo <crimsondusk64@gmail.com>
parents:
19
diff
changeset
|
276 | |
9aebaaafa5da
Added split-quads-to-triangles function
Santeri Piippo <crimsondusk64@gmail.com>
parents:
19
diff
changeset
|
277 | // Split this quad into two triangles |
73
d20867ac03cc
Added support for BFC types
Santeri Piippo <crimsondusk64@gmail.com>
parents:
66
diff
changeset
|
278 | vector<LDTriangle*> splitToTriangles (); |
0 | 279 | }; |
280 | ||
281 | // ============================================================================= | |
282 | // LDVertex | |
283 | // | |
284 | // The vertex is another LDForce-specific extension. It represents a single | |
285 | // vertex which can be used as a parameter to tools or to store coordinates | |
286 | // with. Vertices are a part authoring tool and they should not appear in | |
287 | // finished parts. | |
288 | // ============================================================================= | |
289 | class LDVertex : public LDObject { | |
290 | public: | |
291 | IMPLEMENT_LDTYPE (Vertex) | |
292 | ||
293 | vertex vPosition; | |
294 | }; | |
295 | ||
296 | // ============================================================================= | |
297 | // Object type names. Pass the return value of getType as the index to get a | |
298 | // string representation of the object's type. | |
299 | extern const char* g_saObjTypeNames[]; | |
300 | ||
39
110669124caf
Begin work on dialogs for adding objects. Comments functional!
Santeri Piippo <crimsondusk64@gmail.com>
parents:
30
diff
changeset
|
301 | // Icons for these types |
110669124caf
Begin work on dialogs for adding objects. Comments functional!
Santeri Piippo <crimsondusk64@gmail.com>
parents:
30
diff
changeset
|
302 | extern const char* g_saObjTypeIcons[]; |
110669124caf
Begin work on dialogs for adding objects. Comments functional!
Santeri Piippo <crimsondusk64@gmail.com>
parents:
30
diff
changeset
|
303 | |
0 | 304 | #endif |