]> git.localhorst.tv Git - l2e.git/blob - src/loader/TypeDescription.h
fb1b07890a8fe57bff4b46d58e540d7734e583eb
[l2e.git] / src / loader / TypeDescription.h
1 #ifndef LOADER_TYPEDESCRIPTION_H_
2 #define LOADER_TYPEDESCRIPTION_H_
3
4 #include <iosfwd>
5 #include <map>
6 #include <memory>
7 #include <string>
8 #include <vector>
9
10 namespace loader {
11
12 class FieldDescription {
13
14 public:
15         FieldDescription(std::ptrdiff_t offset, int type)
16         : description(0), offset(offset), type(type), reference(false), aggregate(false) { }
17
18         std::ptrdiff_t Offset() const { return offset; };
19         int TypeId() const { return type; }
20         bool IsReferenced() const { return reference; }
21         bool IsAggregate() const { return aggregate; }
22         const char *Description() const { return description; }
23
24         FieldDescription &SetReferenced() { reference = true; return *this; }
25         FieldDescription &SetAggregate() { aggregate = true; return *this; }
26         FieldDescription &SetDescription(const char *d) { description = d; return *this; }
27
28 private:
29         const char *description;
30         std::ptrdiff_t offset;
31         int type;
32         bool reference;
33         bool aggregate;
34 };
35
36 class TypeDescription {
37
38 public:
39         void AddField(const std::string &name, const FieldDescription &f);
40         bool HasField(const std::string &name) const;
41         const FieldDescription &GetField(const std::string &name) const;
42         void Construct(void *) const;
43         void Load(void *) const;
44         bool NeedsLinking() const { return link; }
45
46         void SetConstructor(void (*ctor)(void *)) { constructor = ctor; }
47         void SetLoader(void (*ld)(void *)) { loader = ld; }
48         void AddSupertype(int id, std::ptrdiff_t offset);
49         bool IsSubtypeOf(int id) const;
50         bool IsSubtypeOf(const TypeDescription &other) const { return IsSubtypeOf(other.TypeId()); }
51         std::ptrdiff_t SupertypeOffset(int id) const;
52         std::ptrdiff_t SupertypeOffset(const TypeDescription &other) const { return SupertypeOffset(other.TypeId()); }
53
54         int TypeId() const { return id; }
55         const std::string &TypeName() const { return name; }
56
57         void SetSize(int s) { size = s; }
58         int Size() const { return size; }
59
60         void SetDescription(const char *d) { description = d; }
61         const char *Description() const { return description; }
62
63         typedef std::map<std::string, FieldDescription>::const_iterator FieldIterator;
64         FieldIterator FieldsBegin() const { return fields.begin(); }
65         FieldIterator FieldsEnd() const { return fields.end(); }
66
67         static TypeDescription &Create(int id, const std::string &name);
68         static int GetTypeId(const std::string &);
69         static const TypeDescription &Get(int id);
70
71         static int GetMaxSize();
72
73         static void WriteSourceWiki(std::ostream &);
74
75 private:
76         TypeDescription(int id, const std::string &name) : constructor(0), loader(0), description(0), name(name), id(id), size(0), link(false) { }
77
78 private:
79         void (*constructor)(void *);
80         void (*loader)(void *);
81         const char *description;
82         std::string name;
83         std::map<std::string, FieldDescription> fields;
84         std::map<int, std::ptrdiff_t> supertypes;
85         int id;
86         int size;
87         bool link;
88
89         static std::map<int, TypeDescription> typeDescriptions;
90         static std::map<std::string, int> typeName2ID;
91
92 };
93
94 }
95
96 #endif