summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/directn.h
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-08 17:00:33 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-08 17:00:33 +0000
commit6760ab3170033b2ecceb6ced51e2de7a5d78d6fe (patch)
tree9d5ed416ad5402c17ae593404ca6589d8c07a3ba /crawl-ref/source/directn.h
parent1854b1209c376c3e3359b4d8a54f9bbf38e1a5ba (diff)
downloadcrawl-ref-6760ab3170033b2ecceb6ced51e2de7a5d78d6fe.tar.gz
crawl-ref-6760ab3170033b2ecceb6ced51e2de7a5d78d6fe.zip
* Rarely, allow randart books to use entirely random names.
* Use monsters' 'x' descriptions as inf.title when hovering your mouse over monster tiles. * A bit of code cleanup. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9385 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/directn.h')
-rw-r--r--crawl-ref/source/directn.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/crawl-ref/source/directn.h b/crawl-ref/source/directn.h
index da0d972f1b..a465565e87 100644
--- a/crawl-ref/source/directn.h
+++ b/crawl-ref/source/directn.h
@@ -177,13 +177,14 @@ std::string thing_do_grammar(description_level_type dtype,
std::string get_terse_square_desc(const coord_def &gc);
void terse_describe_square(const coord_def &c, bool in_range = true);
void full_describe_square(const coord_def &c);
-void get_square_desc(const coord_def &c, describe_info &inf);
+void get_square_desc(const coord_def &c, describe_info &inf,
+ bool examine_mons = false);
void describe_floor();
-std::string get_monster_desc(const monsters *mon,
- bool full_desc = true,
- description_level_type mondtype = DESC_CAP_A,
- bool print_attitude = false);
+std::string get_monster_equipment_desc(const monsters *mon,
+ bool full_desc = true,
+ description_level_type mondtype = DESC_CAP_A,
+ bool print_attitude = false);
int dos_direction_unmunge(int doskey);