File: util_str.cpp

package info (click to toggle)
iortcw 1.51.c%2Bdfsg1-7
  • links: PTS, VCS
  • area: contrib
  • in suites: forky, sid, trixie
  • size: 25,304 kB
  • sloc: ansic: 457,326; cpp: 6,507; makefile: 4,737; sh: 1,292; asm: 1,176; xml: 31
file content (533 lines) | stat: -rw-r--r-- 10,545 bytes parent folder | download | duplicates (10)
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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
/*
===========================================================================

Return to Castle Wolfenstein single player GPL Source Code
Copyright (C) 1999-2010 id Software LLC, a ZeniMax Media company. 

This file is part of the Return to Castle Wolfenstein single player GPL Source Code (“RTCW SP Source Code”).  

RTCW SP Source Code is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

RTCW SP Source Code is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with RTCW SP Source Code.  If not, see <http://www.gnu.org/licenses/>.

In addition, the RTCW SP Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the RTCW SP Source Code.  If not, please request a copy in writing from id Software at the address below.

If you have questions concerning this license or the applicable additional terms, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.

===========================================================================
*/

//need to rewrite this

#include "util_str.h"
#include "q_splineshared.h"
#include <stdlib.h>
#include <ctype.h>
#include <stdio.h>
#include <stdarg.h>

#ifdef _MSC_VER
#pragma warning(disable : 4244) // 'conversion' conversion from 'type1' to 'type2', possible loss of data
#pragma warning(disable : 4710) // function 'blah' not inlined
#endif

static const int STR_ALLOC_GRAN = 20;

char *idStr::tolower
(
	char *s1
) {
	char *s;

	s = s1;
	while ( *s )
	{
		*s = ::tolower( *s );
		s++;
	}

	return s1;
}

char *idStr::toupper
(
	char *s1
) {
	char *s;

	s = s1;
	while ( *s )
	{
		*s = ::toupper( *s );
		s++;
	}

	return s1;
}

int idStr::icmpn
(
	const char *s1,
	const char *s2,
	int n
) {
	int c1;
	int c2;

	do
	{
		c1 = *s1++;
		c2 = *s2++;

		if ( !n-- ) {
			// idStrings are equal until end point
			return 0;
		}

		if ( c1 != c2 ) {
			if ( c1 >= 'a' && c1 <= 'z' ) {
				c1 -= ( 'a' - 'A' );
			}

			if ( c2 >= 'a' && c2 <= 'z' ) {
				c2 -= ( 'a' - 'A' );
			}

			if ( c1 < c2 ) {
				// strings less than
				return -1;
			} else if ( c1 > c2 )         {
				// strings greater than
				return 1;
			}
		}
	}
	while ( c1 );

	// strings are equal
	return 0;
}

int idStr::icmp
(
	const char *s1,
	const char *s2
) {
	int c1;
	int c2;

	do
	{
		c1 = *s1++;
		c2 = *s2++;

		if ( c1 != c2 ) {
			if ( c1 >= 'a' && c1 <= 'z' ) {
				c1 -= ( 'a' - 'A' );
			}

			if ( c2 >= 'a' && c2 <= 'z' ) {
				c2 -= ( 'a' - 'A' );
			}

			if ( c1 < c2 ) {
				// strings less than
				return -1;
			} else if ( c1 > c2 )         {
				// strings greater than
				return 1;
			}
		}
	}
	while ( c1 );

	// strings are equal
	return 0;
}

int idStr::cmpn
(
	const char *s1,
	const char *s2,
	int n
) {
	int c1;
	int c2;

	do
	{
		c1 = *s1++;
		c2 = *s2++;

		if ( !n-- ) {
			// strings are equal until end point
			return 0;
		}

		if ( c1 < c2 ) {
			// strings less than
			return -1;
		} else if ( c1 > c2 )         {
			// strings greater than
			return 1;
		}
	}
	while ( c1 );

	// strings are equal
	return 0;
}

