summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/showsymb.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-10-16 17:31:22 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-10-16 23:59:14 +0200
commit90005585c7206655fe91daba91805d9bad2cb0c1 (patch)
tree83f14315cbf89c6f8071a43ff549b7fa6b6e7ddb /crawl-ref/source/showsymb.cc
parent6ca8c092ae24814196a8f76e526637f731fb8160 (diff)
downloadcrawl-ref-90005585c7206655fe91daba91805d9bad2cb0c1.tar.gz
crawl-ref-90005585c7206655fe91daba91805d9bad2cb0c1.zip
Rename struct glyph to cglyph_t.
Hard to come up with something less greppable...
Diffstat (limited to 'crawl-ref/source/showsymb.cc')
-rw-r--r--crawl-ref/source/showsymb.cc24
1 files changed, 12 insertions, 12 deletions
diff --git a/crawl-ref/source/showsymb.cc b/crawl-ref/source/showsymb.cc
index 3198b37198..28bbe14cc6 100644
--- a/crawl-ref/source/showsymb.cc
+++ b/crawl-ref/source/showsymb.cc
@@ -248,13 +248,13 @@ static const unsigned short ripple_table[] =
BROWN, // YELLOW => BROWN
LIGHTGREY}; // WHITE => LIGHTGREY
-static glyph _get_cell_glyph_with_class(const map_cell& cell,
- const coord_def& loc,
- const show_class cls,
- int colour_mode)
+static cglyph_t _get_cell_glyph_with_class(const map_cell& cell,
+ const coord_def& loc,
+ const show_class cls,
+ int colour_mode)
{
const bool coloured = colour_mode == 0 ? cell.visible() : (colour_mode > 0);
- glyph g;
+ cglyph_t g;
show_type show;
const cloud_type cell_cloud = cell.cloud();
@@ -394,8 +394,8 @@ static glyph _get_cell_glyph_with_class(const map_cell& cell,
return g;
}
-glyph get_cell_glyph(const coord_def& loc, bool only_stationary_monsters,
- int colour_mode)
+cglyph_t get_cell_glyph(const coord_def& loc, bool only_stationary_monsters,
+ int colour_mode)
{
// note: this does NOT determine output of the player glyph;
// that's handled by itself in _draw_player() in view.cc
@@ -415,17 +415,17 @@ ucs_t get_item_symbol(show_item_type it)
return get_feature_def(show_type(it)).symbol;
}
-glyph get_item_glyph(const item_def *item)
+cglyph_t get_item_glyph(const item_def *item)
{
- glyph g;
+ cglyph_t g;
g.ch = get_feature_def(show_type(*item)).symbol;
g.col = item->colour;
return g;
}
-glyph get_mons_glyph(const monster_info& mi)
+cglyph_t get_mons_glyph(const monster_info& mi)
{
- glyph g;
+ cglyph_t g;
const bool override = Options.mon_glyph_overrides.find(mi.type)
!= Options.mon_glyph_overrides.end();
if (mi.props.exists("glyph") && !override)
@@ -445,7 +445,7 @@ glyph get_mons_glyph(const monster_info& mi)
return g;
}
-string glyph_to_tagstr(const glyph& g)
+string glyph_to_tagstr(const cglyph_t& g)
{
string col = colour_to_str(g.col);
string ch = stringize_glyph(g.ch);