]> git.draconx.ca Git - upkg.git/blob - src/upkg.c
Implement GUID handling.
[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 void print_guid(unsigned char guid[static 16])
41 {
42         for (unsigned i = 0; i < 16; i++) {
43                 printf("%02hhx", guid[i]);
44                 if (i == 15)
45                         putchar('\n');
46                 else
47                         putchar(' ');
48         }
49 }
50
51 int main(int argc, char **argv)
52 {
53         struct upkg *pkg;
54
55         if (argc < 2) {
56                 fprintf(stderr, "usage: upkg file\n");
57                 return EXIT_FAILURE;
58         }
59
60         pkg = upkg_fopen(argv[1]);
61         if (!pkg) {
62                 fprintf(stderr, "failed to open package!\n");
63                 return EXIT_FAILURE;
64         }
65
66         printf("Version: %u\n",  pkg->version);
67         printf("License: %u\n",  pkg->license);
68         printf("GUID: ");
69         print_guid(pkg->guid);
70
71         printf("Flags:   %lx\n", pkg->flags);
72         print_upkg_flags("\t", pkg->flags);
73
74         printf("Names:   %lu\n", pkg->name_count);
75         for (unsigned long i = 0; i < pkg->name_count; i++) {
76                 printf("\t%s\n", upkg_get_name(pkg, i));
77         }
78
79         printf("Exports: %lu\n", pkg->export_count);
80         printf("Imports: %lu\n", pkg->import_count);
81
82         upkg_close(pkg);
83         return 0;
84 }