]> git.draconx.ca Git - upkg.git/blob - src/uobject.h
libupkg: Add signed integer unpacking to fix incorrect signedness issue.
[upkg.git] / src / 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_H_
21 #define UOBJECT_H_
22
23 #include <glib-object.h>
24 #include "upkg.h"
25 #include "avl.h"
26
27 #define U_OBJECT_TYPE u_object_get_type()
28 #define U_OBJECT(obj) \
29         G_TYPE_CHECK_INSTANCE_CAST(obj, U_OBJECT_TYPE, UObject)
30 #define U_OBJECT_CLASS(class) \
31         G_TYPE_CHECK_CLASS_CAST(class, U_OBJECT_TYPE, UObjectClass)
32 #define IS_U_OBJECT(obj) \
33         G_TYPE_CHECK_INSTANCE_TYPE(obj, U_OBJECT_TYPE)
34 #define IS_U_OBJECT_CLASS(class) \
35         G_TYPE_CHECK_CLASS_TYPE(class, U_OBJECT_TYPE, UObjectClass)
36 #define U_OBJECT_GET_CLASS(obj) \
37         G_TYPE_INSTANCE_GET_CLASS(obj, U_OBJECT_TYPE, UObjectClass)
38
39 typedef struct UObject      UObject;
40 typedef struct UObjectClass UObjectClass;
41
42 struct UObject {
43         GObject parent;
44 };
45
46 struct UObjectClass {
47         GObjectClass parent;
48
49         int (*deserialize)(UObject *obj, struct upkg_file *f);
50 };
51
52 GType u_object_get_type(void);
53
54 const GValue *u_object_get_property(UObject *obj, const char *name);
55 void u_object_set_property(UObject *obj, const char *name, const GValue *val);
56
57 int u_object_deserialize(GObject *obj, struct upkg_file *f);
58
59 #endif