ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/traits.h
Revision: 1.15
Committed: Mon May 28 21:15:56 2007 UTC (17 years ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.14: +22 -0 lines
Log Message:
- update copyrights in .h files, where applicable
- rename preprocess to genkeywords

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
54 // could have used templates, but a more traditional C api
55 // uses more explicit typing which is ok for this purpose.
56 enum data_type
57 {
58 DT_END, // no further arguments
59 DT_AV, // perl-only av that needs to be flattened out
60 DT_INT,
61 DT_INT64,
62 DT_DOUBLE,
63 DT_STRING, // 0-terminated string
64 DT_DATA, // string + length
65 DT_ATTACHABLE, // will go
66 DT_OBJECT,
67 DT_MAP,
68 DT_CLIENT,
69 DT_PLAYER,
70 DT_ARCH,
71 DT_PARTY,
72 DT_REGION,
73
74 NUM_DATA_TYPES
75 };
76
77 #endif
78