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

Comparing deliantra/server/include/object.h (file contents):
Revision 1.116 by root, Mon May 7 03:05:58 2007 UTC vs.
Revision 1.119 by root, Sat May 12 13:27:37 2007 UTC

30#include "cfperl.h" 30#include "cfperl.h"
31#include "shstr.h" 31#include "shstr.h"
32 32
33typedef int tag_t; 33typedef int tag_t;
34 34
35#define NUM_BODY_LOCATIONS 14 35enum {
36#define BODY_ARMS 1 36 body_range,
37 body_shield,
38 body_combat,
39 body_arm,
40 body_torso,
41 body_head,
42 body_neck,
43 body_skill,
44 body_finger,
45 body_shoulder,
46 body_foot,
47 body_hand,
48 body_wrist,
49 body_waist,
50 NUM_BODY_LOCATIONS
51};
37 52
38/* See common/item.c */ 53/* See common/item.c */
39 54
40typedef struct Body_Locations 55typedef struct Body_Locations
41{ 56{
92 * e.g. ->copy_to () 107 * e.g. ->copy_to ()
93 */ 108 */
94 109
95struct body_slot 110struct body_slot
96{ 111{
97 sint8 info:4; /* body info as loaded from the file */ 112 signed char info:4; /* body info as loaded from the file */
98 sint8 used:4; /* Calculated value based on items equipped */ 113 signed char used:4; /* Calculated value based on items equipped */
99}; 114};
100 115
101INTERFACE_CLASS (object) 116INTERFACE_CLASS (object)
102// these are being copied 117// these are being copied
103struct object_copy : attachable 118struct object_copy : attachable
104{ 119{
105 typedef bitset<NUM_FLAGS> flags_t; 120 typedef bitset<NUM_FLAGS> flags_t;
106 121
107 sint16 ACC (RW, x), ACC (RW, y); /* Position in the map for this object */ 122 sint16 ACC (RW, x), ACC (RW, y); /* Position in the map for this object */
123
124 uint8 ACC (RW, type); /* PLAYER, BULLET, etc. See define.h */
125 uint8 ACC (RW, subtype); /* subtype of object */
108 sint8 ACC (RW, direction); /* Means the object is moving that way. */ 126 sint8 ACC (RW, direction); /* Means the object is moving that way. */
109 sint8 ACC (RW, facing); /* Object is oriented/facing that way. */ 127 sint8 ACC (RW, facing); /* Object is oriented/facing that way. */
128
110 shstr ACC (RW, name); /* The name of the object, obviously... */ 129 shstr ACC (RW, name); /* The name of the object, obviously... */
111 shstr ACC (RW, name_pl); /* The plural name of the object */ 130 shstr ACC (RW, name_pl); /* The plural name of the object */
112 shstr ACC (RW, title); /* Of foo, etc */ 131 shstr ACC (RW, title); /* Of foo, etc */
113 shstr ACC (RW, race); /* human, goblin, dragon, etc */ 132 shstr ACC (RW, race); /* human, goblin, dragon, etc */
114 shstr ACC (RW, slaying); /* Which race to do double damage to */ 133 shstr ACC (RW, slaying); /* Which race to do double damage to */
133 float ACC (RW, speed); /* The overall speed of this object */ 152 float ACC (RW, speed); /* The overall speed of this object */
134 float ACC (RW, speed_left); /* How much speed is left to spend this round */ 153 float ACC (RW, speed_left); /* How much speed is left to spend this round */
135 uint32 ACC (RW, nrof); /* How many of the objects */ 154 uint32 ACC (RW, nrof); /* How many of the objects */
136 155
137 /* This next big block are basically used for monsters and equipment */ 156 /* This next big block are basically used for monsters and equipment */
138 uint8 ACC (RW, type); /* PLAYER, BULLET, etc. See define.h */
139 uint8 ACC (RW, subtype); /* subtype of object */
140 uint16 ACC (RW, client_type); /* Public type information. see doc/Developers/objects */ 157 uint16 ACC (RW, client_type); /* Public type information. see doc/Developers/objects */
158
141 sint16 ACC (RW, resist[NROFATTACKS]); /* Resistance adjustments for attacks */ 159 sint16 ACC (RW, resist[NROFATTACKS]); /* Resistance adjustments for attacks */
142 uint32 ACC (RW, attacktype); /* Bitmask of attacks this object does */ 160 uint32 ACC (RW, attacktype); /* Bitmask of attacks this object does */
143 uint32 ACC (RW, path_attuned);/* Paths the object is attuned to */ 161 uint32 ACC (RW, path_attuned);/* Paths the object is attuned to */
144 uint32 ACC (RW, path_repelled); /* Paths the object is repelled from */ 162 uint32 ACC (RW, path_repelled); /* Paths the object is repelled from */
145 uint32 ACC (RW, path_denied); /* Paths the object is denied access to */ 163 uint32 ACC (RW, path_denied); /* Paths the object is denied access to */
185 * Note that other fields are used - these files are basically 203 * Note that other fields are used - these files are basically
186 * only used in spells. 204 * only used in spells.
187 */ 205 */
188 sint16 ACC (RW, duration); /* How long the spell lasts */ 206 sint16 ACC (RW, duration); /* How long the spell lasts */
189 sint16 ACC (RW, casting_time);/* time left before spell goes off */ 207 sint16 ACC (RW, casting_time);/* time left before spell goes off */
208
190 uint16 ACC (RW, start_holding); 209 uint16 ACC (RW, start_holding);
191 uint8 ACC (RW, duration_modifier); /* how level modifies duration */ 210 uint8 ACC (RW, duration_modifier); /* how level modifies duration */
192 uint8 ACC (RW, dam_modifier); /* How going up in level effects damage */ 211 uint8 ACC (RW, dam_modifier); /* How going up in level effects damage */
212
193 sint8 ACC (RW, range); /* Range of the spell */ 213 sint8 ACC (RW, range); /* Range of the spell */
194 uint8 ACC (RW, range_modifier); /* How going up in level effects range */ 214 uint8 ACC (RW, range_modifier); /* How going up in level effects range */
195
196 MoveType ACC (RW, move_type); /* Type of movement this object uses */ 215 MoveType ACC (RW, move_type); /* Type of movement this object uses */
197 MoveType ACC (RW, move_block);/* What movement types this blocks */ 216 MoveType ACC (RW, move_block);/* What movement types this blocks */
217
198 MoveType ACC (RW, move_allow);/* What movement types explicitly allowd */ 218 MoveType ACC (RW, move_allow);/* What movement types explicitly allowd */
199 MoveType ACC (RW, move_on); /* Move types affected moving on to this space */ 219 MoveType ACC (RW, move_on); /* Move types affected moving on to this space */
200 MoveType ACC (RW, move_off); /* Move types affected moving off this space */ 220 MoveType ACC (RW, move_off); /* Move types affected moving off this space */
201 MoveType ACC (RW, move_slow); /* Movement types this slows down */ 221 MoveType ACC (RW, move_slow); /* Movement types this slows down */
222
202 float ACC (RW, move_slow_penalty); /* How much this slows down the object */ 223 float ACC (RW, move_slow_penalty); /* How much this slows down the object */
203 224
204 char *ACC (RW, spellarg); 225 char *ACC (RW, spellarg);
205 226
206 /* Following are values used by any object */ 227 /* Following are values used by any object */
246 object *head; /* Points to the main object of a large body */ // NO ACC, perl semantics are different 267 object *head; /* Points to the main object of a large body */ // NO ACC, perl semantics are different
247 client_container *seen_by; // seen by which player/container currently? 268 client_container *seen_by; // seen by which player/container currently?
248 key_value *key_values; /* Fields not explictly known by the loader. */ 269 key_value *key_values; /* Fields not explictly known by the loader. */
249 270
250 bool parse_kv (object_thawer &f); // parse kv pairs, (ab-)used by archetypes, which should not exist at all 271 bool parse_kv (object_thawer &f); // parse kv pairs, (ab-)used by archetypes, which should not exist at all
272 void post_load_check (); // do some adjustments after parsing
251 static object *read (object_thawer &f, maptile *map = 0); // map argument due to toal design bogosity, must go. 273 static object *read (object_thawer &f, maptile *map = 0); // map argument due to toal design bogosity, must go.
252 bool write (object_freezer &f); 274 bool write (object_freezer &f);
253 275
254 MTH static object *create (); 276 MTH static object *create ();
255 object &operator =(const object &src); 277 object &operator =(const object &src);
265 void do_remove (); 287 void do_remove ();
266 MTH void remove () 288 MTH void remove ()
267 { 289 {
268 if (!flag [FLAG_REMOVED]) 290 if (!flag [FLAG_REMOVED])
269 do_remove (); 291 do_remove ();
292 }
293
294 // move this object to the top of its env's inventory to speed up
295 // searches for it.
296 MTH void inv_splay ()
297 {
298 if (env && env->inv != this)
299 {
300 if (above) above->below = below;
301 if (below) below->above = above;
302
303 above = 0;
304 below = env->inv;
305 below->above = this;
306 env->inv = this;
307 }
270 } 308 }
271 309
272 static bool can_merge_slow (object *op1, object *op2); 310 static bool can_merge_slow (object *op1, object *op2);
273 311
274 // this is often used in time-critical code, so optimise 312 // this is often used in time-critical code, so optimise

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines