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.229 by root, Sat May 3 12:29:09 2008 UTC vs.
Revision 1.233 by root, Tue May 6 18:47:32 2008 UTC

354 return 0; 354 return 0;
355} 355}
356 356
357// adjust weight per container type ("of holding") 357// adjust weight per container type ("of holding")
358static sint32 358static sint32
359weight_adjust (object *op, sint32 weight) 359weight_adjust_for (object *op, sint32 weight)
360{ 360{
361 return op->type == CONTAINER 361 return op->type == CONTAINER
362 ? lerp (weight, 0, 100, 0, 100 - op->stats.Str) 362 ? lerp (weight, 0, 100, 0, 100 - op->stats.Str)
363 : weight; 363 : weight;
364} 364}
370static void 370static void
371adjust_weight (object *op, sint32 weight) 371adjust_weight (object *op, sint32 weight)
372{ 372{
373 while (op) 373 while (op)
374 { 374 {
375 // adjust by actual difference to account for rounding errors
376 // i.e. (w2 - w1) / f != w2 / f - w1 / f and the latter is correct
375 weight = weight_adjust (op, weight); 377 weight = weight_adjust_for (op, op->carrying)
378 - weight_adjust_for (op, op->carrying - weight);
376 379
377 if (!weight) 380 if (!weight)
378 return; 381 return;
379 382
380 op->carrying += weight; 383 op->carrying += weight;
1290 * of areas of callers (eg, anything that uses find_free_spot would now 1293 * of areas of callers (eg, anything that uses find_free_spot would now
1291 * need extra work 1294 * need extra work
1292 */ 1295 */
1293 if (!xy_normalise (m, op->x, op->y)) 1296 if (!xy_normalise (m, op->x, op->y))
1294 { 1297 {
1295 op->destroy (1); 1298 op->head_ ()->destroy (1);// remove head_ once all tail object destroyers found
1296 return 0; 1299 return 0;
1297 } 1300 }
1298 1301
1299 if (object *more = op->more) 1302 if (object *more = op->more)
1300 if (!insert_ob_in_map (more, m, originator, flag)) 1303 if (!insert_ob_in_map (more, m, originator, flag))
1587 } 1590 }
1588 else 1591 else
1589 { 1592 {
1590 decrease (nr); 1593 decrease (nr);
1591 1594
1592 object *op = object_create_clone (this); 1595 object *op = deep_clone ();
1593 op->nrof = nr; 1596 op->nrof = nr;
1594 return op; 1597 return op;
1595 } 1598 }
1596} 1599}
1597 1600
1818 LOG (llevError, "Present_arch called outside map.\n"); 1821 LOG (llevError, "Present_arch called outside map.\n");
1819 return NULL; 1822 return NULL;
1820 } 1823 }
1821 1824
1822 for (object *tmp = m->at (x, y).bot; tmp; tmp = tmp->above) 1825 for (object *tmp = m->at (x, y).bot; tmp; tmp = tmp->above)
1823 if (tmp->arch == at) 1826 if (tmp->arch->archname == at->archname)
1824 return tmp; 1827 return tmp;
1825 1828
1826 return NULL; 1829 return NULL;
1827} 1830}
1828 1831
1892 * The first matching object is returned, or NULL if none. 1895 * The first matching object is returned, or NULL if none.
1893 */ 1896 */
1894object * 1897object *
1895present_arch_in_ob (const archetype *at, const object *op) 1898present_arch_in_ob (const archetype *at, const object *op)
1896{ 1899{
1897 for (object *tmp = op->inv; tmp != NULL; tmp = tmp->below) 1900 for (object *tmp = op->inv; tmp; tmp = tmp->below)
1898 if (tmp->arch == at) 1901 if (tmp->arch->archname == at->archname)
1899 return tmp; 1902 return tmp;
1900 1903
1901 return NULL; 1904 return NULL;
1902} 1905}
1903 1906
2312 2315
2313/* 2316/*
2314 * create clone from object to another 2317 * create clone from object to another
2315 */ 2318 */
2316object * 2319object *
2317object_create_clone (object *asrc) 2320object::deep_clone ()
2318{ 2321{
2322 assert (("deep_clone called on non-head object", is_head ()));
2323
2319 object *dst = 0; 2324 object *dst = clone ();
2320 2325
2321 if (!asrc)
2322 return 0;
2323
2324 object *src = asrc->head_ ();
2325
2326 object *prev = 0; 2326 object *prev = dst;
2327 for (object *part = src; part; part = part->more) 2327 for (object *part = this->more; part; part = part->more)
2328 { 2328 {
2329 object *tmp = part->clone (); 2329 object *tmp = part->clone ();
2330
2331 tmp->x -= src->x;
2332 tmp->y -= src->y;
2333
2334 if (!part->head)
2335 {
2336 dst = tmp;
2337 tmp->head = 0;
2338 }
2339 else
2340 tmp->head = dst; 2330 tmp->head = dst;
2341
2342 tmp->more = 0;
2343
2344 if (prev)
2345 prev->more = tmp; 2331 prev->more = tmp;
2346
2347 prev = tmp; 2332 prev = tmp;
2348 } 2333 }
2349 2334
2350 for (object *item = src->inv; item; item = item->below) 2335 for (object *item = inv; item; item = item->below)
2351 insert_ob_in_ob (object_create_clone (item), dst); 2336 insert_ob_in_ob (item->deep_clone (), dst);
2352 2337
2353 return dst; 2338 return dst;
2354} 2339}
2355 2340
2356/* This returns the first object in who's inventory that 2341/* This returns the first object in who's inventory that

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines