ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/traits.h
Revision: 1.29
Committed: Sun Nov 11 04:29:11 2012 UTC (11 years, 7 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.28: +1 -0 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.15 /*
2 root 1.20 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 root 1.28 *
4 root 1.27 * Copyright (©) 2005,2006,2007,2008,2009,2010,2011,2012 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 root 1.28 *
6 root 1.22 * 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 root 1.28 *
11 root 1.17 * 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 root 1.28 *
16 root 1.22 * 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 root 1.28 *
20 root 1.20 * The authors can be reached via e-mail to <support@deliantra.net>
21 root 1.15 */
22    
23 root 1.1 #ifndef TRAITS_H__
24     #define TRAITS_H__
25    
26 root 1.11 #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 root 1.13 typedef uint32_t tick_t;
38 root 1.29 typedef uint16_t faceidx;
39 root 1.13
40 root 1.14 const int sint32_digits = 11; // number of digits an sint32 uses max.
41     const int sint64_digits = 20;
42    
43 root 1.19 typedef char *octet_string;
44     typedef char *utf8_string;
45 root 1.23 typedef char *any_string;
46 root 1.19 typedef const char *const_octet_string;
47     typedef const char *const_utf8_string;
48 root 1.23 typedef const char *const_any_string;
49 root 1.19
50 root 1.8 struct client_container;
51 root 1.6 struct client;
52 root 1.4 struct player;
53 root 1.1 struct object;
54 root 1.4 struct maptile;
55 root 1.9 struct mapspace;
56 root 1.3 struct archetype;
57 root 1.1 struct region;
58     struct party;
59 root 1.4 struct treasurelist;
60 root 1.12 struct random_map_params;
61 root 1.16 struct faceinfo;
62 root 1.18 struct mapxy;
63 root 1.25 struct materialtype_t;
64 root 1.1
65 root 1.19 typedef object object_ornull;
66     typedef maptile maptile_ornull;
67    
68 root 1.1 // could have used templates, but a more traditional C api
69     // uses more explicit typing which is ok for this purpose.
70     enum data_type
71     {
72     DT_END, // no further arguments
73     DT_AV, // perl-only av that needs to be flattened out
74     DT_INT,
75     DT_INT64,
76     DT_DOUBLE,
77     DT_STRING, // 0-terminated string
78     DT_DATA, // string + length
79 root 1.10 DT_ATTACHABLE, // will go
80 root 1.1 DT_OBJECT,
81     DT_MAP,
82 root 1.7 DT_CLIENT,
83 root 1.1 DT_PLAYER,
84     DT_ARCH,
85     DT_PARTY,
86     DT_REGION,
87    
88     NUM_DATA_TYPES
89     };
90    
91     #endif
92