#define fix
[supertux.git] / src / textscroller.hpp
index 1bdefbf..604af08 100644 (file)
@@ -1,7 +1,7 @@
 //  $Id$
-// 
+//
 //  SuperTux
-//  Copyright (C) 2005 Matthias Braun <matze@braunis.de>
+//  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
 //
 //  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
 #include <map>
 
 #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<InfoBoxLine*> split(const std::string& text, int line_length);
+};
+
 /** This class is displaying a box with information text inside the game
  */
 class InfoBox
@@ -46,7 +69,7 @@ public:
   
 private:
   size_t firstline;
-  std::vector<std::string> lines;
+  std::vector<InfoBoxLine*> lines;
   std::map<std::string, Surface*> images;
   Surface* arrow_scrollup;
   Surface* arrow_scrolldown;
@@ -67,8 +90,7 @@ private:
   float speed;
   std::string music;
   std::auto_ptr<Surface> background;
-  std::vector<std::string> lines;
-  std::map<std::string, Surface*> images;
+  std::vector<InfoBoxLine*> lines;
   float scroll;
 };