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.235 by root, Tue Aug 28 01:23:47 2007 UTC vs.
Revision 1.247 by root, Fri Dec 28 15:06:08 2007 UTC

120 120
121#include "pango-font.c" 121#include "pango-font.c"
122#include "pango-fontmap.c" 122#include "pango-fontmap.c"
123#include "pango-render.c" 123#include "pango-render.c"
124 124
125typedef IV CFPlus__Channel; 125typedef IV DC__Channel;
126typedef SDL_RWops *CFPlus__RW; 126typedef SDL_RWops *DC__RW;
127typedef Mix_Chunk *CFPlus__MixChunk; 127typedef Mix_Chunk *DC__MixChunk;
128typedef Mix_Music *CFPlus__MixMusic; 128typedef Mix_Music *DC__MixMusic;
129 129
130typedef PangoFontDescription *CFPlus__Font; 130typedef PangoFontDescription *DC__Font;
131 131
132static int 132static int
133shape_attr_p (PangoLayoutRun *run) 133shape_attr_p (PangoLayoutRun *run)
134{ 134{
135 GSList *attrs = run->item->analysis.extra_attrs; 135 GSList *attrs = run->item->analysis.extra_attrs;
149 149
150typedef struct cf_layout { 150typedef struct cf_layout {
151 PangoLayout *pl; 151 PangoLayout *pl;
152 float r, g, b, a; // default color for rgba mode 152 float r, g, b, a; // default color for rgba mode
153 int base_height; 153 int base_height;
154 CFPlus__Font font; 154 DC__Font font;
155 rc_t *rc; 155 rc_t *rc;
156} *CFPlus__Layout; 156} *DC__Layout;
157 157
158static CFPlus__Font default_font; 158static DC__Font default_font;
159static PangoContext *opengl_context; 159static PangoContext *opengl_context;
160static PangoFontMap *opengl_fontmap; 160static PangoFontMap *opengl_fontmap;
161 161
162static void 162static void
163substitute_func (FcPattern *pattern, gpointer data) 163substitute_func (FcPattern *pattern, gpointer data)
168#endif 168#endif
169 FcPatternAddBool (pattern, FC_AUTOHINT, 0); 169 FcPatternAddBool (pattern, FC_AUTOHINT, 0);
170} 170}
171 171
172static void 172static void
173layout_update_font (CFPlus__Layout self) 173layout_update_font (DC__Layout self)
174{ 174{
175 /* use a random scale factor to account for unknown descenders, 0.8 works 175 /* use a random scale factor to account for unknown descenders, 0.8 works
176 * reasonably well with bitstream vera 176 * reasonably well with bitstream vera
177 */ 177 */
178 PangoFontDescription *font = self->font ? self->font : default_font; 178 PangoFontDescription *font = self->font ? self->font : default_font;
182 182
183 pango_layout_set_font_description (self->pl, font); 183 pango_layout_set_font_description (self->pl, font);
184} 184}
185 185
186static void 186static void
187layout_get_pixel_size (CFPlus__Layout self, int *w, int *h) 187layout_get_pixel_size (DC__Layout self, int *w, int *h)
188{ 188{
189 PangoRectangle rect; 189 PangoRectangle rect;
190 190
191 // get_pixel_* wrongly rounds down 191 // get_pixel_* wrongly rounds down
192 pango_layout_get_extents (self->pl, 0, &rect); 192 pango_layout_get_extents (self->pl, 0, &rect);
231 int faces; tileid *face2tile; // [faceid] 231 int faces; tileid *face2tile; // [faceid]
232 int texs; maptex *tex; // [tileid] 232 int texs; maptex *tex; // [tileid]
233 233
234 int32_t rows; 234 int32_t rows;
235 maprow *row; 235 maprow *row;
236} *CFPlus__Map; 236} *DC__Map;
237 237
238static char * 238static char *
239prepend (char *ptr, int sze, int inc) 239prepend (char *ptr, int sze, int inc)
240{ 240{
241 char *p; 241 char *p;
279 self->texs *= 2; 279 self->texs *= 2;
280 } 280 }
281} 281}
282 282
283static maprow * 283static maprow *
284map_get_row (CFPlus__Map self, int y) 284map_get_row (DC__Map self, int y)
285{ 285{
286 if (0 > y) 286 if (0 > y)
287 { 287 {
288 int extend = - y + MAP_EXTEND_Y; 288 int extend = - y + MAP_EXTEND_Y;
289 Prepend (maprow, self->row, self->rows, extend); 289 Prepend (maprow, self->row, self->rows, extend);
327 327
328 return row->col + (x - row->c0); 328 return row->col + (x - row->c0);
329} 329}
330 330
331static mapcell * 331static mapcell *
332map_get_cell (CFPlus__Map self, int x, int y) 332map_get_cell (DC__Map self, int x, int y)
333{ 333{
334 return row_get_cell (map_get_row (self, y), x); 334 return row_get_cell (map_get_row (self, y), x);
335} 335}
336 336
337static void 337static void
338map_clear (CFPlus__Map self) 338map_clear (DC__Map self)
339{ 339{
340 int r; 340 int r;
341 341
342 for (r = 0; r < self->rows; r++) 342 for (r = 0; r < self->rows; r++)
343 Safefree (self->row[r].col); 343 Safefree (self->row[r].col);
351 self->row = 0; 351 self->row = 0;
352 self->rows = 0; 352 self->rows = 0;
353} 353}
354 354
355static void 355static void
356map_blank (CFPlus__Map self, int x0, int y0, int w, int h) 356map_blank (DC__Map self, int x0, int y0, int w, int h)
357{ 357{
358 int x, y; 358 int x, y;
359 maprow *row; 359 maprow *row;
360 mapcell *cell; 360 mapcell *cell;
361 361
498 return 0; 498 return 0;
499 499
500 return 1; 500 return 1;
501} 501}
502 502
503MODULE = CFPlus PACKAGE = CFPlus 503MODULE = Deliantra::Client PACKAGE = DC
504 504
505PROTOTYPES: ENABLE 505PROTOTYPES: ENABLE
506 506
507BOOT: 507BOOT:
508{ 508{
509 HV *stash = gv_stashpv ("CFPlus", 1); 509 HV *stash = gv_stashpv ("DC", 1);
510 static const struct { 510 static const struct {
511 const char *name; 511 const char *name;
512 IV iv; 512 IV iv;
513 } *civ, const_iv[] = { 513 } *civ, const_iv[] = {
514# define const_iv(name) { # name, (IV)name } 514# define const_iv(name) { # name, (IV)name }
619 const_iv (KMOD_LMETA), 619 const_iv (KMOD_LMETA),
620 const_iv (KMOD_RMETA), 620 const_iv (KMOD_RMETA),
621 const_iv (KMOD_NUM), 621 const_iv (KMOD_NUM),
622 const_iv (KMOD_CAPS), 622 const_iv (KMOD_CAPS),
623 const_iv (KMOD_MODE), 623 const_iv (KMOD_MODE),
624
625 const_iv (MIX_DEFAULT_FORMAT),
624# undef const_iv 626# undef const_iv
625 }; 627 };
626 628
627 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 629 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
628 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 630 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
698 m = SDL_ListModes (0, SDL_FULLSCREEN | SDL_OPENGL); 700 m = SDL_ListModes (0, SDL_FULLSCREEN | SDL_OPENGL);
699 701
700 if (m && m != (SDL_Rect **)-1) 702 if (m && m != (SDL_Rect **)-1)
701 while (*m) 703 while (*m)
702 { 704 {
703 if ((*m)->w >= 640 && (*m)->h >= 480) 705 if ((*m)->w >= 800 && (*m)->h >= 480)
704 { 706 {
705 AV *av = newAV (); 707 AV *av = newAV ();
706 av_push (av, newSViv ((*m)->w)); 708 av_push (av, newSViv ((*m)->w));
707 av_push (av, newSViv ((*m)->h)); 709 av_push (av, newSViv ((*m)->h));
708 av_push (av, newSViv (rgb)); 710 av_push (av, newSViv (rgb));
732 734
733 if (RETVAL) 735 if (RETVAL)
734 { 736 {
735 av_clear (texture_av); 737 av_clear (texture_av);
736 738
737 SDL_WM_SetCaption ("Crossfire TRT Client " VERSION, "Crossfire TRT"); 739 SDL_WM_SetCaption ("Deliantra MORPG Client " VERSION, "Deliantra");
738#define GL_FUNC(ptr,name) gl.name = (ptr)SDL_GL_GetProcAddress ("gl" # name); 740#define GL_FUNC(ptr,name) gl.name = (ptr)SDL_GL_GetProcAddress ("gl" # name);
739#include "glfunc.h" 741#include "glfunc.h"
740#undef GL_FUNC 742#undef GL_FUNC
741 } 743 }
742} 744}
823 hv_store (hv, "data1", 5, newSViv ((IV)ev.user.data1), 0); 825 hv_store (hv, "data1", 5, newSViv ((IV)ev.user.data1), 0);
824 hv_store (hv, "data2", 5, newSViv ((IV)ev.user.data2), 0); 826 hv_store (hv, "data2", 5, newSViv ((IV)ev.user.data2), 0);
825 break; 827 break;
826 } 828 }
827 829
828 XPUSHs (sv_2mortal (sv_bless (newRV_noinc ((SV *)hv), gv_stashpv ("CFPlus::UI::Event", 1)))); 830 XPUSHs (sv_2mortal (sv_bless (newRV_noinc ((SV *)hv), gv_stashpv ("DC::UI::Event", 1))));
829 } 831 }
830} 832}
831 833
832int 834int
833Mix_OpenAudio (int frequency = 44100, int format = MIX_DEFAULT_FORMAT, int channels = 2, int chunksize = 1024) 835Mix_OpenAudio (int frequency = 44100, int format = MIX_DEFAULT_FORMAT, int channels = 2, int chunksize = 4096)
834 POSTCALL: 836 POSTCALL:
835 Mix_HookMusicFinished (music_finished); 837 Mix_HookMusicFinished (music_finished);
836 Mix_ChannelFinished (channel_finished); 838 Mix_ChannelFinished (channel_finished);
839
840void
841Mix_QuerySpec ()
842 PPCODE:
843{
844 int freq, channels;
845 Uint16 format;
846
847 if (Mix_QuerySpec (&freq, &format, &channels))
848 {
849 EXTEND (SP, 3);
850 PUSHs (sv_2mortal (newSViv (freq)));
851 PUSHs (sv_2mortal (newSViv (format)));
852 PUSHs (sv_2mortal (newSViv (channels)));
853 }
854}
837 855
838void 856void
839Mix_CloseAudio () 857Mix_CloseAudio ()
840 858
841int 859int
975void 993void
976error (char *message) 994error (char *message)
977 CODE: 995 CODE:
978 fprintf (stderr, "ERROR: %s\n", message); 996 fprintf (stderr, "ERROR: %s\n", message);
979#ifdef _WIN32 997#ifdef _WIN32
980 MessageBox (0, message, "Crossfire+ Error", MB_OK | MB_ICONERROR); 998 MessageBox (0, message, "Deliantra Client Error", MB_OK | MB_ICONERROR);
981#endif 999#endif
982 1000
983void 1001void
984fatal (char *message) 1002fatal (char *message)
985 CODE: 1003 CODE:
986 fprintf (stderr, "FATAL: %s\n", message); 1004 fprintf (stderr, "FATAL: %s\n", message);
987#ifdef _WIN32 1005#ifdef _WIN32
988 MessageBox (0, message, "Crossfire+ Fatal Error", MB_OK | MB_ICONERROR); 1006 MessageBox (0, message, "Deliantra Client Fatal Error", MB_OK | MB_ICONERROR);
989#endif 1007#endif
990 _exit (1); 1008 _exit (1);
991 1009
992void 1010void
993_exit (int retval = 0) 1011_exit (int retval = 0)
1005#if DEBUG 1023#if DEBUG
1006 VALGRIND_DO_LEAK_CHECK; 1024 VALGRIND_DO_LEAK_CHECK;
1007#endif 1025#endif
1008} 1026}
1009 1027
1010MODULE = CFPlus PACKAGE = CFPlus::Font 1028MODULE = Deliantra::Client PACKAGE = DC::Font
1011 1029
1012PROTOTYPES: DISABLE 1030PROTOTYPES: DISABLE
1013 1031
1014CFPlus::Font 1032DC::Font
1015new_from_file (SV *class, char *path, int id = 0) 1033new_from_file (SV *class, char *path, int id = 0)
1016 CODE: 1034 CODE:
1017{ 1035{
1018 int count; 1036 int count;
1019 FcPattern *pattern = FcFreeTypeQuery ((const FcChar8 *)path, id, 0, &count); 1037 FcPattern *pattern = FcFreeTypeQuery ((const FcChar8 *)path, id, 0, &count);
1022} 1040}
1023 OUTPUT: 1041 OUTPUT:
1024 RETVAL 1042 RETVAL
1025 1043
1026void 1044void
1027DESTROY (CFPlus::Font self) 1045DESTROY (DC::Font self)
1028 CODE: 1046 CODE:
1029 pango_font_description_free (self); 1047 pango_font_description_free (self);
1030 1048
1031void 1049void
1032make_default (CFPlus::Font self) 1050make_default (DC::Font self)
1033 PROTOTYPE: $ 1051 PROTOTYPE: $
1034 CODE: 1052 CODE:
1035 default_font = self; 1053 default_font = self;
1036 1054
1037MODULE = CFPlus PACKAGE = CFPlus::Layout 1055MODULE = Deliantra::Client PACKAGE = DC::Layout
1038 1056
1039PROTOTYPES: DISABLE 1057PROTOTYPES: DISABLE
1040 1058
1041void 1059void
1042reset_glyph_cache () 1060glyph_cache_backup ()
1043 PROTOTYPE: 1061 PROTOTYPE:
1044 CODE: 1062 CODE:
1063 tc_backup ();
1064
1065void
1066glyph_cache_restore ()
1067 PROTOTYPE:
1068 CODE:
1045 tc_clear (); 1069 tc_restore ();
1046 1070
1047CFPlus::Layout 1071DC::Layout
1048new (SV *class) 1072new (SV *class)
1049 CODE: 1073 CODE:
1050 New (0, RETVAL, 1, struct cf_layout); 1074 New (0, RETVAL, 1, struct cf_layout);
1051 1075
1052 RETVAL->pl = pango_layout_new (opengl_context); 1076 RETVAL->pl = pango_layout_new (opengl_context);
1062 layout_update_font (RETVAL); 1086 layout_update_font (RETVAL);
1063 OUTPUT: 1087 OUTPUT:
1064 RETVAL 1088 RETVAL
1065 1089
1066void 1090void
1067DESTROY (CFPlus::Layout self) 1091DESTROY (DC::Layout self)
1068 CODE: 1092 CODE:
1069 g_object_unref (self->pl); 1093 g_object_unref (self->pl);
1070 rc_free (self->rc); 1094 rc_free (self->rc);
1071 Safefree (self); 1095 Safefree (self);
1072 1096
1073void 1097void
1074set_text (CFPlus::Layout self, SV *text_) 1098set_text (DC::Layout self, SV *text_)
1075 CODE: 1099 CODE:
1076{ 1100{
1077 STRLEN textlen; 1101 STRLEN textlen;
1078 char *text = SvPVutf8 (text_, textlen); 1102 char *text = SvPVutf8 (text_, textlen);
1079 1103
1080 pango_layout_set_text (self->pl, text, textlen); 1104 pango_layout_set_text (self->pl, text, textlen);
1081} 1105}
1082 1106
1083void 1107void
1084set_markup (CFPlus::Layout self, SV *text_) 1108set_markup (DC::Layout self, SV *text_)
1085 CODE: 1109 CODE:
1086{ 1110{
1087 STRLEN textlen; 1111 STRLEN textlen;
1088 char *text = SvPVutf8 (text_, textlen); 1112 char *text = SvPVutf8 (text_, textlen);
1089 1113
1090 pango_layout_set_markup (self->pl, text, textlen); 1114 pango_layout_set_markup (self->pl, text, textlen);
1091} 1115}
1092 1116
1093void 1117void
1094set_shapes (CFPlus::Layout self, ...) 1118set_shapes (DC::Layout self, ...)
1095 CODE: 1119 CODE:
1096{ 1120{
1097 PangoAttrList *attrs = 0; 1121 PangoAttrList *attrs = 0;
1098 const char *text = pango_layout_get_text (self->pl); 1122 const char *text = pango_layout_get_text (self->pl);
1099 const char *pos = text; 1123 const char *pos = text;
1134 if (attrs) 1158 if (attrs)
1135 pango_layout_set_attributes (self->pl, attrs); 1159 pango_layout_set_attributes (self->pl, attrs);
1136} 1160}
1137 1161
1138void 1162void
1139get_shapes (CFPlus::Layout self) 1163get_shapes (DC::Layout self)
1140 PPCODE: 1164 PPCODE:
1141{ 1165{
1142 PangoLayoutIter *iter = pango_layout_get_iter (self->pl); 1166 PangoLayoutIter *iter = pango_layout_get_iter (self->pl);
1143 1167
1144 do 1168 do
1159 1183
1160 pango_layout_iter_free (iter); 1184 pango_layout_iter_free (iter);
1161} 1185}
1162 1186
1163int 1187int
1164has_wrapped (CFPlus::Layout self) 1188has_wrapped (DC::Layout self)
1165 CODE: 1189 CODE:
1166{ 1190{
1167 int lines = 1; 1191 int lines = 1;
1168 const char *text = pango_layout_get_text (self->pl); 1192 const char *text = pango_layout_get_text (self->pl);
1169 1193
1174} 1198}
1175 OUTPUT: 1199 OUTPUT:
1176 RETVAL 1200 RETVAL
1177 1201
1178SV * 1202SV *
1179get_text (CFPlus::Layout self) 1203get_text (DC::Layout self)
1180 CODE: 1204 CODE:
1181 RETVAL = newSVpv (pango_layout_get_text (self->pl), 0); 1205 RETVAL = newSVpv (pango_layout_get_text (self->pl), 0);
1182 sv_utf8_decode (RETVAL); 1206 sv_utf8_decode (RETVAL);
1183 OUTPUT: 1207 OUTPUT:
1184 RETVAL 1208 RETVAL
1185 1209
1186void 1210void
1187set_foreground (CFPlus::Layout self, float r, float g, float b, float a = 1.) 1211set_foreground (DC::Layout self, float r, float g, float b, float a = 1.)
1188 CODE: 1212 CODE:
1189 self->r = r; 1213 self->r = r;
1190 self->g = g; 1214 self->g = g;
1191 self->b = b; 1215 self->b = b;
1192 self->a = a; 1216 self->a = a;
1193 1217
1194void 1218void
1195set_font (CFPlus::Layout self, CFPlus::Font font = 0) 1219set_font (DC::Layout self, DC::Font font = 0)
1196 CODE: 1220 CODE:
1197 if (self->font != font) 1221 if (self->font != font)
1198 { 1222 {
1199 self->font = font; 1223 self->font = font;
1200 layout_update_font (self); 1224 layout_update_font (self);
1201 } 1225 }
1202 1226
1203void 1227void
1204set_height (CFPlus::Layout self, int base_height) 1228set_height (DC::Layout self, int base_height)
1205 CODE: 1229 CODE:
1206 if (self->base_height != base_height) 1230 if (self->base_height != base_height)
1207 { 1231 {
1208 self->base_height = base_height; 1232 self->base_height = base_height;
1209 layout_update_font (self); 1233 layout_update_font (self);
1210 } 1234 }
1211 1235
1212void 1236void
1213set_width (CFPlus::Layout self, int max_width = -1) 1237set_width (DC::Layout self, int max_width = -1)
1214 CODE: 1238 CODE:
1215 pango_layout_set_width (self->pl, max_width < 0 ? max_width : max_width * PANGO_SCALE); 1239 pango_layout_set_width (self->pl, max_width < 0 ? max_width : max_width * PANGO_SCALE);
1216 1240
1217void 1241void
1218set_indent (CFPlus::Layout self, int indent) 1242set_indent (DC::Layout self, int indent)
1219 CODE: 1243 CODE:
1220 pango_layout_set_indent (self->pl, indent * PANGO_SCALE); 1244 pango_layout_set_indent (self->pl, indent * PANGO_SCALE);
1221 1245
1222void 1246void
1223set_spacing (CFPlus::Layout self, int spacing) 1247set_spacing (DC::Layout self, int spacing)
1224 CODE: 1248 CODE:
1225 pango_layout_set_spacing (self->pl, spacing * PANGO_SCALE); 1249 pango_layout_set_spacing (self->pl, spacing * PANGO_SCALE);
1226 1250
1227void 1251void
1228set_ellipsise (CFPlus::Layout self, int ellipsise) 1252set_ellipsise (DC::Layout self, int ellipsise)
1229 CODE: 1253 CODE:
1230 pango_layout_set_ellipsize (self->pl, 1254 pango_layout_set_ellipsize (self->pl,
1231 ellipsise == 1 ? PANGO_ELLIPSIZE_START 1255 ellipsise == 1 ? PANGO_ELLIPSIZE_START
1232 : ellipsise == 2 ? PANGO_ELLIPSIZE_MIDDLE 1256 : ellipsise == 2 ? PANGO_ELLIPSIZE_MIDDLE
1233 : ellipsise == 3 ? PANGO_ELLIPSIZE_END 1257 : ellipsise == 3 ? PANGO_ELLIPSIZE_END
1234 : PANGO_ELLIPSIZE_NONE 1258 : PANGO_ELLIPSIZE_NONE
1235 ); 1259 );
1236 1260
1237void 1261void
1238set_single_paragraph_mode (CFPlus::Layout self, int spm) 1262set_single_paragraph_mode (DC::Layout self, int spm)
1239 CODE: 1263 CODE:
1240 pango_layout_set_single_paragraph_mode (self->pl, !!spm); 1264 pango_layout_set_single_paragraph_mode (self->pl, !!spm);
1241 1265
1242void 1266void
1243size (CFPlus::Layout self) 1267size (DC::Layout self)
1244 PPCODE: 1268 PPCODE:
1245{ 1269{
1246 int w, h; 1270 int w, h;
1247 1271
1248 layout_get_pixel_size (self, &w, &h); 1272 layout_get_pixel_size (self, &w, &h);
1251 PUSHs (sv_2mortal (newSViv (w))); 1275 PUSHs (sv_2mortal (newSViv (w)));
1252 PUSHs (sv_2mortal (newSViv (h))); 1276 PUSHs (sv_2mortal (newSViv (h)));
1253} 1277}
1254 1278
1255int 1279int
1256descent (CFPlus::Layout self) 1280descent (DC::Layout self)
1257 CODE: 1281 CODE:
1258{ 1282{
1259 PangoRectangle rect; 1283 PangoRectangle rect;
1260 PangoLayoutLine *line = pango_layout_get_line (self->pl, 0); 1284 PangoLayoutLine *line = pango_layout_get_line (self->pl, 0);
1261 pango_layout_line_get_pixel_extents (line, 0, &rect); 1285 pango_layout_line_get_pixel_extents (line, 0, &rect);
1263} 1287}
1264 OUTPUT: 1288 OUTPUT:
1265 RETVAL 1289 RETVAL
1266 1290
1267int 1291int
1268xy_to_index (CFPlus::Layout self, int x, int y) 1292xy_to_index (DC::Layout self, int x, int y)
1269 CODE: 1293 CODE:
1270{ 1294{
1271 int index, trailing; 1295 int index, trailing;
1272 pango_layout_xy_to_index (self->pl, x * PANGO_SCALE, y * PANGO_SCALE, &index, &trailing); 1296 pango_layout_xy_to_index (self->pl, x * PANGO_SCALE, y * PANGO_SCALE, &index, &trailing);
1273 RETVAL = index + trailing; 1297 RETVAL = index + trailing;
1274} 1298}
1275 OUTPUT: 1299 OUTPUT:
1276 RETVAL 1300 RETVAL
1277 1301
1278void 1302void
1279cursor_pos (CFPlus::Layout self, int index) 1303cursor_pos (DC::Layout self, int index)
1280 PPCODE: 1304 PPCODE:
1281{ 1305{
1282 PangoRectangle strong_pos; 1306 PangoRectangle strong_pos;
1283 pango_layout_get_cursor_pos (self->pl, index, &strong_pos, 0); 1307 pango_layout_get_cursor_pos (self->pl, index, &strong_pos, 0);
1284 1308
1287 PUSHs (sv_2mortal (newSViv (strong_pos.y / PANGO_SCALE))); 1311 PUSHs (sv_2mortal (newSViv (strong_pos.y / PANGO_SCALE)));
1288 PUSHs (sv_2mortal (newSViv (strong_pos.height / PANGO_SCALE))); 1312 PUSHs (sv_2mortal (newSViv (strong_pos.height / PANGO_SCALE)));
1289} 1313}
1290 1314
1291void 1315void
1292index_to_line_x (CFPlus::Layout self, int index, int trailing = 0) 1316index_to_line_x (DC::Layout self, int index, int trailing = 0)
1293 PPCODE: 1317 PPCODE:
1294{ 1318{
1295 int line, x; 1319 int line, x;
1296 1320
1297 pango_layout_index_to_line_x (self->pl, index, trailing, &line, &x); 1321 pango_layout_index_to_line_x (self->pl, index, trailing, &line, &x);
1322#if !PANGO_VERSION_CHECK (1, 17, 3)
1298 /* pango bug: line is between 1..numlines, not 0..numlines-1 */ 1323 /* pango bug: line is between 1..numlines, not 0..numlines-1 */
1299 1324 --line;
1325#endif
1300 EXTEND (SP, 2); 1326 EXTEND (SP, 2);
1301 PUSHs (sv_2mortal (newSViv (line - 1))); 1327 PUSHs (sv_2mortal (newSViv (line)));
1302 PUSHs (sv_2mortal (newSViv (x / PANGO_SCALE))); 1328 PUSHs (sv_2mortal (newSViv (x / PANGO_SCALE)));
1303} 1329}
1304 1330
1305void 1331void
1306line_x_to_index (CFPlus::Layout self, int line, int x) 1332line_x_to_index (DC::Layout self, int line, int x)
1307 PPCODE: 1333 PPCODE:
1308{ 1334{
1309 PangoLayoutLine *lp; 1335 PangoLayoutLine *lp;
1310 int index, trailing; 1336 int index, trailing;
1311 1337
1326 PUSHs (sv_2mortal (newSViv (trailing))); 1352 PUSHs (sv_2mortal (newSViv (trailing)));
1327 } 1353 }
1328} 1354}
1329 1355
1330void 1356void
1331render (CFPlus::Layout self, float x, float y, int flags = 0) 1357render (DC::Layout self, float x, float y, int flags = 0)
1332 CODE: 1358 CODE:
1333 rc_clear (self->rc); 1359 rc_clear (self->rc);
1334 pango_opengl_render_layout_subpixel ( 1360 pango_opengl_render_layout_subpixel (
1335 self->pl, 1361 self->pl,
1336 self->rc, 1362 self->rc,
1341 // we assume that context_change actually clears/frees stuff 1367 // we assume that context_change actually clears/frees stuff
1342 // and does not do any recomputation... 1368 // and does not do any recomputation...
1343 pango_layout_context_changed (self->pl); 1369 pango_layout_context_changed (self->pl);
1344 1370
1345void 1371void
1346draw (CFPlus::Layout self) 1372draw (DC::Layout self)
1347 CODE: 1373 CODE:
1348{ 1374{
1349 glEnable (GL_TEXTURE_2D); 1375 glEnable (GL_TEXTURE_2D);
1350 glTexEnvi (GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE); 1376 glTexEnvi (GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
1351 glEnable (GL_BLEND); 1377 glEnable (GL_BLEND);
1359 glDisable (GL_ALPHA_TEST); 1385 glDisable (GL_ALPHA_TEST);
1360 glDisable (GL_BLEND); 1386 glDisable (GL_BLEND);
1361 glDisable (GL_TEXTURE_2D); 1387 glDisable (GL_TEXTURE_2D);
1362} 1388}
1363 1389
1364MODULE = CFPlus PACKAGE = CFPlus::Texture 1390MODULE = Deliantra::Client PACKAGE = DC::Texture
1365 1391
1366PROTOTYPES: ENABLE 1392PROTOTYPES: ENABLE
1367 1393
1368void 1394void
1369pad (SV *data_, int ow, int oh, int nw, int nh) 1395pad (SV *data_, int ow, int oh, int nw, int nh)
1448 RETVAL = width > 0; 1474 RETVAL = width > 0;
1449} 1475}
1450 OUTPUT: 1476 OUTPUT:
1451 RETVAL 1477 RETVAL
1452 1478
1453MODULE = CFPlus PACKAGE = CFPlus::Map 1479MODULE = Deliantra::Client PACKAGE = DC::Map
1454 1480
1455PROTOTYPES: DISABLE 1481PROTOTYPES: DISABLE
1456 1482
1457CFPlus::Map 1483DC::Map
1458new (SV *class) 1484new (SV *class)
1459 CODE: 1485 CODE:
1460 New (0, RETVAL, 1, struct map); 1486 New (0, RETVAL, 1, struct map);
1461 RETVAL->x = 0; 1487 RETVAL->x = 0;
1462 RETVAL->y = 0; 1488 RETVAL->y = 0;
1470 RETVAL->row = 0; 1496 RETVAL->row = 0;
1471 OUTPUT: 1497 OUTPUT:
1472 RETVAL 1498 RETVAL
1473 1499
1474void 1500void
1475DESTROY (CFPlus::Map self) 1501DESTROY (DC::Map self)
1476 CODE: 1502 CODE:
1477{ 1503{
1478 map_clear (self); 1504 map_clear (self);
1479 Safefree (self->face2tile); 1505 Safefree (self->face2tile);
1480 Safefree (self->tex); 1506 Safefree (self->tex);
1481 Safefree (self); 1507 Safefree (self);
1482} 1508}
1483 1509
1484void 1510void
1485resize (CFPlus::Map self, int map_width, int map_height) 1511resize (DC::Map self, int map_width, int map_height)
1486 CODE: 1512 CODE:
1487 self->w = map_width; 1513 self->w = map_width;
1488 self->h = map_height; 1514 self->h = map_height;
1489 1515
1490void 1516void
1491clear (CFPlus::Map self) 1517clear (DC::Map self)
1492 CODE: 1518 CODE:
1493 map_clear (self); 1519 map_clear (self);
1494 1520
1495void 1521void
1496set_tileid (CFPlus::Map self, int face, int tile) 1522set_tileid (DC::Map self, int face, int tile)
1497 CODE: 1523 CODE:
1498{ 1524{
1499 need_facenum (self, face); self->face2tile [face] = tile; 1525 need_facenum (self, face); self->face2tile [face] = tile;
1500 need_texid (self, tile); 1526 need_texid (self, tile);
1501} 1527}
1502 1528
1503void 1529void
1504set_smooth (CFPlus::Map self, int face, int smooth, int level) 1530set_smooth (DC::Map self, int face, int smooth, int level)
1505 CODE: 1531 CODE:
1506{ 1532{
1507 tileid texid; 1533 tileid texid;
1508 maptex *tex; 1534 maptex *tex;
1509 1535
1522 tex->smoothtile = self->face2tile [smooth]; 1548 tex->smoothtile = self->face2tile [smooth];
1523 tex->smoothlevel = level; 1549 tex->smoothlevel = level;
1524} 1550}
1525 1551
1526void 1552void
1527set_texture (CFPlus::Map self, int texid, int name, int w, int h, float s, float t, int r, int g, int b, int a) 1553set_texture (DC::Map self, int texid, int name, int w, int h, float s, float t, int r, int g, int b, int a)
1528 CODE: 1554 CODE:
1529{ 1555{
1530 need_texid (self, texid); 1556 need_texid (self, texid);
1531 1557
1532 { 1558 {
1552 // from transparent color bleeding and ugly wrapping effects. 1578 // from transparent color bleeding and ugly wrapping effects.
1553 glTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST); 1579 glTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
1554} 1580}
1555 1581
1556int 1582int
1557ox (CFPlus::Map self) 1583ox (DC::Map self)
1558 ALIAS: 1584 ALIAS:
1559 oy = 1 1585 oy = 1
1560 x = 2 1586 x = 2
1561 y = 3 1587 y = 3
1562 w = 4 1588 w = 4
1573 } 1599 }
1574 OUTPUT: 1600 OUTPUT:
1575 RETVAL 1601 RETVAL
1576 1602
1577void 1603void
1578scroll (CFPlus::Map self, int dx, int dy) 1604scroll (DC::Map self, int dx, int dy)
1579 CODE: 1605 CODE:
1580{ 1606{
1581 if (dx > 0) 1607 if (dx > 0)
1582 map_blank (self, self->x, self->y, dx, self->h); 1608 map_blank (self, self->x, self->y, dx, self->h);
1583 else if (dx < 0) 1609 else if (dx < 0)
1599 self->y += MAP_EXTEND_Y; 1625 self->y += MAP_EXTEND_Y;
1600 } 1626 }
1601} 1627}
1602 1628
1603SV * 1629SV *
1604map1a_update (CFPlus::Map self, SV *data_, int extmap) 1630map1a_update (DC::Map self, SV *data_, int extmap)
1605 CODE: 1631 CODE:
1606{ 1632{
1607 uint8_t *data = (uint8_t *)SvPVbyte_nolen (data_); 1633 uint8_t *data = (uint8_t *)SvPVbyte_nolen (data_);
1608 uint8_t *data_end = (uint8_t *)SvEND (data_); 1634 uint8_t *data_end = (uint8_t *)SvEND (data_);
1609 mapcell *cell; 1635 mapcell *cell;
1698} 1724}
1699 OUTPUT: 1725 OUTPUT:
1700 RETVAL 1726 RETVAL
1701 1727
1702SV * 1728SV *
1703mapmap (CFPlus::Map self, int x0, int y0, int w, int h) 1729mapmap (DC::Map self, int x0, int y0, int w, int h)
1704 CODE: 1730 CODE:
1705{ 1731{
1706 int x1, x; 1732 int x1, x;
1707 int y1, y; 1733 int y1, y;
1708 int z; 1734 int z;
1753} 1779}
1754 OUTPUT: 1780 OUTPUT:
1755 RETVAL 1781 RETVAL
1756 1782
1757void 1783void
1758draw (CFPlus::Map self, int mx, int my, int sw, int sh, int T) 1784draw (DC::Map self, int mx, int my, int sw, int sh, int T)
1759 CODE: 1785 CODE:
1760{ 1786{
1761 int x, y, z; 1787 int x, y, z;
1762 1788
1763 HV *smooth = (HV *)sv_2mortal ((SV *)newHV ()); 1789 HV *smooth = (HV *)sv_2mortal ((SV *)newHV ());
2034 } 2060 }
2035 } 2061 }
2036} 2062}
2037 2063
2038void 2064void
2039draw_magicmap (CFPlus::Map self, int dx, int dy, int w, int h, unsigned char *data) 2065draw_magicmap (DC::Map self, int dx, int dy, int w, int h, unsigned char *data)
2040 CODE: 2066 CODE:
2041{ 2067{
2042 static float color[16][3] = { 2068 static float color[16][3] = {
2043 { 0.00F, 0.00F, 0.00F }, 2069 { 0.00F, 0.00F, 0.00F },
2044 { 1.00F, 1.00F, 1.00F }, 2070 { 1.00F, 1.00F, 1.00F },
2094 glDisable (GL_BLEND); 2120 glDisable (GL_BLEND);
2095 glDisable (GL_TEXTURE_2D); 2121 glDisable (GL_TEXTURE_2D);
2096} 2122}
2097 2123
2098void 2124void
2099fow_texture (CFPlus::Map self, int mx, int my, int sw, int sh) 2125fow_texture (DC::Map self, int mx, int my, int sw, int sh)
2100 PPCODE: 2126 PPCODE:
2101{ 2127{
2102 int x, y; 2128 int x, y;
2103 int sw1 = sw + 2; 2129 int sw1 = sw + 2;
2104 int sh1 = sh + 2; 2130 int sh1 = sh + 2;
2175 PUSHs (sv_2mortal (newSViv (sh3))); 2201 PUSHs (sv_2mortal (newSViv (sh3)));
2176 PUSHs (darkness3_sv); 2202 PUSHs (darkness3_sv);
2177} 2203}
2178 2204
2179SV * 2205SV *
2180get_rect (CFPlus::Map self, int x0, int y0, int w, int h) 2206get_rect (DC::Map self, int x0, int y0, int w, int h)
2181 CODE: 2207 CODE:
2182{ 2208{
2183 int x, y, x1, y1; 2209 int x, y, x1, y1;
2184 SV *data_sv = newSV (w * h * 7 + 5); 2210 SV *data_sv = newSV (w * h * 7 + 5);
2185 uint8_t *data = (uint8_t *)SvPVX (data_sv); 2211 uint8_t *data = (uint8_t *)SvPVX (data_sv);
2250} 2276}
2251 OUTPUT: 2277 OUTPUT:
2252 RETVAL 2278 RETVAL
2253 2279
2254void 2280void
2255set_rect (CFPlus::Map self, int x0, int y0, uint8_t *data) 2281set_rect (DC::Map self, int x0, int y0, uint8_t *data)
2256 PPCODE: 2282 PPCODE:
2257{ 2283{
2258 int x, y, z; 2284 int x, y, z;
2259 int w, h; 2285 int w, h;
2260 int x1, y1; 2286 int x1, y1;
2313 } 2339 }
2314 } 2340 }
2315 } 2341 }
2316} 2342}
2317 2343
2318MODULE = CFPlus PACKAGE = CFPlus::RW 2344MODULE = Deliantra::Client PACKAGE = DC::RW
2319 2345
2320CFPlus::RW 2346DC::RW
2321new (SV *class, SV *data_sv) 2347new (SV *class, SV *data_sv)
2322 CODE: 2348 CODE:
2323{ 2349{
2324 STRLEN datalen; 2350 STRLEN datalen;
2325 char *data = SvPVbyte (data_sv, datalen); 2351 char *data = SvPVbyte (data_sv, datalen);
2327 RETVAL = SDL_RWFromConstMem (data, datalen); 2353 RETVAL = SDL_RWFromConstMem (data, datalen);
2328} 2354}
2329 OUTPUT: 2355 OUTPUT:
2330 RETVAL 2356 RETVAL
2331 2357
2332CFPlus::RW 2358DC::RW
2333new_from_file (SV *class, const char *path, const char *mode = "rb") 2359new_from_file (SV *class, const char *path, const char *mode = "rb")
2334 CODE: 2360 CODE:
2335 RETVAL = SDL_RWFromFile (path, mode); 2361 RETVAL = SDL_RWFromFile (path, mode);
2336 OUTPUT: 2362 OUTPUT:
2337 RETVAL 2363 RETVAL
2338 2364
2339# fails on win32: 2365# fails on win32:
2340# CFPlus.xs(2268) : error C2059: syntax error : '(' 2366# dc.xs(2268) : error C2059: syntax error : '('
2341#void 2367#void
2342#close (CFPlus::RW self) 2368#close (DC::RW self)
2343# CODE: 2369# CODE:
2344# (self->(close)) (self); 2370# (self->(close)) (self);
2345 2371
2346MODULE = CFPlus PACKAGE = CFPlus::Channel 2372MODULE = Deliantra::Client PACKAGE = DC::Channel
2347 2373
2348PROTOTYPES: DISABLE 2374PROTOTYPES: DISABLE
2349 2375
2350CFPlus::Channel 2376DC::Channel
2351find () 2377find ()
2352 CODE: 2378 CODE:
2353{ 2379{
2354 RETVAL = Mix_GroupAvailable (-1); 2380 RETVAL = Mix_GroupAvailable (-1);
2355 2381
2368} 2394}
2369 OUTPUT: 2395 OUTPUT:
2370 RETVAL 2396 RETVAL
2371 2397
2372void 2398void
2373halt (CFPlus::Channel self) 2399halt (DC::Channel self)
2374 CODE: 2400 CODE:
2375 Mix_HaltChannel (self); 2401 Mix_HaltChannel (self);
2376 2402
2377void 2403void
2378expire (CFPlus::Channel self, int ticks = -1) 2404expire (DC::Channel self, int ticks = -1)
2379 CODE: 2405 CODE:
2380 Mix_ExpireChannel (self, ticks); 2406 Mix_ExpireChannel (self, ticks);
2381 2407
2382void 2408void
2383fade_out (CFPlus::Channel self, int ticks = -1) 2409fade_out (DC::Channel self, int ticks = -1)
2384 CODE: 2410 CODE:
2385 Mix_FadeOutChannel (self, ticks); 2411 Mix_FadeOutChannel (self, ticks);
2386 2412
2387int 2413int
2388volume (CFPlus::Channel self, int volume) 2414volume (DC::Channel self, int volume)
2389 CODE: 2415 CODE:
2390 RETVAL = Mix_Volume (self, CLAMP (volume, 0, 128)); 2416 RETVAL = Mix_Volume (self, CLAMP (volume, 0, 128));
2391 OUTPUT: 2417 OUTPUT:
2392 RETVAL 2418 RETVAL
2393 2419
2394void 2420void
2395unregister_all_effects (CFPlus::Channel self) 2421unregister_all_effects (DC::Channel self)
2396 CODE: 2422 CODE:
2397 Mix_UnregisterAllEffects (self); 2423 Mix_UnregisterAllEffects (self);
2398 2424
2399void 2425void
2400set_panning (CFPlus::Channel self, int left, int right) 2426set_panning (DC::Channel self, int left, int right)
2401 CODE: 2427 CODE:
2402 left = CLAMP (left , 0, 255); 2428 left = CLAMP (left , 0, 255);
2403 right = CLAMP (right, 0, 255); 2429 right = CLAMP (right, 0, 255);
2404 Mix_SetPanning (self, left, right); 2430 Mix_SetPanning (self, left, right);
2405 2431
2406void 2432void
2407set_distance (CFPlus::Channel self, int distance) 2433set_distance (DC::Channel self, int distance)
2408 CODE: 2434 CODE:
2409 Mix_SetDistance (self, CLAMP (distance, 0, 255)); 2435 Mix_SetDistance (self, CLAMP (distance, 0, 255));
2410 2436
2411void 2437void
2412set_position (CFPlus::Channel self, int angle, int distance) 2438set_position (DC::Channel self, int angle, int distance)
2413 CODE: 2439 CODE:
2414 2440
2415void 2441void
2416set_position_r (CFPlus::Channel self, int dx, int dy, int maxdistance) 2442set_position_r (DC::Channel self, int dx, int dy, int maxdistance)
2417 CODE: 2443 CODE:
2418{ 2444{
2419 int distance = sqrtf (dx * dx + dy * dy) * (255.f / sqrtf (maxdistance * maxdistance)); 2445 int distance = sqrtf (dx * dx + dy * dy) * (255.f / sqrtf (maxdistance * maxdistance));
2420 int angle = 360 + (int)roundf (atan2f (dx, -dy) * 180.f / (float)M_PI); 2446 int angle = 360 + (int)roundf (atan2f (dx, -dy) * 180.f / (float)M_PI);
2421 Mix_SetPosition (self, angle, CLAMP (distance, 0, 255)); 2447 Mix_SetPosition (self, angle, CLAMP (distance, 0, 255));
2422} 2448}
2423 2449
2424void 2450void
2425set_reverse_stereo (CFPlus::Channel self, int flip) 2451set_reverse_stereo (DC::Channel self, int flip)
2426 CODE: 2452 CODE:
2427 Mix_SetReverseStereo (self, flip); 2453 Mix_SetReverseStereo (self, flip);
2428 2454
2429MODULE = CFPlus PACKAGE = CFPlus::MixChunk 2455MODULE = Deliantra::Client PACKAGE = DC::MixChunk
2430 2456
2431PROTOTYPES: DISABLE 2457PROTOTYPES: DISABLE
2432 2458
2433CFPlus::MixChunk 2459DC::MixChunk
2434new (SV *class, CFPlus::RW rwops) 2460new (SV *class, DC::RW rwops)
2435 CODE: 2461 CODE:
2436 RETVAL = Mix_LoadWAV_RW (rwops, 1); 2462 RETVAL = Mix_LoadWAV_RW (rwops, 1);
2437 OUTPUT: 2463 OUTPUT:
2438 RETVAL 2464 RETVAL
2439 2465
2440void 2466void
2441DESTROY (CFPlus::MixChunk self) 2467DESTROY (DC::MixChunk self)
2442 CODE: 2468 CODE:
2443 Mix_FreeChunk (self); 2469 Mix_FreeChunk (self);
2444 2470
2445int 2471int
2446volume (CFPlus::MixChunk self, int volume = -1) 2472volume (DC::MixChunk self, int volume = -1)
2447 CODE: 2473 CODE:
2448 if (items > 1) 2474 if (items > 1)
2449 volume = CLAMP (volume, 0, 128); 2475 volume = CLAMP (volume, 0, 128);
2450 RETVAL = Mix_VolumeChunk (self, volume); 2476 RETVAL = Mix_VolumeChunk (self, volume);
2451 OUTPUT: 2477 OUTPUT:
2452 RETVAL 2478 RETVAL
2453 2479
2454CFPlus::Channel 2480DC::Channel
2455play (CFPlus::MixChunk self, CFPlus::Channel channel = -1, int loops = 0, int ticks = -1) 2481play (DC::MixChunk self, DC::Channel channel = -1, int loops = 0, int ticks = -1)
2456 CODE: 2482 CODE:
2457{ 2483{
2458 RETVAL = Mix_PlayChannelTimed (channel, self, loops, ticks); 2484 RETVAL = Mix_PlayChannelTimed (channel, self, loops, ticks);
2459 2485
2460 if (RETVAL < 0) 2486 if (RETVAL < 0)
2467 } 2493 }
2468} 2494}
2469 OUTPUT: 2495 OUTPUT:
2470 RETVAL 2496 RETVAL
2471 2497
2472MODULE = CFPlus PACKAGE = CFPlus::MixMusic 2498MODULE = Deliantra::Client PACKAGE = DC::MixMusic
2473 2499
2474int 2500int
2475volume (int volume = -1) 2501volume (int volume = -1)
2476 PROTOTYPE: ;$ 2502 PROTOTYPE: ;$
2477 CODE: 2503 CODE:
2489void 2515void
2490halt () 2516halt ()
2491 CODE: 2517 CODE:
2492 Mix_HaltMusic (); 2518 Mix_HaltMusic ();
2493 2519
2494CFPlus::MixMusic 2520DC::MixMusic
2495new (SV *class, CFPlus::RW rwops) 2521new (SV *class, DC::RW rwops)
2496 CODE: 2522 CODE:
2497 RETVAL = Mix_LoadMUS_RW (rwops); 2523 RETVAL = Mix_LoadMUS_RW (rwops);
2498 OUTPUT: 2524 OUTPUT:
2499 RETVAL 2525 RETVAL
2500 2526
2501void 2527void
2502DESTROY (CFPlus::MixMusic self) 2528DESTROY (DC::MixMusic self)
2503 CODE: 2529 CODE:
2504 Mix_FreeMusic (self); 2530 Mix_FreeMusic (self);
2505 2531
2506int 2532int
2507play (CFPlus::MixMusic self, int loops = -1) 2533play (DC::MixMusic self, int loops = -1)
2508 CODE: 2534 CODE:
2509 RETVAL = Mix_PlayMusic (self, loops); 2535 RETVAL = Mix_PlayMusic (self, loops);
2510 OUTPUT: 2536 OUTPUT:
2511 RETVAL 2537 RETVAL
2512 2538
2513void 2539void
2514fade_in_pos (CFPlus::MixMusic self, int loops, int ms, double position) 2540fade_in_pos (DC::MixMusic self, int loops, int ms, double position)
2515 CODE: 2541 CODE:
2516 Mix_FadeInMusicPos (self, loops, ms, position); 2542 Mix_FadeInMusicPos (self, loops, ms, position);
2517 2543
2518MODULE = CFPlus PACKAGE = CFPlus::OpenGL 2544MODULE = Deliantra::Client PACKAGE = DC::OpenGL
2519 2545
2520PROTOTYPES: ENABLE 2546PROTOTYPES: ENABLE
2521 2547
2522BOOT: 2548BOOT:
2523{ 2549{
2524 HV *stash = gv_stashpv ("CFPlus::OpenGL", 1); 2550 HV *stash = gv_stashpv ("DC::OpenGL", 1);
2525 static const struct { 2551 static const struct {
2526 const char *name; 2552 const char *name;
2527 IV iv; 2553 IV iv;
2528 } *civ, const_iv[] = { 2554 } *civ, const_iv[] = {
2529# define const_iv(name) { # name, (IV)name } 2555# define const_iv(name) { # name, (IV)name }
2822void glSeparableFilter2D (int target, int internalformat, int width, int height, int format, int type, char *row, char *column) 2848void glSeparableFilter2D (int target, int internalformat, int width, int height, int format, int type, char *row, char *column)
2823 CODE: 2849 CODE:
2824 if (gl.SeparableFilter2D) 2850 if (gl.SeparableFilter2D)
2825 gl.SeparableFilter2D (target, internalformat, width, height, format, type, row, column); 2851 gl.SeparableFilter2D (target, internalformat, width, height, format, type, row, column);
2826 2852
2827void glTexImage2D (int target, int level, int internalformat, int width, int height, int border, int format, int type, char *data) 2853void glTexImage2D (int target, int level, int internalformat, int width, int height, int border, int format, int type, char *data = 0)
2828 2854
2829void glCopyTexImage2D (int target, int level, int internalformat, int x, int y, int width, int height, int border) 2855void glCopyTexImage2D (int target, int level, int internalformat, int x, int y, int width, int height, int border)
2830 2856
2831void glDrawPixels (int width, int height, int format, int type, char *pixels) 2857void glDrawPixels (int width, int height, int format, int type, char *pixels)
2832 2858
2858 2884
2859void glEndList () 2885void glEndList ()
2860 2886
2861void glCallList (int list) 2887void glCallList (int list)
2862 2888
2863MODULE = CFPlus PACKAGE = CFPlus::UI::Base 2889MODULE = Deliantra::Client PACKAGE = DC::UI::Base
2864 2890
2865PROTOTYPES: DISABLE 2891PROTOTYPES: DISABLE
2866 2892
2867void 2893void
2868find_widget (SV *self, NV x, NV y) 2894find_widget (SV *self, NV x, NV y)
2872 XPUSHs (self); 2898 XPUSHs (self);
2873} 2899}
2874 2900
2875BOOT: 2901BOOT:
2876{ 2902{
2877 hover_gv = gv_fetchpv ("CFPlus::UI::HOVER", 1, SVt_NV); 2903 hover_gv = gv_fetchpv ("DC::UI::HOVER", 1, SVt_NV);
2878 2904
2879 draw_x_gv = gv_fetchpv ("CFPlus::UI::Base::draw_x", 1, SVt_NV); 2905 draw_x_gv = gv_fetchpv ("DC::UI::Base::draw_x", 1, SVt_NV);
2880 draw_y_gv = gv_fetchpv ("CFPlus::UI::Base::draw_y", 1, SVt_NV); 2906 draw_y_gv = gv_fetchpv ("DC::UI::Base::draw_y", 1, SVt_NV);
2881 draw_w_gv = gv_fetchpv ("CFPlus::UI::Base::draw_w", 1, SVt_NV); 2907 draw_w_gv = gv_fetchpv ("DC::UI::Base::draw_w", 1, SVt_NV);
2882 draw_h_gv = gv_fetchpv ("CFPlus::UI::Base::draw_h", 1, SVt_NV); 2908 draw_h_gv = gv_fetchpv ("DC::UI::Base::draw_h", 1, SVt_NV);
2883} 2909}
2884 2910
2885void 2911void
2886draw (SV *self) 2912draw (SV *self)
2887 CODE: 2913 CODE:
2894 SV *draw_w_sv = GvSV (draw_w_gv); 2920 SV *draw_w_sv = GvSV (draw_w_gv);
2895 SV *draw_h_sv = GvSV (draw_h_gv); 2921 SV *draw_h_sv = GvSV (draw_h_gv);
2896 double draw_x, draw_y; 2922 double draw_x, draw_y;
2897 2923
2898 if (!SvROK (self)) 2924 if (!SvROK (self))
2899 croak ("CFPlus::Base::draw: %s not a reference", SvPV_nolen (self)); 2925 croak ("DC::Base::draw: %s not a reference", SvPV_nolen (self));
2900 2926
2901 hv = (HV *)SvRV (self); 2927 hv = (HV *)SvRV (self);
2902 2928
2903 if (SvTYPE (hv) != SVt_PVHV) 2929 if (SvTYPE (hv) != SVt_PVHV)
2904 croak ("CFPlus::Base::draw: %s not a hashref", SvPV_nolen (self)); 2930 croak ("DC::Base::draw: %s not a hashref", SvPV_nolen (self));
2905 2931
2906 svp = hv_fetch (hv, "w", 1, 0); w = svp ? SvNV (*svp) : 0.; 2932 svp = hv_fetch (hv, "w", 1, 0); w = svp ? SvNV (*svp) : 0.;
2907 svp = hv_fetch (hv, "h", 1, 0); h = svp ? SvNV (*svp) : 0.; 2933 svp = hv_fetch (hv, "h", 1, 0); h = svp ? SvNV (*svp) : 0.;
2908 2934
2909 if (!h || !w) 2935 if (!h || !w)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines