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 |
|
10128
|
60 |
memcpy(&(str1.s[str1.len + 1]), str2.s[1], newlen - str1.len);
|
|
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 |
{
|
|
70 |
s.s[s.len] = c;
|
|
71 |
++s.len;
|
|
72 |
}
|
|
73 |
|
|
74 |
return s;
|
|
75 |
}
|
|
76 |
|
|
77 |
astring fpcrtl_strappendA(astring s, char c)
|
|
78 |
{
|
|
79 |
if(s.len < MAX_ANSISTRING_LENGTH)
|
|
80 |
{
|
|
81 |
s.s[s.len] = c;
|
|
82 |
++s.len;
|
|
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 |
{
|
10128
|
111 |
if(strncmp(str1.str, str2.str, 256) == 0){
|
10015
|
112 |
return true;
|
|
113 |
}
|
|
114 |
|
|
115 |
return false;
|
|
116 |
}
|
|
117 |
|
|
118 |
bool fpcrtl_strcomparec(string255 a, char b)
|
|
119 |
{
|
|
120 |
if(a.len == 1 && a.str[0] == b){
|
|
121 |
return true;
|
|
122 |
}
|
|
123 |
|
|
124 |
return false;
|
|
125 |
}
|
|
126 |
|
|
127 |
bool fpcrtl_strncompare(string255 a, string255 b)
|
|
128 |
{
|
|
129 |
return !fpcrtl_strcompare(a, b);
|
|
130 |
}
|
|
131 |
|
10128
|
132 |
bool fpcrtl_strncompareA(astring a, astring b)
|
|
133 |
{
|
|
134 |
return (a.len == b.len) && (strncmp(a.s, b.s, MAX_ANSISTRING_LENGTH) == 0);
|
|
135 |
}
|
10015
|
136 |
|
10128
|
137 |
|
|
138 |
string255 fpcrtl_pchar2str(const char *s)
|
10015
|
139 |
{
|
|
140 |
string255 result;
|
10128
|
141 |
int rlen = strlen(s);
|
10015
|
142 |
|
10128
|
143 |
if(rlen > 255){
|
|
144 |
rlen = 255;
|
10015
|
145 |
}
|
|
146 |
|
10128
|
147 |
result.len = rlen;
|
|
148 |
memcpy(result.str, s, rlen);
|
|
149 |
|
|
150 |
return result;
|
|
151 |
}
|
|
152 |
|
|
153 |
|
|
154 |
string255 fpcrtl_make_string(const char* s) {
|
|
155 |
return fpcrtl_pchar2str(s);
|
|
156 |
}
|
|
157 |
|
|
158 |
|
|
159 |
astring fpcrtl_pchar2astr(const char *s)
|
|
160 |
{
|
|
161 |
astring result;
|
|
162 |
int rlen = strlen(s);
|
|
163 |
|
|
164 |
if(rlen > MAX_ANSISTRING_LENGTH){
|
|
165 |
rlen = MAX_ANSISTRING_LENGTH;
|
|
166 |
}
|
|
167 |
|
|
168 |
result.len = rlen;
|
|
169 |
memcpy(result.s + 1, s, rlen);
|
10015
|
170 |
|
|
171 |
return result;
|
|
172 |
}
|
|
173 |
|
10128
|
174 |
astring fpcrtl_str2astr(string255 s)
|
|
175 |
{
|
|
176 |
astring result;
|
|
177 |
|
|
178 |
result.str255 = s;
|
|
179 |
result.len = s.len;
|
|
180 |
|
|
181 |
return result;
|
|
182 |
}
|
|
183 |
|
|
184 |
string255 fpcrtl_astr2str(astring s)
|
|
185 |
{
|
10015
|
186 |
string255 result;
|
10128
|
187 |
|
|
188 |
result = s.str255;
|
|
189 |
result.len = s.len > 255 ? 255 : s.len;
|
|
190 |
|
10015
|
191 |
return result;
|
|
192 |
}
|
|
193 |
|
10128
|
194 |
char __pcharBuf[256];
|
|
195 |
|
|
196 |
char* fpcrtl__pchar__vars(string255 * s)
|
|
197 |
{
|
|
198 |
if(s->len < 255)
|
|
199 |
{
|
|
200 |
s->s[s->len] = 0;
|
|
201 |
return &s->s[1];
|
|
202 |
} else
|
|
203 |
{
|
|
204 |
memcpy(__pcharBuf, s->s[1], 255);
|
|
205 |
__pcharBuf[255] = 0;
|
|
206 |
return &__pcharBuf;
|
|
207 |
}
|
|
208 |
}
|
|
209 |
|
|
210 |
char* fpcrtl__pcharA__vars(astring * s)
|
|
211 |
{
|
|
212 |
if(s->len == MAX_ANSISTRING_LENGTH)
|
|
213 |
--s->len;
|
|
214 |
|
|
215 |
s->s[s->len] = 0;
|
|
216 |
return &s->s[1];
|
|
217 |
}
|
|
218 |
|
10015
|
219 |
#ifdef EMSCRIPTEN
|
|
220 |
GLenum glewInit()
|
|
221 |
{
|
|
222 |
return GLEW_OK;
|
|
223 |
}
|
|
224 |
#endif
|