Tue, 19 Mar 2013 15:29:42 +0200
Licensed LDForge GPL3, added some more icons
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 __COMMON_H__ |
20 | #define __COMMON_H__ | |
21 | ||
22 | #define APPNAME "ldforge" | |
23 | #define APPNAME_DISPLAY "LDForge" | |
24 | #define APPNAME_CAPS "LDFORGE" | |
25 | ||
26 | #define VERSION_MAJOR 0 | |
27 | #define VERSION_MAJOR_STR "0" | |
28 | #define VERSION_MINOR 1 | |
29 | #define VERSION_MINOR_STR "1" | |
30 | ||
31 | #define VERSION_STRING VERSION_MAJOR_STR "." VERSION_MINOR_STR | |
32 | ||
33 | #define CONFIG_WITH_QT | |
34 | ||
35 | #include <stdio.h> | |
36 | #include <stdlib.h> | |
37 | #include <assert.h> | |
38 | #include <vector> | |
39 | #include <stdint.h> | |
40 | #include "stdarg.h" | |
41 | #include "str.h" | |
42 | #include "config.h" | |
43 | ||
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:
7
diff
changeset
|
44 | #ifdef __GNUC__ |
3955ff2a7d72
Added logf function to write to message log. Write warnings of unparsable files into the message log.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
7
diff
changeset
|
45 | #define FORMAT_PRINTF(M,N) __attribute__ ((format (printf, M, N))) |
3955ff2a7d72
Added logf function to write to message log. Write warnings of unparsable files into the message log.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
7
diff
changeset
|
46 | #else |
3955ff2a7d72
Added logf function to write to message log. Write warnings of unparsable files into the message log.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
7
diff
changeset
|
47 | #define FORMAT_PRINTF(M,N) |
3955ff2a7d72
Added logf function to write to message log. Write warnings of unparsable files into the message log.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
7
diff
changeset
|
48 | #endif // __GNUC__ |
3955ff2a7d72
Added logf function to write to message log. Write warnings of unparsable files into the message log.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
7
diff
changeset
|
49 | |
29
55406ce7446e
Added LDraw path setting dialog
Santeri Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
50 | #ifdef WIN32 |
55406ce7446e
Added LDraw path setting dialog
Santeri Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
51 | #define DIRSLASH "\\" |
55406ce7446e
Added LDraw path setting dialog
Santeri Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
52 | #else // WIN32 |
55406ce7446e
Added LDraw path setting dialog
Santeri Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
53 | #define DIRSLASH "/" |
55406ce7446e
Added LDraw path setting dialog
Santeri Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
54 | #endif // WIN32 |
55406ce7446e
Added LDraw path setting dialog
Santeri Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
55 | |
0 | 56 | using std::vector; |
57 | ||
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:
22
diff
changeset
|
58 | class ForgeWindow; |
0 | 59 | class LDObject; |
60 | class bbox; | |
7
098e3c4949c6
Set window title dynamically based on filename
Santeri Piippo <crimsondusk64@gmail.com>
parents:
0
diff
changeset
|
61 | class OpenFile; |
30
31ff9aabd506
Licensed LDForge GPL3, added some more icons
Santeri Piippo <crimsondusk64@gmail.com>
parents:
29
diff
changeset
|
62 | class QApplication; |
0 | 63 | |
64 | // ============================================================================= | |
65 | // vertex (v) | |
66 | // | |
67 | // Vertex class. Not to be confused with LDVertex, which is a vertex used in an | |
68 | // LDraw code file. | |
69 | // | |
70 | // Methods: | |
71 | // - midpoint (vertex&): returns a midpoint | |
72 | // ============================================================================= | |
73 | class vertex { | |
74 | public: | |
75 | double x, y, z; | |
76 | ||
77 | // ========================================================================= | |
78 | // Midpoint between this vertex and another vertex. | |
79 | vertex midpoint (vertex& other); | |
18
a6732098fed8
Convert the static getCoordinateRep to a common ftoa, use this function to get proper coordinate representation when converting objects to LDraw code
Santeri Piippo <crimsondusk64@gmail.com>
parents:
13
diff
changeset
|
80 | str getStringRep (const bool bMangled); |
0 | 81 | }; |
82 | ||
83 | // ============================================================================= | |
84 | // bearing | |
85 | // | |
86 | // A bearing is a combination of an angle and a pitch. Essentially a 3D angle. | |
87 | // The project method projects a vertex from a given vertex by a given length. | |
88 | // | |
89 | // Prefix: g, since b is bool | |
90 | // ============================================================================= | |
91 | class bearing { | |
92 | double fAngle, fPitch; | |
93 | ||
94 | vertex project (vertex& vSource, ulong ulLength); | |
95 | }; | |
96 | ||
97 | // ============================================================================= | |
98 | // Plural expression | |
99 | #define PLURAL(n) ((n != 1) ? "s" : "") | |
100 | ||
101 | // Shortcut for formatting | |
102 | #define PERFORM_FORMAT(in, out) \ | |
103 | va_list v; \ | |
104 | va_start (v, in); \ | |
105 | char* out = vdynformat (in, v, 256); \ | |
106 | va_end (v); | |
107 | ||
108 | // Shortcuts for stuffing vertices into printf-formatting. | |
109 | #define FMT_VERTEX "(%.3f, %.3f, %.3f)" | |
110 | #define FVERTEX(V) V.x, V.y, V.z | |
111 | ||
112 | typedef unsigned char byte; | |
113 | ||
114 | template<class T> inline T clamp (T a, T min, T max) { | |
115 | return (a > max) ? max : (a < min) ? min : a; | |
116 | } | |
117 | ||
118 | template<class T> inline T min (T a, T b) { | |
119 | return (a < b) ? a : b; | |
120 | } | |
121 | ||
122 | template<class T> inline T max (T a, T b) { | |
123 | return (a > b) ? a : b; | |
124 | } | |
125 | ||
126 | static const double pi = 3.14159265358979323846f; | |
127 | ||
128 | // main.cpp | |
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:
7
diff
changeset
|
129 | enum logtype_e { |
3955ff2a7d72
Added logf function to write to message log. Write warnings of unparsable files into the message log.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
7
diff
changeset
|
130 | LOG_Normal, |
3955ff2a7d72
Added logf function to write to message log. Write warnings of unparsable files into the message log.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
7
diff
changeset
|
131 | LOG_Success, |
3955ff2a7d72
Added logf function to write to message log. Write warnings of unparsable files into the message log.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
7
diff
changeset
|
132 | LOG_Info, |
3955ff2a7d72
Added logf function to write to message log. Write warnings of unparsable files into the message log.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
7
diff
changeset
|
133 | LOG_Warning, |
3955ff2a7d72
Added logf function to write to message log. Write warnings of unparsable files into the message log.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
7
diff
changeset
|
134 | LOG_Error, |
3955ff2a7d72
Added logf function to write to message log. Write warnings of unparsable files into the message log.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
7
diff
changeset
|
135 | }; |
3955ff2a7d72
Added logf function to write to message log. Write warnings of unparsable files into the message log.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
7
diff
changeset
|
136 | |
3955ff2a7d72
Added logf function to write to message log. Write warnings of unparsable files into the message log.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
7
diff
changeset
|
137 | void logf (const char* fmt, ...) FORMAT_PRINTF (1, 2); |
3955ff2a7d72
Added logf function to write to message log. Write warnings of unparsable files into the message log.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
7
diff
changeset
|
138 | void logf (logtype_e eType, const char* fmt, ...) FORMAT_PRINTF (2, 3); |
3955ff2a7d72
Added logf function to write to message log. Write warnings of unparsable files into the message log.
Santeri Piippo <crimsondusk64@gmail.com>
parents:
7
diff
changeset
|
139 | |
0 | 140 | extern OpenFile* g_CurrentFile; |
141 | extern bbox g_BBox; | |
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:
22
diff
changeset
|
142 | extern ForgeWindow* g_qWindow; |
0 | 143 | extern vector<OpenFile*> g_LoadedFiles; |
30
31ff9aabd506
Licensed LDForge GPL3, added some more icons
Santeri Piippo <crimsondusk64@gmail.com>
parents:
29
diff
changeset
|
144 | extern QApplication* g_qMainApp; |
0 | 145 | |
146 | #ifndef unix | |
147 | typedef unsigned int uint; | |
148 | typedef unsigned long ulong; | |
149 | #endif // unix | |
150 | ||
151 | typedef int8_t xchar; | |
152 | typedef int16_t xshort; | |
153 | typedef int32_t xlong; | |
154 | typedef int64_t xlonglong; | |
155 | typedef uint8_t xuchar; | |
156 | typedef uint16_t xushort; | |
157 | typedef uint32_t xulong; | |
158 | typedef uint64_t xulonglong; | |
159 | ||
160 | #endif |