X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Ftextscroller.hpp;h=604af08941aee0f306ee8b38decab29f66f3f510;hb=3da5eb5cc8f63053aaebb48cb2fffbed66f30d47;hp=5afef35497184b6f91061cd5ef51cf62f871b2fe;hpb=89afae628ef9bf46b66f42a2573f6abc5f9bcb61;p=supertux.git diff --git a/src/textscroller.hpp b/src/textscroller.hpp index 5afef3549..604af0894 100644 --- a/src/textscroller.hpp +++ b/src/textscroller.hpp @@ -1,7 +1,7 @@ // $Id$ -// +// // SuperTux -// Copyright (C) 2005 Matthias Braun +// Copyright (C) 2006 Matthias Braun // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -12,7 +12,7 @@ // 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, write to the Free Software // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA @@ -25,9 +25,33 @@ #include #include -#include "video/surface.hpp" +#include "screen.hpp" +#include "video/font.hpp" class DrawingContext; +class Surface; + +/** + * Helper class for InfoBox: Represents a line of text + */ +class InfoBoxLine +{ +private: + enum LineType { NORMAL, NORMAL_LEFT, SMALL, HEADING, REFERENCE, IMAGE}; + LineType lineType; + Font* font; + std::string text; + Surface* image; + +public: + InfoBoxLine(char format_char, const std::string& text); + ~InfoBoxLine(); + + void draw(DrawingContext& context, const Vector& position, int layer); + float get_height(); + + static const std::vector split(const std::string& text, int line_length); +}; /** This class is displaying a box with information text inside the game */ @@ -45,18 +69,30 @@ public: private: size_t firstline; - std::vector lines; + std::vector lines; std::map images; Surface* arrow_scrollup; Surface* arrow_scrolldown; }; -/** Reads a text file (using LispReader, so it as to be in its formatting) - * and scroll it over the screen - * (this call blocks until all text scrolled through or the user aborted the - * textscrolling) - */ -void display_text_file(const std::string& file); +class TextScroller : public Screen +{ +public: + TextScroller(const std::string& file); + virtual ~TextScroller(); + + void setup(); + void draw(DrawingContext& context); + void update(float elapsed_time); + +private: + float defaultspeed; + float speed; + std::string music; + std::auto_ptr background; + std::vector lines; + float scroll; +}; #endif