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.65 by root, Sat Nov 7 18:30:05 2009 UTC vs.
Revision 1.74 by root, Fri Mar 26 01:04:44 2010 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 Marc Alexander Lehmann / Robin Redeker / the Deliantra team 4 * Copyright (©) 2005,2006,2007,2008,2009,2010 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * Copyright (©) 2002,2007 Mark Wedel & Crossfire Development Team 5 * Copyright (©) 2002 Mark Wedel & Crossfire Development Team
6 * Copyright (©) 1992,2007 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.
203 {ITEM_TRANSFORMER, "item_transformer", "item_transformers", 0, 0}, 203 {ITEM_TRANSFORMER, "item_transformer", "item_transformers", 0, 0},
204}; 204};
205 205
206static const int item_types_size = sizeof (item_types) / sizeof (*item_types); 206static const int item_types_size = sizeof (item_types) / sizeof (*item_types);
207 207
208materialtype_t *materialt;
209
210/*
211materialtype material[NROFMATERIALS] = {
212 * P M F E C C A D W G P S P T F C D D C C G H B I *
213 * H A I L O O C R E H O L A U E A E E H O O O L N *
214 * Y G R E L N I A A O I O R R A N P A A U D L I T *
215 * S I E C D F D I P S S W A N R C L T O N Y N R *
216 * I C T U N O T O L E E H S T P D N *
217 {"paper", {15,10,17, 9, 5, 7,13, 0,20,15, 0,0,0,0,0,10,0,0,0,0,0,0,0,0}},
218 {"metal", { 2,12, 3,12, 2,10, 7, 0,20,15, 0,0,0,0,0,10,0,0,0,0,0,0,0,0}},
219 {"glass", {14,11, 8, 3,10, 5, 1, 0,20,15, 0,0,0,0,0, 0,0,0,0,0,0,0,0,0}},
220 {"leather", { 5,10,10, 3, 3,10,10, 0,20,15, 0,0,0,0,0,12,0,0,0,0,0,0,0,0}},
221 {"wood", {10,11,13, 2, 2,10, 9, 0,20,15, 0,0,0,0,0,12,0,0,0,0,0,0,0,0}},
222 {"organics", { 3,12, 9,11, 3,10, 9, 0,20,15, 0,0,0,0,0, 0,0,0,0,0,0,0,0,0}},
223 {"stone", { 2, 5, 2, 2, 2, 2, 1, 0,20,15, 0,0,0,0,0, 5,0,0,0,0,0,0,0,0}},
224 {"cloth", {14,11,13, 4, 4, 5,10, 0,20,15, 0,0,0,0,0, 5,0,0,0,0,0,0,0,0}},
225 {"adamant", { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,0,0,0,0, 0,0,0,0,0,0,0,0,0}},
226 {"liquid", { 0, 8, 9, 6,17, 0,15, 0,20,15,12,0,0,0,0,11,0,0,0,0,0,0,0,0}},
227 {"soft metal",{ 6,12, 6,14, 2,10, 1, 0,20,15, 0,0,0,0,0,10,0,0,0,0,0,0,0,0}},
228 {"bone", {10, 9, 4, 5, 3,10,10, 0,20,15, 0,0,0,0,0, 2,0,0,0,0,0,0,0,0}},
229 {"ice", {14,11,16, 5, 0, 5, 6, 0,20,15, 0,0,0,0,0, 7,0,0,0,0,0,0,0,0}}
230};
231*/
232
233/* This curve may be too steep. But the point is that there should 208/* This curve may be too steep. But the point is that there should
234 * be tough choices - there is no real point to this if everyone can 209 * be tough choices - there is no real point to this if everyone can
235 * wear whatever they want with no worries. Perhaps having the steep 210 * wear whatever they want with no worries. Perhaps having the steep
236 * curve is good (maybe even steeper), but allowing players to 211 * curve is good (maybe even steeper), but allowing players to
237 * have 2 * level instead. Ideally, top level characters should only be 212 * have 2 * level instead. Ideally, top level characters should only be
313 288
314 enc += op->stats.luck; 289 enc += op->stats.luck;
315 290
316 /* Do spell paths now */ 291 /* Do spell paths now */
317 for (i = 1; i < NRSPELLPATHS; i++) 292 for (i = 1; i < NRSPELLPATHS; i++)
318 {
319 if (op->path_attuned & (1 << i)) 293 if (op->path_attuned & (1 << i))
320 enc++; 294 enc++;
321 else if (op->path_denied & (1 << i)) 295 else if (op->path_denied & (1 << i))
322 enc -= 2; 296 enc -= 2;
323 else if (op->path_repelled & (1 << i)) 297 else if (op->path_repelled & (1 << i))
324 enc--; 298 enc--;
325 }
326 299
327 if (op->flag [FLAG_LIFESAVE ]) enc += 5; 300 if (op->flag [FLAG_LIFESAVE ]) enc += 5;
328 if (op->flag [FLAG_REFL_SPELL ]) enc += 3; 301 if (op->flag [FLAG_REFL_SPELL ]) enc += 3;
329 if (op->flag [FLAG_REFL_MISSILE]) enc += 2; 302 if (op->flag [FLAG_REFL_MISSILE]) enc += 2;
330 if (op->flag [FLAG_XRAYS ]) enc += 2; 303 if (op->flag [FLAG_XRAYS ]) enc += 2;
588 * returned is good forever.) However, it makes printing statements that 561 * returned is good forever.) However, it makes printing statements that
589 * use several names much easier (don't need to store them to temp variables.) 562 * use several names much easier (don't need to store them to temp variables.)
590 * 563 *
591 * It is used extensively within messages, so should return only a prose 564 * It is used extensively within messages, so should return only a prose
592 * and short description of the item. 565 * and short description of the item.
566 * It is also used by examine/ex and similar functions.
593 */ 567 */
594const char * 568const char *
595query_name (const object *op) 569query_name (const object *op)
596{ 570{
597 int len = 0; 571 int len = 0;
602 use_buf %= 5; 576 use_buf %= 5;
603 577
604 dynbuf_text &buf = bufs [use_buf]; 578 dynbuf_text &buf = bufs [use_buf];
605 buf.clear (); 579 buf.clear ();
606 580
581#if 0
607 if ((op->is_armor () || op->is_weapon ()) && op->materialname) 582 if ((op->is_armor () || op->is_weapon ()) && op->material)
608 if (materialtype_t *mt = name_to_material (op->materialname))
609 buf << mt->description << ' '; 583 buf << op->material->description << ' ';
584#endif
610 585
611 buf << query_short_name (op); 586 buf << query_short_name (op);
612 587
613 if (QUERY_FLAG (op, FLAG_INV_LOCKED)) 588 if (QUERY_FLAG (op, FLAG_INV_LOCKED))
614 buf << " *"; 589 buf << " *";
712 * and sending to client. 687 * and sending to client.
713 * If plural is set, we generate the plural name of this. 688 * If plural is set, we generate the plural name of this.
714 * 689 *
715 * It is sometimes used to display messages, and usually only used to match stuff, 690 * It is sometimes used to display messages, and usually only used to match stuff,
716 * so maybe this function should be removed. 691 * so maybe this function should be removed.
692 * It is also used for client-side inventory/item descriptions.
717 */ 693 */
718const char * 694const char *
719query_base_name (const object *op, int plural) 695query_base_name (const object *op, int plural)
720{ 696{
721 if ((!plural && !op->name) || (plural && !op->name_pl)) 697 if ((!plural && !op->name) || (plural && !op->name_pl))
722 return "(null)"; 698 return "(null)";
723 699
724 if (!op->nrof && !op->weight && !op->title && !is_magical (op)) 700 if (!op->nrof && !op->weight && !op->title && !is_magical (op)
701 && op->type != EXIT)
725 return op->name; /* To speed things up (or make things slower?) */ 702 return op->name; /* To speed things up (or make things slower?) */
726 703
727 static dynbuf_text buf; buf.clear (); 704 static dynbuf_text buf; buf.clear ();
728 705
706#if 0
729 if ((op->is_armor () || op->is_weapon ()) && op->materialname) 707 if ((op->is_armor () || op->is_weapon ()) && op->material)
730 if (materialtype_t *mt = name_to_material (op->materialname))
731 if (op->arch->materialname != mt->name) 708 if (op->arch->material != op->material)
732 buf << mt->description << ' '; 709 buf << op->material->description << ' ';
710#endif
733 711
734 buf << (plural ? op->name_pl : op->name); 712 buf << (plural ? op->name_pl : op->name);
735 713
736 if (op->title && QUERY_FLAG (op, FLAG_IDENTIFIED)) 714 if (op->title && QUERY_FLAG (op, FLAG_IDENTIFIED))
737 buf << ' ' << op->title; 715 buf << ' ' << op->title;
764 if (s && *s) 742 if (s && *s)
765 buf << ' ' << s; 743 buf << ' ' << s;
766 } 744 }
767 break; 745 break;
768 746
747 case EXIT:
748 // random map exits "unfortunately" get patched, so this only works before entering
749 buf << (EXIT_PATH (op) == shstr_random_map_exit ? " (random map)" : " (exit)");
750 break;
751
769 default: 752 default:
770 if (op->magic && ((QUERY_FLAG (op, FLAG_BEEN_APPLIED) && need_identify (op)) || QUERY_FLAG (op, FLAG_IDENTIFIED))) 753 if (op->magic && ((QUERY_FLAG (op, FLAG_BEEN_APPLIED) && need_identify (op)) || QUERY_FLAG (op, FLAG_IDENTIFIED)))
771 buf.printf (" %+d", op->magic); 754 buf.printf (" %+d", op->magic);
772 } 755 }
773 756
788 /* Note that the resolution this provides for players really isn't 771 /* Note that the resolution this provides for players really isn't
789 * very good. Any player with a speed greater than .67 will 772 * very good. Any player with a speed greater than .67 will
790 * fall into the 'lightning fast movement' category. 773 * fall into the 'lightning fast movement' category.
791 */ 774 */
792 if (op->has_active_speed ()) 775 if (op->has_active_speed ())
793 switch ((int)((fabs (op->speed)) * 15.)) 776 switch ((int)(op->speed * 15.))
794 { 777 {
795 case 0: 778 case 0:
796 buf << "(very slow movement)"; 779 buf << "(very slow movement)";
797 break; 780 break;
798 case 1: 781 case 1:
868 if (op->stats.luck) 851 if (op->stats.luck)
869 buf.printf ("(luck%+d)", op->stats.luck); 852 buf.printf ("(luck%+d)", op->stats.luck);
870 } 853 }
871 854
872 /* describe attacktypes */ 855 /* describe attacktypes */
873 if (is_dragon_pl (op)) 856 if (op->is_dragon ())
874 { 857 {
875 /* for dragon players display the attacktypes from clawing skill 858 /* for dragon players display the attacktypes from clawing skill
876 * Break apart the for loop - move the comparison checking down - 859 * Break apart the for loop - move the comparison checking down -
877 * this makes it more readable. 860 * this makes it more readable.
878 */ 861 */
1177 1160
1178 buf.add_abilities ("Attacks", op->attacktype); 1161 buf.add_abilities ("Attacks", op->attacktype);
1179 /* resistance on flesh is only visible for quetzals. If 1162 /* resistance on flesh is only visible for quetzals. If
1180 * non flesh, everyone can see its resistances 1163 * non flesh, everyone can see its resistances
1181 */ 1164 */
1182 if (op->type != FLESH || (owner && is_dragon_pl (owner))) 1165 if (op->type != FLESH || (owner && owner->is_dragon ()))
1183 buf << describe_resistance (op, 0); 1166 buf << describe_resistance (op, 0);
1184 1167
1185 buf.add_paths ("Attuned", op->path_attuned); 1168 buf.add_paths ("Attuned", op->path_attuned);
1186 buf.add_paths ("Repelled", op->path_repelled); 1169 buf.add_paths ("Repelled", op->path_repelled);
1187 buf.add_paths ("Denied", op->path_denied); 1170 buf.add_paths ("Denied", op->path_denied);
1214{ 1197{
1215 static dynbuf_text buf; buf.clear (); 1198 static dynbuf_text buf; buf.clear ();
1216 1199
1217 for (object *tmp = inv; tmp; tmp = tmp->below) 1200 for (object *tmp = inv; tmp; tmp = tmp->below)
1218 if (who && QUERY_FLAG (who, FLAG_WIZ)) 1201 if (who && QUERY_FLAG (who, FLAG_WIZ))
1219 buf.printf ("%s- %-28.28s (%5d) %-8s\n", indent, tmp->query_name (), tmp->count, tmp->query_weight ()); 1202 buf.printf ("%s- %-28.28s %-8s (%9d) %s\n", indent, tmp->query_name (), tmp->query_weight (), tmp->count, tmp->uuid.c_str ());
1220 else if (!tmp->invisible && (type == CONTAINER || QUERY_FLAG (tmp, FLAG_APPLIED))) 1203 else if (!tmp->invisible && (type == CONTAINER || QUERY_FLAG (tmp, FLAG_APPLIED)))
1221 buf.printf ("%s- %-36.36s %-8s\n", indent, tmp->query_name (), tmp->query_weight ()); 1204 buf.printf ("%s- %-36.36s %-8s\n", indent, tmp->query_name (), tmp->query_weight ());
1222 1205
1223 if (buf.size ()) 1206 if (buf.size ())
1224 buf.printf ("%s(total weight: %s)\n", indent, query_weight ()); 1207 buf.printf ("%s(total weight: %s)\n", indent, query_weight ());

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines