1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359
|
/* WrappedText.cpp
Copyright (c) 2014-2020 by Michael Zahniser
Endless Sky is free software: you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later version.
Endless Sky is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "WrappedText.h"
#include "DisplayText.h"
#include "Font.h"
#include <cstring>
using namespace std;
WrappedText::WrappedText(const Font &font)
{
SetFont(font);
}
void WrappedText::SetAlignment(Alignment align)
{
alignment = align;
}
// Set the truncate mode.
void WrappedText::SetTruncate(Truncate trunc)
{
truncate = trunc;
}
// Set the wrap width. This does not include any margins.
int WrappedText::WrapWidth() const
{
return wrapWidth;
}
void WrappedText::SetWrapWidth(int width)
{
wrapWidth = width;
}
// Set the font to use. This will also set sensible defaults for the tab
// width, line height, and paragraph break. You must specify the wrap width
// and the alignment separately.
void WrappedText::SetFont(const Font &font)
{
this->font = &font;
space = font.Space();
SetTabWidth(4 * space);
SetLineHeight(font.Height() * 120 / 100);
SetParagraphBreak(font.Height() * 40 / 100);
}
// Set the width in pixels of a single '\t' character.
int WrappedText::TabWidth() const
{
return tabWidth;
}
void WrappedText::SetTabWidth(int width)
{
tabWidth = width;
}
// Set the height in pixels of one line of text within a paragraph.
int WrappedText::LineHeight() const
{
return lineHeight;
}
void WrappedText::SetLineHeight(int height)
{
lineHeight = height;
}
// Set the extra spacing in pixels to be added in between paragraphs.
int WrappedText::ParagraphBreak() const
{
return paragraphBreak;
}
void WrappedText::SetParagraphBreak(int height)
{
paragraphBreak = height;
}
// Get the word positions when wrapping the given text. The coordinates
// always begin at (0, 0).
void WrappedText::Wrap(const string &str)
{
SetText(str.data(), str.length());
Wrap();
}
void WrappedText::Wrap(const char *str)
{
SetText(str, strlen(str));
Wrap();
}
/// Get the height of the wrapped text.
/// With trailingBreak, include a paragraph break after the text.
int WrappedText::Height(bool trailingBreak) const
{
if(!height)
return 0;
return height + trailingBreak * paragraphBreak;
}
// Return the width of the longest line of the wrapped text.
int WrappedText::LongestLineWidth() const
{
return longestLineWidth;
}
// Draw the text.
void WrappedText::Draw(const Point &topLeft, const Color &color) const
{
if(words.empty())
return;
if(truncate == Truncate::NONE)
for(const Word &w : words)
font->Draw(text.c_str() + w.Index(), w.Pos() + topLeft, color);
else
{
// Currently, we only apply truncation to a line if it contains a single word.
int h = words[0].y - 1;
for(size_t i = 0; i < words.size(); ++i)
{
const Word &w = words[i];
if(h == w.y && (i != words.size() - 1 && w.y == words[i + 1].y))
font->Draw(text.c_str() + w.Index(), w.Pos() + topLeft, color);
else
font->Draw({text.c_str() + w.Index(), {wrapWidth, truncate}}, w.Pos() + topLeft, color);
h = w.y;
}
}
}
size_t WrappedText::Word::Index() const
{
return index;
}
Point WrappedText::Word::Pos() const
{
return Point(x, y);
}
void WrappedText::SetText(const char *it, size_t length)
{
// Clear any previous word-wrapping data. It becomes invalid as soon as the
// underlying text buffer changes.
words.clear();
// Reallocate that buffer.
text.assign(it, length);
}
void WrappedText::Wrap()
{
height = 0;
longestLineWidth = 0;
if(text.empty() || !font)
return;
// Do this as a finite state machine.
Word word;
bool traversingWord = false;
bool currentLineHasWords = false;
// Keep track of how wide the current line is. This is just so we know how
// much extra space must be allotted by the alignment code.
int lineWidth = 0;
// This is the index in the "words" vector of the first word on this line.
size_t lineBegin = 0;
// TODO: handle single words that are longer than the wrap width. Right now
// they are simply drawn un-broken, and thus extend beyond the margin.
// TODO: break words at hyphens, or even do automatic hyphenation. This
// would require a different format for the buffer, though, because it means
// inserting '\0' characters even where there is no whitespace.
for(string::iterator it = text.begin(); it != text.end(); ++it)
{
const char c = *it;
// Whitespace signals a word end - mark it and wrap the text if needed.
if(c <= ' ' && traversingWord)
{
traversingWord = false;
// Break the string at this point, and measure the word's width.
*it = '\0';
const int width = font->Width(text.c_str() + word.index);
if(word.x + width > wrapWidth)
{
// If adding this word would overflow the length of the line,
// this word will be the first on the next line.
word.y += lineHeight;
word.x = 0;
// Adjust the spacing of words in the now-complete line.
AdjustLine(lineBegin, lineWidth, false);
}
// Store this word, then advance the x position to the end of it.
words.push_back(word);
word.x += width;
// Keep track of how wide this line is now that this word is added.
lineWidth = word.x;
}
// If that whitespace was a newline, we must handle that, too.
if(c == '\n')
{
// The next word will begin on a new line.
word.y += lineHeight + paragraphBreak;
word.x = 0;
// Adjust the word spacings on the now-completed line.
AdjustLine(lineBegin, lineWidth, true);
currentLineHasWords = false;
}
// Otherwise, whitespace just adds to the x position.
else if(c <= ' ')
word.x += Space(c);
// If we've reached the start of a new word, remember where it begins.
else if(!traversingWord)
{
traversingWord = true;
currentLineHasWords = true;
word.index = it - text.begin();
}
}
// Handle the final word.
if(traversingWord)
{
const int width = font->Width(text.c_str() + word.index);
if(word.x + width > wrapWidth)
{
// If adding this word would overflow the length of the line,
// this final word will be the first (and only) on the next line.
word.y += lineHeight;
word.x = 0;
// Adjust the spacing of words in the now-complete line.
AdjustLine(lineBegin, lineWidth, false);
}
// Store this word, then advance the x position to the end of it.
words.push_back(word);
word.x += width;
// Keep track of how wide this line is now that this word is added.
lineWidth = word.x;
}
// Advance line if we need to.
if(currentLineHasWords)
word.y += lineHeight + paragraphBreak;
// Adjust the spacing of words in the final line of text.
AdjustLine(lineBegin, lineWidth, true);
// We have over-calculated the actual height by an extra paragraph break,
// so subtract that.
height = max(0, word.y - paragraphBreak);
}
void WrappedText::AdjustLine(size_t &lineBegin, int &lineWidth, bool isEnd)
{
int wordCount = static_cast<int>(words.size() - lineBegin);
int extraSpace = wrapWidth - lineWidth;
if(lineWidth > longestLineWidth)
longestLineWidth = lineWidth;
// Figure out how much space is left over. Depending on the alignment, we
// will add that space to the left, to the right, to both sides, or to the
// space in between the words. Exception: the last line of a "justified"
// paragraph is left aligned, not justified.
if(alignment == Alignment::JUSTIFIED && !isEnd && wordCount > 1)
{
for(int i = 0; i < wordCount; ++i)
words[lineBegin + i].x += extraSpace * i / (wordCount - 1);
}
else if(alignment == Alignment::CENTER || alignment == Alignment::RIGHT)
{
int shift = (alignment == Alignment::CENTER) ? extraSpace / 2 : extraSpace;
for(int i = 0; i < wordCount; ++i)
words[lineBegin + i].x += shift;
}
lineBegin = words.size();
lineWidth = 0;
}
int WrappedText::Space(char c) const
{
return (c == ' ') ? space : (c == '\t') ? tabWidth : 0;
}
|