added 3dengfx into the repo, probably not the correct version for this
[summerhack] / src / 3dengfx / src / fxwt / text.hpp
1 /*
2 This file is part of fxwt, the window system toolkit of 3dengfx.
3
4 Copyright (c) 2004, 2005 John Tsiombikas <nuclear@siggraph.org>
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (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  02111-1307  USA
19 */
20
21 /* True type text rendering and management.
22  *
23  * Author: John Tsiombikas 2005
24  */
25
26 #ifndef _TEXT_HPP_
27 #define _TEXT_HPP_
28
29 #include "3dengfx/textures.hpp"
30 #include "n3dmath2/n3dmath2.hpp"
31 #include "gfx/color.hpp"
32
33 namespace fxwt {
34
35         enum Font {
36                 FONT_FREE_SANS,
37                 FONT_FREE_SERIF,
38                 FONT_FREE_MONO,
39
40                 FONT_VERA_SANS,
41                 FONT_VERA_SERIF,
42                 FONT_VERA_MONO,
43                 
44                 FONT_VERDANA,
45                 FONT_TIMES_NEW_ROMAN,
46                 FONT_COURIER_NEW,
47                 
48                 FONT_MS_SANS = FONT_VERDANA,
49                 FONT_MS_SERIF = FONT_TIMES_NEW_ROMAN,
50                 FONT_MS_MONO = FONT_COURIER_NEW,
51
52                 FONT_NULL       /* keep this last */
53         };
54
55         enum FontStyle {
56                 FONT_SANS,
57                 FONT_SERIF,
58                 FONT_MONO
59         };
60
61         enum TextRenderMode {TEXT_TRANSPARENT, TEXT_OPAQUE};
62         
63         bool text_init();
64         void text_close();
65
66         void set_text_render_mode(TextRenderMode mode);
67
68         void set_font_size(int sz);
69         int get_font_size();
70
71         bool set_font(Font fnt);
72         bool set_font(FontStyle fstyle);
73
74         const char *get_font_name(Font fnt);
75
76         Texture *get_text(const char *text_str);
77
78         void print_text(const char *text_str, const Vector2 &pos, scalar_t size, const Color &col = Color(1,1,1));
79 }
80
81 #endif  /* _TEXT_HPP_ */