- changed way badguy removal is handled (ie. with a flag now)
[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 "texture.h"
25
26
27 /* Kinds of texts. */
28 enum {
29    TEXT_TEXT,
30    TEXT_NUM
31 };
32
33 enum TextHAlign {
34    A_LEFT,
35    A_HMIDDLE,
36    A_RIGHT,
37 };
38
39 enum TextVAlign {
40    A_TOP,
41    A_VMIDDLE,
42    A_BOTTOM,
43 };
44
45 /* Text type */
46 class Text
47 {
48  public:
49   Surface* chars;
50   Surface* shadow_chars;
51   int kind;
52   int w;
53   int h;
54  public:
55   Text(const std::string& file, int kind, int w, int h);
56   ~Text();
57
58   void draw(const char* text, int x, int y, int shadowsize = 1, int update = NO_UPDATE);
59   void draw_chars(Surface* pchars, const char* text, int x, int y, int update = NO_UPDATE);
60   void drawf(const char* text, int x, int y, TextHAlign halign, TextVAlign valign, int shadowsize, int update = NO_UPDATE);
61   void draw_align(const char* text, int x, int y, TextHAlign halign, TextVAlign valign, int shadowsize = 1, int update = NO_UPDATE);
62   void erasetext(const char * text, int x, int y, Surface* surf, int update, int shadowsize);
63   void erasecenteredtext(const char * text, int y, Surface* surf, int update, int shadowsize);
64 };
65
66 #endif /*SUPERTUX_TEXT_H*/
67