]> git.draconx.ca Git - upkg.git/blob - src/uobject/uobject.h
dfca528d10dff03095cc549fa32adc965a0564ef
[upkg.git] / src / uobject / uobject.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 UOBJECT_UOBJECT_H_
21 #define UOBJECT_UOBJECT_H_
22
23 #include <glib-object.h>
24 #include "upkg.h"
25
26 #define UOBJECT_TYPE uobject_get_type()
27 #define UOBJECT(obj) \
28         G_TYPE_CHECK_INSTANCE_CAST(obj, UOBJECT_TYPE, UObject)
29 #define UOBJECT_CLASS(class) \
30         G_TYPE_CHECK_CLASS_CAST(class, UOBJECT_TYPE, UObjectClass)
31 #define IS_UOBJECT(obj) \
32         G_TYPE_CHECK_INSTANCE_TYPE(obj, UOBJECT_TYPE)
33 #define IS_UOBJECT_CLASS(class) \
34         G_TYPE_CHECK_CLASS_TYPE(class, UOBJECT_TYPE, UObjectClass)
35 #define UOBJECT_GET_CLASS(obj) \
36         G_TYPE_INSTANCE_GET_CLASS(obj, UOBJECT_TYPE, UObjectClass)
37
38 typedef struct UObject      UObject;
39 typedef struct UObjectClass UObjectClass;
40
41 struct UObject {
42         GObject parent;
43
44         struct upkg *pkg;
45         struct upkg_file *pkg_file;
46         unsigned long pkg_idx;
47 };
48
49 struct UObjectClass {
50         GObjectClass parent;
51
52         int (*deserialize)(UObject *obj, struct upkg_file *f);
53 };
54
55 GType uobject_get_type(void);
56
57 int uobject_deserialize(GObject *obj, struct upkg *pkg, unsigned long idx);
58
59 #endif