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.88 by root, Thu Jan 18 16:19:34 2007 UTC vs.
Revision 1.98 by root, Wed Feb 7 23:50:01 2007 UTC

110 shstr ACC (RW, msg); /* If this is a book/sign/magic mouth/etc */ 110 shstr ACC (RW, msg); /* If this is a book/sign/magic mouth/etc */
111 shstr ACC (RW, lore); /* Obscure information about this object, */ 111 shstr ACC (RW, lore); /* Obscure information about this object, */
112 /* To get put into books and the like. */ 112 /* To get put into books and the like. */
113 shstr ACC (RW, materialname); /* specific material name */ 113 shstr ACC (RW, materialname); /* specific material name */
114 shstr ACC (RW, custom_name); /* Custom name assigned by player */ 114 shstr ACC (RW, custom_name); /* Custom name assigned by player */
115// materialtype_t *ACC (RW, material); /* What material this object consists of */
115 object_ptr ACC (RW, owner); /* Pointer to the object which controls this one */ 116 object_ptr ACC (RW, owner); /* Pointer to the object which controls this one */
116 object_ptr ACC (RW, enemy); /* Monster/player to follow even if not closest */ 117 object_ptr ACC (RW, enemy); /* Monster/player to follow even if not closest */
117 object_ptr ACC (RW, attacked_by); /* This object start to attack us! only player & monster */ 118 object_ptr ACC (RW, attacked_by); /* This object start to attack us! only player & monster */
118 object_ptr ACC (RW, chosen_skill); /* the skill chosen to use */ 119 object_ptr ACC (RW, chosen_skill); /* the skill chosen to use */
119 object_ptr ACC (RW, spellitem); /* Spell ability monster is choosing to use */ 120 object_ptr ACC (RW, spellitem); /* Spell ability monster is choosing to use */
120 object_ptr ACC (RW, spell); /* Spell that was being cast */ 121 object_ptr ACC (RW, spell); /* Spell that was being cast */
121 object_ptr ACC (RW, current_weapon); /* Pointer to the weapon currently used */ 122 object_ptr ACC (RW, current_weapon); /* Pointer to the weapon currently used */
122 arch_ptr ACC (RW, arch); /* Pointer to archetype */ 123 arch_ptr ACC (RW, arch); /* Pointer to archetype */
123 arch_ptr ACC (RW, other_arch);/* Pointer used for various things - mostly used for what */ 124 arch_ptr ACC (RW, other_arch);/* Pointer used for various things - mostly used for what */
124 125
125 New_Face *ACC (RW, face); /* Face with colors */ 126 facetile *ACC (RW, face); /* Face with colors */
126 float ACC (RW, speed); /* The overall speed of this object */ 127 float ACC (RW, speed); /* The overall speed of this object */
127 float ACC (RW, speed_left); /* How much speed is left to spend this round */ 128 float ACC (RW, speed_left); /* How much speed is left to spend this round */
128 uint32 ACC (RW, nrof); /* How many of the objects */ 129 uint32 ACC (RW, nrof); /* How many of the objects */
129 130
130 /* This next big block are basically used for monsters and equipment */ 131 /* This next big block are basically used for monsters and equipment */
134 sint16 ACC (RW, resist[NROFATTACKS]); /* Resistance adjustments for attacks */ 135 sint16 ACC (RW, resist[NROFATTACKS]); /* Resistance adjustments for attacks */
135 uint32 ACC (RW, attacktype); /* Bitmask of attacks this object does */ 136 uint32 ACC (RW, attacktype); /* Bitmask of attacks this object does */
136 uint32 ACC (RW, path_attuned);/* Paths the object is attuned to */ 137 uint32 ACC (RW, path_attuned);/* Paths the object is attuned to */
137 uint32 ACC (RW, path_repelled); /* Paths the object is repelled from */ 138 uint32 ACC (RW, path_repelled); /* Paths the object is repelled from */
138 uint32 ACC (RW, path_denied); /* Paths the object is denied access to */ 139 uint32 ACC (RW, path_denied); /* Paths the object is denied access to */
139 uint16 ACC (RW, material); /* What materials this object consist of */ 140 uint16 ACC (RW, materials); /* What materials this object consists of */
140 sint8 ACC (RW, magic); /* Any magical bonuses to this item */ 141 sint8 ACC (RW, magic); /* Any magical bonuses to this item */
141 uint8 ACC (RW, state); /* How the object was last drawn (animation) */ 142 uint8 ACC (RW, state); /* How the object was last drawn (animation) */
142 sint32 ACC (RW, value); /* How much money it is worth (or contains) */ 143 sint32 ACC (RW, value); /* How much money it is worth (or contains) */
143 /* Note that the last_.. values are sometimes used for non obvious 144 /* Note that the last_.. values are sometimes used for non obvious
144 * meanings by some objects, eg, sp penalty, permanent exp. 145 * meanings by some objects, eg, sp penalty, permanent exp.
248 MTH void destroy (bool destroy_inventory = false); 249 MTH void destroy (bool destroy_inventory = false);
249 250
250 // recursively destroy all objects in inventory, optionally dropping them to the ground instead 251 // recursively destroy all objects in inventory, optionally dropping them to the ground instead
251 MTH void destroy_inv (bool drop_to_ground = false); 252 MTH void destroy_inv (bool drop_to_ground = false);
252 MTH object *insert (object *item); // insert into inventory 253 MTH object *insert (object *item); // insert into inventory
253 void remove_slow (); 254 void do_remove ();
254 MTH void remove () 255 MTH void remove ()
255 { 256 {
256 if (!flag [FLAG_REMOVED]) 257 if (!flag [FLAG_REMOVED])
257 remove_slow (); 258 do_remove ();
258 } 259 }
259 260
260 static bool can_merge_slow (object *op1, object *op2); 261 static bool can_merge_slow (object *op1, object *op2);
261 262
262 // this is often used in time-critical code, so optimise 263 // this is often used in time-critical code, so optimise
291 // info must hold 256 * 3 bytes currently 292 // info must hold 256 * 3 bytes currently
292 const char *debug_desc (char *info) const; 293 const char *debug_desc (char *info) const;
293 MTH const char *debug_desc () const; 294 MTH const char *debug_desc () const;
294 const char *debug_desc2 () const; // another debug_desc, pure convinience function 295 const char *debug_desc2 () const; // another debug_desc, pure convinience function
295 const char *flag_desc (char *desc, int len) const; 296 const char *flag_desc (char *desc, int len) const;
297
298 int number_of () const
299 {
300 return nrof ? nrof : 1;
301 }
302
303 uint64 total_weight () const
304 {
305 return weight * number_of ();
306 }
307
308 // return the dominant material of this item, always return something
309 const materialtype_t *dominant_material () const;
310
311 // return the volume of this object in cm³
312 uint64 volume () const
313 {
314 return total_weight ()
315 * 1000
316 * (type == CONTAINER ? 1000 : 1)
317 / dominant_material ()->density;
318 }
296 319
297 MTH bool is_weapon () const { return type == ARROW || type == BOW || type == WEAPON; } 320 MTH bool is_weapon () const { return type == ARROW || type == BOW || type == WEAPON; }
298 MTH bool is_armor () const { return type == ARMOUR || type == SHIELD || type == HELMET 321 MTH bool is_armor () const { return type == ARMOUR || type == SHIELD || type == HELMET
299 || type == CLOAK || type == BOOTS || type == GLOVES 322 || type == CLOAK || type == BOOTS || type == GLOVES
300 || type == BRACERS || type == GIRDLE; } 323 || type == BRACERS || type == GIRDLE; }
310 333
311 // temporary: wether the object can be saved in a map file 334 // temporary: wether the object can be saved in a map file
312 // contr => is a player 335 // contr => is a player
313 // head => only save head of a multitile object 336 // head => only save head of a multitile object
314 // owner => can not reference owner yet 337 // owner => can not reference owner yet
315 MTH bool can_map_save () const { return !contr && !head && !owner && !flag [FLAG_NO_SAVE]; } 338 MTH bool can_map_save () const { return !contr && !head && !owner && !flag [FLAG_NO_MAP_SAVE]; }
316 339
317 /* This return true if object has still randomitems which 340 /* This return true if object has still randomitems which
318 * could be expanded. 341 * could be expanded.
319 */ 342 */
320 MTH bool has_random_items () const { return randomitems && !flag [FLAG_IS_A_TEMPLATE]; } 343 MTH bool has_random_items () const { return randomitems && !flag [FLAG_IS_A_TEMPLATE]; }
398 */ 421 */
399 MTH bool client_visible () const 422 MTH bool client_visible () const
400 { 423 {
401 return !invisible && type != PLAYER; 424 return !invisible && type != PLAYER;
402 } 425 }
426
427 MTH struct region *region () const;
403 428
404protected: 429protected:
405 friend struct archetype; 430 friend struct archetype;
406 431
407 void link (); 432 void link ();
452{ 477{
453 archetype (); 478 archetype ();
454 ~archetype (); 479 ~archetype ();
455 void gather_callbacks (AV *&callbacks, event_type event) const; 480 void gather_callbacks (AV *&callbacks, event_type event) const;
456 481
457 static archetype *find (const char *arch); 482 static archetype *find (const char *name);
458 483
459 void hash_add (); // add to hashtable 484 void hash_add (); // add to hashtable
460 void hash_del (); // remove from hashtable 485 void hash_del (); // remove from hashtable
461 486
462 shstr ACC (RW, name); /* More definite name, like "generate_kobold" */ 487 shstr ACC (RW, name); /* More definite name, like "generate_kobold" */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines