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.112 by root, Mon Apr 30 04:25:30 2007 UTC vs.
Revision 1.121 by root, Mon May 14 19:08:26 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 12 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};
52
53enum slottype_t
54{
55 slot_none,
56 slot_combat,
57 slot_ranged,
58};
37 59
38/* See common/item.c */ 60/* See common/item.c */
39 61
40typedef struct Body_Locations 62typedef struct Body_Locations
41{ 63{
90/* However, if you're keeping a pointer of some sort, you probably 112/* However, if you're keeping a pointer of some sort, you probably
91 * don't just want it copied, so you'll need to add to common/object.C, 113 * don't just want it copied, so you'll need to add to common/object.C,
92 * e.g. ->copy_to () 114 * e.g. ->copy_to ()
93 */ 115 */
94 116
117struct body_slot
118{
119 signed char info:4; /* body info as loaded from the file */
120 signed char used:4; /* Calculated value based on items equipped */
121};
122
95INTERFACE_CLASS (object) 123INTERFACE_CLASS (object)
96// these are being copied 124// these are being copied
97struct object_copy : attachable 125struct object_copy : attachable
98{ 126{
99 typedef bitset<NUM_FLAGS> flags_t; 127 typedef bitset<NUM_FLAGS> flags_t;
100 128
101 sint16 ACC (RW, x), ACC (RW, y); /* Position in the map for this object */ 129 sint16 ACC (RW, x), ACC (RW, y); /* Position in the map for this object */
130
131 uint8 ACC (RW, type); /* PLAYER, BULLET, etc. See define.h */
132 uint8 ACC (RW, subtype); /* subtype of object */
102 sint8 ACC (RW, direction); /* Means the object is moving that way. */ 133 sint8 ACC (RW, direction); /* Means the object is moving that way. */
103 sint8 ACC (RW, facing); /* Object is oriented/facing that way. */ 134 sint8 ACC (RW, facing); /* Object is oriented/facing that way. */
135
104 shstr ACC (RW, name); /* The name of the object, obviously... */ 136 shstr ACC (RW, name); /* The name of the object, obviously... */
105 shstr ACC (RW, name_pl); /* The plural name of the object */ 137 shstr ACC (RW, name_pl); /* The plural name of the object */
106 shstr ACC (RW, title); /* Of foo, etc */ 138 shstr ACC (RW, title); /* Of foo, etc */
107 shstr ACC (RW, race); /* human, goblin, dragon, etc */ 139 shstr ACC (RW, race); /* human, goblin, dragon, etc */
108 shstr ACC (RW, slaying); /* Which race to do double damage to */ 140 shstr ACC (RW, slaying); /* Which race to do double damage to */
127 float ACC (RW, speed); /* The overall speed of this object */ 159 float ACC (RW, speed); /* The overall speed of this object */
128 float ACC (RW, speed_left); /* How much speed is left to spend this round */ 160 float ACC (RW, speed_left); /* How much speed is left to spend this round */
129 uint32 ACC (RW, nrof); /* How many of the objects */ 161 uint32 ACC (RW, nrof); /* How many of the objects */
130 162
131 /* This next big block are basically used for monsters and equipment */ 163 /* This next big block are basically used for monsters and equipment */
132 uint8 ACC (RW, type); /* PLAYER, BULLET, etc. See define.h */
133 uint8 ACC (RW, subtype); /* subtype of object */
134 uint16 ACC (RW, client_type); /* Public type information. see doc/Developers/objects */ 164 uint16 ACC (RW, client_type); /* Public type information. see doc/Developers/objects */
165
135 sint16 ACC (RW, resist[NROFATTACKS]); /* Resistance adjustments for attacks */ 166 sint16 ACC (RW, resist[NROFATTACKS]); /* Resistance adjustments for attacks */
136 uint32 ACC (RW, attacktype); /* Bitmask of attacks this object does */ 167 uint32 ACC (RW, attacktype); /* Bitmask of attacks this object does */
137 uint32 ACC (RW, path_attuned);/* Paths the object is attuned to */ 168 uint32 ACC (RW, path_attuned);/* Paths the object is attuned to */
138 uint32 ACC (RW, path_repelled); /* Paths the object is repelled from */ 169 uint32 ACC (RW, path_repelled); /* Paths the object is repelled from */
139 uint32 ACC (RW, path_denied); /* Paths the object is denied access to */ 170 uint32 ACC (RW, path_denied); /* Paths the object is denied access to */
158 sint32 ACC (RW, weight_limit);/* Weight-limit of object */ 189 sint32 ACC (RW, weight_limit);/* Weight-limit of object */
159 sint32 ACC (RW, carrying); /* How much weight this object contains */ 190 sint32 ACC (RW, carrying); /* How much weight this object contains */
160 sint64 ACC (RW, perm_exp); /* Permanent exp */ 191 sint64 ACC (RW, perm_exp); /* Permanent exp */
161 uint32 ACC (RW, weapontype); /* type of weapon */ 192 uint32 ACC (RW, weapontype); /* type of weapon */
162 uint32 ACC (RW, tooltype); /* type of tool or build facility */ 193 uint32 ACC (RW, tooltype); /* type of tool or build facility */
163 sint8 ACC (RW, body_info[NUM_BODY_LOCATIONS]); /* body info as loaded from the file */ 194 body_slot slot [NUM_BODY_LOCATIONS];
164 sint8 ACC (RW, body_used[NUM_BODY_LOCATIONS]); /* Calculated value based on items equipped */
165 faceidx ACC (RW, face); /* Face with colors */ 195 faceidx ACC (RW, face); /* Face with colors */
166 living ACC (RO, stats); /* Str, Con, Dex, etc */ 196 living ACC (RO, stats); /* Str, Con, Dex, etc */
167 /* See the pod/objects.pod for more info about body locations */ 197 /* See the pod/objects.pod for more info about body locations */
168 198
169 /* Following mostly refers to fields only used for monsters */ 199 /* Following mostly refers to fields only used for monsters */
180 * Note that other fields are used - these files are basically 210 * Note that other fields are used - these files are basically
181 * only used in spells. 211 * only used in spells.
182 */ 212 */
183 sint16 ACC (RW, duration); /* How long the spell lasts */ 213 sint16 ACC (RW, duration); /* How long the spell lasts */
184 sint16 ACC (RW, casting_time);/* time left before spell goes off */ 214 sint16 ACC (RW, casting_time);/* time left before spell goes off */
215
185 uint16 ACC (RW, start_holding); 216 uint16 ACC (RW, start_holding);
186 uint8 ACC (RW, duration_modifier); /* how level modifies duration */ 217 uint8 ACC (RW, duration_modifier); /* how level modifies duration */
187 uint8 ACC (RW, dam_modifier); /* How going up in level effects damage */ 218 uint8 ACC (RW, dam_modifier); /* How going up in level effects damage */
219
188 sint8 ACC (RW, range); /* Range of the spell */ 220 sint8 ACC (RW, range); /* Range of the spell */
189 uint8 ACC (RW, range_modifier); /* How going up in level effects range */ 221 uint8 ACC (RW, range_modifier); /* How going up in level effects range */
190
191 MoveType ACC (RW, move_type); /* Type of movement this object uses */ 222 MoveType ACC (RW, move_type); /* Type of movement this object uses */
192 MoveType ACC (RW, move_block);/* What movement types this blocks */ 223 MoveType ACC (RW, move_block);/* What movement types this blocks */
224
193 MoveType ACC (RW, move_allow);/* What movement types explicitly allowd */ 225 MoveType ACC (RW, move_allow);/* What movement types explicitly allowd */
194 MoveType ACC (RW, move_on); /* Move types affected moving on to this space */ 226 MoveType ACC (RW, move_on); /* Move types affected moving on to this space */
195 MoveType ACC (RW, move_off); /* Move types affected moving off this space */ 227 MoveType ACC (RW, move_off); /* Move types affected moving off this space */
196 MoveType ACC (RW, move_slow); /* Movement types this slows down */ 228 MoveType ACC (RW, move_slow); /* Movement types this slows down */
229
197 float ACC (RW, move_slow_penalty); /* How much this slows down the object */ 230 float ACC (RW, move_slow_penalty); /* How much this slows down the object */
198 231
199 char *ACC (RW, spellarg); 232 char *ACC (RW, spellarg);
200 233
201 /* Following are values used by any object */ 234 /* Following are values used by any object */
241 object *head; /* Points to the main object of a large body */ // NO ACC, perl semantics are different 274 object *head; /* Points to the main object of a large body */ // NO ACC, perl semantics are different
242 client_container *seen_by; // seen by which player/container currently? 275 client_container *seen_by; // seen by which player/container currently?
243 key_value *key_values; /* Fields not explictly known by the loader. */ 276 key_value *key_values; /* Fields not explictly known by the loader. */
244 277
245 bool parse_kv (object_thawer &f); // parse kv pairs, (ab-)used by archetypes, which should not exist at all 278 bool parse_kv (object_thawer &f); // parse kv pairs, (ab-)used by archetypes, which should not exist at all
279 void post_load_check (); // do some adjustments after parsing
246 static object *read (object_thawer &f, maptile *map = 0); // map argument due to toal design bogosity, must go. 280 static object *read (object_thawer &f, maptile *map = 0); // map argument due to toal design bogosity, must go.
247 bool write (object_freezer &f); 281 bool write (object_freezer &f);
248 282
283 MTH int slottype () const;
249 MTH static object *create (); 284 MTH static object *create ();
250 object &operator =(const object &src); 285 object &operator =(const object &src);
251 MTH void copy_to (object *dst); 286 MTH void copy_to (object *dst);
252 MTH object *clone (); // create + copy_to 287 MTH object *clone (); // create + copy_to
253 void do_destroy (); 288 void do_destroy ();
262 { 297 {
263 if (!flag [FLAG_REMOVED]) 298 if (!flag [FLAG_REMOVED])
264 do_remove (); 299 do_remove ();
265 } 300 }
266 301
302 // move this object to the top of its env's inventory to speed up
303 // searches for it.
304 MTH void inv_splay ()
305 {
306 if (env && env->inv != this)
307 {
308 if (above) above->below = below;
309 if (below) below->above = above;
310
311 above = 0;
312 below = env->inv;
313 below->above = this;
314 env->inv = this;
315 }
316 }
317
267 static bool can_merge_slow (object *op1, object *op2); 318 static bool can_merge_slow (object *op1, object *op2);
268 319
269 // this is often used in time-critical code, so optimise 320 // this is often used in time-critical code, so optimise
270 MTH static bool can_merge (object *op1, object *op2) 321 MTH static bool can_merge (object *op1, object *op2)
271 { 322 {
274 && can_merge_slow (op1, op2); 325 && can_merge_slow (op1, op2);
275 } 326 }
276 327
277 MTH void set_owner (object *owner); 328 MTH void set_owner (object *owner);
278 MTH void set_speed (float speed); 329 MTH void set_speed (float speed);
330 MTH bool change_weapon (object *ob);
279 331
280 MTH void open_container (object *new_container); 332 MTH void open_container (object *new_container);
281 MTH void close_container () 333 MTH void close_container ()
282 { 334 {
283 open_container (0); 335 open_container (0);
295 MTH void drain_specific_stat (int deplete_stats); 347 MTH void drain_specific_stat (int deplete_stats);
296 MTH void change_luck (int value); 348 MTH void change_luck (int value);
297 349
298 // info must hold 256 * 3 bytes currently 350 // info must hold 256 * 3 bytes currently
299 const char *debug_desc (char *info) const; 351 const char *debug_desc (char *info) const;
300 MTH const char *debug_desc () const; 352 MTH const char *debug_desc () const; // uses at least 3 round-robin buffers
301 const char *debug_desc2 () const; // another debug_desc, pure convinience function
302 const char *flag_desc (char *desc, int len) const; 353 const char *flag_desc (char *desc, int len) const;
303 354
304 int number_of () const 355 int number_of () const
305 { 356 {
306 return nrof ? nrof : 1; 357 return nrof ? nrof : 1;
332 || (flag [FLAG_ALIVE] && !flag [FLAG_GENERATOR] && type != DOOR)) 383 || (flag [FLAG_ALIVE] && !flag [FLAG_GENERATOR] && type != DOOR))
333 && !flag [FLAG_IS_A_TEMPLATE]; } 384 && !flag [FLAG_IS_A_TEMPLATE]; }
334 MTH bool is_arrow () const { return type == ARROW 385 MTH bool is_arrow () const { return type == ARROW
335 || (type == SPELL_EFFECT 386 || (type == SPELL_EFFECT
336 && (subtype == SP_BULLET || subtype == SP_MAGIC_MISSILE)); } 387 && (subtype == SP_BULLET || subtype == SP_MAGIC_MISSILE)); }
388 MTH bool is_range () const { return type == BOW || type == ROD || type == WAND || type == HORN; }
337 389
338 MTH bool has_active_speed () const { return FABS(speed) >= MIN_ACTIVE_SPEED; } 390 MTH bool has_active_speed () const { return FABS(speed) >= MIN_ACTIVE_SPEED; }
339 391
340 // temporary: wether the object can be saved in a map file 392 // temporary: wether the object can be saved in a map file
341 // contr => is a player 393 // contr => is a player

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines