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.208 by root, Mon Apr 21 06:16:01 2008 UTC vs.
Revision 1.217 by root, Wed Apr 23 07:13:23 2008 UTC

24#include <global.h> 24#include <global.h>
25#include <stdio.h> 25#include <stdio.h>
26#include <sys/types.h> 26#include <sys/types.h>
27#include <sys/uio.h> 27#include <sys/uio.h>
28#include <object.h> 28#include <object.h>
29#include <funcpoint.h>
30#include <sproto.h> 29#include <sproto.h>
31#include <loader.h> 30#include <loader.h>
32 31
33#include <bitset> 32#include <bitset>
34 33
331 330
332 /* Everything passes, must be OK. */ 331 /* Everything passes, must be OK. */
333 return 1; 332 return 1;
334} 333}
335 334
335// find player who can see this object
336object *
337object::visible_to () const
338{
339 if (!flag [FLAG_REMOVED])
340 {
341 // see if we are in a container of sorts
342 if (env)
343 {
344 // the player inventory itself is always visible
345 if (env->type == PLAYER)
346 return env;
347
348 // else a player could have our env open
349 object *envest = env->outer_env ();
350
351 // the player itself is always on a map, so we will find him here
352 // even if our inv is in a player.
353 if (envest->is_on_map ())
354 if (object *pl = envest->ms ().player ())
355 if (pl->container == env)
356 return pl;
357 }
358 else
359 {
360 // maybe there is a player standing on the same mapspace
361 // this will catch the case where "this" is a player
362 if (object *pl = ms ().player ())
363 return pl;
364 }
365 }
366
367 return 0;
368}
369
336// adjust weight per container type ("of holding") 370// adjust weight per container type ("of holding")
337static sint32 371static sint32
338weight_adjust (object *op, sint32 weight) 372weight_adjust (object *op, sint32 weight)
339{ 373{
340 return op->type == CONTAINER 374 return op->type == CONTAINER
351{ 385{
352 while (op) 386 while (op)
353 { 387 {
354 weight = weight_adjust (op, weight); 388 weight = weight_adjust (op, weight);
355 389
390 if (!weight)
391 return;
392
356 op->carrying += weight; 393 op->carrying += weight;
394
395 if (object *pl = op->visible_to ())
396 if (pl != op) // player is handled lazily
397 esrv_update_item (UPD_WEIGHT, pl, op);
398
357 op = op->env; 399 op = op->env;
358 } 400 }
359} 401}
360 402
361/* 403/*
374 op->update_weight (); 416 op->update_weight ();
375 417
376 sum += op->total_weight (); 418 sum += op->total_weight ();
377 } 419 }
378 420
379 carrying = weight_adjust (this, sum); 421 sum = weight_adjust (this, sum);
422
423 if (sum != carrying)
424 {
425 carrying = sum;
426
427 if (object *pl = visible_to ())
428 if (pl != this) // player is handled lazily
429 esrv_update_item (UPD_WEIGHT, pl, this);
430 }
380} 431}
381 432
382/* 433/*
383 * Used by: Server DM commands: dumpbelow, dump. Some error messages. 434 * Used by: Server DM commands: dumpbelow, dump. Some error messages.
384 */ 435 */
866object::destroy_inv (bool drop_to_ground) 917object::destroy_inv (bool drop_to_ground)
867{ 918{
868 // need to check first, because the checks below might segfault 919 // need to check first, because the checks below might segfault
869 // as we might be on an invalid mapspace and crossfire code 920 // as we might be on an invalid mapspace and crossfire code
870 // is too buggy to ensure that the inventory is empty. 921 // is too buggy to ensure that the inventory is empty.
871 // corollary: if you create arrows etc. with stuff in tis inventory, 922 // corollary: if you create arrows etc. with stuff in its inventory,
872 // cf will crash below with off-map x and y 923 // cf will crash below with off-map x and y
873 if (!inv) 924 if (!inv)
874 return; 925 return;
875 926
876 /* Only if the space blocks everything do we not process - 927 /* Only if the space blocks everything do we not process -
883 || map->nodrop 934 || map->nodrop
884 || ms ().move_block == MOVE_ALL) 935 || ms ().move_block == MOVE_ALL)
885 { 936 {
886 while (inv) 937 while (inv)
887 { 938 {
888 inv->destroy_inv (drop_to_ground); 939 inv->destroy_inv (false);
889 inv->destroy (); 940 inv->destroy ();
890 } 941 }
891 } 942 }
892 else 943 else
893 { /* Put objects in inventory onto this space */ 944 { /* Put objects in inventory onto this space */
899 || op->flag [FLAG_NO_DROP] 950 || op->flag [FLAG_NO_DROP]
900 || op->type == RUNE 951 || op->type == RUNE
901 || op->type == TRAP 952 || op->type == TRAP
902 || op->flag [FLAG_IS_A_TEMPLATE] 953 || op->flag [FLAG_IS_A_TEMPLATE]
903 || op->flag [FLAG_DESTROY_ON_DEATH]) 954 || op->flag [FLAG_DESTROY_ON_DEATH])
904 op->destroy (); 955 op->destroy (true);
905 else 956 else
906 map->insert (op, x, y); 957 map->insert (op, x, y);
907 } 958 }
908 } 959 }
909} 960}
916} 967}
917 968
918void 969void
919object::do_destroy () 970object::do_destroy ()
920{ 971{
921 attachable::do_destroy ();
922
923 if (flag [FLAG_IS_LINKED]) 972 if (flag [FLAG_IS_LINKED])
924 remove_button_link (this); 973 remove_button_link (this);
925 974
926 if (flag [FLAG_FRIENDLY]) 975 if (flag [FLAG_FRIENDLY])
927 remove_friendly_object (this); 976 remove_friendly_object (this);
928 977
929 if (!flag [FLAG_REMOVED])
930 remove (); 978 remove ();
931 979
932 destroy_inv (true); 980 attachable::do_destroy ();
933 981
934 deactivate (); 982 deactivate ();
935 unlink (); 983 unlink ();
936 984
937 flag [FLAG_FREED] = 1; 985 flag [FLAG_FREED] = 1;
978object::destroy (bool destroy_inventory) 1026object::destroy (bool destroy_inventory)
979{ 1027{
980 if (destroyed ()) 1028 if (destroyed ())
981 return; 1029 return;
982 1030
983 if (destroy_inventory) 1031 destroy_inv (!destroy_inventory);
984 destroy_inv (false);
985 1032
986 if (is_head ()) 1033 if (is_head ())
987 if (sound_destroy) 1034 if (sound_destroy)
988 play_sound (sound_destroy); 1035 play_sound (sound_destroy);
989 else if (flag [FLAG_MONSTER]) 1036 else if (flag [FLAG_MONSTER])
1003object::do_remove () 1050object::do_remove ()
1004{ 1051{
1005 object *tmp, *last = 0; 1052 object *tmp, *last = 0;
1006 object *otmp; 1053 object *otmp;
1007 1054
1008 if (QUERY_FLAG (this, FLAG_REMOVED)) 1055 if (flag [FLAG_REMOVED])
1009 return; 1056 return;
1010 1057
1011 SET_FLAG (this, FLAG_REMOVED);
1012 INVOKE_OBJECT (REMOVE, this); 1058 INVOKE_OBJECT (REMOVE, this);
1059
1060 if (object *pl = visible_to ())
1061 esrv_del_item (pl->contr, count);
1062
1063 flag [FLAG_REMOVED] = true;
1013 1064
1014 if (more) 1065 if (more)
1015 more->remove (); 1066 more->remove ();
1016 1067
1017 /* 1068 /*
1098 * removed (most likely destroyed), update the player view 1149 * removed (most likely destroyed), update the player view
1099 * appropriately. 1150 * appropriately.
1100 */ 1151 */
1101 pl->close_container (); 1152 pl->close_container ();
1102 1153
1103 pl->contr->ns->floorbox_update (); 1154 esrv_del_item (pl, count);
1104 } 1155 }
1105 1156
1106 for (tmp = ms.bot; tmp; tmp = tmp->above) 1157 for (tmp = ms.bot; tmp; tmp = tmp->above)
1107 { 1158 {
1108 /* No point updating the players look faces if he is the object 1159 /* No point updating the players look faces if he is the object
1152 if (!top) 1203 if (!top)
1153 for (top = op; top && top->above; top = top->above) 1204 for (top = op; top && top->above; top = top->above)
1154 ; 1205 ;
1155 1206
1156 for (; top; top = top->below) 1207 for (; top; top = top->below)
1157 {
1158 if (top == op)
1159 continue;
1160
1161 if (object::can_merge (op, top)) 1208 if (object::can_merge (op, top))
1162 { 1209 {
1163 top->nrof += op->nrof; 1210 top->nrof += op->nrof;
1164 1211
1165/* CLEAR_FLAG(top,FLAG_STARTEQUIP);*/ 1212 if (object *pl = top->visible_to ())
1166 op->weight = 0; /* Don't want any adjustements now */ 1213 esrv_update_item (UPD_NROF, pl, top);
1214
1215 op->weight = 0; // cancel the addition above
1216 op->carrying = 0; // must be 0 already
1217
1167 op->destroy (); 1218 op->destroy (1);
1219
1168 return top; 1220 return top;
1169 } 1221 }
1170 }
1171 1222
1172 return 0; 1223 return 0;
1173} 1224}
1174 1225
1175void 1226void
1244 * of areas of callers (eg, anything that uses find_free_spot would now 1295 * of areas of callers (eg, anything that uses find_free_spot would now
1245 * need extra work 1296 * need extra work
1246 */ 1297 */
1247 if (!xy_normalise (m, op->x, op->y)) 1298 if (!xy_normalise (m, op->x, op->y))
1248 { 1299 {
1249 op->destroy (); 1300 op->destroy (1);
1250 return 0; 1301 return 0;
1251 } 1302 }
1252 1303
1253 if (object *more = op->more) 1304 if (object *more = op->more)
1254 if (!insert_ob_in_map (more, m, originator, flag)) 1305 if (!insert_ob_in_map (more, m, originator, flag))
1402 } 1453 }
1403 1454
1404 op->map->dirty = true; 1455 op->map->dirty = true;
1405 1456
1406 if (object *pl = ms.player ()) 1457 if (object *pl = ms.player ())
1407 pl->contr->ns->floorbox_update (); 1458 esrv_send_item (pl, op);
1408 1459
1409 /* If this object glows, it may affect lighting conditions that are 1460 /* If this object glows, it may affect lighting conditions that are
1410 * visible to others on this map. But update_all_los is really 1461 * visible to others on this map. But update_all_los is really
1411 * an inefficient way to do this, as it means los for all players 1462 * an inefficient way to do this, as it means los for all players
1412 * on the map will get recalculated. The players could very well 1463 * on the map will get recalculated. The players could very well
1478 else 1529 else
1479 return where->map->insert (this, where->x, where->y, originator, flags); 1530 return where->map->insert (this, where->x, where->y, originator, flags);
1480} 1531}
1481 1532
1482/* 1533/*
1483 * get_split_ob(ob,nr) splits up ob into two parts. The part which
1484 * is returned contains nr objects, and the remaining parts contains
1485 * the rest (or is removed and freed if that number is 0).
1486 * On failure, NULL is returned, and the reason put into the
1487 * global static errmsg array.
1488 */
1489object *
1490object::split_nr (sint32 nr)
1491{
1492 if (nrof < nr)
1493 return 0;
1494 else if (nrof == nr)
1495 {
1496 remove ();
1497 return this;
1498 }
1499 else
1500 {
1501 decrease_nr (nr);
1502
1503 object *op = object_create_clone (this);
1504 op->nrof = nr;
1505 return op;
1506 }
1507}
1508
1509//TODO: remove, but semantics differs from split_nr
1510object *
1511get_split_ob (object *orig_ob, uint32 nr)
1512{
1513 if (orig_ob->nrof < nr)
1514 {
1515 sprintf (errmsg, "There are only %d %ss.", orig_ob->nrof ? orig_ob->nrof : 1, &orig_ob->name);
1516 return 0;
1517 }
1518
1519 return orig_ob->split_nr (nr);
1520}
1521
1522// find player who can see this object
1523static object *
1524visible_to (object *op)
1525{
1526 if (!op->flag [FLAG_REMOVED])
1527 {
1528 // see if we are in a container of sorts
1529 if (object *env = op->env)
1530 {
1531 // the player inventory itself is always visible
1532 if (env->type == PLAYER)
1533 return env;
1534
1535 // else a player could have our env open
1536 env = env->outer_env ();
1537
1538 // the player itself is always on a map, so we will find him here
1539 // even if our inv is in a player.
1540 if (env->is_on_map ())
1541 if (object *pl = env->ms ().player ())
1542 if (pl->container == op->env)
1543 return pl;
1544 }
1545 else
1546 {
1547 // maybe there is a player standing on the same mapspace
1548 if (object *pl = env->ms ().player ())
1549 return pl;
1550 }
1551 }
1552
1553 return 0;
1554}
1555
1556/*
1557 * decrease_ob_nr(object, number) decreases a specified number from 1534 * decrease(object, number) decreases a specified number from
1558 * the amount of an object. If the amount reaches 0, the object 1535 * the amount of an object. If the amount reaches 0, the object
1559 * is subsequently removed and freed. 1536 * is subsequently removed and freed.
1560 * 1537 *
1561 * Return value: 'op' if something is left, NULL if the amount reached 0 1538 * Return value: 'op' if something is left, NULL if the amount reached 0
1562 */ 1539 */
1563bool 1540bool
1564object::decrease_nr (sint32 nr) 1541object::decrease (sint32 nr)
1565{ 1542{
1543 if (!nr)
1544 return true;
1545
1566 nr = min (nr, nrof); 1546 nr = min (nr, nrof);
1567 1547
1568 if (!nr)
1569 return 1;
1570
1571 nrof -= nr; 1548 nrof -= nr;
1572 1549
1573 object *visible = visible_to (this);
1574
1575 if (nrof) 1550 if (nrof)
1576 { 1551 {
1577 adjust_weight (env, -weight * nr); // carrying == 0 1552 adjust_weight (env, -weight * nr); // carrying == 0
1578 1553
1579 if (visible) 1554 if (object *pl = visible_to ())
1580 esrv_send_item (visible, this); 1555 esrv_update_item (UPD_NROF, pl, this);
1581 1556
1582 return 1; 1557 return true;
1583 } 1558 }
1584 else 1559 else
1585 { 1560 {
1586 if (visible)
1587 esrv_del_item (visible->contr, count);
1588
1589 this->destroy (1); 1561 destroy (1);
1590 return 0; 1562 return false;
1591 } 1563 }
1592} 1564}
1593 1565
1594//TODO: remove 1566/*
1567 * split(ob,nr) splits up ob into two parts. The part which
1568 * is returned contains nr objects, and the remaining parts contains
1569 * the rest (or is removed and returned if that number is 0).
1570 * On failure, NULL is returned.
1571 */
1595object * 1572object *
1596decrease_ob_nr (object *op, uint32 i) 1573object::split (sint32 nr)
1597{ 1574{
1598 return op->decrease_nr (i) ? op : 0; 1575 int have = number_of ();
1576
1577 if (have < nr)
1578 return 0;
1579 else if (have == nr)
1580 {
1581 remove ();
1582 return this;
1583 }
1584 else
1585 {
1586 decrease (nr);
1587
1588 object *op = object_create_clone (this);
1589 op->nrof = nr;
1590 return op;
1591 }
1599} 1592}
1600 1593
1601object * 1594object *
1602insert_ob_in_ob (object *op, object *where) 1595insert_ob_in_ob (object *op, object *where)
1603{ 1596{
1644 if (object::can_merge (tmp, op)) 1637 if (object::can_merge (tmp, op))
1645 { 1638 {
1646 /* return the original object and remove inserted object 1639 /* return the original object and remove inserted object
1647 (client needs the original object) */ 1640 (client needs the original object) */
1648 tmp->nrof += op->nrof; 1641 tmp->nrof += op->nrof;
1642
1643 if (object *pl = tmp->visible_to ())
1644 esrv_update_item (UPD_NROF, pl, tmp);
1645
1646 adjust_weight (this, op->total_weight ());
1647
1649 op->destroy (1); 1648 op->destroy (1);
1650 op = tmp; 1649 op = tmp;
1651 goto inserted; 1650 goto inserted;
1652 } 1651 }
1653 1652
1665 1664
1666 inv = op; 1665 inv = op;
1667 1666
1668 op->flag [FLAG_REMOVED] = 0; 1667 op->flag [FLAG_REMOVED] = 0;
1669 1668
1669 if (object *pl = op->visible_to ())
1670 esrv_send_item (pl, op);
1671
1670 adjust_weight (this, op->total_weight ()); 1672 adjust_weight (this, op->total_weight ());
1671 1673
1672inserted: 1674inserted:
1673 /* reset the light list and los of the players on the map */ 1675 /* reset the light list and los of the players on the map */
1674 if (op->glow_radius && map && map->darkness) 1676 if (op->glow_radius && map && map->darkness)
1675 update_all_los (map, x, y); 1677 update_all_los (map, x, y);
1676 1678
1677 if (object *otmp = in_player ()) 1679 // if this is a player's inventory, update stats
1678 if (otmp->contr && !QUERY_FLAG (otmp, FLAG_NO_FIX_PLAYER)) 1680 if (type == PLAYER && !flag [FLAG_NO_FIX_PLAYER])
1679 otmp->update_stats (); 1681 update_stats ();
1680 1682
1681 INVOKE_OBJECT (INSERT, this); 1683 INVOKE_OBJECT (INSERT, this);
1682 1684
1683 return op; 1685 return op;
1684} 1686}
2562 &name, 2564 &name,
2563 title ? "\",title:\"" : "", 2565 title ? "\",title:\"" : "",
2564 title ? (const char *)title : "", 2566 title ? (const char *)title : "",
2565 flag_desc (flagdesc, 512), type); 2567 flag_desc (flagdesc, 512), type);
2566 2568
2567 if (!this->flag[FLAG_REMOVED] && env) 2569 if (!flag[FLAG_REMOVED] && env)
2568 p += snprintf (p, 256, "(in %s)", env->debug_desc (info2)); 2570 p += snprintf (p, 256, "(in %s)", env->debug_desc (info2));
2569 2571
2570 if (map) 2572 if (map)
2571 p += snprintf (p, 256, "(on %s@%d+%d)", &map->path, x, y); 2573 p += snprintf (p, 256, "(on %s@%d+%d)", &map->path, x, y);
2572 2574
2614 if (object *closer = old_container->inv) 2616 if (object *closer = old_container->inv)
2615 if (closer->type == CLOSE_CON) 2617 if (closer->type == CLOSE_CON)
2616 closer->destroy (); 2618 closer->destroy ();
2617#endif 2619#endif
2618 2620
2619 old_container->flag [FLAG_APPLIED] = 0; 2621 old_container->flag [FLAG_APPLIED] = false;
2620 container = 0; 2622 container = 0;
2621 2623
2622 esrv_update_item (UPD_FLAGS, this, old_container); 2624 esrv_update_item (UPD_FLAGS, this, old_container);
2623 new_draw_info_format (NDI_UNIQUE, 0, this, "You close %s.", query_name (old_container)); 2625 new_draw_info_format (NDI_UNIQUE, 0, this, "You close %s.", query_name (old_container));
2624 play_sound (sound_find ("chest_close")); 2626 play_sound (sound_find ("chest_close"));
2640 } 2642 }
2641#endif 2643#endif
2642 2644
2643 new_draw_info_format (NDI_UNIQUE, 0, this, "You open %s.", query_name (new_container)); 2645 new_draw_info_format (NDI_UNIQUE, 0, this, "You open %s.", query_name (new_container));
2644 2646
2645 new_container->flag [FLAG_APPLIED] = 1; 2647 new_container->flag [FLAG_APPLIED] = true;
2646 container = new_container; 2648 container = new_container;
2647 2649
2648 esrv_update_item (UPD_FLAGS, this, new_container); 2650 esrv_update_item (UPD_FLAGS, this, new_container);
2649 esrv_send_inventory (this, new_container); 2651 esrv_send_inventory (this, new_container);
2650 play_sound (sound_find ("chest_open")); 2652 play_sound (sound_find ("chest_open"));

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines