X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Ftextscroller.cpp;h=759a9c704b4a346534e222907b095393aa15ad6d;hb=d4b281559d45406a5d07cf04d89142cdeb90b114;hp=b2d60bf91eeec3ccfa21aa45df67fb9f02cdf8f8;hpb=54e868d71846a48c7f49f370a1bc05bf944e9181;p=supertux.git diff --git a/src/textscroller.cpp b/src/textscroller.cpp index b2d60bf91..759a9c704 100644 --- a/src/textscroller.cpp +++ b/src/textscroller.cpp @@ -45,18 +45,18 @@ TextScroller::TextScroller(const std::string& filename) { defaultspeed = DEFAULT_SPEED; speed = defaultspeed; - + std::string text; std::string background_file; lisp::Parser parser; try { - std::auto_ptr root (parser.parse(filename)); + const lisp::Lisp* root = parser.parse(filename); const lisp::Lisp* text_lisp = root->get_lisp("supertux-text"); if(!text_lisp) throw std::runtime_error("File isn't a supertux-text file"); - + if(!text_lisp->get("text", text)) throw std::runtime_error("file doesn't contain a text field"); if(!text_lisp->get("background", background_file)) @@ -104,13 +104,13 @@ TextScroller::update(float elapsed_time) if(main_controller->pressed(Controller::JUMP) || main_controller->pressed(Controller::ACTION) || main_controller->pressed(Controller::MENU_SELECT)) - scroll += SCROLL; + scroll += SCROLL; if(main_controller->pressed(Controller::PAUSE_MENU)) { main_loop->exit_screen(new FadeOut(0.5)); } scroll += speed * elapsed_time; - + if(scroll < 0) scroll = 0; } @@ -118,7 +118,9 @@ TextScroller::update(float elapsed_time) void TextScroller::draw(DrawingContext& context) { - context.draw_surface(background.get(), Vector(0,0), 0); + context.draw_filled_rect(Vector(0, 0), Vector(SCREEN_WIDTH, SCREEN_HEIGHT), + Color(0.6f, 0.7f, 0.8f, 0.5f), 0); + context.draw_surface(background.get(), Vector(SCREEN_WIDTH/2 - background->get_width()/2 , SCREEN_HEIGHT/2 - background->get_height()/2), 0); float y = SCREEN_HEIGHT - scroll; for(size_t i = 0; i < lines.size(); i++) { @@ -154,7 +156,9 @@ InfoBox::InfoBox(const std::string& text) InfoBox::~InfoBox() { - for(std::vector::iterator i = lines.begin(); i != lines.end(); i++) delete *i; + for(std::vector::iterator i = lines.begin(); + i != lines.end(); i++) + delete *i; delete arrow_scrollup; delete arrow_scrolldown; } @@ -162,8 +166,8 @@ InfoBox::~InfoBox() void InfoBox::draw(DrawingContext& context) { - float x1 = 200; - float y1 = 100; + float x1 = SCREEN_WIDTH/2-200; + float y1 = SCREEN_HEIGHT/2-200; float width = 400; float height = 200; @@ -219,27 +223,27 @@ InfoBoxLine::InfoBoxLine(char format_char, const std::string& text) : lineType(N { switch(format_char) { - case ' ': + case ' ': lineType = SMALL; font = white_small_text; break; - case '\t': + case '\t': lineType = NORMAL; font = white_text; break; - case '-': + case '-': lineType = HEADING; font = white_big_text; break; - case '*': + case '*': lineType = REFERENCE; font = blue_text; break; - case '#': + case '#': lineType = NORMAL_LEFT; font = white_text; break; - case '!': + case '!': lineType = IMAGE; image = new Surface(text); break; @@ -254,7 +258,7 @@ InfoBoxLine::~InfoBoxLine() delete image; } -const std::vector +const std::vector InfoBoxLine::split(const std::string& text, int line_length) { std::vector lines; @@ -285,12 +289,12 @@ InfoBoxLine::split(const std::string& text, int line_length) if (format_char == '!') { lines.push_back(new InfoBoxLine(format_char, s)); continue; - } + } // 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))); + do { + lines.push_back(new InfoBoxLine(format_char, Font::wrap_to_chars(s, line_length, &overflow))); s = overflow; } while (s.length() > 0); @@ -299,7 +303,7 @@ InfoBoxLine::split(const std::string& text, int line_length) return lines; } -void +void InfoBoxLine::draw(DrawingContext& context, const Vector& position, int layer) { switch (lineType) { @@ -307,10 +311,10 @@ InfoBoxLine::draw(DrawingContext& context, const Vector& position, int layer) context.draw_surface(image, Vector( (SCREEN_WIDTH - image->get_width()) / 2, position.y), layer); break; case NORMAL_LEFT: - context.draw_text(font, text, Vector(position.x, position.y), LEFT_ALLIGN, layer); + context.draw_text(font, text, Vector(position.x, position.y), ALIGN_LEFT, layer); break; - default: - context.draw_text(font, text, Vector(SCREEN_WIDTH/2, position.y), CENTER_ALLIGN, layer); + default: + context.draw_text(font, text, Vector(SCREEN_WIDTH/2, position.y), ALIGN_CENTER, layer); break; } } @@ -323,8 +327,7 @@ InfoBoxLine::get_height() return image->get_height() + ITEMS_SPACE; case NORMAL_LEFT: return font->get_height() + ITEMS_SPACE; - default: + default: return font->get_height() + ITEMS_SPACE; } } -