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

Comparing deliantra/server/common/object.C (file contents):
Revision 1.136 by root, Thu Mar 15 14:23:02 2007 UTC vs.
Revision 1.148 by root, Mon May 14 19:08:25 2007 UTC

1/* 1/*
2 * CrossFire, A Multiplayer game for X-windows 2 * CrossFire, A Multiplayer game
3 * 3 *
4 * Copyright (C) 2005, 2006, 2007 Marc Lehmann & Crossfire+ Development Team 4 * Copyright (C) 2005, 2006, 2007 Marc Lehmann & Crossfire+ Development Team
5 * Copyright (C) 2001 Mark Wedel & Crossfire Development Team 5 * Copyright (C) 2001 Mark Wedel & Crossfire Development Team
6 * Copyright (C) 1992 Frank Tore Johansen 6 * Copyright (C) 1992 Frank Tore Johansen
7 * 7 *
29#include <stdio.h> 29#include <stdio.h>
30#include <sys/types.h> 30#include <sys/types.h>
31#include <sys/uio.h> 31#include <sys/uio.h>
32#include <object.h> 32#include <object.h>
33#include <funcpoint.h> 33#include <funcpoint.h>
34#include <sproto.h>
34#include <loader.h> 35#include <loader.h>
35 36
36#include <bitset> 37#include <bitset>
37 38
38int nrofallocobjects = 0; 39int nrofallocobjects = 0;
324sum_weight (object *op) 325sum_weight (object *op)
325{ 326{
326 long sum; 327 long sum;
327 object *inv; 328 object *inv;
328 329
329 for (sum = 0, inv = op->inv; inv != NULL; inv = inv->below) 330 for (sum = 0, inv = op->inv; inv; inv = inv->below)
330 { 331 {
331 if (inv->inv) 332 if (inv->inv)
332 sum_weight (inv); 333 sum_weight (inv);
334
333 sum += inv->carrying + inv->weight * (inv->nrof ? inv->nrof : 1); 335 sum += inv->carrying + inv->weight * (inv->nrof ? inv->nrof : 1);
334 } 336 }
335 337
336 if (op->type == CONTAINER && op->stats.Str) 338 if (op->type == CONTAINER && op->stats.Str)
337 sum = (sum * (100 - op->stats.Str)) / 100; 339 sum = (sum * (100 - op->stats.Str)) / 100;
448 owner = owner->owner; 450 owner = owner->owner;
449 451
450 this->owner = owner; 452 this->owner = owner;
451} 453}
452 454
455int
456object::slottype () const
457{
458 if (type == SKILL)
459 {
460 if (IS_COMBAT_SKILL (subtype)) return slot_combat;
461 if (IS_RANGED_SKILL (subtype)) return slot_ranged;
462 }
463 else
464 {
465 if (slot [body_combat].info) return slot_combat;
466 if (slot [body_range ].info) return slot_ranged;
467 }
468
469 return slot_none;
470}
471
472bool
473object::change_weapon (object *ob)
474{
475 if (current_weapon == ob)
476 return true;
477
478 if (chosen_skill)
479 chosen_skill->flag [FLAG_APPLIED] = false;
480
481 current_weapon = ob;
482 chosen_skill = !ob || ob->type == SKILL ? ob : find_skill_by_name (this, ob->skill);
483
484 if (chosen_skill)
485 chosen_skill->flag [FLAG_APPLIED] = true;
486
487 update_stats ();
488
489 if (ob)
490 {
491 // now check wether any body locations became invalid, in which case
492 // we cannot apply the weapon at the moment.
493 for (int i = 0; i < NUM_BODY_LOCATIONS; ++i)
494 if (slot[i].used < 0)
495 {
496 current_weapon = chosen_skill = 0;
497 update_stats ();
498
499 new_draw_info_format (NDI_UNIQUE, 0, this,
500 "You try to balance your applied items all at once, but the %s is too much. "
501 "You need to unapply some items first.", &ob->name);
502 return false;
503 }
504
505 //new_draw_info_format (NDI_UNIQUE, 0, this, "You switch to your %s.", &ob->name);
506 }
507 else
508 ;//new_draw_info_format (NDI_UNIQUE, 0, this, "You unwield your weapons.");
509
510 return true;
511}
512
453/* Zero the key_values on op, decrementing the shared-string 513/* Zero the key_values on op, decrementing the shared-string
454 * refcounts and freeing the links. 514 * refcounts and freeing the links.
455 */ 515 */
456static void 516static void
457free_key_values (object *op) 517free_key_values (object *op)
458{ 518{
459 for (key_value *i = op->key_values; i != 0;) 519 for (key_value *i = op->key_values; i; )
460 { 520 {
461 key_value *next = i->next; 521 key_value *next = i->next;
462 delete i; 522 delete i;
463 523
464 i = next; 524 i = next;
465 } 525 }
466 526
467 op->key_values = 0; 527 op->key_values = 0;
468} 528}
469 529
470/* 530object &
471 * copy_to first frees everything allocated by the dst object, 531object::operator =(const object &src)
472 * and then copies the contents of itself into the second
473 * object, allocating what needs to be allocated. Basically, any
474 * data that is malloc'd needs to be re-malloc/copied. Otherwise,
475 * if the first object is freed, the pointers in the new object
476 * will point at garbage.
477 */
478void
479object::copy_to (object *dst)
480{ 532{
481 bool is_freed = QUERY_FLAG (dst, FLAG_FREED); 533 bool is_freed = flag [FLAG_FREED];
482 bool is_removed = QUERY_FLAG (dst, FLAG_REMOVED); 534 bool is_removed = flag [FLAG_REMOVED];
483 535
484 *(object_copy *)dst = *this; 536 *(object_copy *)this = src;
485 537
486 if (is_freed) 538 flag [FLAG_FREED] = is_freed;
487 SET_FLAG (dst, FLAG_FREED); 539 flag [FLAG_REMOVED] = is_removed;
488
489 if (is_removed)
490 SET_FLAG (dst, FLAG_REMOVED);
491
492 if (speed < 0)
493 dst->speed_left = speed_left - rndm ();
494 540
495 /* Copy over key_values, if any. */ 541 /* Copy over key_values, if any. */
496 if (key_values) 542 if (src.key_values)
497 { 543 {
498 key_value *tail = 0; 544 key_value *tail = 0;
499 key_value *i;
500
501 dst->key_values = 0; 545 key_values = 0;
502 546
503 for (i = key_values; i; i = i->next) 547 for (key_value *i = src.key_values; i; i = i->next)
504 { 548 {
505 key_value *new_link = new key_value; 549 key_value *new_link = new key_value;
506 550
507 new_link->next = 0; 551 new_link->next = 0;
508 new_link->key = i->key; 552 new_link->key = i->key;
509 new_link->value = i->value; 553 new_link->value = i->value;
510 554
511 /* Try and be clever here, too. */ 555 /* Try and be clever here, too. */
512 if (!dst->key_values) 556 if (!key_values)
513 { 557 {
514 dst->key_values = new_link; 558 key_values = new_link;
515 tail = new_link; 559 tail = new_link;
516 } 560 }
517 else 561 else
518 { 562 {
519 tail->next = new_link; 563 tail->next = new_link;
520 tail = new_link; 564 tail = new_link;
521 } 565 }
522 } 566 }
523 } 567 }
568}
569
570/*
571 * copy_to first frees everything allocated by the dst object,
572 * and then copies the contents of itself into the second
573 * object, allocating what needs to be allocated. Basically, any
574 * data that is malloc'd needs to be re-malloc/copied. Otherwise,
575 * if the first object is freed, the pointers in the new object
576 * will point at garbage.
577 */
578void
579object::copy_to (object *dst)
580{
581 *dst = *this;
582
583 if (speed < 0)
584 dst->speed_left = speed_left - rndm ();
524 585
525 dst->set_speed (dst->speed); 586 dst->set_speed (dst->speed);
526} 587}
527 588
528void 589void
536 * need for monsters, but doesn't hurt to do it for everything. 597 * need for monsters, but doesn't hurt to do it for everything.
537 * by doing so, when a monster is created, it has good starting 598 * by doing so, when a monster is created, it has good starting
538 * values for the body_used info, so when items are created 599 * values for the body_used info, so when items are created
539 * for it, they can be properly equipped. 600 * for it, they can be properly equipped.
540 */ 601 */
541 memcpy (body_used, body_info, sizeof (body_used)); 602 for (int i = NUM_BODY_LOCATIONS; i--; )
603 slot[i].used = slot[i].info;
542 604
543 attachable::instantiate (); 605 attachable::instantiate ();
544} 606}
545 607
546object * 608object *
834 896
835 if (flag [FLAG_IS_LINKED]) 897 if (flag [FLAG_IS_LINKED])
836 remove_button_link (this); 898 remove_button_link (this);
837 899
838 if (flag [FLAG_FRIENDLY]) 900 if (flag [FLAG_FRIENDLY])
839 {
840 remove_friendly_object (this); 901 remove_friendly_object (this);
841
842 if (type == GOLEM
843 && owner
844 && owner->type == PLAYER
845 && owner->contr->ranges[range_golem] == this)
846 owner->contr->ranges[range_golem] = 0;
847 }
848 902
849 if (!flag [FLAG_REMOVED]) 903 if (!flag [FLAG_REMOVED])
850 remove (); 904 remove ();
851 905
852 destroy_inv (true); 906 destroy_inv (true);
1109 return top; 1163 return top;
1110 } 1164 }
1111 } 1165 }
1112 1166
1113 return 0; 1167 return 0;
1168}
1169
1170void
1171object::expand_tail ()
1172{
1173 if (more)
1174 return;
1175
1176 object *prev = this;
1177
1178 for (archetype *at = arch->more; at; at = at->more)
1179 {
1180 object *op = arch_to_object (at);
1181
1182 op->name = name;
1183 op->name_pl = name_pl;
1184 op->title = title;
1185
1186 op->head = this;
1187 prev->more = op;
1188
1189 prev = op;
1190 }
1114} 1191}
1115 1192
1116/* 1193/*
1117 * same as insert_ob_in_map except it handles separate coordinates and does a clean 1194 * same as insert_ob_in_map except it handles separate coordinates and does a clean
1118 * job preparing multi-part monsters. 1195 * job preparing multi-part monsters.
1150 * just 'op' otherwise 1227 * just 'op' otherwise
1151 */ 1228 */
1152object * 1229object *
1153insert_ob_in_map (object *op, maptile *m, object *originator, int flag) 1230insert_ob_in_map (object *op, maptile *m, object *originator, int flag)
1154{ 1231{
1232 assert (!op->flag [FLAG_FREED]);
1233
1155 object *tmp, *top, *floor = NULL; 1234 object *tmp, *top, *floor = NULL;
1156 1235
1157 if (QUERY_FLAG (op, FLAG_FREED))
1158 {
1159 LOG (llevError, "Trying to insert freed object!\n");
1160 return NULL;
1161 }
1162
1163 if (!QUERY_FLAG (op, FLAG_REMOVED))
1164 LOG (llevError, "Trying to insert already inserted object %s\n", op->debug_desc ());
1165
1166 op->remove (); 1236 op->remove ();
1167 1237
1168 if (!m) 1238#if 0
1169 { 1239 if (!m->active != !op->active)
1170 char *dump = dump_object (op); 1240 if (m->active)
1171 LOG (llevError, "Trying to insert in null-map!\n%s\n", dump); 1241 op->activate_recursive ();
1172 free (dump); 1242 else
1173 return op; 1243 op->deactivate_recursive ();
1174 } 1244#endif
1175 1245
1176 if (out_of_map (m, op->x, op->y)) 1246 if (out_of_map (m, op->x, op->y))
1177 { 1247 {
1178 char *dump = dump_object (op);
1179 LOG (llevError, "Trying to insert object outside the map.\n%s\n", dump); 1248 LOG (llevError, "Trying to insert object outside the map.\n%s\n", op->debug_desc ());
1180#ifdef MANY_CORES 1249#ifdef MANY_CORES
1181 /* Better to catch this here, as otherwise the next use of this object 1250 /* Better to catch this here, as otherwise the next use of this object
1182 * is likely to cause a crash. Better to find out where it is getting 1251 * is likely to cause a crash. Better to find out where it is getting
1183 * improperly inserted. 1252 * improperly inserted.
1184 */ 1253 */
1185 abort (); 1254 abort ();
1186#endif 1255#endif
1187 free (dump);
1188 return op; 1256 return op;
1189 } 1257 }
1190 1258
1191 if (object *more = op->more) 1259 if (object *more = op->more)
1192 { 1260 {
1429 tmp1->x = op->x; 1497 tmp1->x = op->x;
1430 tmp1->y = op->y; 1498 tmp1->y = op->y;
1431 insert_ob_in_map (tmp1, op->map, op, 0); 1499 insert_ob_in_map (tmp1, op->map, op, 0);
1432} 1500}
1433 1501
1434// XXX: function not returning object*
1435object * 1502object *
1436object::insert_at (object *where, object *originator, int flags) 1503object::insert_at (object *where, object *originator, int flags)
1437{ 1504{
1438 where->map->insert (this, where->x, where->y, originator, flags); 1505 return where->map->insert (this, where->x, where->y, originator, flags);
1439} 1506}
1440 1507
1441/* 1508/*
1442 * get_split_ob(ob,nr) splits up ob into two parts. The part which 1509 * get_split_ob(ob,nr) splits up ob into two parts. The part which
1443 * is returned contains nr objects, and the remaining parts contains 1510 * is returned contains nr objects, and the remaining parts contains
1483 * the amount of an object. If the amount reaches 0, the object 1550 * the amount of an object. If the amount reaches 0, the object
1484 * is subsequently removed and freed. 1551 * is subsequently removed and freed.
1485 * 1552 *
1486 * Return value: 'op' if something is left, NULL if the amount reached 0 1553 * Return value: 'op' if something is left, NULL if the amount reached 0
1487 */ 1554 */
1488
1489object * 1555object *
1490decrease_ob_nr (object *op, uint32 i) 1556decrease_ob_nr (object *op, uint32 i)
1491{ 1557{
1492 object *tmp; 1558 object *tmp;
1493 1559
1568 1634
1569/* 1635/*
1570 * add_weight(object, weight) adds the specified weight to an object, 1636 * add_weight(object, weight) adds the specified weight to an object,
1571 * and also updates how much the environment(s) is/are carrying. 1637 * and also updates how much the environment(s) is/are carrying.
1572 */ 1638 */
1573
1574void 1639void
1575add_weight (object *op, signed long weight) 1640add_weight (object *op, signed long weight)
1576{ 1641{
1577 while (op != NULL) 1642 while (op != NULL)
1578 { 1643 {
1610 * inside the object environment. 1675 * inside the object environment.
1611 * 1676 *
1612 * The function returns now pointer to inserted item, and return value can 1677 * The function returns now pointer to inserted item, and return value can
1613 * be != op, if items are merged. -Tero 1678 * be != op, if items are merged. -Tero
1614 */ 1679 */
1615
1616object * 1680object *
1617object::insert (object *op) 1681object::insert (object *op)
1618{ 1682{
1619 object *tmp, *otmp; 1683 object *tmp, *otmp;
1620 1684
2580} 2644}
2581 2645
2582const char * 2646const char *
2583object::debug_desc () const 2647object::debug_desc () const
2584{ 2648{
2585 static char info[256 * 4]; 2649 static char info[3][256 * 4];
2650 static int info_idx;
2651
2586 return debug_desc (info); 2652 return debug_desc (info [++info_idx % 3]);
2587}
2588
2589const char *
2590object::debug_desc2 () const
2591{
2592 static char info[256 * 4];
2593 return debug_desc (info);
2594} 2653}
2595 2654
2596struct region * 2655struct region *
2597object::region () const 2656object::region () const
2598{ 2657{

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines