]> icculus.org git repositories - crow/jumpnbump.git/blob - modify/unpack.c
cc1c969be36b1288928aa40d2aa47454d6e34431
[crow/jumpnbump.git] / modify / unpack.c
1 /*
2  * unpack.c
3  * Copyright (C) 1998 Brainchild Design - http://brainchilddesign.com/
4  * 
5  * Copyright (C) 2001 "timecop" <timecop@japan.co.jp>
6  *
7  * Copyright (C) 2002 Florian Schulze <crow@icculus.org>
8  *
9  * Portions of this code are from the MPEG software simulation group
10  * idct implementation. This code will be replaced with a new
11  * implementation soon.
12  *
13  * This file is part of Jump'n'Bump.
14  *
15  * Jump'n'Bump is free software; you can redistribute it and/or modify
16  * it under the terms of the GNU General Public License as published by
17  * the Free Software Foundation; either version 2 of the License, or
18  * (at your option) any later version.
19  *
20  * Jump'n'Bump is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with this program; if not, write to the Free Software
27  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
28  */
29
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <fcntl.h>
33 #include <string.h>
34 #include <sys/types.h>
35 #ifndef _MSC_VER
36 #include <unistd.h>
37 #else
38 #include <io.h>
39 typedef unsigned int u_int32_t;
40 #endif
41
42 typedef struct {
43     char filename[12];
44     u_int32_t offset;
45     u_int32_t size;
46 } DirEntry;
47
48 int main(int argc, char **argv)
49 {
50     int fd;
51     DirEntry *datafile;
52     int num_entries, i;
53
54     if (argc < 2) {
55         printf("dumbass, specify filename to unpack\n");
56         exit(1);
57     }
58
59     fd = open(argv[1], O_RDONLY | O_BINARY);
60     if (fd == -1) {
61         perror("open datafile");
62         exit(1);
63     }
64     /* get number of entries */
65     read(fd, &num_entries, 4);
66
67     printf("%d entries in datafile\n", num_entries);
68
69     datafile = calloc(num_entries, sizeof(DirEntry));
70     read(fd, datafile, num_entries * sizeof(DirEntry));
71     printf("Directory Listing:\n");
72     for (i = 0; i < num_entries; i++) {
73         char filename[14];
74         memset(filename, 0, sizeof(filename));
75         strncpy(filename, datafile[i].filename, 12);
76         printf("%02d:\t%s (%u bytes)\n", i, filename,
77                 datafile[i].size);
78     }
79
80     for (i = 0; i < num_entries; i++) {
81         int outfd;
82         char filename[14];
83         char *buf;
84         memset(filename, 0, sizeof(filename));
85         strncpy(filename, datafile[i].filename, 12);
86         printf("Extracting %s ", filename);
87
88         outfd = open(filename, O_RDWR | O_CREAT | O_BINARY, 0644);
89         if (!outfd) {
90             perror("cant open file");
91             exit(1);
92         }
93         lseek(fd, datafile[i].offset, SEEK_SET);
94         buf = calloc(1, datafile[i].size + 16);
95         read(fd, buf, datafile[i].size);
96         write(outfd, buf, datafile[i].size);
97         close(outfd);
98         free(buf);
99         printf("OK\n");
100     }
101     close(fd);
102     return 0;
103 }