summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/items.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-02 16:52:40 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-02 16:52:40 +0000
commit0a4efdf86b33220269f7439aeb5952a88d50efa7 (patch)
treefb0826c6072cd6f598ed9e905dea8faa4fd30601 /crawl-ref/source/items.cc
parentb50eafe8de72cbcc4431813934695c22642cdd46 (diff)
downloadcrawl-ref-0a4efdf86b33220269f7439aeb5952a88d50efa7.tar.gz
crawl-ref-0a4efdf86b33220269f7439aeb5952a88d50efa7.zip
Fix a stupid bug I'd introduced when fixing another one.
Fix 1939901: Weapon listing not updated right away after being cursed. Put the code to colour arbitrary substrings of a message according to the menu_colour settings into a function of its own, and use it for pick up and eating prompts (currently from floor only) as well as for the "Things that are here" listing. Could be overly spammy, thus needs testing. If all works well, we can remove the "msg =" settings in food_colouring.txt that currently don't do anything anyway, or reuse them for non-prompt messages like "You see here a green rat corpse." git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5436 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/items.cc')
-rw-r--r--crawl-ref/source/items.cc38
1 files changed, 22 insertions, 16 deletions
diff --git a/crawl-ref/source/items.cc b/crawl-ref/source/items.cc
index 5ae4aa1229..96b3f907a2 100644
--- a/crawl-ref/source/items.cc
+++ b/crawl-ref/source/items.cc
@@ -768,8 +768,9 @@ void item_check(bool verbose)
if (items.size() == 1 )
{
- strm << "You see here " << items[0]->name(DESC_NOCAP_A)
- << '.' << std::endl;
+ item_def it(*items[0]);
+ std::string name = get_menu_colour_prefix_tags(it, DESC_NOCAP_A);
+ strm << "You see here " << name << '.' << std::endl;
return;
}
@@ -805,26 +806,32 @@ void item_check(bool verbose)
}
out_string += static_cast<unsigned char>(item_chars[i] / 0x100);
- if (i + 1 < item_chars.size() &&
- (item_chars[i] / 0x100) != (item_chars[i+1] / 0x100))
+ if (i + 1 < item_chars.size()
+ && (item_chars[i] / 0x100) != (item_chars[i+1] / 0x100))
+ {
out_string += ' ';
+ }
}
formatted_mpr(formatted_string::parse_string(out_string),
MSGCH_FLOOR_ITEMS);
done_init_line = true;
}
- if ( verbose || static_cast<int>(items.size() + 1) < crawl_view.msgsz.y )
+ if (verbose || static_cast<int>(items.size() + 1) < crawl_view.msgsz.y)
{
- if ( !done_init_line )
+ if (!done_init_line)
strm << "Things that are here:" << std::endl;
- for ( unsigned int i = 0; i < items.size(); ++i )
- strm << items[i]->name(DESC_NOCAP_A) << std::endl;
+ for (unsigned int i = 0; i < items.size(); ++i)
+ {
+ item_def it(*items[i]);
+ std::string name = get_menu_colour_prefix_tags(it, DESC_NOCAP_A);
+ strm << name << std::endl;
+ }
}
- else if ( !done_init_line )
+ else if (!done_init_line)
strm << "There are many items here." << std::endl;
- if ( items.size() > 5 )
+ if (items.size() > 5)
learned_something_new(TUT_MULTI_PICKUP);
}
@@ -1219,7 +1226,8 @@ void pickup()
if (keyin != 'a')
{
mprf(MSGCH_PROMPT, "Pick up %s? (y/n/a/*?g,/q)",
- mitm[o].name(DESC_NOCAP_A).c_str() );
+ get_menu_colour_prefix_tags(mitm[o],
+ DESC_NOCAP_A).c_str());
#ifndef USE_TILE
keyin = get_ch();
#else
@@ -1905,9 +1913,9 @@ bool drop_item( int item_dropped, int quant_drop, bool try_offer )
const dungeon_feature_type my_grid = grd[you.x_pos][you.y_pos];
- if ( !grid_destroys_items(my_grid)
- && !copy_item_to_grid( you.inv[item_dropped],
- you.x_pos, you.y_pos, quant_drop, true ))
+ if (!grid_destroys_items(my_grid)
+ && !copy_item_to_grid( you.inv[item_dropped],
+ you.x_pos, you.y_pos, quant_drop, true ))
{
mpr( "Too many items on this level, not dropping the item." );
return (false);
@@ -2155,10 +2163,8 @@ static void _autoinscribe_floor_items()
static void _autoinscribe_inventory()
{
for (int i = 0; i < ENDOFPACK; i++)
- {
if (is_valid_item(you.inv[i]))
_autoinscribe_item( you.inv[i] );
- }
}
bool need_to_autoinscribe()