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

Comparing deliantra/server/common/item.C (file contents):
Revision 1.44 by root, Sun Apr 13 21:22:47 2008 UTC vs.
Revision 1.47 by root, Mon Apr 21 23:35:24 2008 UTC

1/* 1/*
2 * This file is part of Deliantra, the Roguelike Realtime MMORPG. 2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 * 3 *
4 * Copyright (©) 2005,2006,2007 Marc Alexander Lehmann / Robin Redeker / the Deliantra team 4 * Copyright (©) 2005,2006,2007,2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * Copyright (©) 2002,2007 Mark Wedel & Crossfire Development Team 5 * Copyright (©) 2002,2007 Mark Wedel & Crossfire Development Team
6 * Copyright (©) 1992,2007 Frank Tore Johansen 6 * Copyright (©) 1992,2007 Frank Tore Johansen
7 * 7 *
8 * Deliantra is free software: you can redistribute it and/or modify 8 * Deliantra is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by 9 * it under the terms of the GNU General Public License as published by
20 * 20 *
21 * The authors can be reached via e-mail to <support@deliantra.net> 21 * The authors can be reached via e-mail to <support@deliantra.net>
22 */ 22 */
23 23
24#include <global.h> 24#include <global.h>
25#include <funcpoint.h>
26#include <living.h> 25#include <living.h>
27#include <spells.h> 26#include <spells.h>
28 27
29const char *const coins[NUM_COINS + 1] = { "royalty", "platinacoin", "goldcoin", "silvercoin", 0 }; 28const char *const coins[NUM_COINS + 1] = { "royalty", "platinacoin", "goldcoin", "silvercoin", 0 };
30 29
419 */ 418 */
420const char * 419const char *
421query_weight (const object *op) 420query_weight (const object *op)
422{ 421{
423 static char buf[10]; 422 static char buf[10];
424 sint32 i = (op->nrof ? op->nrof : 1) * op->weight + op->carrying; 423 sint32 i = op->total_weight ();
425 424
426 if (op->weight < 0) 425 if (op->weight < 0)
427 return " "; 426 return " ";
428 427
429 if (i % 1000) 428 if (i % 1000)
1194} 1193}
1195 1194
1196void 1195void
1197examine (object *op, object *tmp) 1196examine (object *op, object *tmp)
1198{ 1197{
1199 std::string s = tmp->describe (op); 1198 std::string info = tmp->describe (op);
1200 1199 op->contr->infobox (MSG_CHANNEL ("examine"), info.c_str ());
1201 new_draw_info (NDI_UNIQUE, 0, op, s.c_str ());
1202} 1200}
1203 1201
1204/* 1202/*
1205 * inventory prints object's inventory. If inv==NULL then print player's 1203 * inventory prints object's inventory. If inv==NULL then print player's
1206 * inventory. 1204 * inventory.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines