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.86 by root, Tue Dec 26 08:17:58 2006 UTC vs.
Revision 1.93 by root, Tue Dec 26 20:04:09 2006 UTC

522 tail = new_link; 522 tail = new_link;
523 } 523 }
524 } 524 }
525 } 525 }
526 526
527 update_ob_speed (dst); 527 dst->set_speed (dst->speed);
528} 528}
529 529
530object * 530object *
531object::clone () 531object::clone ()
532{ 532{
554 * Updates the speed of an object. If the speed changes from 0 to another 554 * Updates the speed of an object. If the speed changes from 0 to another
555 * value, or vice versa, then add/remove the object from the active list. 555 * value, or vice versa, then add/remove the object from the active list.
556 * This function needs to be called whenever the speed of an object changes. 556 * This function needs to be called whenever the speed of an object changes.
557 */ 557 */
558void 558void
559update_ob_speed (object *op) 559object::set_speed (float speed)
560{ 560{
561 extern int arch_init; 561 extern int arch_init;
562 562
563 /* No reason putting the archetypes objects on the speed list, 563 /* No reason putting the archetypes objects on the speed list,
564 * since they never really need to be updated. 564 * since they never really need to be updated.
565 */ 565 */
566 if (QUERY_FLAG (op, FLAG_FREED) && op->speed) 566 if (flag [FLAG_FREED] && speed)
567 { 567 {
568 LOG (llevError, "Object %s is freed but has speed.\n", &op->name); 568 LOG (llevError, "Object %s is freed but has speed.\n", &name);
569 op->speed = 0; 569 speed = 0;
570 } 570 }
571
572 this->speed = speed;
571 573
572 if (arch_init) 574 if (arch_init)
573 return; 575 return;
574 576
575 if (FABS (op->speed) > MIN_ACTIVE_SPEED) 577 if (FABS (speed) > MIN_ACTIVE_SPEED)
576 { 578 {
577 /* If already on active list, don't do anything */ 579 /* If already on active list, don't do anything */
578 if (op->active_next || op->active_prev || op == active_objects) 580 if (active_next || active_prev || this == active_objects)
579 return; 581 return;
580 582
581 /* process_events() expects us to insert the object at the beginning 583 /* process_events() expects us to insert the object at the beginning
582 * of the list. */ 584 * of the list. */
583 op->active_next = active_objects; 585 active_next = active_objects;
584 586
585 if (op->active_next != NULL) 587 if (active_next)
586 op->active_next->active_prev = op; 588 active_next->active_prev = this;
587 589
588 active_objects = op; 590 active_objects = this;
589 } 591 }
590 else 592 else
591 { 593 {
592 /* If not on the active list, nothing needs to be done */ 594 /* If not on the active list, nothing needs to be done */
593 if (!op->active_next && !op->active_prev && op != active_objects) 595 if (!active_next && !active_prev && this != active_objects)
594 return; 596 return;
595 597
596 if (op->active_prev == NULL) 598 if (!active_prev)
597 { 599 {
598 active_objects = op->active_next; 600 active_objects = active_next;
599 601
600 if (op->active_next != NULL) 602 if (active_next)
601 op->active_next->active_prev = NULL; 603 active_next->active_prev = 0;
602 } 604 }
603 else 605 else
604 { 606 {
605 op->active_prev->active_next = op->active_next; 607 active_prev->active_next = active_next;
606 608
607 if (op->active_next) 609 if (active_next)
608 op->active_next->active_prev = op->active_prev; 610 active_next->active_prev = active_prev;
609 } 611 }
610 612
611 op->active_next = NULL; 613 active_next = 0;
612 op->active_prev = NULL; 614 active_prev = 0;
613 } 615 }
614} 616}
615 617
616/* This function removes object 'op' from the list of active 618/* This function removes object 'op' from the list of active
617 * objects. 619 * objects.
776 778
777 prev = 0; 779 prev = 0;
778 next = 0; 780 next = 0;
779} 781}
780 782
781object *object::create ()
782{
783 object *op = new object;
784 op->link ();
785 return op;
786}
787
788/*
789 * free_object() frees everything allocated by an object, removes
790 * it from the list of used objects, and puts it on the list of
791 * free objects. The IS_FREED() flag is set in the object.
792 * The object must have been removed by remove_ob() first for
793 * this function to succeed.
794 *
795 * If destroy_inventory is set, free inventory as well. Else drop items in
796 * inventory to the ground.
797 */
798void
799object::do_destroy ()
800{
801 attachable::do_destroy ();
802
803 if (flag [FLAG_IS_LINKED])
804 remove_button_link (this);
805
806 if (flag [FLAG_FRIENDLY])
807 remove_friendly_object (this);
808
809 if (!flag [FLAG_REMOVED])
810 remove ();
811
812 if (flag [FLAG_FREED])
813 return;
814
815 flag [FLAG_FREED] = 1;
816
817 // hack to ensure that freed objects still have a valid map
818 {
819 static maptile *freed_map; // freed objects are moved here to avoid crashes
820
821 if (!freed_map)
822 {
823 freed_map = new maptile;
824
825 freed_map->name = "/internal/freed_objects_map";
826 freed_map->width = 3;
827 freed_map->height = 3;
828
829 freed_map->allocate ();
830 }
831
832 map = freed_map;
833 x = 1;
834 y = 1;
835 }
836
837 more = 0;
838 head = 0;
839 inv = 0;
840
841 // clear those pointers that likely might have circular references to us
842 owner = 0;
843 enemy = 0;
844 attacked_by = 0;
845
846 // only relevant for players(?), but make sure of it anyways
847 contr = 0;
848
849 /* Remove object from the active list */
850 speed = 0;
851 update_ob_speed (this);
852
853 unlink ();
854}
855
856/* 783/*
857 * Remove and free all objects in the inventory of the given object. 784 * Remove and free all objects in the inventory of the given object.
858 * object.c ? 785 * object.c ?
859 */ 786 */
860void 787void
861object::destroy_inv (bool drop_to_ground) 788object::destroy_inv (bool drop_to_ground)
862{ 789{
863 if (!inv)
864 return;
865
866 /* Only if the space blocks everything do we not process - 790 /* Only if the space blocks everything do we not process -
867 * if some form of movement is allowed, let objects 791 * if some form of movement is allowed, let objects
868 * drop on that space. 792 * drop on that space.
869 */ 793 */
870 if (!drop_to_ground || !map || map->in_memory != MAP_IN_MEMORY || GET_MAP_MOVE_BLOCK (map, x, y) == MOVE_ALL) 794 if (!drop_to_ground
795 || !map
796 || map->in_memory != MAP_IN_MEMORY
797 || map->at (x, y).move_block == MOVE_ALL)
871 { 798 {
872 while (inv) 799 while (inv)
873 { 800 {
874 inv->destroy_inv (drop_to_ground); 801 inv->destroy_inv (drop_to_ground);
875 inv->destroy (); 802 inv->destroy ();
886 || op->type == RUNE 813 || op->type == RUNE
887 || op->type == TRAP 814 || op->type == TRAP
888 || op->flag [FLAG_IS_A_TEMPLATE]) 815 || op->flag [FLAG_IS_A_TEMPLATE])
889 op->destroy (); 816 op->destroy ();
890 else 817 else
891 { 818 map->insert (op, x, y);
892 op->remove ();
893 op->x = x;
894 op->y = y;
895 insert_ob_in_map (op, map, 0, 0); /* Insert in same map as the envir */
896 }
897 } 819 }
898 } 820 }
821}
822
823object *object::create ()
824{
825 object *op = new object;
826 op->link ();
827 return op;
828}
829
830void
831object::do_destroy ()
832{
833 if (flag [FLAG_IS_LINKED])
834 remove_button_link (this);
835
836 if (flag [FLAG_FRIENDLY])
837 remove_friendly_object (this);
838
839 if (!flag [FLAG_REMOVED])
840 remove ();
841
842 if (flag [FLAG_FREED])
843 return;
844
845 set_speed (0);
846
847 flag [FLAG_FREED] = 1;
848
849 attachable::do_destroy ();
850
851 destroy_inv (true);
852 unlink ();
853
854 // hack to ensure that freed objects still have a valid map
855 {
856 static maptile *freed_map; // freed objects are moved here to avoid crashes
857
858 if (!freed_map)
859 {
860 freed_map = new maptile;
861
862 freed_map->name = "/internal/freed_objects_map";
863 freed_map->width = 3;
864 freed_map->height = 3;
865
866 freed_map->allocate ();
867 }
868
869 map = freed_map;
870 x = 1;
871 y = 1;
872 }
873
874 head = 0;
875
876 if (more)
877 {
878 more->destroy ();
879 more = 0;
880 }
881
882 // clear those pointers that likely might have circular references to us
883 owner = 0;
884 enemy = 0;
885 attacked_by = 0;
886
887 // only relevant for players(?), but make sure of it anyways
888 contr = 0;
899} 889}
900 890
901void 891void
902object::destroy (bool destroy_inventory) 892object::destroy (bool destroy_inventory)
903{ 893{
904 if (destroyed ()) 894 if (destroyed ())
905 return; 895 return;
906 896
907 if (more)
908 {
909 //TODO: non-head objects must not have inventory
910 more->destroy (destroy_inventory);
911 more = 0;
912 }
913
914 if (destroy_inventory) 897 if (destroy_inventory)
915 destroy_inv (true); 898 destroy_inv (false);
916 899
917 attachable::destroy (); 900 attachable::destroy ();
918} 901}
919 902
920/* 903/*
1033 if (map->in_memory == MAP_SAVING) 1016 if (map->in_memory == MAP_SAVING)
1034 return; 1017 return;
1035 1018
1036 int check_walk_off = !flag [FLAG_NO_APPLY]; 1019 int check_walk_off = !flag [FLAG_NO_APPLY];
1037 1020
1038 for (tmp = GET_MAP_OB (map, x, y); tmp; tmp = tmp->above) 1021 for (tmp = map->at (x, y).bot; tmp; tmp = tmp->above)
1039 { 1022 {
1040 /* No point updating the players look faces if he is the object 1023 /* No point updating the players look faces if he is the object
1041 * being removed. 1024 * being removed.
1042 */ 1025 */
1043 1026
1129 * job preparing multi-part monsters 1112 * job preparing multi-part monsters
1130 */ 1113 */
1131object * 1114object *
1132insert_ob_in_map_at (object *op, maptile *m, object *originator, int flag, int x, int y) 1115insert_ob_in_map_at (object *op, maptile *m, object *originator, int flag, int x, int y)
1133{ 1116{
1134 object *tmp;
1135
1136 if (op->head)
1137 op = op->head;
1138
1139 for (tmp = op; tmp; tmp = tmp->more) 1117 for (object *tmp = op->head_ (); tmp; tmp = tmp->more)
1140 { 1118 {
1141 tmp->x = x + tmp->arch->clone.x; 1119 tmp->x = x + tmp->arch->clone.x;
1142 tmp->y = y + tmp->arch->clone.y; 1120 tmp->y = y + tmp->arch->clone.y;
1143 } 1121 }
1144 1122
1458 tmp1->x = op->x; 1436 tmp1->x = op->x;
1459 tmp1->y = op->y; 1437 tmp1->y = op->y;
1460 insert_ob_in_map (tmp1, op->map, op, 0); 1438 insert_ob_in_map (tmp1, op->map, op, 0);
1461} 1439}
1462 1440
1441object *
1442object::insert_at (object *where, object *originator, int flags)
1443{
1444 where->map->insert (this, where->x, where->y, originator, flags);
1445}
1446
1463/* 1447/*
1464 * get_split_ob(ob,nr) splits up ob into two parts. The part which 1448 * get_split_ob(ob,nr) splits up ob into two parts. The part which
1465 * is returned contains nr objects, and the remaining parts contains 1449 * is returned contains nr objects, and the remaining parts contains
1466 * the rest (or is removed and freed if that number is 0). 1450 * the rest (or is removed and freed if that number is 0).
1467 * On failure, NULL is returned, and the reason put into the 1451 * On failure, NULL is returned, and the reason put into the
1468 * global static errmsg array. 1452 * global static errmsg array.
1469 */ 1453 */
1470
1471object * 1454object *
1472get_split_ob (object *orig_ob, uint32 nr) 1455get_split_ob (object *orig_ob, uint32 nr)
1473{ 1456{
1474 object *newob; 1457 object *newob;
1475 int is_removed = (QUERY_FLAG (orig_ob, FLAG_REMOVED) != 0); 1458 int is_removed = (QUERY_FLAG (orig_ob, FLAG_REMOVED) != 0);
1739 * 1722 *
1740 * MSW 2001-07-08: Check all objects on space, not just those below 1723 * MSW 2001-07-08: Check all objects on space, not just those below
1741 * object being inserted. insert_ob_in_map may not put new objects 1724 * object being inserted. insert_ob_in_map may not put new objects
1742 * on top. 1725 * on top.
1743 */ 1726 */
1744
1745int 1727int
1746check_move_on (object *op, object *originator) 1728check_move_on (object *op, object *originator)
1747{ 1729{
1748 object *tmp; 1730 object *tmp;
1749 maptile *m = op->map; 1731 maptile *m = op->map;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines