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.48 by root, Wed Mar 14 01:19:09 2007 UTC

22 * The author can be reached via e-mail to crossfire@schmorp.de 22 * The author can be reached via e-mail to crossfire@schmorp.de
23 */ 23 */
24 24
25#ifndef GLOBAL_H 25#ifndef GLOBAL_H
26#define GLOBAL_H 26#define GLOBAL_H
27
28#define _GLIBCXX_CONCEPT_CHECKS
27 29
28#ifndef EXTERN 30#ifndef EXTERN
29#define EXTERN extern 31#define EXTERN extern
30#endif 32#endif
31 33
109 111
110/***************************************************************************** 112/*****************************************************************************
111 * GLOBAL VARIABLES: * 113 * GLOBAL VARIABLES: *
112 *****************************************************************************/ 114 *****************************************************************************/
113 115
114extern facetile *new_faces;
115
116/* 116/*
117 * These are the beginnings of linked lists: 117 * These are the beginnings of linked lists:
118 */ 118 */
119EXTERN treasurelist *first_treasurelist; 119EXTERN treasurelist *first_treasurelist;
120EXTERN artifactlist *first_artifactlist; 120EXTERN artifactlist *first_artifactlist;
157 157
158EXTERN std::vector<animation> animations; 158EXTERN std::vector<animation> animations;
159EXTERN int num_animations, animations_allocated; 159EXTERN int num_animations, animations_allocated;
160EXTERN uint32_t bmaps_checksum; 160EXTERN uint32_t bmaps_checksum;
161 161
162#define SET_ANIMATION(ob,newanim) ob->face = new_faces + animations [ob->animation_id].faces [newanim] 162#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] 163#define GET_ANIMATION(ob,anim) animations [ob->animation_id].faces [anim]
164#define GET_ANIM_ID(ob) (ob->animation_id) 164#define GET_ANIM_ID(ob) (ob->animation_id)
165/* NUM_ANIMATIONS returns the number of animations allocated. The last 165/* NUM_ANIMATIONS returns the number of animations allocated. The last
166 * usuable animation will be NUM_ANIMATIONS-1 (for example, if an object 166 * 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 167 * has 8 animations, NUM_ANIMATIONS will return 8, but the values will
172 172
173extern short freearr_x[SIZEOFFREE], freearr_y[SIZEOFFREE]; 173extern short freearr_x[SIZEOFFREE], freearr_y[SIZEOFFREE];
174extern int maxfree[SIZEOFFREE], freedir[SIZEOFFREE]; 174extern int maxfree[SIZEOFFREE], freedir[SIZEOFFREE];
175extern int rightof_x[9], rightof_y[9]; 175extern int rightof_x[9], rightof_y[9];
176extern int leftof_x[9], leftof_y[9]; 176extern int leftof_x[9], leftof_y[9];
177
178extern facetile *blank_face, *empty_face;
179extern facetile *dark_faces[];
180
181extern client *init_sockets;
182 177
183extern void emergency_save (); 178extern void emergency_save ();
184extern void cleanup (const char *cause, bool make_core = false); 179extern void cleanup (const char *cause, bool make_core = false);
185 180
186#include "libproto.h" 181#include "libproto.h"

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines