-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReadini.c
357 lines (341 loc) · 7.6 KB
/
Readini.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
/*ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Includes
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*/
#include <stdio.h>
#include <math.h>
#include <malloc.h>
#include <dplay.h>
#include "typedefs.h"
#include "main.h"
#include "readini.h"
#include "XMem.h"
/*ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
External Variables
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*/
extern int PreferredWidth, PreferredHeight;
extern int ddchosen3d;
extern int default_width;
extern int default_height;
extern int default_bpp;
extern BOOL PowerVR_Overide;
extern BOOL Is3Dfx;
extern BOOL Is3Dfx2;
extern BOOL TriLinear;
extern int TextureMemory;
extern BOOL NoTextureScaling;
extern BOOL MipMap;
extern BOOL TripleBuffer;
extern BOOL PolygonText;
extern float UV_Fix;
extern BOOL RecordDemoToRam;
extern BOOL CanDoStrechBlt;
extern DWORD UserTotalCompoundSfxBufferSize;
extern BOOL CustomCompoundBufferSize;
extern BOOL NoCompoundSfxBuffer;
extern BOOL UseSendAsync;
extern BOOL ZClearsOn;
/*ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Global Variables
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*/
BOOL OptFileOnCommandline = FALSE;
BOOL DeviceOnCommandline = FALSE;
BOOL DontColourKey = FALSE;
int ScreenMemory = 0;
/*ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Reader Routines
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*/
// Read DontColourKey
static int read_DontColourKey( FILE *f, char *last_token )
{
DontColourKey = TRUE;
fscanf( f, " %80s", last_token );
return 1;
}
// Read 3Dfx
static int read_3Dfx( FILE *f, char *last_token )
{
Is3Dfx = TRUE;
fscanf( f, " %80s", last_token );
return 1;
}
// Read 3Dfx2
static int read_3Dfx2( FILE *f, char *last_token )
{
Is3Dfx2 = TRUE;
fscanf( f, " %80s", last_token );
return 1;
}
// Read TriLinear
static int read_Trilinear( FILE *f, char *last_token )
{
TriLinear = TRUE;
fscanf( f, " %80s", last_token );
return 1;
}
// Read PowerVR
static int read_PowerVR( FILE *f, char *last_token )
{
PowerVR_Overide = TRUE;
fscanf( f, " %80s", last_token );
return 1;
}
// Read RecordDemoToRam
static int read_RecordDemoToRam( FILE *f, char *last_token )
{
RecordDemoToRam = TRUE;
fscanf( f, " %80s", last_token );
return 1;
}
// Read NoBlitTextScaling
static int read_NoBlitTextScaling( FILE *f, char *last_token )
{
CanDoStrechBlt = FALSE;
fscanf( f, " %80s", last_token );
return 1;
}
static int read_NoCompoundSfxBuffer( FILE *f, char *last_token )
{
NoCompoundSfxBuffer = TRUE;
fscanf( f, " %80s", last_token );
return 1;
}
static int read_CompoundSfxBufferMem( FILE *f, char *last_token )
{
DWORD temp;
CustomCompoundBufferSize = TRUE;
if ( fscanf( f, " %d", &temp ) == 1 )
{
UserTotalCompoundSfxBufferSize = temp;
fscanf( f, " %80s", last_token );
return 1;
}
else
return 0;
}
// Read PolyText
static int read_PolyText( FILE *f, char *last_token )
{
PolygonText = TRUE;
fscanf( f, " %80s", last_token );
return 1;
}
// Read MipMap
static int read_MipMap( FILE *f, char *last_token )
{
MipMap = TRUE;
fscanf( f, " %80s", last_token );
return 1;
}
// Read SendAsync
static int read_SendAsync( FILE *f, char *last_token )
{
UseSendAsync = TRUE;
MipMap = TRUE;
fscanf( f, " %80s", last_token );
return 1;
}
// Read MipMap
static int read_TripleBuffer( FILE *f, char *last_token )
{
TripleBuffer = TRUE;
fscanf( f, " %80s", last_token );
return 1;
}
// Read NoTextureScaling
static int read_NoTextureScaling( FILE *f, char *last_token )
{
NoTextureScaling = TRUE;
fscanf( f, " %80s", last_token );
return 1;
}
// Read ZClear
static int read_ZClear( FILE *f, char *last_token )
{
ZClearsOn = FALSE;
fscanf( f, " %80s", last_token );
return 1;
}
// Read Device
static int read_Device( FILE *f, char *last_token )
{
int temp;
if ( fscanf( f, " %d", &temp ) == 1 )
{
ddchosen3d = temp;
DeviceOnCommandline = TRUE;
fscanf( f, " %80s", last_token );
return 1;
}
else
return 0;
}
// Read Width
static int read_Width( FILE *f, char *last_token )
{
int temp;
if ( fscanf( f, " %d", &temp ) == 1 )
{
default_width = temp;
fscanf( f, " %80s", last_token );
return 1;
}
else
return 0;
}
// Read Height
static int read_Height( FILE *f, char *last_token )
{
int temp;
if ( fscanf( f, " %d", &temp ) == 1 )
{
default_height = temp;
fscanf( f, " %80s", last_token );
return 1;
}
else
return 0;
}
// Read Bpp
static int read_Bpp( FILE *f, char *last_token )
{
int temp;
if ( fscanf( f, " %d", &temp ) == 1 )
{
default_bpp = temp;
fscanf( f, " %80s", last_token );
return 1;
}
else
return 0;
}
// Read Preferred Width
static int read_PreferredWidth( FILE *f, char *last_token )
{
int temp;
if ( fscanf( f, " %d", &temp ) == 1 )
{
PreferredWidth = temp;
fscanf( f, " %80s", last_token );
return 1;
}
else
return 0;
}
// Read Height
static int read_PreferredHeight( FILE *f, char *last_token )
{
int temp;
if ( fscanf( f, " %d", &temp ) == 1 )
{
PreferredHeight = temp;
fscanf( f, " %80s", last_token );
return 1;
}
else
return 0;
}
// Read TextureMemory
static int read_TextureMemory( FILE *f, char *last_token )
{
int temp;
if ( fscanf( f, " %d", &temp ) == 1 )
{
TextureMemory = temp;
fscanf( f, " %80s", last_token );
return 1;
}
else
return 0;
}
// Read ScreenMemory
static int read_ScreenMemory( FILE *f, char *last_token )
{
int temp;
if ( fscanf( f, " %d", &temp ) == 1 )
{
ScreenMemory = temp;
fscanf( f, " %80s", last_token );
return 1;
}
else
return 0;
}
// Read UV fix
static int read_UVFix( FILE *f, char *last_token )
{
float temp;
if ( fscanf( f, " %f", &temp ) == 1 )
{
UV_Fix = temp;
fscanf( f, " %80s", last_token );
return 1;
}
else
return 0;
}
/*ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
Procedure : Read in the .ini file..
Input : char * Filename
Output : BOOL TRUE/FALSE
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ*/
typedef int (*READINIJMP)( FILE *, char * );
typedef struct {
char *keyword;
READINIJMP handle;
} READINIFILE;
BOOL ReadIniFile( char *Filename )
{
static READINIFILE jumptab[] = {
{ "3Dfx", read_3Dfx },
{ "3Dfx2", read_3Dfx2 },
{ "TriLinear", read_Trilinear },
{ "PowerVR", read_PowerVR },
{ "PolyText", read_PolyText },
{ "MipMap", read_MipMap },
{ "TripleBuffer", read_TripleBuffer },
{ "NoTextureScaling", read_NoTextureScaling },
{ "NoZClear", read_ZClear },
{ "dev", read_Device },
{ "w", read_Width },
{ "h", read_Height },
{ "bpp", read_Bpp },
{ "pw", read_PreferredWidth },
{ "ph", read_PreferredHeight },
{ "TextureMemory", read_TextureMemory },
{ "DontColourKey", read_DontColourKey },
{ "ScreenMemory", read_ScreenMemory },
{ "UVFix", read_UVFix },
{ "RecordDemoToRam", read_RecordDemoToRam },
{ "NoBlitTextScaling", read_NoBlitTextScaling },
{ "NoCompoundSfxBuffer", read_NoCompoundSfxBuffer },
{ "CompoundSfxBufferMem", read_CompoundSfxBufferMem },
{ "SendAsync", read_SendAsync },
{ NULL, NULL }
};
FILE *f;
char token[256];
int j;
f = fopen( Filename, "r" );
if ( !f )
return FALSE;
OptFileOnCommandline = TRUE;
if ( fscanf( f, " %80s", token ) == 1 )
{
do
{
for ( j = 0; jumptab[ j ].keyword; j++ )
{
if ( !_stricmp( token, jumptab[ j ].keyword ) )
break;
}
if ( jumptab[ j ].handle )
{
(jumptab[ j ].handle)( f, token );
}
else
fscanf( f, " %80s", token );
} while ( !feof( f ) );
}
fclose( f );
return TRUE;
}