This repository has been archived by the owner on Jul 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
lumpy.c
405 lines (315 loc) · 7.24 KB
/
lumpy.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
#define VERSION "1.1"
/*
=============================================================================
SPITWAD
by John Carmack
=============================================================================
*/
#include "lumpy.h"
#define MAXLUMP 0x40000 // biggest possible lump (256k)
#define MAXLUMPS 2048 // max lumps in one WAD file
typedef struct
{
char *name;
void (*function) (void);
} command_t;
byte *byteimage, *lbmpalette;
int byteimagewidth, byteimageheight;
boolean makewad;
boolean lumppause;
byte *lump_p;
lumpinfo_t *header, *header_p;
wadinfo_t wadheader;
char scriptpath[1025];
char lumpname[9]; // lump names are 8 chars max
int handle;
int lumpbuffersize;
byte *lumpbuffer;
/*
=============================================================================
MAIN
=============================================================================
*/
void GrabRaw (void);
void GrabVRaw (void);
void GrabPic (void);
void GrabLinearPic (void);
void GrabFont (void);
void GrabPalette (void);
void GrabPatch (void);
void GrabPatch255 (void);
void GrabJagBlock (void);
void GrabJagSolid (void);
void GrabSnesBlock (void);
void GrabJagPalette (void);
void GrabJagObj (void);
void GrabJagPatch (void);
void GrabJagWall (void);
command_t commands[] =
{
{"raw",GrabRaw},
{"vraw",GrabVRaw},
{"pic",GrabPic},
{"lpic",GrabLinearPic},
{"font",GrabFont},
{"palette",GrabPalette},
{"patch",GrabPatch255},
{"patch255",GrabPatch255},
{"jagblock",GrabJagBlock},
{"jagsolid",GrabJagSolid},
{"jagobj",GrabJagObj},
{"jagpal",GrabJagPalette},
{"jagpatch",GrabJagPatch},
{"jagwall",GrabJagWall},
{"snesblock",GrabSnesBlock},
{NULL,NULL} // list terminator
};
void UpdateImage (void)
{
}
void Pause (void)
{
#ifdef __NeXT__
getchar ();
#else
int ret;
ret = _bios_keybrd (_KEYBRD_READ);
if ( ret>>8 == 1)
Error ("Aborted");
#endif
}
/*
==============
=
= LoadScreen
=
==============
*/
void LoadScreen (char *name)
{
//
// load the lbm
//
if (lumppause)
{
TextMode ();
printf ("grabbing from screen: %s\n",name);
Pause ();
}
LoadLBM (name, &byteimage, &lbmpalette);
VGAMode ();
SetPalette (lbmpalette);
#ifndef __NeXT__
memcpy ((byte *)0xa0000,byteimage,64000);
byteimage = (byte *)0xa0000;
#endif
byteimagewidth = bmhd.w;
byteimageheight = bmhd.h;
}
/*
===============
=
= WriteLump
=
===============
*/
void WriteLump (void)
{
int size;
char lumppath[256];
grabbed++;
//
// save the grabbed lump to disk
//
// dword align
while ((int)lump_p&3)
*lump_p++ = 0;
size = lump_p - lumpbuffer;
if (size > MAXLUMP)
Error ("Lump size exceeded %lu, memory corrupted!",MAXLUMP);
if (!makewad)
{
// open a seperate file for the lump
strcpy (lumppath, scriptpath);
strcat (lumppath,lumpname);
strcat (lumppath,".lmp");
handle = SafeOpenWrite (lumppath);
}
else
{
// record directory info for the lump in the wad header
if (grabbed == MAXLUMPS)
Error ("Too many lumps grabbed for WAD file!");
header_p->filepos = LittleLong(tell (handle));
header_p->size = LittleLong(size);
strncpy (header_p->name, lumpname,8);
header_p++;
}
SafeWrite (handle, lumpbuffer, size);
if (!makewad)
{
close(handle);
handle = -1;
}
}
/*
================
=
= ParseScript
=
================
*/
void ParseScript (void)
{
int cmd;
int size;
lumpbuffer = malloc (MAXLUMP);
grabbed = 0;
do
{
//
// get a command / lump name
//
GetToken (true);
if (endofscript)
break;
if (!strcmpi (token,"$LOAD"))
{
GetToken (false);
LoadScreen (token);
continue;
}
//
// new lump
//
memset (lumpname,0,sizeof(lumpname));
strncpy (lumpname, token, 9);
for (size=0 ; size<8 ; size++)
lumpname[size] = toupper(lumpname[size]);
//
// get the grab command
//
lump_p = lumpbuffer;
GetToken (false);
//
// call a routine to grab some data and put it in lumpbuffer
// with lump_p pointing after the last byte to be saved
//
for (cmd=0 ; commands[cmd].name ; cmd++)
if ( !strcmpi(token,commands[cmd].name) )
{
commands[cmd].function ();
break;
}
if ( !commands[cmd].name )
Error ("Unrecognized token '%s' at line %i",token,scriptline);
if (lumppause)
Pause ();
WriteLump ();
UpdateImage (); // display highlighting
} while (script_p < scriptend_p);
}
/*
=================
=
= GrabLumpyScript
=
= The LBM should allready have been loaded
= Loads a script file, then grabs everything into it
=
=================
*/
void GrabLumpyScript (char const *basename, boolean wadfile, boolean dopause)
{
char script[256];
char picture[256];
char filename[256];
int offset, size;
handle = -1;
makewad = wadfile;
lumppause = dopause;
//
// read in the script file
//
strcpy (script, basename);
DefaultExtension (script, ".ls");
LoadScriptFile (script);
//
// if the first token is not a $load command, use the basename for lbm screen
//
GetToken (true); // peek at first token
UnGetToken ();
if ( strcmpi(token,"$LOAD") )
{
strcpy (picture, basename);
strcat (picture,".lbm");
LoadScreen (picture);
}
//
// open the output file
//
if (makewad)
{
header = header_p = malloc (MAXLUMPS*sizeof(lumpinfo_t) );
strcpy (filename,basename);
StripExtension (filename);
strcat (filename,".wad");
handle = SafeOpenWrite (filename);
lseek (handle,sizeof(wadinfo_t),SEEK_SET); // leave space for prologue
}
else
{
strcpy (scriptpath, basename);
StripFilename (scriptpath);
}
//
// parse the script commands
//
ParseScript ();
//
// if a wad grab, write the header out
//
if (makewad)
{
offset = tell (handle);
size = grabbed*sizeof(lumpinfo_t);
SafeWrite (handle, header, size);
lseek (handle,0,SEEK_SET);
wadheader.numlumps = LittleLong(grabbed);
wadheader.infotableofs = LittleLong(offset);
strncpy (wadheader.identification, "IWAD", 4);
SafeWrite (handle,&wadheader , sizeof(wadheader));
close (handle);
handle = -1;
}
//
// all done
//
#ifndef __NeXT__
TextMode ();
#endif
if (makewad)
printf ("%i lumps grabbed in a WAD file\n",grabbed);
else
printf ("%i lumps grabbed\n",grabbed);
}
/*
==============================
=
= main
=
==============================
*/
int main (int argc, char **argv)
{
char *filename;
boolean inwadfile, dopause;
printf ("\nLUMPY "VERSION" by John Carmack, copyright (c) 1992 Id Software\n");
if (argc == 1)
Error ("LUMPY [-s] [-p] basename");
inwadfile = !CheckParm ("s");
dopause = CheckParm ("p");
filename = argv[argc-1];
GrabLumpyScript (filename, inwadfile, dopause);
return 0;
}