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.92 by root, Sat Aug 13 23:18:20 2011 UTC vs.
Revision 1.98 by root, Wed Nov 16 23:41:59 2016 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,2008,2009,2010,2011 Marc Alexander Lehmann / Robin Redeker / the Deliantra team 4 * Copyright (©) 2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * Copyright (©) 2002 Mark Wedel & Crossfire Development Team 5 * Copyright (©) 2002 Mark Wedel & Crossfire Development Team
6 * Copyright (©) 1992 Frank Tore Johansen 6 * Copyright (©) 1992 Frank Tore Johansen
7 * 7 *
8 * Deliantra is free software: you can redistribute it and/or modify it under 8 * Deliantra is free software: you can redistribute it and/or modify it under
9 * the terms of the Affero GNU General Public License as published by the 9 * the terms of the Affero GNU General Public License as published by the
10 * Free Software Foundation, either version 3 of the License, or (at your 10 * Free Software Foundation, either version 3 of the License, or (at your
11 * option) any later version. 11 * option) any later version.
12 * 12 *
13 * This program is distributed in the hope that it will be useful, 13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details. 16 * GNU General Public License for more details.
17 * 17 *
18 * You should have received a copy of the Affero GNU General Public License 18 * You should have received a copy of the Affero GNU General Public License
19 * and the GNU General Public License along with this program. If not, see 19 * and the GNU General Public License along with this program. If not, see
20 * <http://www.gnu.org/licenses/>. 20 * <http://www.gnu.org/licenses/>.
21 * 21 *
22 * The authors can be reached via e-mail to <support@deliantra.net> 22 * The authors can be reached via e-mail to <support@deliantra.net>
23 */ 23 */
24 24
25#include <global.h> 25#include <global.h>
26#include <living.h> 26#include <living.h>
476 */ 476 */
477static const char * 477static const char *
478ring_desc (const object *op) 478ring_desc (const object *op)
479{ 479{
480 static dynbuf_text buf; buf.clear (); 480 static dynbuf_text buf; buf.clear ();
481 int attr, val, len; 481 int attr, val;
482 482
483 if (op->flag [FLAG_IDENTIFIED]) 483 if (op->flag [FLAG_IDENTIFIED])
484 { 484 {
485 for (attr = 0; attr < NUM_STATS; attr++) 485 for (attr = 0; attr < NUM_STATS; attr++)
486 if ((val = op->stats.stat (attr))) 486 if ((val = op->stats.stat (attr)))
620 * It is also used by examine/ex and similar functions. 620 * It is also used by examine/ex and similar functions.
621 */ 621 */
622const char * 622const char *
623query_name (const object *op) 623query_name (const object *op)
624{ 624{
625 int len = 0;
626 static dynbuf_text bufs[5]; 625 static dynbuf_text bufs[5];
627 static int use_buf = 0; 626 static int use_buf = 0;
628 627
629 use_buf++; 628 use_buf++;
630 use_buf %= 5; 629 use_buf %= 5;
1010 buf.printf ("(capacity %dk; it is ", op->stats.maxsp / 1000); 1009 buf.printf ("(capacity %dk; it is ", op->stats.maxsp / 1000);
1011 } 1010 }
1012 else 1011 else
1013 buf.printf ("(capacity %d; it is ", op->stats.maxsp); 1012 buf.printf ("(capacity %d; it is ", op->stats.maxsp);
1014 1013
1015 i = (op->stats.sp * 10) / op->stats.maxsp; 1014 i = op->stats.sp * 10 / max (op->stats.maxsp, 1);
1016 if (op->stats.sp == 0) 1015
1017 buf << "empty"; 1016 if (op->stats.sp == 0) buf << "empty";
1018 else if (i == 0) 1017 else if (i <= 0) buf << "almost empty";
1019 buf << "almost empty"; 1018 else if (i <= 2) buf << "partially filled";
1020 else if (i < 3) 1019 else if (i <= 5) buf << "half full";
1021 buf << "partially filled"; 1020 else if (i <= 8) buf << "well charged";
1022 else if (i < 6)
1023 buf << "half full";
1024 else if (i < 9)
1025 buf << "well charged";
1026 else if (op->stats.sp == op->stats.maxsp) 1021 else if (op->stats.sp < op->stats.maxsp) buf << "almost full";
1027 buf << "fully charged"; 1022 else buf << "fully charged";
1028 else
1029 buf << "almost full";
1030 1023
1031 buf << ')'; 1024 buf << ')';
1032 break; 1025 break;
1033 1026
1034 case LAMP: 1027 case LAMP:
1353 else if (inv 1346 else if (inv
1354 && inv->msg 1347 && inv->msg
1355 && inv->type == SPELL 1348 && inv->type == SPELL
1356 && flag [FLAG_IDENTIFIED] 1349 && flag [FLAG_IDENTIFIED]
1357 && (type == SPELLBOOK || type == ROD || type == WAND 1350 && (type == SPELLBOOK || type == ROD || type == WAND
1358 || type == ROD || type == POTION || type == SCROLL)) 1351 || type == POTION || type == SCROLL))
1359 // for spellbooks and other stuff that contains spells, print the spell message, 1352 // for spellbooks and other stuff that contains spells, print the spell message,
1360 // unless the object has a custom message handled above. 1353 // unless the object has a custom message handled above.
1361 buf << '\r' << inv->msg << '\n'; 1354 buf << '\r' << inv->msg << '\n';
1362 1355
1363 // try to display the duration for some potions and scrolls 1356 // try to display the duration for some potions and scrolls

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines