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.46 by root, Tue Mar 6 19:02:35 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[];
180
181extern client *init_sockets;
182 175
183extern void emergency_save (); 176extern void emergency_save ();
184extern void cleanup (const char *cause, bool make_core = false); 177extern void cleanup (const char *cause, bool make_core = false);
185 178
186#include "libproto.h" 179#include "libproto.h"

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines