won't fit on the screen.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6282 c06c8d41-db1a-0410-9941-cceddc491573
NGDLKK45NREMXETWADSYSC6NNAGN4X5BZDJXHLL432WTAJKCG36AC 4QMMF3ZQ37PVVPLFUCNA6VJAL6S7QCFJ4QBU6V7ZFJR4FRDH3R6QC J44YLLLSMPKEY3IXV3CPOM257PQZW45A4QWSSBYVFXS5T5XGQQWAC B3R5XLTMNWFQ5WYTXCE3Z2SHKJ4UKVMHWYJ6T45FDCL4BPCIUOHAC S34LKQDIQJLIWVIPASOJBBZ6ZCXDHP5KPS7TRBZJSCDRVNCLK6UAC EJ64OVL7LJHMMGNKBJK5STXIL47GM2DFXVA4HEQWSCQWTNJL5D4AC ZIFFVCQ72K35WGIUMZYN3KOXIUXF2CNXWKG6ZWEZ6LT3NSF3XOQAC K2CS6TCX2NDVL2ASEHGP4J4K4IJ6FP3ANNKTSIWVG43HPYSBX6ZQC RPOZZWKG5GLPHVZZ7ZKMKS64ZMV2LDCQSARBJFJ6FZOTOKCQO7FAC UWI3ZNJDRQRL7CXFNFEG46TA6SAK24XUFY5YOKVOTJA3VG3OBNFAC 5YWWRDK5FK7BY5EPDN5YUHWM5MZUSHBARTQEQXGX3327OCM4O3AAC 5V47S4NNTHWTSAHV3YLO2VGH7JTUIYJ3GBPDN5ZM4UQALT2ZEXDQC 5B5DP5S6A6LQMKZYVLQAEMHQZWFWYDHPCKQGRNSCNNYIBQYZ6BIQC CNBEMJYK6RATHVHUXN5RFKJCRHZJUCPOGHKWPVD4QLVNDNLDDCFQC CRX4RG35C3DH57NIXCW4CG4X7SBMSX7TAJR2BAFQ4LQKCLYUNANQC TFYLN3PQEKFQNOYRVJRCXFJ4J6VSKC7QQFOHNWTDPSVYWAPAJABAC X2FMEN4E345XD26Z2X7JMJ7VGHOGCGIELMHQRE2ITLVNQACP3NOQC PAYI4UTJCR3XZSFOX5L35EURHRXQ6STO4Z7AQ3525QPNL3QYLNBAC DF5LOTJFSXOT7UBDHLBDLGA22OY4L7ZF6CVFP6H3KL4N5CHB5C5QC VRFQK6S2TXOFFO5K5HRDXPR7QEKKAZAVCASSIJVPWQ4GE26UOGTQC GOPBXMJ7EKKPDSDXCANWW6ARWGNLOQ5DK7WI4UPD7K2GCDSK2HXAC IHOKNI4O7EEW4UBMKHP6XOZNEIQSW4AYOT4O3JXUIXNNR553IQAQC const unsigned int lineWidth = get_number_of_cols() - 1;const int height = get_number_of_lines();std::string desc;if (title.empty())desc = d;else{desc = title + "$$";desc += d;}int num_lines = _count_desc_lines(desc, lineWidth) + 1;const int suffix_lines = _count_desc_lines(suffix, lineWidth);const int prefix_lines = _count_desc_lines(prefix, lineWidth);const int footer_lines = _count_desc_lines(footer, lineWidth)+ (footer.empty() ? 0 : 1);// Prefer the footer over the suffixif (num_lines + suffix_lines + footer_lines <= height){desc = desc + suffix;num_lines += suffix_lines;}// Prefer the footer over the prefixif (num_lines + prefix_lines + footer_lines <= height){desc = prefix + desc;num_lines += prefix_lines;}if (!footer.empty() && num_lines + footer_lines <= height){const int bottom_line = std::min(std::max(24, num_lines + 2),height - footer_lines + 1);const int newlines = bottom_line - num_lines;if (newlines >= 0){desc.append(newlines, '\n');desc = desc + footer;}}
clrscr();print_description(key + desc);if (!footer.empty()){int num_lines = linebreak_string2(footer, width);num_lines++;// So the footer doesn't get lonely on large displays. :)const int bottom_line = std::min(30, get_number_of_lines());cgotoxy(1, bottom_line - num_lines);cprintf(footer.c_str());}