-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathString.hpp
More file actions
288 lines (172 loc) · 4.67 KB
/
Copy pathString.hpp
File metadata and controls
288 lines (172 loc) · 4.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
#pragma once
#include <cwchar>
#include <cstring>
#include <string>
#include <vector>
#include <regex>
#include <ctime>
#include <map>
#include <sstream>
#include <iomanip>
#include <SFML/Graphics.hpp>
#include "../Exceptions/Exceptions.hpp"
#include "../Collections/Collections.hpp"
namespace alce
{
class String
{
public:
String(const char* cstr)
{
this->str = sf::String(cstr);
}
String(const wchar_t* cstr)
{
this->str = sf::String(cstr);
}
String(std::wstring str)
{
this->str = sf::String(str);
}
String(std::string str)
{
this->str = sf::String(str);
}
String(sf::String str)
{
this->str = str;
}
String(size_t size)
{
this->str = sf::String(std::to_string(size));
}
String(bool boolean)
{
boolean ? this->str = sf::String("true") : this->str = sf::String("false");
}
String(int integer)
{
this->str = sf::String(std::to_string(integer));
}
String(long long_int)
{
this->str = sf::String(std::to_string(long_int));
}
String(double dec)
{
this->str = sf::String(std::to_string(dec));
}
String(float dec)
{
this->str = sf::String(std::to_string(dec));
}
String()
{
this->str = sf::String("");
}
~String()
{
this->str.clear();
}
sf::String ToSFMLString();
std::string ToAnsiString();
std::wstring ToWideString();
const char* ToCString();
const wchar_t* ToWCString();
bool ToBoolean();
size_t Length();
String& Cut(unsigned int start, unsigned int end);
String GetCut(unsigned int start, unsigned int end);
String Substr(unsigned int start, unsigned int end);
String& Insert(unsigned int position, String str);
String& RemoveComments();
String& Clear();
String& Reverse();
String GetReversed();
String& ToUpperCase();
String GetToUpperCase();
String& ToLowerCase();
String GetToLowerCase();
String& ToUpperCase(unsigned int start, unsigned int end);
String GetToUpperCase(unsigned int start, unsigned int end);
String& ToLowerCase(unsigned int start, unsigned int end);
String GetToLowerCase(unsigned int start, unsigned int end);
String& Replace(String original, String replace);
String GetReplace(String original, String replace);
String& ReplaceInRange(String original, String replace, unsigned int start, unsigned int end);
String GetReplaceInRange(String original, String replace, unsigned int start, unsigned int end);
bool Contains(String substr);
List<String> Split(String separator);
unsigned int Count(String substr);
bool IsInteger();
int ParseInt();
long ParseLong();
bool IsFloat();
float ParseFloat();
bool IsDouble();
double ParseDouble();
bool IsBoolean();
bool ParseBoolean();
String& Trim();
String GetTrim();
String& PopLast();
wchar_t First();
String& PopFirst();
wchar_t Last();
bool Matches(String regex);
size_t GetBytes();
std::wstring operator~();
void operator=(const char* cstr);
void operator=(const wchar_t* cstr);
void operator=(std::string& str);
void operator=(std::wstring& str);
void operator=(String str);
void operator=(size_t size);
void operator=(bool boolean);
void operator=(int integer);
void operator=(long long_int);
void operator=(float dec);
String operator+(const char* cstr);
String operator+(const wchar_t* cstr);
String operator+(std::string& str);
String operator+(std::wstring& str);
String operator+(String str);
String operator+(size_t size);
String operator+(int integer);
String operator+(long long_int);
String operator+(float dec);
void operator+=(const char* cstr);
void operator+=(const wchar_t* cstr);
void operator+=(std::string& str);
void operator+=(std::wstring& str);
void operator+=(String str);
void operator+=(size_t size);
void operator+=(bool boolean);
void operator+=(int integer);
void operator+=(long long_int);
void operator+=(float dec);
wchar_t& operator[](unsigned int index);
bool operator==(const char* cstr);
bool operator==(const wchar_t* cstr);
bool operator==(std::string& str);
bool operator==(std::wstring& str);
bool operator==(const String& str) const;
bool operator==(size_t size);
bool operator==(bool boolean);
bool operator==(int integer);
bool operator==(long long_int);
bool operator==(float dec);
bool operator!=(const char* cstr);
bool operator!=(const wchar_t* cstr);
bool operator!=(std::string& str);
bool operator!=(std::wstring& str);
bool operator!=(String str);
bool operator!=(size_t size);
bool operator!=(bool boolean);
bool operator!=(int integer);
bool operator!=(long long_int);
bool operator!=(float dec);
protected:
sf::String str;
};
}