ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/Client.xs
(Generate patch)

Comparing deliantra/Deliantra-Client/Client.xs (file contents):
Revision 1.2 by root, Thu Apr 6 20:00:23 2006 UTC vs.
Revision 1.8 by root, Sun Apr 9 01:19:15 2006 UTC

1#include "EXTERN.h" 1#include "EXTERN.h"
2#include "perl.h" 2#include "perl.h"
3#include "XSUB.h" 3#include "XSUB.h"
4 4
5#include <string.h>
6
5#include <SDL.h> 7#include <SDL.h>
6#include <SDL_image.h> 8#include <SDL_opengl.h>
9
10#include <pango/pango.h>
11#include <pango/pangoft2.h>
12
13static PangoContext *context;
14static PangoFontMap *fontmap;
7 15
8MODULE = Crossfire::Client PACKAGE = Crossfire::Client 16MODULE = Crossfire::Client PACKAGE = Crossfire::Client
9 17
18BOOT:
19{
20 fontmap = pango_ft2_font_map_new ();
21 context = pango_ft2_font_map_create_context ((PangoFT2FontMap *)fontmap);
22}
10 23
24char *
25gl_version ()
26 CODE:
27 RETVAL = (char *)glGetString (GL_VERSION);
28 OUTPUT:
29 RETVAL
30
31char *
32gl_extensions ()
33 CODE:
34 RETVAL = (char *)glGetString (GL_EXTENSIONS);
35 OUTPUT:
36 RETVAL
37
38void
39add_font (char *file)
40 CODE:
41 FcConfigAppFontAddFile (0, (const FcChar8 *)file);
42
43void
44set_font (char *pango_font)
45 CODE:
46{
47 PangoFontDescription *font = pango_font_description_from_string (pango_font);
48 pango_context_set_font_description (context, font);
49}
50
51void
52font_render (SV *text_, int height = 10)
53 PPCODE:
54{
55 STRLEN textlen;
56 char *text = SvPVutf8 (text_, textlen);
57 SV *retval;
58 int w, h;
59 FT_Bitmap bitmap;
60 PangoLayout *layout;
61 PangoFontDescription *font = pango_context_get_font_description (context);
62 pango_font_description_set_absolute_size (font, height * PANGO_SCALE);
63
64 layout = pango_layout_new (context);
65 pango_layout_set_markup (layout, text, textlen);
66 pango_layout_get_pixel_size (layout, &w, &h);
67
68 w = (w + 3) & ~3;
69 if (!w) w = 1;
70 if (!h) h = 1;
71
72 retval = newSV (w * h);
73 SvPOK_only (retval);
74 SvCUR_set (retval, w * h);
75
76 bitmap.rows = h;
77 bitmap.width = w;
78 bitmap.pitch = w;
79 bitmap.buffer = (unsigned char*)SvPVX (retval);
80 bitmap.num_grays = 256;
81 bitmap.pixel_mode = FT_PIXEL_MODE_GRAY;
82
83 memset (bitmap.buffer, 0, w * h);
84
85 pango_ft2_render_layout (&bitmap, layout, 0 * PANGO_SCALE, 0 * PANGO_SCALE);
86 g_object_unref (layout);
87
88 EXTEND (SP, 3);
89 PUSHs (sv_2mortal (newSViv (w)));
90 PUSHs (sv_2mortal (newSViv (h)));
91 PUSHs (sv_2mortal (retval));
92}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines