ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/Client.xs
Revision: 1.16
Committed: Tue Apr 11 13:27:48 2006 UTC (18 years, 1 month ago) by root
Branch: MAIN
Changes since 1.15: +8 -3 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #include "EXTERN.h"
2 #include "perl.h"
3 #include "XSUB.h"
4
5 #include <string.h>
6
7 #include <SDL.h>
8 #include <SDL_opengl.h>
9
10 #include <pango/pango.h>
11 #include <pango/pangofc-fontmap.h>
12 #include <pango/pangoft2.h>
13
14 #include <sys/types.h>
15 #include <sys/socket.h>
16 #include <netinet/in.h>
17 #include <netinet/tcp.h>
18
19 static PangoContext *context;
20 static PangoFontMap *fontmap;
21
22 typedef struct cf_layout {
23 PangoLayout *pl;
24 int base_height;
25 } *CFClient__Layout;
26
27 static void
28 layout_get_pixel_size (CFClient__Layout self, int *w, int *h)
29 {
30 PangoFontDescription *font = pango_context_get_font_description (context);
31 pango_font_description_set_absolute_size (font, self->base_height * PANGO_SCALE);
32
33 pango_layout_get_pixel_size (self->pl, w, h);
34
35 *w = (*w + 3) & ~3;
36 if (!*w) *w = 1;
37 if (!*h) *h = 1;
38 }
39
40 MODULE = CFClient PACKAGE = CFClient
41
42 PROTOTYPES: ENABLE
43
44 BOOT:
45 {
46 fontmap = pango_ft2_font_map_new ();
47 context = pango_ft2_font_map_create_context ((PangoFT2FontMap *)fontmap);
48 }
49
50 void
51 lowdelay (int fd, int val = 1)
52 CODE:
53 setsockopt (fd, IPPROTO_TCP, TCP_NODELAY, &val, sizeof (val));
54
55 char *
56 gl_version ()
57 CODE:
58 RETVAL = (char *)glGetString (GL_VERSION);
59 OUTPUT:
60 RETVAL
61
62 char *
63 gl_extensions ()
64 CODE:
65 RETVAL = (char *)glGetString (GL_EXTENSIONS);
66 OUTPUT:
67 RETVAL
68
69 void
70 add_font (char *file)
71 CODE:
72 FcConfigAppFontAddFile (0, (const FcChar8 *)file); /* no idea wether this is required */
73
74 void
75 set_font (char *file)
76 CODE:
77 {
78 int count;
79 FcPattern *pattern = FcFreeTypeQuery ((const FcChar8 *)file, 0, 0, &count);
80 PangoFontDescription *font = pango_fc_font_description_from_pattern (pattern, 0);
81 FcPatternDestroy (pattern);
82 pango_context_set_font_description (context, font);
83 }
84
85 MODULE = CFClient PACKAGE = CFClient::Layout
86
87 CFClient::Layout
88 new (SV *class, int base_height = 10)
89 CODE:
90 New (0, RETVAL, 1, struct cf_layout);
91 RETVAL->base_height = base_height;
92 RETVAL->pl = pango_layout_new (context);
93 pango_layout_set_wrap (RETVAL->pl, PANGO_WRAP_WORD_CHAR);
94 OUTPUT:
95 RETVAL
96
97 void
98 DESTROY (CFClient::Layout self)
99 CODE:
100 g_object_unref (self->pl);
101 Safefree (self);
102
103 void
104 set_markup (CFClient::Layout self, SV *text_)
105 CODE:
106 {
107 STRLEN textlen;
108 char *text = SvPVutf8 (text_, textlen);
109
110 pango_layout_set_markup (self->pl, text, textlen);
111 }
112
113 void
114 set_height (CFClient::Layout self, int base_height)
115 CODE:
116 self->base_height = base_height;
117
118 void
119 set_width (CFClient::Layout self, int max_width = -1)
120 CODE:
121 pango_layout_set_width (self->pl, max_width < 0 ? max_width : max_width * PANGO_SCALE);
122
123 void
124 size (CFClient::Layout self)
125 PPCODE:
126 {
127 int w, h;
128
129 layout_get_pixel_size (self, &w, &h);
130
131 EXTEND (SP, 2);
132 PUSHs (sv_2mortal (newSViv (w)));
133 PUSHs (sv_2mortal (newSViv (h)));
134 }
135
136 void
137 render (CFClient::Layout self)
138 PPCODE:
139 {
140 SV *retval;
141 int w, h;
142 FT_Bitmap bitmap;
143
144 layout_get_pixel_size (self, &w, &h);
145
146 retval = newSV (w * h);
147 SvPOK_only (retval);
148 SvCUR_set (retval, w * h);
149
150 bitmap.rows = h;
151 bitmap.width = w;
152 bitmap.pitch = w;
153 bitmap.buffer = (unsigned char*)SvPVX (retval);
154 bitmap.num_grays = 256;
155 bitmap.pixel_mode = FT_PIXEL_MODE_GRAY;
156
157 memset (bitmap.buffer, 0, w * h);
158
159 pango_ft2_render_layout (&bitmap, self->pl, 0 * PANGO_SCALE, 0 * PANGO_SCALE);
160
161 EXTEND (SP, 3);
162 PUSHs (sv_2mortal (newSViv (w)));
163 PUSHs (sv_2mortal (newSViv (h)));
164 PUSHs (sv_2mortal (retval));
165 }
166
167 MODULE = CFClient PACKAGE = CFClient::Texture
168
169 void
170 draw_quad (SV *self, double x, double y, double w = 0, double h = 0)
171 PROTOTYPE: $$$;$$
172 CODE:
173 {
174 HV *hv = (HV *)SvRV (self);
175 double s = SvNV (*hv_fetch (hv, "s", 1, 1));
176 double t = SvNV (*hv_fetch (hv, "t", 1, 1));
177 int name = SvIV (*hv_fetch (hv, "name", 4, 1));
178
179 if (items < 5)
180 {
181 w = SvNV (*hv_fetch (hv, "width", 5, 1));
182 h = SvNV (*hv_fetch (hv, "height", 6, 1));
183 }
184
185 glBindTexture (GL_TEXTURE_2D, name);
186 glBegin (GL_QUADS);
187 glTexCoord2d (0, 0); glVertex2d (x , y );
188 glTexCoord2d (0, t); glVertex2d (x , y + h);
189 glTexCoord2d (s, t); glVertex2d (x + w, y + h);
190 glTexCoord2d (s, 0); glVertex2d (x + w, y );
191 glEnd ();
192 }