Revert ca83136
[supertux.git] / src / supertux / textscroller.hpp
1 //  SuperTux
2 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
3 //
4 //  This program is free software: you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation, either version 3 of the License, or
7 //  (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 #ifndef HEADER_SUPERTUX_SUPERTUX_TEXTSCROLLER_HPP
18 #define HEADER_SUPERTUX_SUPERTUX_TEXTSCROLLER_HPP
19
20 #include <map>
21 #include <memory>
22
23 #include "supertux/screen.hpp"
24 #include "video/color.hpp"
25 #include "video/surface_ptr.hpp"
26
27 class DrawingContext;
28 class Font;
29 class InfoBoxLine;
30
31 /**
32  * Screen that displays intro text, extro text, etc.
33  */
34 class TextScroller : public Screen
35 {
36 public:
37   TextScroller(const std::string& file);
38   virtual ~TextScroller();
39
40   void setup();
41   void draw(DrawingContext& context);
42   void update(float elapsed_time);
43
44   static Color small_color;
45   static Color heading_color;
46   static Color reference_color;
47   static Color normal_color;
48
49 private:
50   float defaultspeed;
51   float speed;
52   std::string music;
53   SurfacePtr background;
54   std::vector<InfoBoxLine*> lines;
55   float scroll;
56   bool fading;
57
58 private:
59   TextScroller(const TextScroller&);
60   TextScroller& operator=(const TextScroller&);
61 };
62
63 #endif
64
65 /* EOF */