]> git.draconx.ca Git - upkg.git/blob - src/upkg.c
Add copyright and licensing info.
[upkg.git] / src / upkg.c
1 /*
2  *  upkg: tool for manipulating Unreal Tournament packages.
3  *  Copyright (C) 2009 Nick Bowler
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2 of the License, or
8  *  (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program; if not, write to the Free Software
17  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include "upkg.h"
23
24 void print_upkg_flags(const char *prefix, unsigned long flags)
25 {
26         if (flags & UPKG_FLAG_ALLOW_DOWNLOAD)
27                 printf("%sAllowDownload\n", prefix);
28         if (flags & UPKG_FLAG_CLIENT_OPTIONAL)
29                 printf("%sClientOptional\n", prefix);
30         if (flags & UPKG_FLAG_SERVER_ONLY)
31                 printf("%sServerOnly\n", prefix);
32         if (flags & UPKG_FLAG_BROKEN_LINKS)
33                 printf("%sBrokenLinks\n", prefix);
34         if (flags & UPKG_FLAG_INSECURE)
35                 printf("%sInsecure\n", prefix);
36         if (flags & UPKG_FLAG_REQUIRED)
37                 printf("%sRequired\n", prefix);
38 }
39
40
41 int main(int argc, char **argv)
42 {
43         struct upkg *pkg;
44
45         if (argc < 2) {
46                 fprintf(stderr, "usage: upkg file\n");
47                 return EXIT_FAILURE;
48         }
49
50         pkg = upkg_fopen(argv[1]);
51         if (!pkg) {
52                 fprintf(stderr, "failed to open package!\n");
53                 return EXIT_FAILURE;
54         }
55
56         printf("Version: %u\n",  pkg->version);
57         printf("License: %u\n",  pkg->license);
58
59         printf("Flags:   %lx\n", pkg->flags);
60         print_upkg_flags("\t", pkg->flags);
61
62         printf("Names:   %lu\n", pkg->name_count);
63         for (unsigned long i = 0; i < pkg->name_count; i++) {
64                 printf("\t%s\n", upkg_get_name(pkg, i));
65         }
66
67         printf("Exports: %lu\n", pkg->export_count);
68         printf("Imports: %lu\n", pkg->import_count);
69
70         upkg_close(pkg);
71         return 0;
72 }