summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.h
diff options
context:
space:
mode:
authorVsevolod Kozlov <zaba@thorium.homeunix.org>2009-11-03 10:17:43 +0100
committerRobert Vollmert <rvollmert@gmx.net>2009-11-03 10:19:23 +0100
commite65199ef20df7201e5cb1a87e3e0fffdfd13523d (patch)
tree06cf6b7ef5f2e7b83b724c63b8f33ca6d65795d3 /crawl-ref/source/describe.h
parent2fbd97bae9a937f03643ad0dc579f0595e42497f (diff)
downloadcrawl-ref-e65199ef20df7201e5cb1a87e3e0fffdfd13523d.tar.gz
crawl-ref-e65199ef20df7201e5cb1a87e3e0fffdfd13523d.zip
Remove "called from:" comments.
These were of questionable use and freshness. Signed-off-by: Robert Vollmert <rvollmert@gmx.net>
Diffstat (limited to 'crawl-ref/source/describe.h')
-rw-r--r--crawl-ref/source/describe.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/crawl-ref/source/describe.h b/crawl-ref/source/describe.h
index a75829376a..ab07f30fa6 100644
--- a/crawl-ref/source/describe.h
+++ b/crawl-ref/source/describe.h
@@ -38,71 +38,37 @@ struct describe_info
void append_spells(std::string &desc, const item_def &item);
-// last updated 12may2000 {dlb}
-/* ***********************************************************************
- * called from: chardump - spells4
- * *********************************************************************** */
bool is_dumpable_artefact( const item_def &item, bool verbose );
-// last updated 12may2000 {dlb}
-/* ***********************************************************************
- * called from: chardump - describe
- * *********************************************************************** */
std::string get_item_description( const item_def &item, bool verbose,
bool dump = false, bool noquote = false );
-// last updated 12 Jun 2008 {jpeg}
-/* ***********************************************************************
- * called from: acr - religion
- * *********************************************************************** */
std::string god_title(god_type which_god);
void describe_god( god_type which_god, bool give_title );
void describe_feature_wide(const coord_def& pos);
void get_feature_desc(const coord_def &gc, describe_info &inf);
-// last updated 24 Dec 2008 {mpc}
-/* ***********************************************************************
- * called from: l_dgn
- * *********************************************************************** */
void set_feature_desc_long(const std::string &raw_name,
const std::string &desc);
-/* ***********************************************************************
- * called from: item_use - shopping
- * *********************************************************************** */
void describe_item(item_def &item, bool allow_inscribe = false,
bool shopping = false);
void get_item_desc(const item_def &item, describe_info &inf,
bool terse = false);
void inscribe_item(item_def &item, bool proper_prompt);
-/* ***********************************************************************
- * called from: command
- * *********************************************************************** */
void append_weapon_stats(std::string &description, const item_def &item);
void append_armour_stats(std::string &description, const item_def &item);
void append_missile_info(std::string &description);
-// last updated 12 Jun 2008 {jpeg}
-/* ***********************************************************************
- * called from: command - direct
- * *********************************************************************** */
void describe_monsters(const monsters &mons, bool force_seen = false);
void get_monster_db_desc(const monsters &item, describe_info &inf,
bool force_seen = false);
-// last updated 12 Jun 2008 {jpeg}
-/* ***********************************************************************
- * called from: item_use - spl-cast
- * *********************************************************************** */
void get_spell_desc(const spell_type spell, describe_info &inf);
void describe_spell(spell_type spelled, const item_def* item = NULL);
-// last updated 13oct2003 {darshan}
-/* ***********************************************************************
- * called from: Kills - monstuff
- * *********************************************************************** */
std::string get_ghost_description(const monsters &mons, bool concise = false);
std::string get_skill_description(int skill, bool need_title = false);