X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Ftextscroller.cpp;h=94a74ee643a50c8a47fbf1131d7b7815f7daa56a;hb=ba5f95533903ed6190b0fddede258c86540afffa;hp=5cf82dc210f4442295a65c8f0d2f542898fa0003;hpb=f9e0269b9c1c0cbab91c9b85b0c70a579e7cf86d;p=supertux.git diff --git a/src/textscroller.cpp b/src/textscroller.cpp index 5cf82dc21..94a74ee64 100644 --- a/src/textscroller.cpp +++ b/src/textscroller.cpp @@ -70,7 +70,7 @@ TextScroller::TextScroller(const std::string& filename) } // Split text string lines into a vector - lines = InfoBoxLine::split(text, 40); + lines = InfoBoxLine::split(text, SCREEN_WIDTH - 2*LEFT_BORDER); // load background image background.reset(new Surface("images/background/" + background_file)); @@ -124,7 +124,10 @@ TextScroller::draw(DrawingContext& context) float y = SCREEN_HEIGHT - scroll; for(size_t i = 0; i < lines.size(); i++) { - lines[i]->draw(context, Vector(LEFT_BORDER, y), LAYER_GUI); + if (y + lines[i]->get_height() >= 0 && SCREEN_HEIGHT - y >= 0) { + lines[i]->draw(context, Rect(LEFT_BORDER, y, SCREEN_WIDTH - 2*LEFT_BORDER, y), LAYER_GUI); + } + y += lines[i]->get_height(); } @@ -138,7 +141,7 @@ InfoBox::InfoBox(const std::string& text) : firstline(0) { // Split text string lines into a vector - lines = InfoBoxLine::split(text, 23); + lines = InfoBoxLine::split(text, 400); try { @@ -182,7 +185,7 @@ InfoBox::draw(DrawingContext& context) break; } - lines[i]->draw(context, Vector(x1, y), LAYER_GUI); + lines[i]->draw(context, Rect(x1, y, x1+width, y), LAYER_GUI); y += lines[i]->get_height(); } @@ -225,39 +228,88 @@ InfoBox::pagedown() { } -InfoBoxLine::InfoBoxLine(char format_char, const std::string& text) : lineType(NORMAL), font(white_text), text(text), image(0) -{ +namespace { +Font* get_font_by_format_char(char format_char) { + switch(format_char) + { + case ' ': + return small_font; + break; + case '-': + return big_font; + break; + case '\t': + case '*': + case '#': + case '!': + return normal_font; + break; + default: + return normal_font; + log_warning << "Unknown format_char: '" << format_char << "'" << std::endl; + break; + } +} + +Color get_color_by_format_char(char format_char) { + switch(format_char) + { + case ' ': + return TextScroller::small_color; + break; + case '-': + return TextScroller::heading_color; + break; + case '*': + return TextScroller::reference_color; + case '\t': + case '#': + case '!': + return TextScroller::normal_color; + break; + default: + return Color(0,0,0); + log_warning << "Unknown format_char: '" << format_char << "'" << std::endl; + break; + } +} + +InfoBoxLine::LineType get_linetype_by_format_char(char format_char) { switch(format_char) { case ' ': - lineType = SMALL; - font = white_small_text; + return InfoBoxLine::SMALL; break; case '\t': - lineType = NORMAL; - font = white_text; + return InfoBoxLine::NORMAL; break; case '-': - lineType = HEADING; - font = white_big_text; + return InfoBoxLine::HEADING; break; case '*': - lineType = REFERENCE; - font = blue_text; + return InfoBoxLine::REFERENCE; break; case '#': - lineType = NORMAL_LEFT; - font = white_text; + return InfoBoxLine::NORMAL_LEFT; break; case '!': - lineType = IMAGE; - image = new Surface(text); + return InfoBoxLine::IMAGE; break; default: + return InfoBoxLine::SMALL; log_warning << "Unknown format_char: '" << format_char << "'" << std::endl; break; } } +} + +InfoBoxLine::InfoBoxLine(char format_char, const std::string& text) : lineType(NORMAL), font(normal_font), text(text), image(0) +{ + font = get_font_by_format_char(format_char); + lineType = get_linetype_by_format_char(format_char); + color = get_color_by_format_char(format_char); + if (lineType == IMAGE) image = new Surface(text); +} InfoBoxLine::~InfoBoxLine() { @@ -265,7 +317,7 @@ InfoBoxLine::~InfoBoxLine() } const std::vector -InfoBoxLine::split(const std::string& text, int line_length) +InfoBoxLine::split(const std::string& text, float width) { std::vector lines; @@ -300,27 +352,30 @@ InfoBoxLine::split(const std::string& text, int line_length) // append wrapped parts of line into list std::string overflow; do { - lines.push_back(new InfoBoxLine(format_char, Font::wrap_to_chars(s, line_length, &overflow))); + Font* font = get_font_by_format_char(format_char); + std::string s2 = s; + if (font) s2 = font->wrap_to_width(s2, width, &overflow); + lines.push_back(new InfoBoxLine(format_char, s2)); s = overflow; } while (s.length() > 0); - } return lines; } void -InfoBoxLine::draw(DrawingContext& context, const Vector& position, int layer) +InfoBoxLine::draw(DrawingContext& context, const Rect& bbox, int layer) { + Vector position = bbox.p1; switch (lineType) { case IMAGE: - context.draw_surface(image, Vector( (SCREEN_WIDTH - image->get_width()) / 2, position.y), layer); + context.draw_surface(image, Vector( (bbox.p1.x + bbox.p2.x - image->get_width()) / 2, position.y), layer); break; case NORMAL_LEFT: - context.draw_text(font, text, Vector(position.x, position.y), ALIGN_LEFT, layer); + context.draw_text(font, text, Vector(position.x, position.y), ALIGN_LEFT, layer, color); break; default: - context.draw_text(font, text, Vector(SCREEN_WIDTH/2, position.y), ALIGN_CENTER, layer); + context.draw_text(font, text, Vector((bbox.p1.x + bbox.p2.x) / 2, position.y), ALIGN_CENTER, layer, color); break; } }