ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/global.h
(Generate patch)

Comparing deliantra/server/include/global.h (file contents):
Revision 1.9 by root, Thu Aug 31 17:54:14 2006 UTC vs.
Revision 1.20 by pippijn, Mon Dec 11 19:46:46 2006 UTC

1/*
2 * static char *rcsid_global_h =
3 * "$Id: global.h,v 1.9 2006/08/31 17:54:14 root Exp $";
4 */
5
6/* 1/*
7 CrossFire, A Multiplayer game for X-windows 2 CrossFire, A Multiplayer game for X-windows
8 3
9 Copyright (C) 2002 Mark Wedel & Crossfire Development Team 4 Copyright (C) 2002 Mark Wedel & Crossfire Development Team
10 Copyright (C) 1992 Frank Tore Johansen 5 Copyright (C) 1992 Frank Tore Johansen
75#endif 70#endif
76 71
77typedef signed char sint8; 72typedef signed char sint8;
78#define SINT8_MAX 127 73#define SINT8_MAX 127
79 74
80
81typedef unsigned short Fontindex; 75typedef unsigned short Fontindex;
82
83#ifdef WIN32
84/* Python plugin stuff defines SIZEOF_LONG_LONG as 8, and besides __int64 is a 64b type on MSVC...
85 * So let's force the typedef */
86typedef unsigned __int64 uint64;
87typedef signed __int64 sint64;
88/* Needed for experience */
89#define atoll _atoi64
90
91/* To reduce number of warnings */
92#pragma warning( disable: 4244 ) /* conversion from 'xxx' to 'yyy', possible loss of data */
93#pragma warning( disable: 4305 ) /* initializing float f = 0.05; instead of f = 0.05f; */
94
95#else /* WIN32 */
96 76
97#if SIZEOF_LONG == 8 77#if SIZEOF_LONG == 8
98typedef unsigned long uint64; 78typedef unsigned long uint64;
99typedef signed long sint64; 79typedef signed long sint64;
100#elif SIZEOF_LONG_LONG == 8 80#elif SIZEOF_LONG_LONG == 8
103#else 83#else
104#error do not know how to get a 64 bit value on this system. 84#error do not know how to get a 64 bit value on this system.
105#error correct and send mail to crossfire-devel on how to do this 85#error correct and send mail to crossfire-devel on how to do this
106#endif 86#endif
107 87
108#endif 88#include <vector>
89
90#define ACC_CLASS(name)
91#define ACC(meta,member) member
109 92
110#include "keyword.h" 93#include "keyword.h"
111#include "traits.h" 94#include "traits.h"
112#include "dynbuf.h" 95#include "dynbuf.h"
96#include "util.h"
113#include "shstr.h" 97#include "shstr.h"
114 98
115/* This blob, in this order, is needed to actually define maps */ 99/* This blob, in this order, is needed to actually define maps */
116#include "face.h" 100#include "face.h"
117/* Include the basic defines from spells.h */ 101/* Include the basic defines from spells.h */
139#include "book.h" 123#include "book.h"
140/* 124/*
141 * So far only used when dealing with artifacts. 125 * So far only used when dealing with artifacts.
142 * (now used by alchemy and other code too. Nov 95 b.t). 126 * (now used by alchemy and other code too. Nov 95 b.t).
143 */ 127 */
144typedef struct linked_char { 128struct linked_char
145 const char *name; 129{
130 shstr name;
146 struct linked_char *next; 131 struct linked_char *next;
147} linked_char; 132};
148
149 133
150/* Pull in artifacts */ 134/* Pull in artifacts */
151#include "artifact.h" 135#include "artifact.h"
152 136
153/* Now for gods */ 137/* Now for gods */
172 156
173/* 157/*
174 * These are the beginnings of linked lists: 158 * These are the beginnings of linked lists:
175 */ 159 */
176EXTERN player *first_player; 160EXTERN player *first_player;
177EXTERN mapstruct *first_map; 161EXTERN maptile *first_map;
178EXTERN region *first_region; 162EXTERN region *first_region;
179EXTERN treasurelist *first_treasurelist; 163EXTERN treasurelist *first_treasurelist;
180EXTERN artifactlist *first_artifactlist; 164EXTERN artifactlist *first_artifactlist;
181EXTERN archetype *first_archetype; 165EXTERN archetype *first_archetype;
182EXTERN objectlink *first_friendly_object; /* Objects monsters will go after */ 166EXTERN objectlink *first_friendly_object; /* Objects monsters will go after */
219EXTERN long ob_count; 203EXTERN long ob_count;
220/* 204/*
221 * Used in treasure.c 205 * Used in treasure.c
222 */ 206 */
223EXTERN archetype *ring_arch,*amulet_arch,*staff_arch,*crown_arch; 207EXTERN archetype *ring_arch,*amulet_arch,*staff_arch,*crown_arch;
224EXTERN const char *undead_name; /* Used in hit_player() in main.c */
225 208
226EXTERN Animations *animations; 209extern std::vector<Animations> animations;
227EXTERN int num_animations,animations_allocated, bmaps_checksum; 210EXTERN int num_animations,animations_allocated, bmaps_checksum;
228 211
229/* Rotate right from bsd sum. This is used in various places for checksumming */ 212/* Rotate right from bsd sum. This is used in various places for checksumming */
230#define ROTATE_RIGHT(c) if ((c) & 01) (c) = ((c) >>1) + 0x80000000; else (c) >>= 1; 213#define ROTATE_RIGHT(c) if ((c) & 01) (c) = ((c) >>1) + 0x80000000; else (c) >>= 1;
231 214
268/* FREE_AND_CLEAR frees the pointer and then sets it to NULL. 251/* FREE_AND_CLEAR frees the pointer and then sets it to NULL.
269 * This is generally done as a safety, and having this macro 252 * This is generally done as a safety, and having this macro
270 * makes the code a bit cleaner when doing so. 253 * makes the code a bit cleaner when doing so.
271 */ 254 */
272#define FREE_AND_CLEAR(xyz) {free(xyz); xyz=NULL; } 255#define FREE_AND_CLEAR(xyz) {free(xyz); xyz=NULL; }
273#define FREE_AND_CLEAR_STR(xyz) {free_string(xyz); xyz=NULL; }
274
275/* FREE_AND_COPY is for the shared string - it is handy enough
276 * to use all over the place.
277 */
278#define FREE_AND_COPY(sv,nv) { if (sv) free_string(sv); sv=add_string(nv); }
279
280#define DELETE_STRING(__str_) free_string(__str_);__str_=NULL;
281 256
282#ifdef CALLOC 257#ifdef CALLOC
283#undef CALLOC 258#undef CALLOC
284#endif 259#endif
285 260
289#else 264#else
290# define CALLOC(x,y) malloc(x*y) 265# define CALLOC(x,y) malloc(x*y)
291# define CFREE(x) free(x) 266# define CFREE(x) free(x)
292#endif 267#endif
293 268
294#ifndef WIN32 /* ---win32 we define this stuff in win32.h */
295#if HAVE_DIRENT_H 269#if HAVE_DIRENT_H
296# include <dirent.h> 270# include <dirent.h>
297# define NAMLEN(dirent) strlen((dirent)->d_name) 271# define NAMLEN(dirent) strlen((dirent)->d_name)
298#else 272#else
299# define dirent direct 273# define dirent direct
305# include <sys/dir.h> 279# include <sys/dir.h>
306# endif 280# endif
307# if HAVE_NDIR_H 281# if HAVE_NDIR_H
308# include <ndir.h> 282# include <ndir.h>
309# endif 283# endif
310#endif
311#endif 284#endif
312 285
313typedef struct Settings { 286typedef struct Settings {
314 char *logfilename; /* logfile to use */ 287 char *logfilename; /* logfile to use */
315 uint16 csport; /* port for new client/server */ 288 uint16 csport; /* port for new client/server */
404#define GETTIMEOFDAY(last_time) gettimeofday(last_time, (struct timezone *) NULL); 377#define GETTIMEOFDAY(last_time) gettimeofday(last_time, (struct timezone *) NULL);
405#else 378#else
406#define GETTIMEOFDAY(last_time) gettimeofday(last_time); 379#define GETTIMEOFDAY(last_time) gettimeofday(last_time);
407#endif 380#endif
408 381
409/* GROS: Those are used by plugin events (argument fixthem) */
410#define SCRIPT_FIX_ACTIVATOR 2
411#define SCRIPT_FIX_ALL 1
412#define SCRIPT_FIX_NOTHING 0
413
414#include "plugin.h" 382#include "plugin.h"
415#include "cfperl.h" 383#include "cfperl.h"
416 384
385//TODO: various TEMPORARY link guards to avoid doing the wrong thing
386void free (object *);
387void free (archetype *);
388void free (recipe *);
389void free (linked_char *);
390void free (godlink *);
391void free (objectlink *);
392void free (oblinkpt *);
393void free (maptile *);
394void free (key_value *);
395void free (treasure *);
396void free (materialtype_t *);
397void free (player *);
398void free (New_Face *);
399void free (racelink *);
400
417#endif /* GLOBAL_H */ 401#endif /* GLOBAL_H */
402

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines