7f398bc827bfb7f809d12a2cb72381df11d2a0f6
[supertux.git] / src / screen / font.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 #include "vector.h"
27
28 void display_text_file(const std::string& file, const std::string& surface, float scroll_speed);
29 void display_text_file(const std::string& file, Surface* surface, float scroll_speed);
30
31 /* Kinds of texts. */
32 enum {
33    TEXT_TEXT,
34    TEXT_NUM
35 };
36
37 /* Text type */
38 class Font
39 {
40 public:
41   Surface* chars;
42   Surface* shadow_chars;
43   int kind;
44   int w;
45   int h;
46   int shadowsize;
47 public:
48   Font(const std::string& file, int kind, int w, int h, int shadowsize = 2);
49   ~Font();
50
51   float get_height() const;
52   float get_text_width(const std::string& text) const;
53
54 private:
55   friend class DrawingContext;
56   
57   void draw(const std::string& text, const Vector& pos);
58   void draw_chars(Surface* pchars, const std::string& text, 
59       const Vector& position);
60 };
61
62 #endif /*SUPERTUX_TEXT_H*/
63