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.69 by root, Tue Apr 15 03:16:02 2008 UTC vs.
Revision 1.75 by root, Mon Apr 27 01:38:48 2009 UTC

1/* 1/*
2 * This file is part of Deliantra, the Roguelike Realtime MMORPG. 2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 * 3 *
4 * Copyright (©) 2005,2006,2007 Marc Alexander Lehmann / Robin Redeker / the Deliantra team 4 * Copyright (©) 2005,2006,2007,2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * Copyright (©) 2002,2007 Mark Wedel & Crossfire Development Team 5 * Copyright (©) 2002,2007 Mark Wedel & Crossfire Development Team
6 * Copyright (©) 1992,2007 Frank Tore Johansen 6 * Copyright (©) 1992,2007 Frank Tore Johansen
7 * 7 *
8 * Deliantra is free software: you can redistribute it and/or modify 8 * Deliantra is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by 9 * it under the terms of the GNU General Public License as published by
118#include "race.h" 118#include "race.h"
119 119
120/* Now for recipe/alchemy */ 120/* Now for recipe/alchemy */
121#include "recipe.h" 121#include "recipe.h"
122 122
123#include "funcpoint.h"
124
125/***************************************************************************** 123/*****************************************************************************
126 * GLOBAL VARIABLES: * 124 * GLOBAL VARIABLES: *
127 *****************************************************************************/ 125 *****************************************************************************/
128 126
129/* 127/*
144extern tick_t pticks; /* used by various function to determine */ 142extern tick_t pticks; /* used by various function to determine */
145 /* how often to save the character */ 143 /* how often to save the character */
146/* 144/*
147 * Misc global variables: 145 * Misc global variables:
148 */ 146 */
149EXTERN archetype *empty_archetype; /* Nice to have fast access to it */
150EXTERN archetype *map_archeytpe;
151EXTERN shstr first_map_path; /* The start-level */ 147EXTERN shstr first_map_path; /* The start-level */
152EXTERN shstr first_map_ext_path; /* Path used for per-race start maps */ 148EXTERN shstr first_map_ext_path; /* Path used for per-race start maps */
153 149
154EXTERN char errmsg[HUGE_BUF]; 150EXTERN char errmsg[HUGE_BUF];
155EXTERN long ob_count; 151EXTERN long ob_count;
156/* 152
157 * Used in treasure.c 153extern dynbuf_text msg_dynbuf; // a dynbuf for text messages and other temporary data
158 */
159EXTERN archetype *ring_arch, *amulet_arch, *staff_arch, *crown_arch;
160 154
161#define SET_ANIMATION(ob,newanim) ob->face = animations [ob->animation_id].faces [newanim] 155#define SET_ANIMATION(ob,newanim) ob->face = animations [ob->animation_id].faces [newanim]
162#define GET_ANIMATION(ob,anim) animations [ob->animation_id].faces [anim] 156#define GET_ANIMATION(ob,anim) animations [ob->animation_id].faces [anim]
163#define GET_ANIM_ID(ob) (ob->animation_id) 157#define GET_ANIM_ID(ob) (ob->animation_id)
164/* NUM_ANIMATIONS returns the number of animations allocated. The last 158/* NUM_ANIMATIONS returns the number of animations allocated. The last
167 * range from 0 through 7. 161 * range from 0 through 7.
168 */ 162 */
169#define NUM_ANIMATIONS(ob) (animations[ob->animation_id].num_animations) 163#define NUM_ANIMATIONS(ob) (animations[ob->animation_id].num_animations)
170#define NUM_FACINGS(ob) (animations[ob->animation_id].facings) 164#define NUM_FACINGS(ob) (animations[ob->animation_id].facings)
171 165
166// used only by treasure.C, does not handle null arch ptrs
167#define IS_ARCH(arch,name) ((arch)->archname == shstr_ ## name)
168
172extern void emergency_save (); 169extern void emergency_save ();
173 170
174#include "libproto.h" 171#include "libproto.h"
175#include "sockproto.h" 172#include "sockproto.h"
176
177#define decrease_ob(xyz) decrease_ob_nr(xyz,1)
178 173
179INTERFACE_CLASS (Settings) 174INTERFACE_CLASS (Settings)
180struct Settings { 175struct Settings {
181 const char *ACC (RO, logfilename); /* logfile to use */ 176 const char *ACC (RO, logfilename); /* logfile to use */
182 int ACC (RW, csport); /* port for new client/server */ 177 int ACC (RW, csport); /* port for new client/server */
241 236
242extern Settings settings; 237extern Settings settings;
243 238
244void reset_signals (); 239void reset_signals ();
245 240
241#ifdef DEVEL
242# include "devel.h"
243#endif
244
246#endif /* GLOBAL_H */ 245#endif /* GLOBAL_H */
247 246

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines