summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-book.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/spl-book.cc')
-rw-r--r--crawl-ref/source/spl-book.cc23
1 files changed, 18 insertions, 5 deletions
diff --git a/crawl-ref/source/spl-book.cc b/crawl-ref/source/spl-book.cc
index 5821601986..272d65579d 100644
--- a/crawl-ref/source/spl-book.cc
+++ b/crawl-ref/source/spl-book.cc
@@ -1944,22 +1944,35 @@ bool make_book_level_randart(item_def &book, int level, int num_spells)
for (int i = 0; i < SPELLBOOK_SIZE; i++)
spell_vec[i] = (long) chosen_spells[i];
+ bool has_owner = true;
std::string name = "\"";
if (god != GOD_NO_GOD)
name += god_name(god, false) + "'s ";
else if (one_chance_in(3))
name += make_name(random_int(), false) + "'s ";
+ else
+ has_owner = false;
- std::string difficulty;
+ std::string lookup;
if (level <= 3)
- difficulty = "easy";
+ lookup = "easy";
else if (level <= 6)
- difficulty = "moderate";
+ lookup = "moderate";
else
- difficulty = "difficult";
+ lookup = "difficult";
+
+ lookup += " level book";
+
+ std::string bookname;
+ // First try for names respecting the book's previous owner/author
+ // (if one exists), then check for general difficulty.
+ if (has_owner)
+ bookname = getRandNameString(lookup + " owner");
+
+ if (!has_owner || bookname.empty())
+ bookname = getRandNameString(lookup);
- std::string bookname = getRandNameString(difficulty + " level book");
bookname = uppercase_first(bookname);
if (bookname.empty())
bookname = getRandNameString("book");