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.253 by root, Sun Aug 17 22:46:26 2008 UTC vs.
Revision 1.258 by root, Mon Sep 29 09:04:50 2008 UTC

186 || ob1->speed != ob2->speed 186 || ob1->speed != ob2->speed
187 || ob1->value != ob2->value 187 || ob1->value != ob2->value
188 || ob1->name != ob2->name) 188 || ob1->name != ob2->name)
189 return 0; 189 return 0;
190 190
191 /* Do not merge objects if nrof would overflow. First part checks 191 /* Do not merge objects if nrof would overflow, assume nrof
192 * for unsigned overflow (2c), second part checks whether the result 192 * is always 0 .. 2**31-1 */
193 * would fit into a 32 bit signed int, which is often used to hold 193 if (ob1->nrof > 0x7fffffff - ob2->nrof)
194 * nrof values.
195 */
196 if (~ob1->nrof < ob2->nrof || ob1->nrof + ob2->nrof > (1UL << 31))
197 return 0; 194 return 0;
198 195
199 /* If the objects have been identified, set the BEEN_APPLIED flag. 196 /* If the objects have been identified, set the BEEN_APPLIED flag.
200 * This is to the comparison of the flags below will be OK. We 197 * This is to the comparison of the flags below will be OK. We
201 * just can't ignore the been applied or identified flags, as they 198 * just can't ignore the been applied or identified flags, as they
235 || memcmp (&ob1->stats , &ob2->stats , sizeof (ob1->stats))) 232 || memcmp (&ob1->stats , &ob2->stats , sizeof (ob1->stats)))
236 return 0; 233 return 0;
237 234
238 if ((ob1->flag ^ ob2->flag) 235 if ((ob1->flag ^ ob2->flag)
239 .reset (FLAG_INV_LOCKED) 236 .reset (FLAG_INV_LOCKED)
240 .reset (FLAG_CLIENT_SENT)
241 .reset (FLAG_REMOVED) 237 .reset (FLAG_REMOVED)
242 .any ()) 238 .any ())
243 return 0; 239 return 0;
244 240
245 /* This is really a spellbook check - we should in general 241 /* This is really a spellbook check - we should in general
640 } 636 }
641 637
642 if (speed < 0) 638 if (speed < 0)
643 dst->speed_left -= rndm (); 639 dst->speed_left -= rndm ();
644 640
645 dst->set_speed (dst->speed); 641 dst->activate ();
646} 642}
647 643
648void 644void
649object::instantiate () 645object::instantiate ()
650{ 646{
834{ 830{
835 /* If already on active list, don't do anything */ 831 /* If already on active list, don't do anything */
836 if (active) 832 if (active)
837 return; 833 return;
838 834
835 if (has_active_speed () && flag [FLAG_FREED]) LOG (llevError | logBacktrace, "BUG: tried to activate freed object %s\n", debug_desc ());//D
836 if (has_active_speed () && flag [FLAG_DEBUG]) LOG (llevError | logBacktrace, "BUG: tried to activate DEBUG object %s\n", debug_desc ());//D temp
837
839 if (has_active_speed ()) 838 if (has_active_speed ())
840 actives.insert (this); 839 actives.insert (this);
841} 840}
842 841
843void 842void
984 x = 1; 983 x = 1;
985 y = 1; 984 y = 1;
986 985
987 if (more) 986 if (more)
988 { 987 {
989 more->destroy (); 988 more->destroy (true);
990 more = 0; 989 more = 0;
991 } 990 }
992 991
993 head = 0; 992 head = 0;
994 993
1192 esrv_update_item (UPD_NROF, pl, top); 1191 esrv_update_item (UPD_NROF, pl, top);
1193 1192
1194 op->weight = 0; // cancel the addition above 1193 op->weight = 0; // cancel the addition above
1195 op->carrying = 0; // must be 0 already 1194 op->carrying = 0; // must be 0 already
1196 1195
1197 op->destroy (1); 1196 op->destroy (true);
1198 1197
1199 return top; 1198 return top;
1200 } 1199 }
1201 1200
1202 return 0; 1201 return 0;
1276 { 1275 {
1277 LOG (llevError, "insert_ob_in_map called for object in an inventory (proceeding)"); 1276 LOG (llevError, "insert_ob_in_map called for object in an inventory (proceeding)");
1278 op->remove (); 1277 op->remove ();
1279 } 1278 }
1280 1279
1281 if (op->face && !face_info (op->face))//D TODO: remove soon 1280 if (m == &freed_map)//D TODO: remove soon
1282 {//D 1281 {//D
1283 LOG (llevError | logBacktrace, "op->face out of bounds: %s", op->debug_desc ());//D 1282 LOG (llevError | logBacktrace, "tries to insret object on freed objects map: %s", op->debug_desc ());//D
1284 op->face = 1;//D
1285 }//D 1283 }//D
1286 1284
1287 /* Ideally, the caller figures this out. However, it complicates a lot 1285 /* Ideally, the caller figures this out. However, it complicates a lot
1288 * of areas of callers (eg, anything that uses find_free_spot would now 1286 * of areas of callers (eg, anything that uses find_free_spot would now
1289 * need extra work 1287 * need extra work
1290 */ 1288 */
1291 if (!xy_normalise (m, op->x, op->y)) 1289 if (!xy_normalise (m, op->x, op->y))
1292 { 1290 {
1293 op->head_ ()->destroy (1);// remove head_ once all tail object destroyers found 1291 op->head_ ()->destroy (true);// remove head_ once all tail object destroyers found
1294 return 0; 1292 return 0;
1295 } 1293 }
1296 1294
1297 if (object *more = op->more) 1295 if (object *more = op->more)
1298 if (!insert_ob_in_map (more, m, originator, flag)) 1296 if (!insert_ob_in_map (more, m, originator, flag))
1311 { 1309 {
1312 // TODO: we actually want to update tmp, not op, 1310 // TODO: we actually want to update tmp, not op,
1313 // but some caller surely breaks when we return tmp 1311 // but some caller surely breaks when we return tmp
1314 // from here :/ 1312 // from here :/
1315 op->nrof += tmp->nrof; 1313 op->nrof += tmp->nrof;
1316 tmp->destroy (1); 1314 tmp->destroy (true);
1317 } 1315 }
1318 1316
1319 CLEAR_FLAG (op, FLAG_APPLIED); /* hack for fixing F_APPLIED in items of dead people */ 1317 CLEAR_FLAG (op, FLAG_APPLIED); /* hack for fixing F_APPLIED in items of dead people */
1320 CLEAR_FLAG (op, FLAG_INV_LOCKED); 1318 CLEAR_FLAG (op, FLAG_INV_LOCKED);
1321 1319
1496{ 1494{
1497 /* first search for itself and remove any old instances */ 1495 /* first search for itself and remove any old instances */
1498 1496
1499 for (object *tmp = op->ms ().bot; tmp; tmp = tmp->above) 1497 for (object *tmp = op->ms ().bot; tmp; tmp = tmp->above)
1500 if (!strcmp (tmp->arch->archname, arch_string)) /* same archetype */ 1498 if (!strcmp (tmp->arch->archname, arch_string)) /* same archetype */
1501 tmp->destroy (1); 1499 tmp->destroy (true);
1502 1500
1503 object *tmp = arch_to_object (archetype::find (arch_string)); 1501 object *tmp = arch_to_object (archetype::find (arch_string));
1504 1502
1505 tmp->x = op->x; 1503 tmp->x = op->x;
1506 tmp->y = op->y; 1504 tmp->y = op->y;
1629 if (object *pl = tmp->visible_to ()) 1627 if (object *pl = tmp->visible_to ())
1630 esrv_update_item (UPD_NROF, pl, tmp); 1628 esrv_update_item (UPD_NROF, pl, tmp);
1631 1629
1632 adjust_weight (this, op->total_weight ()); 1630 adjust_weight (this, op->total_weight ());
1633 1631
1634 op->destroy (1); 1632 op->destroy (true);
1635 op = tmp; 1633 op = tmp;
1636 goto inserted; 1634 goto inserted;
1637 } 1635 }
1638 1636
1639 op->owner = 0; // it's his/hers now. period. 1637 op->owner = 0; // it's his/hers now. period.
2488 2486
2489#if 0 2487#if 0
2490 // remove the "Close old_container" object. 2488 // remove the "Close old_container" object.
2491 if (object *closer = old_container->inv) 2489 if (object *closer = old_container->inv)
2492 if (closer->type == CLOSE_CON) 2490 if (closer->type == CLOSE_CON)
2493 closer->destroy (); 2491 closer->destroy (true);
2494#endif 2492#endif
2495 2493
2496 // make sure the container is available 2494 // make sure the container is available
2497 esrv_send_item (this, old_container); 2495 esrv_send_item (this, old_container);
2498 2496
2554 2552
2555void 2553void
2556object::force_add (const shstr name, int duration) 2554object::force_add (const shstr name, int duration)
2557{ 2555{
2558 if (object *force = force_find (name)) 2556 if (object *force = force_find (name))
2559 force->destroy (); 2557 force->destroy (true);
2560 2558
2561 object *force = get_archetype (FORCE_NAME); 2559 object *force = get_archetype (FORCE_NAME);
2562 2560
2563 force->slaying = name; 2561 force->slaying = name;
2564 force->stats.food = 1; 2562 force->stats.food = 1;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines