Tue, 07 May 2013 01:15:31 +0300
Added visibility toggling
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 | |
135
c243df39913e
Cleanup and some restructuring
Santeri Piippo <crimsondusk64@gmail.com>
parents:
116
diff
changeset
|
19 | #ifndef STR_H |
c243df39913e
Cleanup and some restructuring
Santeri Piippo <crimsondusk64@gmail.com>
parents:
116
diff
changeset
|
20 | #define STR_H |
0 | 21 | |
22 | #include <string.h> | |
23 | #include <stdlib.h> | |
24 | #include <stdarg.h> | |
25 | #include <vector> | |
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:
18
diff
changeset
|
26 | #include <QString> |
0 | 27 | |
28 | char* vdynformat (const char* csFormat, va_list vArgs, long int lSize); | |
29 | ||
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:
0
diff
changeset
|
30 | class vertex; |
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:
0
diff
changeset
|
31 | |
0 | 32 | // Dynamic string object, allocates memory when needed and |
33 | // features a good bunch of manipulation methods | |
34 | class str { | |
35 | private: | |
36 | // The actual message | |
37 | char* text; | |
38 | ||
39 | // Where will append() place new characters? | |
40 | unsigned short curs; | |
41 | ||
42 | // Allocated length | |
43 | unsigned short alloclen; | |
44 | ||
45 | // Resize the text buffer to len characters | |
46 | void resize (unsigned int len); | |
47 | ||
48 | public: | |
49 | // ====================================================================== | |
50 | str (); | |
51 | str (const char* c); | |
52 | str (char c); | |
29
55406ce7446e
Added LDraw path setting dialog
Santeri Piippo <crimsondusk64@gmail.com>
parents:
25
diff
changeset
|
53 | str (QString c); |
0 | 54 | ~str (); |
55 | ||
56 | // ====================================================================== | |
57 | // METHODS | |
58 | ||
59 | // Empty the string | |
60 | void clear (); | |
61 | ||
62 | // Length of the string | |
63 | size_t len () { | |
64 | return strlen (text); | |
65 | } | |
66 | ||
67 | // The char* form of the string | |
68 | char* chars (); | |
69 | ||
70 | // Dumps the character table of the string | |
71 | void dump (); | |
72 | ||
73 | // Appends text to the string | |
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:
18
diff
changeset
|
74 | void append (const char c); |
0 | 75 | void append (const char* c); |
76 | void append (str c); | |
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:
18
diff
changeset
|
77 | void append (QString c); |
0 | 78 | |
79 | // Formats text to the string. | |
80 | void format (const char* fmt, ...); | |
81 | ||
82 | // Appends formatted text to the string. | |
83 | void appendformat (const char* c, ...); | |
84 | ||
85 | // Returns the first occurrence of c in the string, optionally starting | |
86 | // from a certain position rather than the start. | |
87 | int first (const char* c, unsigned int a = 0); | |
88 | ||
89 | // Returns the last occurrence of c in the string, optionally starting | |
90 | // from a certain position rather than the end. | |
91 | int last (const char* c, int a = -1); | |
92 | ||
93 | // Returns a substring of the string, from a to b. | |
94 | str substr (unsigned int a, unsigned int b); | |
95 | ||
96 | // Replace a substring with another substring. | |
97 | void replace (const char* o, const char* n, unsigned int a = 0); | |
98 | ||
99 | // Removes a given index from the string, optionally more characters than just 1. | |
100 | void remove (unsigned int idx, unsigned int dellen=1); | |
101 | ||
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:
18
diff
changeset
|
102 | // Trims the given amount of characters. If negative, the characters |
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:
18
diff
changeset
|
103 | // are removed from the beginning of the string, if positive, from the |
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:
18
diff
changeset
|
104 | // end of the string. |
0 | 105 | str trim (int dellen); |
106 | ||
107 | // Inserts a substring into a certain position. | |
108 | void insert (char* c, unsigned int pos); | |
109 | ||
110 | // Reverses the string. | |
111 | str reverse (); | |
112 | ||
113 | // Repeats the string a given amount of times. | |
114 | str repeat (int n); | |
115 | ||
116 | // Is the string a number? | |
117 | bool isnumber (); | |
118 | ||
119 | // Is the string a word, i.e consists only of alphabetic letters? | |
120 | bool isword (); | |
121 | ||
122 | // Convert string to lower case | |
123 | str tolower (); | |
124 | ||
125 | // Convert string to upper case | |
126 | str toupper (); | |
127 | ||
128 | // Compare this string with another | |
129 | int compare (const char* c); | |
130 | int compare (str c); | |
131 | int icompare (str c); | |
132 | int icompare (const char* c); | |
133 | ||
134 | // Counts the amount of substrings in the string | |
135 | unsigned int count (char* s); | |
136 | unsigned int count (char s); | |
137 | ||
138 | // Counts where the given substring is seen for the nth time | |
139 | int instanceof (const char* s, unsigned n); | |
140 | ||
141 | char subscript (uint pos) { | |
142 | return operator[] (pos); | |
143 | } | |
144 | ||
60
961663d05463
Parsing stability, finally figured that dumb crash
Santeri Piippo <crimsondusk64@gmail.com>
parents:
30
diff
changeset
|
145 | std::vector<str> split (str del, bool bNoBlanks = false); |
0 | 146 | |
113
bbaa40226ec9
Radial saving and reading from files
Santeri Piippo <crimsondusk64@gmail.com>
parents:
107
diff
changeset
|
147 | str strip (char c); |
bbaa40226ec9
Radial saving and reading from files
Santeri Piippo <crimsondusk64@gmail.com>
parents:
107
diff
changeset
|
148 | str strip (std::initializer_list<char> unwanted); |
0 | 149 | |
150 | // ====================================================================== | |
151 | // OPERATORS | |
152 | str operator+ (str& c) { | |
153 | append (c); | |
154 | return *this; | |
155 | } | |
156 | ||
157 | str& operator+= (char c) { | |
158 | append (c); | |
159 | return *this; | |
160 | } | |
161 | ||
162 | str& operator+= (const char* c) { | |
163 | append (c); | |
164 | return *this; | |
165 | } | |
166 | ||
167 | str& operator+= (const str c) { | |
168 | append (c); | |
169 | return *this; | |
170 | } | |
171 | ||
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:
18
diff
changeset
|
172 | str& operator+= (const QString c) { |
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:
18
diff
changeset
|
173 | append (c); |
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:
18
diff
changeset
|
174 | return *this; |
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:
18
diff
changeset
|
175 | } |
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:
18
diff
changeset
|
176 | |
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:
0
diff
changeset
|
177 | str& operator+= (vertex vrt); |
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:
0
diff
changeset
|
178 | |
0 | 179 | str operator* (const int repcount) { |
180 | repeat (repcount); | |
181 | return *this; | |
182 | } | |
183 | ||
184 | str& operator*= (const int repcount) { | |
185 | str other = repeat (repcount); | |
186 | clear (); | |
187 | append (other); | |
188 | return *this; | |
189 | } | |
190 | ||
191 | str operator- (const int trimcount) { | |
192 | return trim (trimcount); | |
193 | } | |
194 | ||
195 | str& operator-= (const int trimcount) { | |
196 | str other = trim (trimcount); | |
197 | clear (); | |
198 | append (other); | |
199 | return *this; | |
200 | } | |
201 | ||
202 | std::vector<str> operator/ (str splitstring); | |
203 | std::vector<str> operator/ (char* splitstring); | |
204 | std::vector<str> operator/ (const char* splitstring); | |
205 | ||
206 | int operator% (str splitstring) { | |
207 | return count (splitstring.chars()); | |
208 | } | |
209 | ||
210 | int operator% (char* splitstring) { | |
211 | return count (splitstring); | |
212 | } | |
213 | ||
214 | int operator% (const char* splitstring) { | |
215 | return count (str (splitstring).chars()); | |
216 | } | |
217 | ||
218 | str operator+ () { | |
219 | return toupper (); | |
220 | } | |
221 | ||
222 | str operator- () { | |
223 | return tolower (); | |
224 | } | |
225 | ||
226 | str operator! () { | |
227 | return reverse (); | |
228 | } | |
229 | ||
230 | size_t operator~ () { | |
231 | return len (); | |
232 | } | |
233 | ||
234 | #define DEFINE_OPERATOR_TYPE(OPER, TYPE) \ | |
235 | bool operator OPER (TYPE other) {return compare(other) OPER 0;} | |
236 | #define DEFINE_OPERATOR(OPER) \ | |
237 | DEFINE_OPERATOR_TYPE (OPER, str) \ | |
238 | DEFINE_OPERATOR_TYPE (OPER, char*) \ | |
239 | DEFINE_OPERATOR_TYPE (OPER, const char*) | |
240 | ||
241 | DEFINE_OPERATOR (==) | |
242 | DEFINE_OPERATOR (!=) | |
243 | DEFINE_OPERATOR (>) | |
244 | DEFINE_OPERATOR (<) | |
245 | DEFINE_OPERATOR (>=) | |
246 | DEFINE_OPERATOR (<=) | |
247 | ||
248 | char& operator[] (int pos) { | |
249 | return text[pos]; | |
250 | } | |
251 | ||
252 | operator char* () const { | |
253 | return text; | |
254 | } | |
255 | ||
256 | operator QString () const { | |
257 | return text; | |
258 | } | |
259 | ||
260 | operator int () const { | |
261 | return atoi (text); | |
262 | } | |
263 | ||
264 | operator uint () const { | |
265 | return operator int(); | |
266 | } | |
267 | }; | |
268 | ||
161 | 269 | str fmt (const char* fmt, ...); |
116 | 270 | |
135
c243df39913e
Cleanup and some restructuring
Santeri Piippo <crimsondusk64@gmail.com>
parents:
116
diff
changeset
|
271 | #endif // STR_H |