]> git.draconx.ca Git - upkg.git/blob - src/upkg.h
upkg: Print export flags.
[upkg.git] / src / upkg.h
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 #ifndef UPKG_H_
21 #define UPKG_H_
22
23 #include <stddef.h>
24
25 #define UPKG_FLAG_ALLOW_DOWNLOAD  0x0001
26 #define UPKG_FLAG_CLIENT_OPTIONAL 0x0002
27 #define UPKG_FLAG_SERVER_ONLY     0x0004
28 #define UPKG_FLAG_BROKEN_LINKS    0x0008
29 #define UPKG_FLAG_INSECURE        0x0010
30 #define UPKG_FLAG_REQUIRED        0x8000
31
32 #define UPKG_OBJ_FLAG_TRANSACTIONAL    0x00000001
33 #define UPKG_OBJ_FLAG_UNREACHABLE      0x00000002
34 #define UPKG_OBJ_FLAG_PUBLIC           0x00000004
35 #define UPKG_OBJ_FLAG_TAG_IMPORT       0x00000008
36 #define UPKG_OBJ_FLAG_TAG_EXPORT       0x00000010
37 #define UPKG_OBJ_FLAG_SOURCE_MODIFIED  0x00000020
38 #define UPKG_OBJ_FLAG_TAG_GARBAGE      0x00000040
39 #define UPKG_OBJ_FLAG_NEED_LOAD        0x00000200
40 #define UPKG_OBJ_FLAG_HIGHLIGHT_NAME   0x00000400
41 #define UPKG_OBJ_FLAG_IN_SINGULAR_FUNC 0x00000800
42 #define UPKG_OBJ_FLAG_SUPPRESSED       0x00001000
43 #define UPKG_OBJ_FLAG_IN_END_STATE     0x00002000
44 #define UPKG_OBJ_FLAG_TRANSIENT        0x00004000
45 #define UPKG_OBJ_FLAG_PRELOADING       0x00008000
46 #define UPKG_OBJ_FLAG_LOAD_FOR_CLIENT  0x00010000
47 #define UPKG_OBJ_FLAG_LOAD_FOR_SERVER  0x00020000
48 #define UPKG_OBJ_FLAG_LOAD_FOR_EDIT    0x00040000
49 #define UPKG_OBJ_FLAG_STANDALONE       0x00080000
50 #define UPKG_OBJ_FLAG_NOT_FOR_CLIENT   0x00100000
51 #define UPKG_OBJ_FLAG_NOT_FOR_SERVER   0x00200000
52 #define UPKG_OBJ_FLAG_NOT_FOR_EDIT     0x00400000
53 #define UPKG_OBJ_FLAG_DESTROYED        0x00800000
54 #define UPKG_OBJ_FLAG_NEED_POST_LOAD   0x01000000
55 #define UPKG_OBJ_FLAG_HAS_STACK        0x02000000
56 #define UPKG_OBJ_FLAG_NATIVE           0x04000000
57 #define UPKG_OBJ_FLAG_MARKED           0x08000000
58 #define UPKG_OBJ_FLAG_ERROR_SHUTDOWN   0x10000000
59 #define UPKG_OBJ_FLAG_DEBUG_POST_LOAD  0x20000000
60 #define UPKG_OBJ_FLAG_DEBUG_SERIALIZE  0x40000000
61 #define UPKG_OBJ_FLAG_DEBUG_DESTROY    0x80000000
62
63 #define UPKG_HDR_MAGIC 0x9e2a83c1
64 #define UPKG_HDR_SIZE  36
65
66 struct upkg {
67         unsigned version, license;
68         unsigned char guid[16];
69         unsigned long flags;
70
71         unsigned long name_count, export_count, import_count;
72
73         struct upkg_private *priv;
74 };
75
76 struct upkg_file {
77         const char *name;
78
79         int eof;
80
81         struct upkg *pkg;
82         unsigned long base, offset, len;
83 };
84
85 struct upkg *upkg_fopen(const char *path);
86 int upkg_close(struct upkg *pkg);
87
88 const char *upkg_get_name(struct upkg *pkg, unsigned long idx);
89
90 long   upkg_export_find(struct upkg *pkg, const char *name);
91
92 unsigned long upkg_export_flags(struct upkg *pkg, unsigned long idx);
93 const char *upkg_export_name(struct upkg *pkg, unsigned long idx);
94 const char *upkg_export_class(struct upkg *pkg, unsigned long idx,
95                               const char **package);
96
97 struct upkg_file *upkg_export_open(struct upkg *pkg, unsigned long idx);
98 size_t upkg_export_read(struct upkg_file *f, void *buf, size_t n);
99 int    upkg_export_seek(struct upkg_file *f, long offset, int whence);
100 long   upkg_export_tell(struct upkg_file *f);
101 void   upkg_export_close(struct upkg_file *f);
102
103 size_t upkg_decode_index(long *val, unsigned char *bytes, size_t n);
104
105 #endif