int idStr::cmp
(
	const char *s1,
	const char *s2
) {
	int c1;
	int c2;

	do
	{
		c1 = *s1++;
		c2 = *s2++;

		if ( c1 < c2 ) {
			// strings less than
			return -1;
		} else if ( c1 > c2 )         {
			// strings greater than
			return 1;
		}
	}
	while ( c1 );

	// strings are equal
	return 0;
}

/*
============
IsNumeric

Checks a string to see if it contains only numerical values.
============
*/
bool idStr::isNumeric
(
	const char *str
) {
	int len;
	int i;
	bool dot;

	if ( *str == '-' ) {
		str++;
	}

	dot = false;
	len = strlen( str );
	for ( i = 0; i < len; i++ )
	{
		if ( !isdigit( str[ i ] ) ) {
			if ( ( str[ i ] == '.' ) && !dot ) {
				dot = true;
				continue;
			}
			return false;
		}
	}

	return true;
}

idStr operator+
(
	const idStr& a,
	const float b
) {
	char text[ 20 ];

	idStr result( a );

	sprintf( text, "%f", b );
	result.append( text );

	return result;
}

idStr operator+
(
	const idStr& a,
	const int b
) {
	char text[ 20 ];

	idStr result( a );

	sprintf( text, "%d", b );
	result.append( text );

	return result;
}

idStr operator+
(
	const idStr& a,
	const unsigned b
) {
	char text[ 20 ];

	idStr result( a );

	sprintf( text, "%u", b );
	result.append( text );

	return result;
}

idStr& idStr::operator+=
(
	const float a
) {
	char text[ 20 ];

	sprintf( text, "%f", a );
	append( text );

	return *this;
}

idStr& idStr::operator+=
(
	const int a
) {
	char text[ 20 ];

	sprintf( text, "%d", a );
	append( text );

	return *this;
}

idStr& idStr::operator+=
(
	const unsigned a
) {
	char text[ 20 ];

	sprintf( text, "%u", a );
	append( text );

	return *this;
}

void idStr::CapLength
(
	int newlen
) {
	assert( m_data );

	if ( length() <= newlen ) {
		return;
	}

	EnsureDataWritable();

	m_data->data[newlen] = 0;
	m_data->len = newlen;
}

void idStr::EnsureDataWritable
(
	void
) {
	assert( m_data );
	strdata *olddata;
	int len;

	if ( !m_data->refcount ) {
		return;
	}

	olddata = m_data;
	len = length();

	m_data = new strdata;

	EnsureAlloced( len + 1, false );
	strncpy( m_data->data, olddata->data, len + 1 );
	m_data->len = len;

	olddata->DelRef();
}

void idStr::EnsureAlloced( int amount, bool keepold ) {

	if ( !m_data ) {
		m_data = new strdata();
	}

	// Now, let's make sure it's writable
	EnsureDataWritable();

	char *newbuffer;
	bool wasalloced = ( m_data->alloced != 0 );

	if ( amount < m_data->alloced ) {
		return;
	}

	assert( amount );
	if ( amount == 1 ) {
		m_data->alloced = 1;
	} else {
		int newsize, mod;
		mod = amount % STR_ALLOC_GRAN;
		if ( !mod ) {
			newsize = amount;
		} else {
			newsize = amount + STR_ALLOC_GRAN - mod;
		}
		m_data->alloced = newsize;
	}

	newbuffer = new char[m_data->alloced];
	if ( wasalloced && keepold ) {
		strcpy( newbuffer, m_data->data );
	}

	if ( m_data->data ) {
		delete [] m_data->data;
	}
	m_data->data = newbuffer;
}

void idStr::BackSlashesToSlashes
(
	void
) {
	int i;

	EnsureDataWritable();

	for ( i = 0; i < m_data->len; i++ )
	{
		if ( m_data->data[i] == '\\' ) {
			m_data->data[i] = '/';
		}
	}
}

