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.95 by root, Mon Feb 5 01:24:45 2007 UTC vs.
Revision 1.101 by root, Fri Feb 16 22:21:46 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 */
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.
228 object *ACC (RW, above); /* Pointer to the object stacked above this one */ 229 object *ACC (RW, above); /* Pointer to the object stacked above this one */
229 /* Note: stacked in the *same* environment */ 230 /* Note: stacked in the *same* environment */
230 object *inv; /* Pointer to the first object in the inventory */ 231 object *inv; /* Pointer to the first object in the inventory */
231 232
232 //TODO: container must move into client 233 //TODO: container must move into client
233 object *ACC (RW, container); /* Current container being used. I think this 234 object_ptr ACC (RW, container); /* Current container being used. I think this
234 * is only used by the player right now. 235 * is only used by the player right now.
235 */ 236 */
236 object *ACC (RW, env); /* Pointer to the object which is the environment. 237 object *ACC (RW, env); /* Pointer to the object which is the environment.
237 * This is typically the container that the object is in. 238 * This is typically the container that the object is in.
238 */ 239 */
239 object *ACC (RW, more); /* Pointer to the rest of a large body of objects */ 240 object *ACC (RW, more); /* Pointer to the rest of a large body of objects */
240 object *head; /* Points to the main object of a large body */ // NO ACC, perl semantics are different 241 object *head; /* Points to the main object of a large body */ // NO ACC, perl semantics are different
241 client_container *seen_by; // seen by which player/container currently? 242 client_container *seen_by; // seen by which player/container currently?
242 243
244 bool parse_kv (object_thawer &f); // parse kv pairs, (ab-)used by archetypes, which should not exist at all
245 static object *read (object_thawer &f, maptile *map = 0); // map argument due to toal design bogosity, must go.
246 bool write (object_freezer &f);
247
243 MTH static object *create (); 248 MTH static object *create ();
244 MTH void copy_to (object *dst); 249 MTH void copy_to (object *dst);
245 MTH object *clone (); // create + copy_to 250 MTH object *clone (); // create + copy_to
246 void do_destroy (); 251 void do_destroy ();
247 void gather_callbacks (AV *&callbacks, event_type event) const; 252 void gather_callbacks (AV *&callbacks, event_type event) const;
268 } 273 }
269 274
270 MTH void set_owner (object *owner); 275 MTH void set_owner (object *owner);
271 MTH void set_speed (float speed); 276 MTH void set_speed (float speed);
272 277
278 MTH void open_container (object *new_container);
279 MTH void close_container ()
280 {
281 open_container (0);
282 }
283
273 MTH void instantiate () 284 MTH void instantiate ();
274 {
275 if (!uuid.seq) // HACK
276 uuid = gen_uuid ();
277
278 attachable::instantiate ();
279 }
280 285
281 // recalculate all stats 286 // recalculate all stats
282 MTH void update_stats (); 287 MTH void update_stats ();
283 MTH void roll_stats (); 288 MTH void roll_stats ();
284 MTH void swap_stats (int a, int b); 289 MTH void swap_stats (int a, int b);
291 // info must hold 256 * 3 bytes currently 296 // info must hold 256 * 3 bytes currently
292 const char *debug_desc (char *info) const; 297 const char *debug_desc (char *info) const;
293 MTH const char *debug_desc () const; 298 MTH const char *debug_desc () const;
294 const char *debug_desc2 () const; // another debug_desc, pure convinience function 299 const char *debug_desc2 () const; // another debug_desc, pure convinience function
295 const char *flag_desc (char *desc, int len) const; 300 const char *flag_desc (char *desc, int len) const;
301
302 int number_of () const
303 {
304 return nrof ? nrof : 1;
305 }
306
307 uint64 total_weight () const
308 {
309 return weight * number_of ();
310 }
311
312 // return the dominant material of this item, always return something
313 const materialtype_t *dominant_material () const;
314
315 // return the volume of this object in cm³
316 uint64 volume () const
317 {
318 return total_weight ()
319 * 1000
320 * (type == CONTAINER ? 1000 : 1)
321 / dominant_material ()->density;
322 }
296 323
297 MTH bool is_weapon () const { return type == ARROW || type == BOW || type == WEAPON; } 324 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 325 MTH bool is_armor () const { return type == ARMOUR || type == SHIELD || type == HELMET
299 || type == CLOAK || type == BOOTS || type == GLOVES 326 || type == CLOAK || type == BOOTS || type == GLOVES
300 || type == BRACERS || type == GIRDLE; } 327 || type == BRACERS || type == GIRDLE; }
454{ 481{
455 archetype (); 482 archetype ();
456 ~archetype (); 483 ~archetype ();
457 void gather_callbacks (AV *&callbacks, event_type event) const; 484 void gather_callbacks (AV *&callbacks, event_type event) const;
458 485
486 static archetype *read (object_thawer &f);
459 static archetype *find (const char *name); 487 static archetype *find (const char *name);
460 488
461 void hash_add (); // add to hashtable 489 void hash_add (); // add to hashtable
462 void hash_del (); // remove from hashtable 490 void hash_del (); // remove from hashtable
463 491

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines