author | Wuzzy <Wuzzy2@mail.ru> |
Mon, 01 Apr 2019 23:15:18 +0200 | |
changeset 14742 | 123aaa2bf4b5 |
parent 14262 | 8c76c0a35fb1 |
child 15297 | 70d416a8f63f |
permissions | -rw-r--r-- |
10015 | 1 |
#include "misc.h" |
2 |
#include <stdio.h> |
|
3 |
#include <stdarg.h> |
|
4 |
#include <string.h> |
|
5 |
#include <assert.h> |
|
6 |
||
7 |
char strbuf[512]; |
|
8 |
||
9 |
void fpcrtl_assert(int i) |
|
10 |
{ |
|
11 |
if(!i){ |
|
12 |
assert(0); |
|
13 |
} |
|
14 |
} |
|
15 |
||
16 |
// EFFECTS: return the nearest integer of the given number |
|
17 |
int fpcrtl_round(double number) |
|
18 |
{ |
|
19 |
return (number >= 0) ? (int)(number + 0.5) : (int)(number - 0.5); |
|
20 |
} |
|
21 |
||
22 |
void fpcrtl_printf(const char* format, ...) |
|
23 |
{ |
|
24 |
#ifdef FPCRTL_DEBUG |
|
25 |
va_list args; |
|
26 |
va_start (args, format); |
|
27 |
vprintf (format, args); |
|
28 |
va_end (args); |
|
29 |
#endif |
|
30 |
} |
|
31 |
||
32 |
// |
|
33 |
//void fpcrtl_check_string(string255 str) |
|
34 |
//{ |
|
35 |
//#ifdef FPCRTL_DEBUG |
|
36 |
// int len = strlen(str.str); |
|
37 |
// if(len != str.len){ |
|
38 |
// printf("String %s internal inconsistency error. Length should be %d but actually is %d.\n", str.str, len, str.len); |
|
39 |
// } |
|
40 |
// //assert(len == str.len); |
|
41 |
//#endif |
|
42 |
//} |
|
43 |
||
44 |
string255 fpcrtl_strconcat(string255 str1, string255 str2) |
|
45 |
{ |
|
10128 | 46 |
int newlen = str1.len + str2.len; |
47 |
if(newlen > 255) newlen = 255; |
|
10015 | 48 |
|
10128 | 49 |
memcpy(&(str1.str[str1.len]), str2.str, newlen - str1.len); |
50 |
str1.len = newlen; |
|
10015 | 51 |
|
10128 | 52 |
return str1; |
53 |
} |
|
10015 | 54 |
|
10128 | 55 |
astring fpcrtl_strconcatA(astring str1, astring str2) |
56 |
{ |
|
57 |
int newlen = str1.len + str2.len; |
|
58 |
if(newlen > MAX_ANSISTRING_LENGTH) newlen = MAX_ANSISTRING_LENGTH; |
|
10015 | 59 |
|
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10128
diff
changeset
|
60 |
memcpy(&(str1.s[str1.len + 1]), &str2.s[1], newlen - str1.len); |
10128 | 61 |
str1.len = newlen; |
10015 | 62 |
|
63 |
return str1; |
|
64 |
} |
|
65 |
||
66 |
string255 fpcrtl_strappend(string255 s, char c) |
|
67 |
{ |
|
10128 | 68 |
if(s.len < 255) |
69 |
{ |
|
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10128
diff
changeset
|
70 |
++s.len; |
10128 | 71 |
s.s[s.len] = c; |
72 |
} |
|
73 |
||
74 |
return s; |
|
75 |
} |
|
76 |
||
77 |
astring fpcrtl_strappendA(astring s, char c) |
|
78 |
{ |
|
79 |
if(s.len < MAX_ANSISTRING_LENGTH) |
|
80 |
{ |
|
11657
09ebdfe364d9
Fix fpcrtl_strappendA, which cut last char from UserPathPrefix
unc0rr
parents:
10242
diff
changeset
|
81 |
++s.len; |
10128 | 82 |
s.s[s.len] = c; |
83 |
} |
|
10015 | 84 |
|
85 |
return s; |
|
86 |
} |
|
87 |
||
88 |
string255 fpcrtl_strprepend(char c, string255 s) |
|
89 |
{ |
|
10128 | 90 |
uint8_t newlen = s.len < 255 ? s.len + 1 : 255; |
91 |
memmove(s.str + 1, s.str, newlen); // also move '/0' |
|
10015 | 92 |
s.str[0] = c; |
10128 | 93 |
s.len = newlen; |
10015 | 94 |
|
95 |
return s; |
|
96 |
} |
|
97 |
||
98 |
string255 fpcrtl_chrconcat(char a, char b) |
|
99 |
{ |
|
100 |
string255 result; |
|
101 |
||
102 |
result.len = 2; |
|
103 |
result.str[0] = a; |
|
104 |
result.str[1] = b; |
|
105 |
||
106 |
return result; |
|
107 |
} |
|
108 |
||
109 |
bool fpcrtl_strcompare(string255 str1, string255 str2) |
|
110 |
{ |
|
14262 | 111 |
return memcmp(str1.s, str2.s, str1.len + 1) == 0; |
10015 | 112 |
} |
113 |
||
114 |
bool fpcrtl_strcomparec(string255 a, char b) |
|
115 |
{ |
|
116 |
if(a.len == 1 && a.str[0] == b){ |
|
117 |
return true; |
|
118 |
} |
|
119 |
||
120 |
return false; |
|
121 |
} |
|
122 |
||
123 |
bool fpcrtl_strncompare(string255 a, string255 b) |
|
124 |
{ |
|
125 |
return !fpcrtl_strcompare(a, b); |
|
126 |
} |
|
127 |
||
10128 | 128 |
bool fpcrtl_strncompareA(astring a, astring b) |
129 |
{ |
|
14261 | 130 |
return (a.len != b.len) || (memcmp(a.str, b.str, a.len) != 0); |
10128 | 131 |
} |
10015 | 132 |
|
10128 | 133 |
|
134 |
string255 fpcrtl_pchar2str(const char *s) |
|
10015 | 135 |
{ |
136 |
string255 result; |
|
10241
2dc9ff47c5b9
Fix fpcrtl_strncompareA, also replace strncmp with memcmp for more efficiency
unc0rr
parents:
10137
diff
changeset
|
137 |
|
10137 | 138 |
if(!s) |
139 |
{ |
|
140 |
result.len = 0; |
|
141 |
} else |
|
142 |
{ |
|
143 |
int rlen = strlen(s); |
|
10015 | 144 |
|
10137 | 145 |
if(rlen > 255){ |
146 |
rlen = 255; |
|
147 |
} |
|
148 |
||
149 |
result.len = rlen; |
|
150 |
memcpy(result.str, s, rlen); |
|
10015 | 151 |
} |
152 |
||
10128 | 153 |
return result; |
154 |
} |
|
155 |
||
156 |
||
157 |
string255 fpcrtl_make_string(const char* s) { |
|
158 |
return fpcrtl_pchar2str(s); |
|
159 |
} |
|
160 |
||
161 |
||
162 |
astring fpcrtl_pchar2astr(const char *s) |
|
163 |
{ |
|
164 |
astring result; |
|
14255 | 165 |
|
14256
fa2e3f123a09
Unify fpcrtl_pchar2astr look with fpcrtl_pchar2str
unc0rr
parents:
14255
diff
changeset
|
166 |
if(!s) |
fa2e3f123a09
Unify fpcrtl_pchar2astr look with fpcrtl_pchar2str
unc0rr
parents:
14255
diff
changeset
|
167 |
{ |
14255 | 168 |
result.len = 0; |
14256
fa2e3f123a09
Unify fpcrtl_pchar2astr look with fpcrtl_pchar2str
unc0rr
parents:
14255
diff
changeset
|
169 |
} else |
fa2e3f123a09
Unify fpcrtl_pchar2astr look with fpcrtl_pchar2str
unc0rr
parents:
14255
diff
changeset
|
170 |
{ |
fa2e3f123a09
Unify fpcrtl_pchar2astr look with fpcrtl_pchar2str
unc0rr
parents:
14255
diff
changeset
|
171 |
int rlen = strlen(s); |
10128 | 172 |
|
14256
fa2e3f123a09
Unify fpcrtl_pchar2astr look with fpcrtl_pchar2str
unc0rr
parents:
14255
diff
changeset
|
173 |
if(rlen > MAX_ANSISTRING_LENGTH){ |
fa2e3f123a09
Unify fpcrtl_pchar2astr look with fpcrtl_pchar2str
unc0rr
parents:
14255
diff
changeset
|
174 |
rlen = MAX_ANSISTRING_LENGTH; |
fa2e3f123a09
Unify fpcrtl_pchar2astr look with fpcrtl_pchar2str
unc0rr
parents:
14255
diff
changeset
|
175 |
} |
fa2e3f123a09
Unify fpcrtl_pchar2astr look with fpcrtl_pchar2str
unc0rr
parents:
14255
diff
changeset
|
176 |
|
fa2e3f123a09
Unify fpcrtl_pchar2astr look with fpcrtl_pchar2str
unc0rr
parents:
14255
diff
changeset
|
177 |
result.len = rlen; |
fa2e3f123a09
Unify fpcrtl_pchar2astr look with fpcrtl_pchar2str
unc0rr
parents:
14255
diff
changeset
|
178 |
memcpy(result.str, s, rlen); |
10128 | 179 |
} |
180 |
||
10015 | 181 |
return result; |
182 |
} |
|
183 |
||
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10130
diff
changeset
|
184 |
astring fpcrtl_str2astr(const string255 s) |
10128 | 185 |
{ |
186 |
astring result; |
|
187 |
||
188 |
result.str255 = s; |
|
189 |
result.len = s.len; |
|
190 |
||
191 |
return result; |
|
192 |
} |
|
193 |
||
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10130
diff
changeset
|
194 |
string255 fpcrtl_astr2str(const astring s) |
10128 | 195 |
{ |
10015 | 196 |
string255 result; |
10128 | 197 |
|
198 |
result = s.str255; |
|
199 |
result.len = s.len > 255 ? 255 : s.len; |
|
200 |
||
10015 | 201 |
return result; |
202 |
} |
|
203 |
||
10128 | 204 |
char __pcharBuf[256]; |
205 |
||
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10130
diff
changeset
|
206 |
char* fpcrtl__pchar__vars(const string255 * s) |
10128 | 207 |
{ |
10129
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10128
diff
changeset
|
208 |
memcpy(__pcharBuf, &s->s[1], s->len); |
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10128
diff
changeset
|
209 |
__pcharBuf[s->len] = 0; |
cd2a64a1f4aa
- Pas2C: make use of 'external' function decorator
unc0rr
parents:
10128
diff
changeset
|
210 |
return __pcharBuf; |
10128 | 211 |
} |
212 |
||
213 |
char* fpcrtl__pcharA__vars(astring * s) |
|
214 |
{ |
|
215 |
if(s->len == MAX_ANSISTRING_LENGTH) |
|
216 |
--s->len; |
|
217 |
||
10130
a9d509848390
Small fix which makes pas2c engine successfully replay demos
unc0rr
parents:
10129
diff
changeset
|
218 |
s->s[s->len + 1] = 0; |
10128 | 219 |
return &s->s[1]; |
220 |
} |
|
221 |
||
10015 | 222 |
#ifdef EMSCRIPTEN |
223 |
GLenum glewInit() |
|
224 |
{ |
|
225 |
return GLEW_OK; |
|
226 |
} |
|
227 |
#endif |