- Trampoline test level
[supertux.git] / src / text.h
1 //  $Id$
2 // 
3 //  SuperTux
4 //  Copyright (C) 2004 Tobias Glaesser <tobi.web@gmx.de>
5 //
6 //  This program is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU General Public License
8 //  as published by the Free Software Foundation; either version 2
9 //  of the License, or (at your option) any later version.
10 //
11 //  This program is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 //  GNU General Public License for more details.
15 // 
16 //  You should have received a copy of the GNU General Public License
17 //  along with this program; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 //  02111-1307, USA.
20
21 #ifndef SUPERTUX_TEXT_H
22 #define SUPERTUX_TEXT_H
23
24 #include <string>
25 #include "texture.h"
26
27 void display_text_file(const std::string& file, const std::string& surface, float scroll_speed);
28 void display_text_file(const std::string& file, Surface* surface, float scroll_speed);
29
30 /* Kinds of texts. */
31 enum {
32    TEXT_TEXT,
33    TEXT_NUM
34 };
35
36 enum TextHAlign {
37    A_LEFT,
38    A_HMIDDLE,
39    A_RIGHT,
40 };
41
42 enum TextVAlign {
43    A_TOP,
44    A_VMIDDLE,
45    A_BOTTOM,
46 };
47
48 /* Text type */
49 class Text
50 {
51  public:
52   Surface* chars;
53   Surface* shadow_chars;
54   int kind;
55   int w;
56   int h;
57  public:
58   Text(const std::string& file, int kind, int w, int h);
59   ~Text();
60
61   void draw(const char* text, int x, int y, int shadowsize = 1, int update = NO_UPDATE);
62   void draw_chars(Surface* pchars, const char* text, int x, int y, int update = NO_UPDATE);
63   void drawf(const char* text, int x, int y, TextHAlign halign, TextVAlign valign, int shadowsize, int update = NO_UPDATE);
64   void draw_align(const char* text, int x, int y, TextHAlign halign, TextVAlign valign, int shadowsize = 1, int update = NO_UPDATE);
65   void erasetext(const char * text, int x, int y, Surface* surf, int update, int shadowsize);
66   void erasecenteredtext(const char * text, int y, Surface* surf, int update, int shadowsize);
67 };
68
69 #endif /*SUPERTUX_TEXT_H*/
70