ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/traits.h
Revision: 1.16
Committed: Wed Jun 6 05:41:26 2007 UTC (16 years, 11 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.15: +1 -0 lines
Log Message:
untemplatise the problematic put

File Contents

# Content
1 /*
2 * This file is part of Crossfire TRT, the Multiplayer Online Role Playing Game.
3 *
4 * Copyright (©) 2005,2006,2007 Marc Alexander Lehmann / Robin Redeker / the Crossfire TRT team
5 *
6 * Crossfire TRT is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 2 of the License, or (at your option)
9 * any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with Crossfire TRT; if not, write to the Free Software Foundation, Inc. 51
18 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 *
20 * The authors can be reached via e-mail to <crossfire@schmorp.de>
21 */
22
23 #ifndef TRAITS_H__
24 #define TRAITS_H__
25
26 #include <inttypes.h>
27
28 typedef int8_t sint8;
29 typedef uint8_t uint8;
30 typedef int16_t sint16;
31 typedef uint16_t uint16;
32 typedef int32_t sint32;
33 typedef uint32_t uint32;
34 typedef int64_t sint64;
35 typedef uint64_t uint64;
36
37 typedef uint32_t tick_t;
38
39 const int sint32_digits = 11; // number of digits an sint32 uses max.
40 const int sint64_digits = 20;
41
42 struct client_container;
43 struct client;
44 struct player;
45 struct object;
46 struct maptile;
47 struct mapspace;
48 struct archetype;
49 struct region;
50 struct party;
51 struct treasurelist;
52 struct random_map_params;
53 struct faceinfo;
54
55 // could have used templates, but a more traditional C api
56 // uses more explicit typing which is ok for this purpose.
57 enum data_type
58 {
59 DT_END, // no further arguments
60 DT_AV, // perl-only av that needs to be flattened out
61 DT_INT,
62 DT_INT64,
63 DT_DOUBLE,
64 DT_STRING, // 0-terminated string
65 DT_DATA, // string + length
66 DT_ATTACHABLE, // will go
67 DT_OBJECT,
68 DT_MAP,
69 DT_CLIENT,
70 DT_PLAYER,
71 DT_ARCH,
72 DT_PARTY,
73 DT_REGION,
74
75 NUM_DATA_TYPES
76 };
77
78 #endif
79