]> git.jsancho.org Git - gacela.git/blob - src/ftgl.c
57fbbf8f7050a7a6406e122369ef2f85fe64a6c0
[gacela.git] / src / ftgl.c
1 /* Gacela, a GNU Guile extension for fast games development
2    Copyright (C) 2009 by Javier Sancho Fernandez <jsf at jsancho dot org>
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
18 #include <libguile.h>
19 #include <FTGL/ftgl.h>
20
21 struct font
22 {
23   SCM filename;
24   FTGLfont *font_address;
25   int size;
26 };
27
28 static scm_t_bits font_tag;
29
30 SCM
31 make_font (SCM file, SCM size, FTGLfont *font_address)
32 {
33   SCM smob;
34   struct font *font;
35
36   font = (struct font *) scm_gc_malloc (sizeof (struct font), "font");
37
38   font->filename = SCM_BOOL_F;
39   font->size = scm_to_int (size);
40   font->font_address = NULL;
41
42   SCM_NEWSMOB (smob, font_tag, font);
43
44   font->filename = file;
45   font->font_address = font_address;
46
47   return smob;
48 }
49
50 FTGLfont *
51 get_font_address (SCM font_smob)
52 {
53   struct font *font;
54
55   scm_assert_smob_type (font_tag, font_smob);
56   font = (struct font *) SCM_SMOB_DATA (font_smob);
57   return font->font_address;
58 }
59
60 SCM
61 mark_font (SCM font_smob)
62 {
63   struct font *font = (struct font *) SCM_SMOB_DATA (font_smob);
64
65   scm_gc_mark (font->filename);
66      
67   return SCM_BOOL_F;
68 }
69
70 size_t
71 free_font (SCM font_smob)
72 {
73   struct font *font = (struct font *) SCM_SMOB_DATA (font_smob);
74
75   ftglDestroyFont (font->font_address);
76   scm_gc_free (font, sizeof (struct font), "font");
77
78   return 0;
79 }
80
81 static int
82 print_font (SCM font_smob, SCM port, scm_print_state *pstate)
83 {
84   struct font *font = (struct font *) SCM_SMOB_DATA (font_smob);
85
86   scm_puts ("#<font \"", port);
87   scm_display (font->filename, port);
88   scm_puts ("\", size ", port);
89   scm_display (scm_from_int (font->size), port);
90   scm_puts (">", port);
91
92   /* non-zero means success */
93   return 1;
94 }
95
96
97 SCM
98 gacela_ftglCreateTextureFont (SCM file, SCM size)
99 {
100   FTGLfont *font_address = ftglCreateTextureFont (scm_to_locale_string (file));
101
102   if (font_address) {
103     return make_font (file, size, font_address);
104   }
105   else {
106     return SCM_BOOL_F;
107   }
108 }
109
110 SCM
111 gacela_ftglSetFontFaceSize (SCM font, SCM size, SCM res)
112 {
113   return scm_from_int (ftglSetFontFaceSize (get_font_address (font), scm_to_int (size), scm_to_int (res)));
114 }
115
116 SCM
117 gacela_ftglSetFontCharMap (SCM font, SCM encoding)
118 {
119   return scm_from_int (ftglSetFontCharMap (get_font_address (font), scm_to_int (encoding)));
120 }
121
122 SCM
123 gacela_ftglRenderFont (SCM font, SCM string, SCM mode)
124 {
125   ftglRenderFont (get_font_address (font), scm_to_locale_string(string), scm_to_int (mode));
126   return SCM_UNSPECIFIED;
127 }
128
129
130 void
131 init_gacela_ftgl (void *data)
132 {
133   font_tag = scm_make_smob_type ("font", sizeof (struct font));
134   scm_set_smob_mark (font_tag, mark_font);
135   scm_set_smob_free (font_tag, free_font);
136   scm_set_smob_print (font_tag, print_font);
137   //  scm_set_smob_equalp (surface_tag, equalp_surface);
138
139   scm_c_define ("ft_encoding_unicode", scm_from_int (ft_encoding_unicode));
140   scm_c_define ("FTGL_RENDER_ALL", scm_from_int (FTGL_RENDER_ALL));
141
142   scm_c_define_gsubr ("ftglCreateTextureFont", 2, 0, 0, gacela_ftglCreateTextureFont);
143   scm_c_define_gsubr ("ftglSetFontFaceSize", 3, 0, 0, gacela_ftglSetFontFaceSize);
144   scm_c_define_gsubr ("ftglSetFontCharMap", 2, 0, 0, gacela_ftglSetFontCharMap);
145   scm_c_define_gsubr ("ftglRenderFont", 3, 0, 0, gacela_ftglRenderFont);
146 }
147
148
149 void
150 scm_init_gacela_ftgl ()
151 {
152   init_gacela_ftgl (NULL);
153 }