forked from ZDoom/acc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
misc.c
408 lines (350 loc) · 8.64 KB
/
misc.c
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
//**************************************************************************
//**
//** misc.c
//**
//**************************************************************************
// HEADER FILES ------------------------------------------------------------
#ifdef __NeXT__
#include <libc.h>
#else
#include <fcntl.h>
#include <stdlib.h>
#if !defined(unix) && !defined(__APPLE__)
#include <io.h>
#endif
#endif
#ifdef __GNUC__
#include <sys/stat.h>
#include <unistd.h>
#endif
#ifdef _WIN32
#include <sys/stat.h>
#include <sys/types.h>
#endif
#include <stdio.h>
#include <stddef.h>
#include <stdarg.h>
#include <string.h>
#include <ctype.h>
#include "common.h"
#include "misc.h"
#include "error.h"
// MACROS ------------------------------------------------------------------
#ifndef O_BINARY
#define O_BINARY 0
#endif
// TYPES -------------------------------------------------------------------
// EXTERNAL FUNCTION PROTOTYPES --------------------------------------------
// PUBLIC FUNCTION PROTOTYPES ----------------------------------------------
// PRIVATE FUNCTION PROTOTYPES ---------------------------------------------
// EXTERNAL DATA DECLARATIONS ----------------------------------------------
extern boolean acs_BigEndianHost;
extern boolean acs_VerboseMode;
extern boolean acs_DebugMode;
extern FILE *acs_DebugFile;
// PUBLIC DATA DEFINITIONS -------------------------------------------------
// PRIVATE DATA DEFINITIONS ------------------------------------------------
// CODE --------------------------------------------------------------------
//==========================================================================
//
// MS_Alloc
//
//==========================================================================
void *MS_Alloc(size_t size, error_t error)
{
void *mem;
if((mem = malloc(size)) == NULL)
{
ERR_Exit(error, NO);
}
return mem;
}
//==========================================================================
//
// MS_Realloc
//
//==========================================================================
void *MS_Realloc(void *base, size_t size, error_t error)
{
void *mem;
if((mem = realloc(base, size)) == NULL)
{
ERR_Exit(error, NO);
}
return mem;
}
//==========================================================================
//
// MS_LittleUWORD
//
// Converts a host U_WORD (2 bytes) to little endian byte order.
//
//==========================================================================
U_WORD MS_LittleUWORD(U_WORD val)
{
if(acs_BigEndianHost == NO)
{
return val;
}
return ((val&255)<<8)+((val>>8)&255);
}
//==========================================================================
//
// MS_LittleUINT
//
// Converts a host U_INT (4 bytes) to little endian byte order.
//
//==========================================================================
U_INT MS_LittleUINT(U_INT val)
{
if(acs_BigEndianHost == NO)
{
return val;
}
return ((val&255)<<24)+(((val>>8)&255)<<16)+(((val>>16)&255)<<8)
+((val>>24)&255);
}
//==========================================================================
//
// MS_LoadFile
//
//==========================================================================
int MS_LoadFile(char *name, char **buffer)
{
int handle;
int size;
int count;
char *addr;
struct stat fileInfo;
if(strlen(name) >= MAX_FILE_NAME_LENGTH)
{
ERR_Exit(ERR_FILE_NAME_TOO_LONG, NO, name);
}
if((handle = open(name, O_RDONLY|O_BINARY, 0666)) == -1)
{
ERR_Exit(ERR_CANT_OPEN_FILE, NO, name);
}
if(fstat(handle, &fileInfo) == -1)
{
ERR_Exit(ERR_CANT_READ_FILE, NO, name);
}
size = fileInfo.st_size;
if((addr = malloc(size)) == NULL)
{
ERR_Exit(ERR_NONE, NO, "Couldn't malloc %d bytes for "
"file \"%s\".", size, name);
}
count = read(handle, addr, size);
close(handle);
if(count < size)
{
ERR_Exit(ERR_CANT_READ_FILE, NO, name);
}
*buffer = addr;
return size;
}
//==========================================================================
//
// MS_FileExists
//
// Pascal 21/11/08
//
//==========================================================================
boolean MS_FileExists(char *name)
{
struct stat info;
int ret = stat(name, &info);
return (ret == 0);
}
//==========================================================================
//
// MS_SaveFile
//
//==========================================================================
boolean MS_SaveFile(char *name, void *buffer, int length)
{
int handle;
int count;
handle = open(name, O_WRONLY|O_CREAT|O_TRUNC|O_BINARY, 0666);
if(handle == -1)
{
return FALSE;
}
count = write(handle, buffer, length);
close(handle);
if(count < length)
{
return FALSE;
}
return TRUE;
}
//==========================================================================
//
// MS_StrCmp
//
//==========================================================================
int MS_StrCmp(char *s1, char *s2)
{
for(; tolower(*s1) == tolower(*s2); s1++, s2++)
{
if(*s1 == '\0')
{
return 0;
}
}
return tolower(*s1)-tolower(*s2);
}
//==========================================================================
//
// MS_StrLwr
//
//==========================================================================
char *MS_StrLwr(char *string)
{
char *c;
c = string;
while(*c)
{
*c = tolower(*c);
c++;
}
return string;
}
//==========================================================================
//
// MS_StrUpr
//
//==========================================================================
char *MS_StrUpr(char *string)
{
char *c;
c = string;
while(*c)
{
*c = toupper(*c);
c++;
}
return string;
}
//==========================================================================
//
// MS_SuggestFileExt
//
//==========================================================================
void MS_SuggestFileExt(char *base, char *extension)
{
char *search;
search = base+strlen(base)-1;
while(!MS_IsDirectoryDelimiter(*search) && search != base)
{
if(*search-- == '.')
{
return;
}
}
strcat(base, extension);
}
//==========================================================================
//
// MS_IsDirectoryDelimiter
//
//==========================================================================
boolean MS_IsDirectoryDelimiter(char foo)
{
#if defined(_WIN32) || defined(__MSDOS__)
return foo == '/' || foo == '\\' || foo == ':';
#else
return foo == '/';
#endif
}
//==========================================================================
//
// MS_StripFileExt
//
//==========================================================================
void MS_StripFileExt(char *name)
{
char *search;
search = name+strlen(name)-1;
while(!MS_IsDirectoryDelimiter(*search) && search != name)
{
if(*search == '.')
{
*search = '\0';
return;
}
search--;
}
}
//==========================================================================
//
// MS_StripFilename
//
// [RH] This now leaves the directory delimiter in place.
//
//==========================================================================
boolean MS_StripFilename(char *name)
{
char *c;
c = name+strlen(name);
do
{
if(--c == name)
{ // No directory delimiter
return NO;
}
} while(!MS_IsDirectoryDelimiter(*c));
*(c+1) = 0;
return YES;
}
//==========================================================================
//
// MS_Message
//
//==========================================================================
void MS_Message(msg_t type, char *text, ...)
{
FILE *fp;
va_list argPtr;
if(type == MSG_VERBOSE && acs_VerboseMode == NO)
{
return;
}
fp = stdout;
if(type == MSG_DEBUG)
{
if(acs_DebugMode == NO)
{
return;
}
if(acs_DebugFile != NULL)
{
fp = acs_DebugFile;
}
}
if(text)
{
va_start(argPtr, text);
vfprintf(fp, text, argPtr);
va_end(argPtr);
}
}
//==========================================================================
//
// MS_IsPathAbsolute
//
// Pascal 30/11/08
//
//==========================================================================
boolean MS_IsPathAbsolute(char *name)
{
#if defined(_WIN32) || defined(__MSDOS__)
// In Windows, the second character must be : if it is an
// absolute path (the first character indicates the drive)
// or the first character is either / or \ for absolute path
if((name[0] != '\0') && (name[1] == ':'))
return TRUE;
#endif
// In Unix-land, the first character must be / for a root path
return MS_IsDirectoryDelimiter(name[0]);
}