void idStr::snprintf
(
	char *dst,
	int size,
	const char *fmt,
	...
) {
	char buffer[0x10000];
	int len;
	va_list argptr;

	va_start( argptr,fmt );
	len = Q_vsnprintf( buffer, sizeof( buffer ), fmt, argptr );
	va_end( argptr );

	assert( len < size );

	if(len >= size)
		Com_Printf("Com_sprintf: Output length %d too short, requires %d bytes.\n", size, len + 1);

	strncpy( dst, buffer, size - 1 );
}

#ifdef _MSC_VER
#pragma warning(disable : 4189) // local variable is initialized but not referenced
#endif

/*
=================
TestStringClass

This is a fairly rigorous test of the idStr class's functionality.
Because of the fairly global and subtle ramifications of a bug occuring
in this class, it should be run after any changes to the class.
Add more tests as functionality is changed.  Tests should include
any possible bounds violation and NULL data tests.
=================
*/
void TestStringClass
(
	void
) {
	idStr   *t;                         // t == ?
	idStr a;                                // a.len == 0, a.data == "\0"
	idStr b;                                // b.len == 0, b.data == "\0"
	idStr c( "test" );              // c.len == 4, c.data == "test\0"
	idStr d( c );                       // d.len == 4, d.data == "test\0"
	idStr e( reinterpret_cast<const char *>( NULL ) );

	t = new idStr();                        // t->len == 0, t->data == "\0"
	delete t;                           // t == ?

	b = "test";                          // b.len == 4, b.data == "test\0"
	t = new idStr( "test" );         // t->len == 4, t->data == "test\0"
	delete t;                           // t == ?

	a = c;                              // a.len == 4, a.data == "test\0"
//   a = "";
	a = NULL;                           // a.len == 0, a.data == "\0"					ASSERT!
	a = c + d;                          // a.len == 8, a.data == "testtest\0"
	a = c + "wow";                       // a.len == 7, a.data == "testwow\0"
	a = c + reinterpret_cast<const char *>( NULL );
	// a.len == 4, a.data == "test\0"			ASSERT!
	a = "this" + d;                  // a.len == 8, a.data == "thistest\0"
	a = reinterpret_cast<const char *>( NULL ) + d;
	// a.len == 4, a.data == "test\0"			ASSERT!
	a += c;                             // a.len == 8, a.data == "testtest\0"
	a += "wow";                          // a.len == 11, a.data == "testtestwow\0"
	a += reinterpret_cast<const char *>( NULL );
	// a.len == 11, a.data == "testtestwow\0"	ASSERT!

	a = "test";                          // a.len == 4, a.data == "test\0"

	a[ 1 ] = 'b';                        // a.len == 4, a.data == "tbst\0"
	a[ -1 ] = 'b';                       // a.len == 4, a.data == "tbst\0"			ASSERT!
	a[ 0 ] = '0';                        // a.len == 4, a.data == "0bst\0"
	a[ 1 ] = '1';                        // a.len == 4, a.data == "01st\0"
	a[ 2 ] = '2';                        // a.len == 4, a.data == "012t\0"
	a[ 3 ] = '3';                        // a.len == 4, a.data == "0123\0"
	a[ 4 ] = '4';                        // a.len == 4, a.data == "0123\0"			ASSERT!
	a[ 5 ] = '5';                        // a.len == 4, a.data == "0123\0"			ASSERT!
	a[ 7 ] = '7';                        // a.len == 4, a.data == "0123\0"			ASSERT!

	a = "test";                          // a.len == 4, a.data == "test\0"
	b = "no";                            // b.len == 2, b.data == "no\0"

	a = "test";                 // a.data == "test"
	b = a;                       // b.data == "test"

	a = "not";                 // a.data == "not", b.data == "test"

	a = b;                       // a.data == b.data == "test"

	a += b;                      // a.data == "testtest", b.data = "test"

	a = b;

	a[1] = '1';                 // a.data = "t1st", b.data = "test"
}

#ifdef _MSC_VER
#pragma warning(default : 4189) // local variable is initialized but not referenced
#pragma warning(disable : 4514) // unreferenced inline function has been removed
#endif