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.129 by root, Wed Jul 12 17:20:04 2006 UTC vs.
Revision 1.140 by root, Mon Aug 14 03:41:25 2006 UTC

1#ifdef _WIN32 1#ifdef _WIN32
2# define WIN32_LEAN_AND_MEAN
2# define _WIN32_WINNT 0x0500 // needed to get win2000 api calls 3# define _WIN32_WINNT 0x0500 // needed to get win2000 api calls
3# include <malloc.h> 4# include <malloc.h>
4# include <windows.h> 5# include <windows.h>
5# pragma warning(disable:4244) 6# pragma warning(disable:4244)
6#endif 7#endif
7 8
8#include "EXTERN.h" 9#include "EXTERN.h"
9#include "perl.h" 10#include "perl.h"
10#include "XSUB.h" 11#include "XSUB.h"
12
13#ifdef _WIN32
14# undef pipe
15#endif
11 16
12#include <math.h> 17#include <math.h>
13#include <string.h> 18#include <string.h>
14#include <stdio.h> 19#include <stdio.h>
15#include <stdlib.h> 20#include <stdlib.h>
40 typedef signed char int8_t; 45 typedef signed char int8_t;
41 typedef signed short int16_t; 46 typedef signed short int16_t;
42 typedef signed int int32_t; 47 typedef signed int int32_t;
43#endif 48#endif
44 49
45#include "glext.h"
46
47#define OBJ_STR "\xef\xbf\xbc" /* U+FFFC, objetc replacement character */ 50#define OBJ_STR "\xef\xbf\xbc" /* U+FFFC, objetc replacement character */
48 51
49#define FOW_DARKNESS 32 52#define FOW_DARKNESS 32
50 53
51#define MAP_EXTEND_X 32 54#define MAP_EXTEND_X 32
80 83
81#include "pango-font.c" 84#include "pango-font.c"
82#include "pango-fontmap.c" 85#include "pango-fontmap.c"
83#include "pango-render.c" 86#include "pango-render.c"
84 87
85typedef Mix_Chunk *CFClient__MixChunk; 88typedef Mix_Chunk *CFPlus__MixChunk;
86typedef Mix_Music *CFClient__MixMusic; 89typedef Mix_Music *CFPlus__MixMusic;
87 90
88typedef PangoFontDescription *CFClient__Font; 91typedef PangoFontDescription *CFPlus__Font;
89 92
90static int 93static int
91shape_attr_p (PangoLayoutRun *run) 94shape_attr_p (PangoLayoutRun *run)
92{ 95{
93 GSList *attrs = run->item->analysis.extra_attrs; 96 GSList *attrs = run->item->analysis.extra_attrs;
107 110
108typedef struct cf_layout { 111typedef struct cf_layout {
109 PangoLayout *pl; 112 PangoLayout *pl;
110 float r, g, b, a; // default color for rgba mode 113 float r, g, b, a; // default color for rgba mode
111 int base_height; 114 int base_height;
112 CFClient__Font font; 115 CFPlus__Font font;
113} *CFClient__Layout; 116} *CFPlus__Layout;
114 117
115static CFClient__Font default_font; 118static CFPlus__Font default_font;
116static PangoContext *opengl_context; 119static PangoContext *opengl_context;
117static PangoFontMap *opengl_fontmap; 120static PangoFontMap *opengl_fontmap;
118 121
119static void 122static void
120substitute_func (FcPattern *pattern, gpointer data) 123substitute_func (FcPattern *pattern, gpointer data)
125#endif 128#endif
126 FcPatternAddBool (pattern, FC_AUTOHINT, 0); 129 FcPatternAddBool (pattern, FC_AUTOHINT, 0);
127} 130}
128 131
129static void 132static void
130layout_update_font (CFClient__Layout self) 133layout_update_font (CFPlus__Layout self)
131{ 134{
132 /* use a random scale factor to account for unknown descenders, 0.8 works 135 /* use a random scale factor to account for unknown descenders, 0.8 works
133 * reasonably well with bitstream vera 136 * reasonably well with bitstream vera
134 */ 137 */
135 PangoFontDescription *font = self->font ? self->font : default_font; 138 PangoFontDescription *font = self->font ? self->font : default_font;
139 142
140 pango_layout_set_font_description (self->pl, font); 143 pango_layout_set_font_description (self->pl, font);
141} 144}
142 145
143static void 146static void
144layout_get_pixel_size (CFClient__Layout self, int *w, int *h) 147layout_get_pixel_size (CFPlus__Layout self, int *w, int *h)
145{ 148{
149 PangoRectangle rect;
150
151 // get_pixel_* wrongly rounds down
146 pango_layout_get_pixel_size (self->pl, w, h); 152 pango_layout_get_extents (self->pl, 0, &rect);
147 153
148 if (!*w) *w = 1; 154 rect.width = (rect.width + PANGO_SCALE - 1) / PANGO_SCALE;
149 if (!*h) *h = 1; 155 rect.height = (rect.height + PANGO_SCALE - 1) / PANGO_SCALE;
150 156
151 *w = (*w + 3) & ~3; 157 if (!rect.width) rect.width = 1;
158 if (!rect.height) rect.height = 1;
159
160 *w = rect.width;
161 *h = rect.height;
152} 162}
153 163
154typedef uint16_t mapface; 164typedef uint16_t mapface;
155 165
156typedef struct { 166typedef struct {
179 int texs; 189 int texs;
180 maptex *tex; 190 maptex *tex;
181 191
182 int32_t rows; 192 int32_t rows;
183 maprow *row; 193 maprow *row;
184} *CFClient__Map; 194} *CFPlus__Map;
185 195
186static char * 196static char *
187prepend (char *ptr, int sze, int inc) 197prepend (char *ptr, int sze, int inc)
188{ 198{
189 char *p; 199 char *p;
207 217
208#define Append(type,ptr,sze,inc) (ptr) = (type *)append ((char *)ptr, (sze) * sizeof (type), (inc) * sizeof (type)) 218#define Append(type,ptr,sze,inc) (ptr) = (type *)append ((char *)ptr, (sze) * sizeof (type), (inc) * sizeof (type))
209#define Prepend(type,ptr,sze,inc) (ptr) = (type *)prepend ((char *)ptr, (sze) * sizeof (type), (inc) * sizeof (type)) 219#define Prepend(type,ptr,sze,inc) (ptr) = (type *)prepend ((char *)ptr, (sze) * sizeof (type), (inc) * sizeof (type))
210 220
211static maprow * 221static maprow *
212map_get_row (CFClient__Map self, int y) 222map_get_row (CFPlus__Map self, int y)
213{ 223{
214 if (0 > y) 224 if (0 > y)
215 { 225 {
216 int extend = - y + MAP_EXTEND_Y; 226 int extend = - y + MAP_EXTEND_Y;
217 Prepend (maprow, self->row, self->rows, extend); 227 Prepend (maprow, self->row, self->rows, extend);
255 265
256 return row->col + (x - row->c0); 266 return row->col + (x - row->c0);
257} 267}
258 268
259static mapcell * 269static mapcell *
260map_get_cell (CFClient__Map self, int x, int y) 270map_get_cell (CFPlus__Map self, int x, int y)
261{ 271{
262 return row_get_cell (map_get_row (self, y), x); 272 return row_get_cell (map_get_row (self, y), x);
263} 273}
264 274
265static void 275static void
266map_clear (CFClient__Map self) 276map_clear (CFPlus__Map self)
267{ 277{
268 int r; 278 int r;
269 279
270 for (r = 0; r < self->rows; r++) 280 for (r = 0; r < self->rows; r++)
271 Safefree (self->row[r].col); 281 Safefree (self->row[r].col);
279 self->row = 0; 289 self->row = 0;
280 self->rows = 0; 290 self->rows = 0;
281} 291}
282 292
283static void 293static void
284map_blank (CFClient__Map self, int x0, int y0, int w, int h) 294map_blank (CFPlus__Map self, int x0, int y0, int w, int h)
285{ 295{
286 int x, y; 296 int x, y;
287 maprow *row; 297 maprow *row;
288 298
289 for (y = y0; y < y0 + h; y++) 299 for (y = y0; y < y0 + h; y++)
346 n |= n >> 16; 356 n |= n >> 16;
347 357
348 return n + 1; 358 return n + 1;
349} 359}
350 360
351MODULE = CFClient PACKAGE = CFClient 361MODULE = CFPlus PACKAGE = CFPlus
352 362
353PROTOTYPES: ENABLE 363PROTOTYPES: ENABLE
354 364
355BOOT: 365BOOT:
356{ 366{
357 HV *stash = gv_stashpv ("CFClient", 1); 367 HV *stash = gv_stashpv ("CFPlus", 1);
358 static const struct { 368 static const struct {
359 const char *name; 369 const char *name;
360 IV iv; 370 IV iv;
361 } *civ, const_iv[] = { 371 } *civ, const_iv[] = {
362# define const_iv(name) { # name, (IV)name } 372# define const_iv(name) { # name, (IV)name }
509 SDL_GL_SetAttribute (SDL_GL_ACCUM_GREEN_SIZE, 0); 519 SDL_GL_SetAttribute (SDL_GL_ACCUM_GREEN_SIZE, 0);
510 SDL_GL_SetAttribute (SDL_GL_ACCUM_BLUE_SIZE, 0); 520 SDL_GL_SetAttribute (SDL_GL_ACCUM_BLUE_SIZE, 0);
511 SDL_GL_SetAttribute (SDL_GL_ACCUM_ALPHA_SIZE, 0); 521 SDL_GL_SetAttribute (SDL_GL_ACCUM_ALPHA_SIZE, 0);
512 522
513 SDL_GL_SetAttribute (SDL_GL_DOUBLEBUFFER, 1); 523 SDL_GL_SetAttribute (SDL_GL_DOUBLEBUFFER, 1);
524#if SDL_VERSION_ATLEAST(1,2,10)
525 SDL_GL_SetAttribute (SDL_GL_ACCELERATED_VISUAL, 1);
526 SDL_GL_SetAttribute (SDL_GL_SWAP_CONTROL, 1);
527#endif
514 528
515 SDL_EnableUNICODE (1); 529 SDL_EnableUNICODE (1);
516 SDL_EnableKeyRepeat (SDL_DEFAULT_REPEAT_DELAY, SDL_DEFAULT_REPEAT_INTERVAL); 530 SDL_EnableKeyRepeat (SDL_DEFAULT_REPEAT_DELAY, SDL_DEFAULT_REPEAT_INTERVAL);
517 531
518 m = SDL_ListModes (0, SDL_FULLSCREEN | SDL_OPENGL); 532 m = SDL_ListModes (0, SDL_FULLSCREEN | SDL_OPENGL);
605 hv_store (hv, "data1", 5, newSViv ((IV)ev.user.data1), 0); 619 hv_store (hv, "data1", 5, newSViv ((IV)ev.user.data1), 0);
606 hv_store (hv, "data2", 5, newSViv ((IV)ev.user.data2), 0); 620 hv_store (hv, "data2", 5, newSViv ((IV)ev.user.data2), 0);
607 break; 621 break;
608 } 622 }
609 623
610 XPUSHs (sv_2mortal (newRV_noinc ((SV *)hv))); 624 XPUSHs (sv_2mortal (sv_bless (newRV_noinc ((SV *)hv), gv_stashpv ("CFPlus::UI::Event", 1))));
611 } 625 }
612} 626}
613 627
614int 628int
615Mix_OpenAudio (int frequency = 48000, int format = MIX_DEFAULT_FORMAT, int channels = 1, int chunksize = 2048) 629Mix_OpenAudio (int frequency = 48000, int format = MIX_DEFAULT_FORMAT, int channels = 1, int chunksize = 2048)
744void 758void
745_exit (int retval) 759_exit (int retval)
746 CODE: 760 CODE:
747 _exit (retval); 761 _exit (retval);
748 762
749MODULE = CFClient PACKAGE = CFClient::Font 763MODULE = CFPlus PACKAGE = CFPlus::Font
750 764
751CFClient::Font 765CFPlus::Font
752new_from_file (SV *class, char *path, int id = 0) 766new_from_file (SV *class, char *path, int id = 0)
753 CODE: 767 CODE:
754{ 768{
755 int count; 769 int count;
756 FcPattern *pattern = FcFreeTypeQuery ((const FcChar8 *)path, id, 0, &count); 770 FcPattern *pattern = FcFreeTypeQuery ((const FcChar8 *)path, id, 0, &count);
759} 773}
760 OUTPUT: 774 OUTPUT:
761 RETVAL 775 RETVAL
762 776
763void 777void
764DESTROY (CFClient::Font self) 778DESTROY (CFPlus::Font self)
765 CODE: 779 CODE:
766 pango_font_description_free (self); 780 pango_font_description_free (self);
767 781
768void 782void
769make_default (CFClient::Font self) 783make_default (CFPlus::Font self)
770 CODE: 784 CODE:
771 default_font = self; 785 default_font = self;
772 786
773MODULE = CFClient PACKAGE = CFClient::Layout 787MODULE = CFPlus PACKAGE = CFPlus::Layout
774 788
775void 789void
776reset_glyph_cache () 790reset_glyph_cache ()
777 CODE: 791 CODE:
778 tc_clear (); 792 tc_clear ();
779 793
780CFClient::Layout 794CFPlus::Layout
781new (SV *class) 795new (SV *class)
782 CODE: 796 CODE:
783 New (0, RETVAL, 1, struct cf_layout); 797 New (0, RETVAL, 1, struct cf_layout);
784 798
785 RETVAL->pl = pango_layout_new (opengl_context); 799 RETVAL->pl = pango_layout_new (opengl_context);
794 layout_update_font (RETVAL); 808 layout_update_font (RETVAL);
795 OUTPUT: 809 OUTPUT:
796 RETVAL 810 RETVAL
797 811
798void 812void
799DESTROY (CFClient::Layout self) 813DESTROY (CFPlus::Layout self)
800 CODE: 814 CODE:
801 g_object_unref (self->pl); 815 g_object_unref (self->pl);
802 Safefree (self); 816 Safefree (self);
803 817
804void 818void
805set_text (CFClient::Layout self, SV *text_) 819set_text (CFPlus::Layout self, SV *text_)
806 CODE: 820 CODE:
807{ 821{
808 STRLEN textlen; 822 STRLEN textlen;
809 char *text = SvPVutf8 (text_, textlen); 823 char *text = SvPVutf8 (text_, textlen);
810 824
811 pango_layout_set_text (self->pl, text, textlen); 825 pango_layout_set_text (self->pl, text, textlen);
812} 826}
813 827
814void 828void
815set_markup (CFClient::Layout self, SV *text_) 829set_markup (CFPlus::Layout self, SV *text_)
816 CODE: 830 CODE:
817{ 831{
818 STRLEN textlen; 832 STRLEN textlen;
819 char *text = SvPVutf8 (text_, textlen); 833 char *text = SvPVutf8 (text_, textlen);
820 834
821 pango_layout_set_markup (self->pl, text, textlen); 835 pango_layout_set_markup (self->pl, text, textlen);
822} 836}
823 837
824void 838void
825set_shapes (CFClient::Layout self, ...) 839set_shapes (CFPlus::Layout self, ...)
826 CODE: 840 CODE:
827{ 841{
828 PangoAttrList *attrs = 0; 842 PangoAttrList *attrs = 0;
829 const char *text = pango_layout_get_text (self->pl); 843 const char *text = pango_layout_get_text (self->pl);
830 const char *pos = text; 844 const char *pos = text;
865 if (attrs) 879 if (attrs)
866 pango_layout_set_attributes (self->pl, attrs); 880 pango_layout_set_attributes (self->pl, attrs);
867} 881}
868 882
869void 883void
870get_shapes (CFClient::Layout self) 884get_shapes (CFPlus::Layout self)
871 PPCODE: 885 PPCODE:
872{ 886{
873 PangoLayoutIter *iter = pango_layout_get_iter (self->pl); 887 PangoLayoutIter *iter = pango_layout_get_iter (self->pl);
874 888
875 do 889 do
890 904
891 pango_layout_iter_free (iter); 905 pango_layout_iter_free (iter);
892} 906}
893 907
894int 908int
895has_wrapped (CFClient::Layout self) 909has_wrapped (CFPlus::Layout self)
896 CODE: 910 CODE:
897{ 911{
898 int lines = 1; 912 int lines = 1;
899 const char *text = pango_layout_get_text (self->pl); 913 const char *text = pango_layout_get_text (self->pl);
900 914
905} 919}
906 OUTPUT: 920 OUTPUT:
907 RETVAL 921 RETVAL
908 922
909SV * 923SV *
910get_text (CFClient::Layout self) 924get_text (CFPlus::Layout self)
911 CODE: 925 CODE:
912 RETVAL = newSVpv (pango_layout_get_text (self->pl), 0); 926 RETVAL = newSVpv (pango_layout_get_text (self->pl), 0);
913 sv_utf8_decode (RETVAL); 927 sv_utf8_decode (RETVAL);
914 OUTPUT: 928 OUTPUT:
915 RETVAL 929 RETVAL
916 930
917void 931void
918set_foreground (CFClient::Layout self, float r, float g, float b, float a = 1.) 932set_foreground (CFPlus::Layout self, float r, float g, float b, float a = 1.)
919 CODE: 933 CODE:
920 self->r = r; 934 self->r = r;
921 self->g = g; 935 self->g = g;
922 self->b = b; 936 self->b = b;
923 self->a = a; 937 self->a = a;
924 938
925void 939void
926set_font (CFClient::Layout self, CFClient::Font font = 0) 940set_font (CFPlus::Layout self, CFPlus::Font font = 0)
927 CODE: 941 CODE:
928 if (self->font != font) 942 if (self->font != font)
929 { 943 {
930 self->font = font; 944 self->font = font;
931 layout_update_font (self); 945 layout_update_font (self);
932 } 946 }
933 947
934void 948void
935set_height (CFClient::Layout self, int base_height) 949set_height (CFPlus::Layout self, int base_height)
936 CODE: 950 CODE:
937 if (self->base_height != base_height) 951 if (self->base_height != base_height)
938 { 952 {
939 self->base_height = base_height; 953 self->base_height = base_height;
940 layout_update_font (self); 954 layout_update_font (self);
941 } 955 }
942 956
943void 957void
944set_width (CFClient::Layout self, int max_width = -1) 958set_width (CFPlus::Layout self, int max_width = -1)
945 CODE: 959 CODE:
946 pango_layout_set_width (self->pl, max_width < 0 ? max_width : max_width * PANGO_SCALE); 960 pango_layout_set_width (self->pl, max_width < 0 ? max_width : max_width * PANGO_SCALE);
947 961
948void 962void
949set_indent (CFClient::Layout self, int indent) 963set_indent (CFPlus::Layout self, int indent)
950 CODE: 964 CODE:
951 pango_layout_set_indent (self->pl, indent * PANGO_SCALE); 965 pango_layout_set_indent (self->pl, indent * PANGO_SCALE);
952 966
953void 967void
954set_spacing (CFClient::Layout self, int spacing) 968set_spacing (CFPlus::Layout self, int spacing)
955 CODE: 969 CODE:
956 pango_layout_set_spacing (self->pl, spacing * PANGO_SCALE); 970 pango_layout_set_spacing (self->pl, spacing * PANGO_SCALE);
957 971
958void 972void
959set_ellipsise (CFClient::Layout self, int ellipsise) 973set_ellipsise (CFPlus::Layout self, int ellipsise)
960 CODE: 974 CODE:
961 pango_layout_set_ellipsize (self->pl, 975 pango_layout_set_ellipsize (self->pl,
962 ellipsise == 1 ? PANGO_ELLIPSIZE_START 976 ellipsise == 1 ? PANGO_ELLIPSIZE_START
963 : ellipsise == 2 ? PANGO_ELLIPSIZE_MIDDLE 977 : ellipsise == 2 ? PANGO_ELLIPSIZE_MIDDLE
964 : ellipsise == 3 ? PANGO_ELLIPSIZE_END 978 : ellipsise == 3 ? PANGO_ELLIPSIZE_END
965 : PANGO_ELLIPSIZE_NONE 979 : PANGO_ELLIPSIZE_NONE
966 ); 980 );
967 981
968void 982void
969set_single_paragraph_mode (CFClient::Layout self, int spm) 983set_single_paragraph_mode (CFPlus::Layout self, int spm)
970 CODE: 984 CODE:
971 pango_layout_set_single_paragraph_mode (self->pl, !!spm); 985 pango_layout_set_single_paragraph_mode (self->pl, !!spm);
972 986
973void 987void
974size (CFClient::Layout self) 988size (CFPlus::Layout self)
975 PPCODE: 989 PPCODE:
976{ 990{
977 int w, h; 991 int w, h;
978 992
979 layout_get_pixel_size (self, &w, &h); 993 layout_get_pixel_size (self, &w, &h);
982 PUSHs (sv_2mortal (newSViv (w))); 996 PUSHs (sv_2mortal (newSViv (w)));
983 PUSHs (sv_2mortal (newSViv (h))); 997 PUSHs (sv_2mortal (newSViv (h)));
984} 998}
985 999
986int 1000int
987descent (CFClient::Layout self) 1001descent (CFPlus::Layout self)
988 CODE: 1002 CODE:
989{ 1003{
990 PangoRectangle rect; 1004 PangoRectangle rect;
991 PangoLayoutLine *line = pango_layout_get_line (self->pl, 0); 1005 PangoLayoutLine *line = pango_layout_get_line (self->pl, 0);
992 pango_layout_line_get_pixel_extents (line, 0, &rect); 1006 pango_layout_line_get_pixel_extents (line, 0, &rect);
994} 1008}
995 OUTPUT: 1009 OUTPUT:
996 RETVAL 1010 RETVAL
997 1011
998int 1012int
999xy_to_index (CFClient::Layout self, int x, int y) 1013xy_to_index (CFPlus::Layout self, int x, int y)
1000 CODE: 1014 CODE:
1001{ 1015{
1002 int index, trailing; 1016 int index, trailing;
1003 pango_layout_xy_to_index (self->pl, x * PANGO_SCALE, y * PANGO_SCALE, &index, &trailing); 1017 pango_layout_xy_to_index (self->pl, x * PANGO_SCALE, y * PANGO_SCALE, &index, &trailing);
1004 RETVAL = index; 1018 RETVAL = index;
1005} 1019}
1006 OUTPUT: 1020 OUTPUT:
1007 RETVAL 1021 RETVAL
1008 1022
1009void 1023void
1010cursor_pos (CFClient::Layout self, int index) 1024cursor_pos (CFPlus::Layout self, int index)
1011 PPCODE: 1025 PPCODE:
1012{ 1026{
1013 PangoRectangle strong_pos; 1027 PangoRectangle strong_pos;
1014 pango_layout_get_cursor_pos (self->pl, index, &strong_pos, 0); 1028 pango_layout_get_cursor_pos (self->pl, index, &strong_pos, 0);
1015 1029
1018 PUSHs (sv_2mortal (newSViv (strong_pos.y / PANGO_SCALE))); 1032 PUSHs (sv_2mortal (newSViv (strong_pos.y / PANGO_SCALE)));
1019 PUSHs (sv_2mortal (newSViv (strong_pos.height / PANGO_SCALE))); 1033 PUSHs (sv_2mortal (newSViv (strong_pos.height / PANGO_SCALE)));
1020} 1034}
1021 1035
1022void 1036void
1023render (CFClient::Layout self, float x, float y) 1037render (CFPlus::Layout self, float x, float y, int flags = 0)
1024 PPCODE: 1038 PPCODE:
1025 pango_opengl_render_layout_subpixel ( 1039 pango_opengl_render_layout_subpixel (
1026 self->pl, 1040 self->pl,
1027 x * PANGO_SCALE, y * PANGO_SCALE, 1041 x * PANGO_SCALE, y * PANGO_SCALE,
1028 self->r, self->g, self->b, self->a 1042 self->r, self->g, self->b, self->a,
1043 flags
1029 ); 1044 );
1030 1045
1031MODULE = CFClient PACKAGE = CFClient::Texture 1046MODULE = CFPlus PACKAGE = CFPlus::Texture
1032 1047
1033void 1048void
1034pad2pot (SV *data_, SV *w_, SV *h_) 1049pad2pot (SV *data_, SV *w_, SV *h_)
1035 CODE: 1050 CODE:
1036{ 1051{
1114 glDisable (GL_ALPHA_TEST); 1129 glDisable (GL_ALPHA_TEST);
1115 glDisable (GL_BLEND); 1130 glDisable (GL_BLEND);
1116 } 1131 }
1117} 1132}
1118 1133
1119MODULE = CFClient PACKAGE = CFClient::Map 1134MODULE = CFPlus PACKAGE = CFPlus::Map
1120 1135
1121CFClient::Map 1136CFPlus::Map
1122new (SV *class, int map_width, int map_height) 1137new (SV *class, int map_width, int map_height)
1123 CODE: 1138 CODE:
1124 New (0, RETVAL, 1, struct map); 1139 New (0, RETVAL, 1, struct map);
1125 RETVAL->x = 0; 1140 RETVAL->x = 0;
1126 RETVAL->y = 0; 1141 RETVAL->y = 0;
1136 RETVAL->row = 0; 1151 RETVAL->row = 0;
1137 OUTPUT: 1152 OUTPUT:
1138 RETVAL 1153 RETVAL
1139 1154
1140void 1155void
1141DESTROY (CFClient::Map self) 1156DESTROY (CFPlus::Map self)
1142 CODE: 1157 CODE:
1143{ 1158{
1144 map_clear (self); 1159 map_clear (self);
1145 Safefree (self->face); 1160 Safefree (self->face);
1146 Safefree (self->tex); 1161 Safefree (self->tex);
1147 Safefree (self); 1162 Safefree (self);
1148} 1163}
1149 1164
1150void 1165void
1151clear (CFClient::Map self) 1166clear (CFPlus::Map self)
1152 CODE: 1167 CODE:
1153 map_clear (self); 1168 map_clear (self);
1154 1169
1155void 1170void
1156set_face (CFClient::Map self, int face, int texid) 1171set_face (CFPlus::Map self, int face, int texid)
1157 CODE: 1172 CODE:
1158{ 1173{
1159 while (self->faces <= face) 1174 while (self->faces <= face)
1160 { 1175 {
1161 Append (mapface, self->face, self->faces, self->faces); 1176 Append (mapface, self->face, self->faces, self->faces);
1164 1179
1165 self->face [face] = texid; 1180 self->face [face] = texid;
1166} 1181}
1167 1182
1168void 1183void
1169set_texture (CFClient::Map self, int texid, int name, int w, int h, float s, float t, int r, int g, int b, int a) 1184set_texture (CFPlus::Map self, int texid, int name, int w, int h, float s, float t, int r, int g, int b, int a)
1170 CODE: 1185 CODE:
1171{ 1186{
1172 while (self->texs <= texid) 1187 while (self->texs <= texid)
1173 { 1188 {
1174 Append (maptex, self->tex, self->texs, self->texs); 1189 Append (maptex, self->tex, self->texs, self->texs);
1198 // from transparent color bleeding and ugly wrapping effects. 1213 // from transparent color bleeding and ugly wrapping effects.
1199 glTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST); 1214 glTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
1200} 1215}
1201 1216
1202int 1217int
1203ox (CFClient::Map self) 1218ox (CFPlus::Map self)
1204 ALIAS: 1219 ALIAS:
1205 oy = 1 1220 oy = 1
1206 x = 2 1221 x = 2
1207 y = 3 1222 y = 3
1208 w = 4 1223 w = 4
1219 } 1234 }
1220 OUTPUT: 1235 OUTPUT:
1221 RETVAL 1236 RETVAL
1222 1237
1223void 1238void
1224scroll (CFClient::Map self, int dx, int dy) 1239scroll (CFPlus::Map self, int dx, int dy)
1225 CODE: 1240 CODE:
1226{ 1241{
1227 if (dx > 0) 1242 if (dx > 0)
1228 map_blank (self, self->x, self->y, dx - 1, self->h); 1243 map_blank (self, self->x, self->y, dx - 1, self->h);
1229 else if (dx < 0) 1244 else if (dx < 0)
1245 self->y += MAP_EXTEND_Y; 1260 self->y += MAP_EXTEND_Y;
1246 } 1261 }
1247} 1262}
1248 1263
1249void 1264void
1250map1a_update (CFClient::Map self, SV *data_) 1265map1a_update (CFPlus::Map self, SV *data_)
1251 CODE: 1266 CODE:
1252{ 1267{
1253 uint8_t *data = (uint8_t *)SvPVbyte_nolen (data_); 1268 uint8_t *data = (uint8_t *)SvPVbyte_nolen (data_);
1254 uint8_t *data_end = (uint8_t *)SvEND (data_); 1269 uint8_t *data_end = (uint8_t *)SvEND (data_);
1255 mapcell *cell; 1270 mapcell *cell;
1297 cell->darkness = -1; 1312 cell->darkness = -1;
1298 } 1313 }
1299} 1314}
1300 1315
1301SV * 1316SV *
1302mapmap (CFClient::Map self, int x0, int y0, int w, int h) 1317mapmap (CFPlus::Map self, int x0, int y0, int w, int h)
1303 CODE: 1318 CODE:
1304{ 1319{
1305 int x1, x; 1320 int x1, x;
1306 int y1, y; 1321 int y1, y;
1307 int z; 1322 int z;
1357} 1372}
1358 OUTPUT: 1373 OUTPUT:
1359 RETVAL 1374 RETVAL
1360 1375
1361void 1376void
1362draw (CFClient::Map self, int shift_x, int shift_y, int x0, int y0, int sw, int sh) 1377draw (CFPlus::Map self, int shift_x, int shift_y, int x0, int y0, int sw, int sh)
1363 CODE: 1378 CODE:
1364{ 1379{
1365 int vx, vy; 1380 int vx, vy;
1366 int x, y, z; 1381 int x, y, z;
1367 int last_name; 1382 int last_name;
1432 glDisable (GL_TEXTURE_2D); 1447 glDisable (GL_TEXTURE_2D);
1433 glDisable (GL_BLEND); 1448 glDisable (GL_BLEND);
1434} 1449}
1435 1450
1436void 1451void
1437draw_magicmap (CFClient::Map self, int dx, int dy, int w, int h, unsigned char *data) 1452draw_magicmap (CFPlus::Map self, int dx, int dy, int w, int h, unsigned char *data)
1438 CODE: 1453 CODE:
1439{ 1454{
1440 static float color[16][3] = { 1455 static float color[16][3] = {
1441 { 0.00F, 0.00F, 0.00F }, 1456 { 0.00F, 0.00F, 0.00F },
1442 { 1.00F, 1.00F, 1.00F }, 1457 { 1.00F, 1.00F, 1.00F },
1492 glDisable (GL_BLEND); 1507 glDisable (GL_BLEND);
1493 glDisable (GL_TEXTURE_2D); 1508 glDisable (GL_TEXTURE_2D);
1494} 1509}
1495 1510
1496void 1511void
1497fow_texture (CFClient::Map self, int shift_x, int shift_y, int x0, int y0, int sw, int sh) 1512fow_texture (CFPlus::Map self, int shift_x, int shift_y, int x0, int y0, int sw, int sh)
1498 PPCODE: 1513 PPCODE:
1499{ 1514{
1500 int vx, vy; 1515 int vx, vy;
1501 int x, y; 1516 int x, y;
1502 int sw4 = (sw + 3) & ~3; 1517 int sw4 = (sw + 3) & ~3;
1531 PUSHs (sv_2mortal (newSViv (sh))); 1546 PUSHs (sv_2mortal (newSViv (sh)));
1532 PUSHs (darkness_sv); 1547 PUSHs (darkness_sv);
1533} 1548}
1534 1549
1535SV * 1550SV *
1536get_rect (CFClient::Map self, int x0, int y0, int w, int h) 1551get_rect (CFPlus::Map self, int x0, int y0, int w, int h)
1537 CODE: 1552 CODE:
1538{ 1553{
1539 int x, y, x1, y1; 1554 int x, y, x1, y1;
1540 SV *data_sv = newSV (w * h * 7 + 5); 1555 SV *data_sv = newSV (w * h * 7 + 5);
1541 uint8_t *data = (uint8_t *)SvPVX (data_sv); 1556 uint8_t *data = (uint8_t *)SvPVX (data_sv);
1603} 1618}
1604 OUTPUT: 1619 OUTPUT:
1605 RETVAL 1620 RETVAL
1606 1621
1607void 1622void
1608set_rect (CFClient::Map self, int x0, int y0, uint8_t *data) 1623set_rect (CFPlus::Map self, int x0, int y0, uint8_t *data)
1609 PPCODE: 1624 PPCODE:
1610{ 1625{
1611 int x, y, z; 1626 int x, y, z;
1612 int w, h; 1627 int w, h;
1613 int x1, y1; 1628 int x1, y1;
1662 } 1677 }
1663 } 1678 }
1664 } 1679 }
1665} 1680}
1666 1681
1667MODULE = CFClient PACKAGE = CFClient::MixChunk 1682MODULE = CFPlus PACKAGE = CFPlus::MixChunk
1668 1683
1669CFClient::MixChunk 1684CFPlus::MixChunk
1670new_from_file (SV *class, char *path) 1685new_from_file (SV *class, char *path)
1671 CODE: 1686 CODE:
1672 RETVAL = Mix_LoadWAV (path); 1687 RETVAL = Mix_LoadWAV (path);
1673 OUTPUT: 1688 OUTPUT:
1674 RETVAL 1689 RETVAL
1675 1690
1676void 1691void
1677DESTROY (CFClient::MixChunk self) 1692DESTROY (CFPlus::MixChunk self)
1678 CODE: 1693 CODE:
1679 Mix_FreeChunk (self); 1694 Mix_FreeChunk (self);
1680 1695
1681int 1696int
1682volume (CFClient::MixChunk self, int volume = -1) 1697volume (CFPlus::MixChunk self, int volume = -1)
1683 CODE: 1698 CODE:
1684 RETVAL = Mix_VolumeChunk (self, volume); 1699 RETVAL = Mix_VolumeChunk (self, volume);
1685 OUTPUT: 1700 OUTPUT:
1686 RETVAL 1701 RETVAL
1687 1702
1688int 1703int
1689play (CFClient::MixChunk self, int channel = -1, int loops = 0, int ticks = -1) 1704play (CFPlus::MixChunk self, int channel = -1, int loops = 0, int ticks = -1)
1690 CODE: 1705 CODE:
1691 RETVAL = Mix_PlayChannelTimed (channel, self, loops, ticks); 1706 RETVAL = Mix_PlayChannelTimed (channel, self, loops, ticks);
1692 OUTPUT: 1707 OUTPUT:
1693 RETVAL 1708 RETVAL
1694 1709
1695MODULE = CFClient PACKAGE = CFClient::MixMusic 1710MODULE = CFPlus PACKAGE = CFPlus::MixMusic
1696 1711
1697int 1712int
1698volume (int volume = -1) 1713volume (int volume = -1)
1699 CODE: 1714 CODE:
1700 RETVAL = Mix_VolumeMusic (volume); 1715 RETVAL = Mix_VolumeMusic (volume);
1701 OUTPUT: 1716 OUTPUT:
1702 RETVAL 1717 RETVAL
1703 1718
1704CFClient::MixMusic 1719CFPlus::MixMusic
1705new_from_file (SV *class, char *path) 1720new_from_file (SV *class, char *path)
1706 CODE: 1721 CODE:
1707 RETVAL = Mix_LoadMUS (path); 1722 RETVAL = Mix_LoadMUS (path);
1708 OUTPUT: 1723 OUTPUT:
1709 RETVAL 1724 RETVAL
1710 1725
1711void 1726void
1712DESTROY (CFClient::MixMusic self) 1727DESTROY (CFPlus::MixMusic self)
1713 CODE: 1728 CODE:
1714 Mix_FreeMusic (self); 1729 Mix_FreeMusic (self);
1715 1730
1716int 1731int
1717play (CFClient::MixMusic self, int loops = -1) 1732play (CFPlus::MixMusic self, int loops = -1)
1718 CODE: 1733 CODE:
1719 RETVAL = Mix_PlayMusic (self, loops); 1734 RETVAL = Mix_PlayMusic (self, loops);
1720 OUTPUT: 1735 OUTPUT:
1721 RETVAL 1736 RETVAL
1722 1737
1723MODULE = CFClient PACKAGE = CFClient::OpenGL 1738MODULE = CFPlus PACKAGE = CFPlus::OpenGL
1724 1739
1725BOOT: 1740BOOT:
1726{ 1741{
1727 HV *stash = gv_stashpv ("CFClient::OpenGL", 1); 1742 HV *stash = gv_stashpv ("CFPlus::OpenGL", 1);
1728 static const struct { 1743 static const struct {
1729 const char *name; 1744 const char *name;
1730 IV iv; 1745 IV iv;
1731 } *civ, const_iv[] = { 1746 } *civ, const_iv[] = {
1732# define const_iv(name) { # name, (IV)name } 1747# define const_iv(name) { # name, (IV)name }
1795 const_iv (GL_SEPARABLE_2D), 1810 const_iv (GL_SEPARABLE_2D),
1796 const_iv (GL_CONVOLUTION_2D), 1811 const_iv (GL_CONVOLUTION_2D),
1797 const_iv (GL_CONVOLUTION_BORDER_MODE), 1812 const_iv (GL_CONVOLUTION_BORDER_MODE),
1798 const_iv (GL_CONSTANT_BORDER), 1813 const_iv (GL_CONSTANT_BORDER),
1799 const_iv (GL_LINES), 1814 const_iv (GL_LINES),
1815 const_iv (GL_LINE_STRIP),
1800 const_iv (GL_LINE_LOOP), 1816 const_iv (GL_LINE_LOOP),
1801 const_iv (GL_QUADS), 1817 const_iv (GL_QUADS),
1802 const_iv (GL_QUAD_STRIP), 1818 const_iv (GL_QUAD_STRIP),
1803 const_iv (GL_TRIANGLES), 1819 const_iv (GL_TRIANGLES),
1804 const_iv (GL_TRIANGLE_STRIP), 1820 const_iv (GL_TRIANGLE_STRIP),
1914 r *= a; 1930 r *= a;
1915 g *= a; 1931 g *= a;
1916 b *= a; 1932 b *= a;
1917 } 1933 }
1918 // microsoft visual "c" rounds instead of truncating... 1934 // microsoft visual "c" rounds instead of truncating...
1919 glColor4ub (MIN ((int)(r * 256.f), 255), 1935 glColor4f (r, g, b, a);
1920 MIN ((int)(g * 256.f), 255),
1921 MIN ((int)(b * 256.f), 255),
1922 MIN ((int)(a * 256.f), 255));
1923 1936
1924void glInterleavedArrays (int format, int stride, char *data) 1937void glInterleavedArrays (int format, int stride, char *data)
1925 1938
1926void glDrawElements (int mode, int count, int type, char *indices) 1939void glDrawElements (int mode, int count, int type, char *indices)
1927 1940
2004 2017
2005void glEndList () 2018void glEndList ()
2006 2019
2007void glCallList (int list) 2020void glCallList (int list)
2008 2021
2009

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines