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.10 by root, Sun Apr 9 17:34:15 2006 UTC vs.
Revision 1.13 by root, Tue Apr 11 12:27:51 2006 UTC

18 18
19static PangoContext *context; 19static PangoContext *context;
20static PangoFontMap *fontmap; 20static PangoFontMap *fontmap;
21 21
22MODULE = Crossfire::Client PACKAGE = Crossfire::Client 22MODULE = Crossfire::Client PACKAGE = Crossfire::Client
23
24PROTOTYPES: ENABLE
23 25
24BOOT: 26BOOT:
25{ 27{
26 fontmap = pango_ft2_font_map_new (); 28 fontmap = pango_ft2_font_map_new ();
27 context = pango_ft2_font_map_create_context ((PangoFT2FontMap *)fontmap); 29 context = pango_ft2_font_map_create_context ((PangoFT2FontMap *)fontmap);
45 RETVAL = (char *)glGetString (GL_EXTENSIONS); 47 RETVAL = (char *)glGetString (GL_EXTENSIONS);
46 OUTPUT: 48 OUTPUT:
47 RETVAL 49 RETVAL
48 50
49void 51void
52add_font (char *file)
53 CODE:
54 FcConfigAppFontAddFile (0, (const FcChar8 *)file); /* no idea wether this is required */
55
56void
50set_font (char *file) 57set_font (char *file)
51 CODE: 58 CODE:
52{ 59{
53 int count; 60 int count;
54 FcPattern *pattern = FcFreeTypeQuery ((const FcChar8 *)file, 0, 0, &count); 61 FcPattern *pattern = FcFreeTypeQuery ((const FcChar8 *)file, 0, 0, &count);
55 FcConfigAppFontAddFile (0, (const FcChar8 *)file); /* no idea wether this is required */
56 PangoFontDescription *font = pango_fc_font_description_from_pattern (pattern, 0); 62 PangoFontDescription *font = pango_fc_font_description_from_pattern (pattern, 0);
57 FcPatternDestroy (pattern); 63 FcPatternDestroy (pattern);
58 pango_context_set_font_description (context, font); 64 pango_context_set_font_description (context, font);
59} 65}
66
67MODULE = Crossfire::Client PACKAGE = Crossfire::Client
60 68
61void 69void
62font_render (SV *text_, int height = 10) 70font_render (SV *text_, int height = 10)
63 PPCODE: 71 PPCODE:
64{ 72{
98 EXTEND (SP, 3); 106 EXTEND (SP, 3);
99 PUSHs (sv_2mortal (newSViv (w))); 107 PUSHs (sv_2mortal (newSViv (w)));
100 PUSHs (sv_2mortal (newSViv (h))); 108 PUSHs (sv_2mortal (newSViv (h)));
101 PUSHs (sv_2mortal (retval)); 109 PUSHs (sv_2mortal (retval));
102} 110}
111
112MODULE = Crossfire::Client PACKAGE = Crossfire::Client::Texture
113
114void
115draw_quad (SV *self, double x, double y, double w = 0, double h = 0)
116 PROTOTYPE: $$$;$$
117 CODE:
118{
119 HV *hv = (HV *)SvRV (self);
120 double s = SvNV (*hv_fetch (hv, "s", 1, 1));
121 double t = SvNV (*hv_fetch (hv, "t", 1, 1));
122 int name = SvIV (*hv_fetch (hv, "name", 4, 1));
123
124 if (items < 5)
125 {
126 w = SvNV (*hv_fetch (hv, "width", 5, 1));
127 h = SvNV (*hv_fetch (hv, "height", 6, 1));
128 }
129
130 glBindTexture (GL_TEXTURE_2D, name);
131 glBegin (GL_QUADS);
132 glTexCoord2d (0, 0); glVertex2d (x , y );
133 glTexCoord2d (0, t); glVertex2d (x , y + h);
134 glTexCoord2d (s, t); glVertex2d (x + w, y + h);
135 glTexCoord2d (s, 0); glVertex2d (x + w, y );
136 glEnd ();
137}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines