8 float stringwidth_colors(string s, vector theSize)
10 return stringwidth(s, true, theSize);
13 float stringwidth_nocolors(string s, vector theSize)
15 return stringwidth(s, false, theSize);
19 string seconds_tostring(float sec)
21 float minutes = floor(sec / 60);
23 return sprintf("%d:%02d", minutes, sec);
26 string format_time(float seconds)
28 seconds = floor(seconds + 0.5);
29 float days = floor(seconds / 864000);
30 seconds -= days * 864000;
31 float hours = floor(seconds / 36000);
32 seconds -= hours * 36000;
33 float minutes = floor(seconds / 600);
34 seconds -= minutes * 600;
35 if (days > 0) return sprintf(_("%d days, %02d:%02d:%02d"), days, hours, minutes, seconds);
36 else return sprintf(_("%02d:%02d:%02d"), hours, minutes, seconds);
39 string mmsss(float tenths)
41 tenths = floor(tenths + 0.5);
42 float minutes = floor(tenths / 600);
43 tenths -= minutes * 600;
44 string s = ftos(1000 + tenths);
45 return strcat(ftos(minutes), ":", substring(s, 1, 2), ".", substring(s, 3, 1));
48 string mmssss(float hundredths)
50 hundredths = floor(hundredths + 0.5);
51 float minutes = floor(hundredths / 6000);
52 hundredths -= minutes * 6000;
53 string s = ftos(10000 + hundredths);
54 return strcat(ftos(minutes), ":", substring(s, 1, 2), ".", substring(s, 3, 2));
57 int ColorTranslateMode;
59 string ColorTranslateRGB(string s)
61 return (ColorTranslateMode & 1) ? strdecolorize(s) : s;
64 // color code replace, place inside of sprintf and parse the string... defaults described as constants
65 // foreground/normal colors
66 string autocvar_hud_colorset_foreground_1 = "2"; // F1 - Green // primary priority (important names, etc)
67 string autocvar_hud_colorset_foreground_2 = "3"; // F2 - Yellow // secondary priority (items, locations, numbers, etc)
68 string autocvar_hud_colorset_foreground_3 = "4"; // F3 - Blue // tertiary priority or relatively inconsequential text
69 string autocvar_hud_colorset_foreground_4 = "1"; // F4 - Red // notice/attention grabbing texting
71 string autocvar_hud_colorset_kill_1 = "1"; // K1 - Red // "bad" or "dangerous" text (death messages against you, kill notifications, etc)
72 string autocvar_hud_colorset_kill_2 = "3"; // K2 - Yellow // similar to above, but less important... OR, a highlight out of above message type
73 string autocvar_hud_colorset_kill_3 = "4"; // K3 - Blue // "good" or "beneficial" text (you fragging someone, etc)
75 string autocvar_hud_colorset_background = "7"; // BG - White // neutral/unimportant text
77 /** color code replace, place inside of sprintf and parse the string */
78 string CCR(string input)
80 // See the autocvar declarations in util.qh for default values
82 // foreground/normal colors
83 input = strreplace("^F1", strcat("^", autocvar_hud_colorset_foreground_1), input);
84 input = strreplace("^F2", strcat("^", autocvar_hud_colorset_foreground_2), input);
85 input = strreplace("^F3", strcat("^", autocvar_hud_colorset_foreground_3), input);
86 input = strreplace("^F4", strcat("^", autocvar_hud_colorset_foreground_4), input);
89 input = strreplace("^K1", strcat("^", autocvar_hud_colorset_kill_1), input);
90 input = strreplace("^K2", strcat("^", autocvar_hud_colorset_kill_2), input);
91 input = strreplace("^K3", strcat("^", autocvar_hud_colorset_kill_3), input);
94 input = strreplace("^BG", strcat("^", autocvar_hud_colorset_background), input);
95 input = strreplace("^N", "^7", input); // "none"-- reset to white...
99 #define startsWith(haystack, needle) (strstrofs(haystack, needle, 0) == 0)
101 bool startsWithNocase(string haystack, string needle)
103 return strcasecmp(substring(haystack, 0, strlen(needle)), needle) == 0;
106 noref string _endsWith_suffix;
107 #define endsWith(this, suffix) (_endsWith_suffix = suffix, substring(this, -strlen(_endsWith_suffix), -1) == _endsWith_suffix)
109 /** unzone the string, and return it as tempstring. Safe to be called on string_null */
110 string fstrunzone(string s)
113 string sc = strcat(s, "");
118 /** returns first word */
121 int o = strstrofs(s, " ", 0);
123 return substring(s, 0, o);
126 /** returns all but first word */
129 int o = strstrofs(s, " ", 0);
130 if (o < 0) return string_null;
131 return substring(s, o + 1, strlen(s) - (o + 1));
134 string cons(string a, string b)
136 if (a == "") return b;
137 if (b == "") return a;
138 return strcat(a, " ", b);
141 string substring_range(string s, float b, float e)
143 return substring(s, b, e - b);
146 string swapwords(string str, float i, float j)
149 string s1, s2, s3, s4, s5;
150 float si, ei, sj, ej, s0, en;
151 n = tokenizebyseparator(str, " "); // must match g_maplist processing in ShuffleMaplist and "shuffle"
152 si = argv_start_index(i);
153 sj = argv_start_index(j);
154 ei = argv_end_index(i);
155 ej = argv_end_index(j);
156 s0 = argv_start_index(0);
157 en = argv_end_index(n - 1);
158 s1 = substring_range(str, s0, si);
159 s2 = substring_range(str, si, ei);
160 s3 = substring_range(str, ei, sj);
161 s4 = substring_range(str, sj, ej);
162 s5 = substring_range(str, ej, en);
163 return strcat(s1, s4, s3, s2, s5);
166 string _shufflewords_str;
167 void _shufflewords_swapfunc(float i, float j, entity pass)
169 _shufflewords_str = swapwords(_shufflewords_str, i, j);
171 string shufflewords(string str)
173 _shufflewords_str = str;
174 int n = tokenizebyseparator(str, " ");
175 shuffle(n, _shufflewords_swapfunc, NULL);
176 str = _shufflewords_str;
177 _shufflewords_str = string_null;
181 string unescape(string in)
183 in = strzone(in); // but it doesn't seem to be necessary in my tests at least
185 int len = strlen(in);
187 for (int i = 0; i < len; ++i)
189 string s = substring(in, i, 1);
192 s = substring(in, i + 1, 1);
193 if (s == "n") str = strcat(str, "\n");
194 else if (s == "\\") str = strcat(str, "\\");
195 else str = strcat(str, substring(in, i, 2));
199 str = strcat(str, s);
205 string strwords(string s, int w)
208 for ( ; w && endpos >= 0; --w)
209 endpos = strstrofs(s, " ", endpos + 1);
210 if (endpos < 0) return s;
211 return substring(s, 0, endpos);
214 #define strhasword(s, w) (strstrofs(strcat(" ", s, " "), strcat(" ", w, " "), 0) >= 0)
216 int u8_strsize(string s)
219 for (int i = 0, c; (c = str2chr(s, i)) > 0; ++i, ++l)
228 bool isInvisibleString(string s)
230 s = strdecolorize(s);
231 bool utf8 = cvar("utf8_enable");
232 for (int i = 0, n = strlen(s); i < n; ++i)
234 int c = str2chr(s, i);
240 case 192: // charmap space
243 case 160: // space in unicode fonts
244 case 0xE000 + 192: // utf8 charmap space
253 // Multiline text file buffers
255 int buf_load(string pFilename)
257 int buf = buf_create();
258 if (buf < 0) return -1;
259 int fh = fopen(pFilename, FILE_READ);
266 for (int i = 0; (l = fgets(fh)); ++i)
267 bufstr_set(buf, i, l);
272 void buf_save(float buf, string pFilename)
274 int fh = fopen(pFilename, FILE_WRITE);
275 if (fh < 0) error(strcat("Can't write buf to ", pFilename));
276 int n = buf_getsize(buf);
277 for (int i = 0; i < n; ++i)
278 fputs(fh, strcat(bufstr_get(buf, i), "\n"));
283 * converts a number to a string with the indicated number of decimals
284 * works for up to 10 decimals!
286 string ftos_decimals(float number, int decimals)
288 // inhibit stupid negative zero
289 if (number == 0) number = 0;
290 // we have sprintf...
291 return sprintf("%.*f", decimals, number);
294 int vercmp_recursive(string v1, string v2)
296 int dot1 = strstrofs(v1, ".", 0);
297 int dot2 = strstrofs(v2, ".", 0);
298 string s1 = (dot1 == -1) ? v1 : substring(v1, 0, dot1);
299 string s2 = (dot2 == -1) ? v2 : substring(v2, 0, dot2);
302 r = stof(s1) - stof(s2);
303 if (r != 0) return r;
305 r = strcasecmp(s1, s2);
306 if (r != 0) return r;
308 if (dot1 == -1) return (dot2 == -1) ? 0 : -1;
309 else return (dot2 == -1) ? 1 : vercmp_recursive(substring(v1, dot1 + 1, 999), substring(v2, dot2 + 1, 999));
312 int vercmp(string v1, string v2)
314 if (strcasecmp(v1, v2) == 0) return 0; // early out check
317 if (v1 == "git") return 1;
318 if (v2 == "git") return -1;
320 return vercmp_recursive(v1, v2);
323 const string HEXDIGITS = "0123456789ABCDEF0123456789abcdef";
324 #define HEXDIGIT_TO_DEC_RAW(d) (strstrofs(HEXDIGITS, (d), 0))
325 #define HEXDIGIT_TO_DEC(d) ((HEXDIGIT_TO_DEC_RAW(d) | 0x10) - 0x10)
326 #define DEC_TO_HEXDIGIT(d) (substring(HEXDIGITS, (d), 1))