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.44 by root, Thu Feb 15 18:10:33 2007 UTC vs.
Revision 1.47 by root, Sun Mar 11 02:12:44 2007 UTC

109 109
110/***************************************************************************** 110/*****************************************************************************
111 * GLOBAL VARIABLES: * 111 * GLOBAL VARIABLES: *
112 *****************************************************************************/ 112 *****************************************************************************/
113 113
114extern facetile *new_faces;
115
116/* 114/*
117 * These are the beginnings of linked lists: 115 * These are the beginnings of linked lists:
118 */ 116 */
119EXTERN treasurelist *first_treasurelist; 117EXTERN treasurelist *first_treasurelist;
120EXTERN artifactlist *first_artifactlist; 118EXTERN artifactlist *first_artifactlist;
157 155
158EXTERN std::vector<animation> animations; 156EXTERN std::vector<animation> animations;
159EXTERN int num_animations, animations_allocated; 157EXTERN int num_animations, animations_allocated;
160EXTERN uint32_t bmaps_checksum; 158EXTERN uint32_t bmaps_checksum;
161 159
162#define SET_ANIMATION(ob,newanim) ob->face = new_faces + animations [ob->animation_id].faces [newanim] 160#define SET_ANIMATION(ob,newanim) ob->face = animations [ob->animation_id].faces [newanim]
163#define GET_ANIMATION(ob,anim) animations [ob->animation_id].faces [anim] 161#define GET_ANIMATION(ob,anim) animations [ob->animation_id].faces [anim]
164#define GET_ANIM_ID(ob) (ob->animation_id) 162#define GET_ANIM_ID(ob) (ob->animation_id)
165/* NUM_ANIMATIONS returns the number of animations allocated. The last 163/* NUM_ANIMATIONS returns the number of animations allocated. The last
166 * usuable animation will be NUM_ANIMATIONS-1 (for example, if an object 164 * usuable animation will be NUM_ANIMATIONS-1 (for example, if an object
167 * has 8 animations, NUM_ANIMATIONS will return 8, but the values will 165 * has 8 animations, NUM_ANIMATIONS will return 8, but the values will
172 170
173extern short freearr_x[SIZEOFFREE], freearr_y[SIZEOFFREE]; 171extern short freearr_x[SIZEOFFREE], freearr_y[SIZEOFFREE];
174extern int maxfree[SIZEOFFREE], freedir[SIZEOFFREE]; 172extern int maxfree[SIZEOFFREE], freedir[SIZEOFFREE];
175extern int rightof_x[9], rightof_y[9]; 173extern int rightof_x[9], rightof_y[9];
176extern int leftof_x[9], leftof_y[9]; 174extern int leftof_x[9], leftof_y[9];
177
178extern facetile *blank_face, *empty_face;
179extern facetile *dark_faces[];
180extern facetile *smooth_face;
181
182extern client *init_sockets;
183 175
184extern void emergency_save (); 176extern void emergency_save ();
185extern void cleanup (const char *cause, bool make_core = false); 177extern void cleanup (const char *cause, bool make_core = false);
186 178
187#include "libproto.h" 179#include "libproto.h"
216 uint8 ACC (RW, death_penalty_ratio); /* how much exp should be lost at death */ 208 uint8 ACC (RW, death_penalty_ratio); /* how much exp should be lost at death */
217 uint8 ACC (RW, death_penalty_level); /* how many levels worth of exp may be lost on one death */ 209 uint8 ACC (RW, death_penalty_level); /* how many levels worth of exp may be lost on one death */
218 uint8 ACC (RW, balanced_stat_loss); /* If true, Death stat depletion based on level etc */ 210 uint8 ACC (RW, balanced_stat_loss); /* If true, Death stat depletion based on level etc */
219 uint8 ACC (RW, not_permadeth); /* if true, death is non-permament */ 211 uint8 ACC (RW, not_permadeth); /* if true, death is non-permament */
220 uint8 ACC (RW, simple_exp); /* If true, use the simple experience system */ 212 uint8 ACC (RW, simple_exp); /* If true, use the simple experience system */
221 int ACC (RW, reset_loc_time); /* Number of seconds to put player back at home */
222 uint8 ACC (RW, set_title); /* players can set thier title */ 213 uint8 ACC (RW, set_title); /* players can set thier title */
223 uint8 ACC (RW, resurrection); /* ressurection possible w/ permadeth on */ 214 uint8 ACC (RW, resurrection); /* ressurection possible w/ permadeth on */
224 uint8 ACC (RW, search_items); /* search_items command */ 215 uint8 ACC (RW, search_items); /* search_items command */
225 uint8 ACC (RW, spell_encumbrance); /* encumbrance effects spells */ 216 uint8 ACC (RW, spell_encumbrance); /* encumbrance effects spells */
226 uint8 ACC (RW, spell_failure_effects); /* nasty backlash to spell failures */ 217 uint8 ACC (RW, spell_failure_effects); /* nasty backlash to spell failures */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines