ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/traits.h
Revision: 1.24
Committed: Fri Mar 26 01:04:44 2010 UTC (14 years, 2 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.23: +1 -1 lines
Log Message:
update copyright for up to 2010

File Contents

# Content
1 /*
2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 *
4 * Copyright (©) 2005,2006,2007,2008,2009,2010 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 *
6 * Deliantra is free software: you can redistribute it and/or modify it under
7 * the terms of the Affero GNU General Public License as published by the
8 * Free Software Foundation, either version 3 of the License, or (at your
9 * option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the Affero GNU General Public License
17 * and the GNU General Public License along with this program. If not, see
18 * <http://www.gnu.org/licenses/>.
19 *
20 * The authors can be reached via e-mail to <support@deliantra.net>
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 typedef char *octet_string;
43 typedef char *utf8_string;
44 typedef char *any_string;
45 typedef const char *const_octet_string;
46 typedef const char *const_utf8_string;
47 typedef const char *const_any_string;
48
49 struct client_container;
50 struct client;
51 struct player;
52 struct object;
53 struct maptile;
54 struct mapspace;
55 struct archetype;
56 struct region;
57 struct party;
58 struct treasurelist;
59 struct random_map_params;
60 struct faceinfo;
61 struct mapxy;
62
63 typedef object object_ornull;
64 typedef maptile maptile_ornull;
65
66 // could have used templates, but a more traditional C api
67 // uses more explicit typing which is ok for this purpose.
68 enum data_type
69 {
70 DT_END, // no further arguments
71 DT_AV, // perl-only av that needs to be flattened out
72 DT_INT,
73 DT_INT64,
74 DT_DOUBLE,
75 DT_STRING, // 0-terminated string
76 DT_DATA, // string + length
77 DT_ATTACHABLE, // will go
78 DT_OBJECT,
79 DT_MAP,
80 DT_CLIENT,
81 DT_PLAYER,
82 DT_ARCH,
83 DT_PARTY,
84 DT_REGION,
85
86 NUM_DATA_TYPES
87 };
88
89 #endif
90