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.263 by root, Fri Jul 18 21:18:42 2008 UTC vs.
Revision 1.273 by root, Wed Aug 20 13:30:02 2008 UTC

38#include <SDL_thread.h> 38#include <SDL_thread.h>
39#include <SDL_endian.h> 39#include <SDL_endian.h>
40#include <SDL_image.h> 40#include <SDL_image.h>
41#include <SDL_mixer.h> 41#include <SDL_mixer.h>
42#include <SDL_opengl.h> 42#include <SDL_opengl.h>
43
44/* work around os x broken headers */
45#ifdef __MACOSX__
46typedef void (APIENTRYP PFNGLBLENDFUNCSEPARATEPROC) (GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha);
47#endif
43 48
44#define PANGO_ENABLE_BACKEND 49#define PANGO_ENABLE_BACKEND
45#define G_DISABLE_CAST_CHECKS 50#define G_DISABLE_CAST_CHECKS
46 51
47#include <glib/gmacros.h> 52#include <glib/gmacros.h>
367 self->oy = 0; 372 self->oy = 0;
368 self->row = 0; 373 self->row = 0;
369 self->rows = 0; 374 self->rows = 0;
370} 375}
371 376
377#define CELL_CLEAR(cell) \
378 do { \
379 if ((cell)->player) \
380 (cell)->tile [2] = 0; \
381 (cell)->darkness = 0; \
382 (cell)->stat_hp = 0; \
383 (cell)->flags = 0; \
384 (cell)->player = 0; \
385 } while (0)
386
372static void 387static void
373map_blank (DC__Map self, int x0, int y0, int w, int h) 388map_blank (DC__Map self, int x0, int y0, int w, int h)
374{ 389{
375 int x, y; 390 int x, y;
376 maprow *row; 391 maprow *row;
390 if (x >= row->c1) 405 if (x >= row->c1)
391 break; 406 break;
392 407
393 cell = row->col + x - row->c0; 408 cell = row->col + x - row->c0;
394 409
395 cell->darkness = 0; 410 CELL_CLEAR (cell);
396 cell->stat_hp = 0;
397 cell->flags = 0;
398 cell->player = 0;
399 } 411 }
400 } 412 }
401} 413}
402 414
403typedef struct { 415typedef struct {
514 if (!svp || !SvTRUE (*svp)) 526 if (!svp || !SvTRUE (*svp))
515 return 0; 527 return 0;
516 528
517 return 1; 529 return 1;
518} 530}
531
532static void
533deliantra_main ()
534{
535 char *argv[] = { 0 };
536 call_argv ("::main", G_DISCARD | G_VOID, argv);
537 dSP;
538}
539
540#ifdef __MACOSX__
541 /* to due surprising braindamage on the side of SDL design, we
542 * do some mind-boggling hack here: SDL requires a custom main()
543 * on OS X, so... we provide one and call the original main(), which,
544 * due to share dlibrary magic, calls -lSDLmain's main, not perl's main,
545 * and which calls our main (== SDL_main) back.
546 */
547 extern C_LINKAGE int
548 main (int argc, char *argv[])
549 {
550 deliantra_main ();
551 }
552
553 #undef main
554
555 extern C_LINKAGE int main (int argc, char *argv[]);
556
557 static void
558 SDL_braino (void)
559 {
560 char *argv[] = { "deliantra client", 0 };
561 (main) (1, argv);
562 }
563#else
564 static void
565 SDL_braino (void)
566 {
567 deliantra_main ();
568 }
569#endif
519 570
520MODULE = Deliantra::Client PACKAGE = DC 571MODULE = Deliantra::Client PACKAGE = DC
521 572
522PROTOTYPES: ENABLE 573PROTOTYPES: ENABLE
523 574
647 const_iv (SDL_INIT_CDROM), 698 const_iv (SDL_INIT_CDROM),
648 const_iv (SDL_INIT_JOYSTICK), 699 const_iv (SDL_INIT_JOYSTICK),
649 const_iv (SDL_INIT_EVERYTHING), 700 const_iv (SDL_INIT_EVERYTHING),
650 const_iv (SDL_INIT_NOPARACHUTE), 701 const_iv (SDL_INIT_NOPARACHUTE),
651 const_iv (SDL_INIT_EVENTTHREAD), 702 const_iv (SDL_INIT_EVENTTHREAD),
703
704 const_iv (SDL_GL_RED_SIZE),
705 const_iv (SDL_GL_GREEN_SIZE),
706 const_iv (SDL_GL_BLUE_SIZE),
707 const_iv (SDL_GL_ALPHA_SIZE),
708 const_iv (SDL_GL_DOUBLEBUFFER),
709 const_iv (SDL_GL_BUFFER_SIZE),
710 const_iv (SDL_GL_DEPTH_SIZE),
711 const_iv (SDL_GL_STENCIL_SIZE),
712 const_iv (SDL_GL_ACCUM_RED_SIZE),
713 const_iv (SDL_GL_ACCUM_GREEN_SIZE),
714 const_iv (SDL_GL_ACCUM_BLUE_SIZE),
715 const_iv (SDL_GL_ACCUM_ALPHA_SIZE),
716 const_iv (SDL_GL_STEREO),
717 const_iv (SDL_GL_MULTISAMPLEBUFFERS),
718 const_iv (SDL_GL_MULTISAMPLESAMPLES),
719 const_iv (SDL_GL_ACCELERATED_VISUAL),
720 const_iv (SDL_GL_SWAP_CONTROL),
721
722 const_iv (FOW_DARKNESS)
652# undef const_iv 723# undef const_iv
653 }; 724 };
654 725
655 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 726 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
656 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 727 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
694#endif 765#endif
695} 766}
696 767
697char *SDL_GetError () 768char *SDL_GetError ()
698 769
770void SDL_braino ()
771
699int SDL_Init (U32 flags) 772int SDL_Init (U32 flags)
700 773
701int SDL_InitSubSystem (U32 flags) 774int SDL_InitSubSystem (U32 flags)
702 775
703void SDL_QuitSubSystem (U32 flags) 776void SDL_QuitSubSystem (U32 flags)
704 777
705void SDL_Quit () 778void SDL_Quit ()
779
780int SDL_GL_SetAttribute (int attr, int value)
781
782int SDL_GL_GetAttribute (int attr)
783 CODE:
784 if (SDL_GL_GetAttribute (attr, &RETVAL))
785 XSRETURN_UNDEF;
786 OUTPUT:
787 RETVAL
706 788
707void 789void
708SDL_ListModes (int rgb, int alpha) 790SDL_ListModes (int rgb, int alpha)
709 PPCODE: 791 PPCODE:
710{ 792{
722 SDL_GL_SetAttribute (SDL_GL_ACCUM_GREEN_SIZE, 0); 804 SDL_GL_SetAttribute (SDL_GL_ACCUM_GREEN_SIZE, 0);
723 SDL_GL_SetAttribute (SDL_GL_ACCUM_BLUE_SIZE , 0); 805 SDL_GL_SetAttribute (SDL_GL_ACCUM_BLUE_SIZE , 0);
724 SDL_GL_SetAttribute (SDL_GL_ACCUM_ALPHA_SIZE, 0); 806 SDL_GL_SetAttribute (SDL_GL_ACCUM_ALPHA_SIZE, 0);
725 807
726 SDL_GL_SetAttribute (SDL_GL_DOUBLEBUFFER, 1); 808 SDL_GL_SetAttribute (SDL_GL_DOUBLEBUFFER, 1);
727#if SDL_VERSION_ATLEAST(1,2,10)
728 SDL_GL_SetAttribute (SDL_GL_ACCELERATED_VISUAL, 1);
729 SDL_GL_SetAttribute (SDL_GL_SWAP_CONTROL, 1); 809 SDL_GL_SetAttribute (SDL_GL_SWAP_CONTROL, 1);
730#endif
731 810
732 m = SDL_ListModes (0, SDL_FULLSCREEN | SDL_OPENGL); 811 m = SDL_ListModes (0, SDL_FULLSCREEN | SDL_OPENGL);
733 812
734 if (m && m != (SDL_Rect **)-1) 813 if (m && m != (SDL_Rect **)-1)
735 while (*m) 814 while (*m)
736 { 815 {
816 if ((*m)->w >= 400 && (*m)->h >= 300)
817 {
737 AV *av = newAV (); 818 AV *av = newAV ();
738 av_push (av, newSViv ((*m)->w)); 819 av_push (av, newSViv ((*m)->w));
739 av_push (av, newSViv ((*m)->h)); 820 av_push (av, newSViv ((*m)->h));
740 av_push (av, newSViv (rgb)); 821 av_push (av, newSViv (rgb));
741 av_push (av, newSViv (alpha)); 822 av_push (av, newSViv (alpha));
742 XPUSHs (sv_2mortal (newRV_noinc ((SV *)av))); 823 XPUSHs (sv_2mortal (newRV_noinc ((SV *)av)));
824 }
743 825
744 ++m; 826 ++m;
745 } 827 }
746} 828}
747 829
1753 } 1835 }
1754 } 1836 }
1755 } 1837 }
1756 } 1838 }
1757 else 1839 else
1758 cell->darkness = 0; 1840 CELL_CLEAR (cell);
1759 } 1841 }
1760} 1842}
1761 OUTPUT: 1843 OUTPUT:
1762 RETVAL 1844 RETVAL
1763 1845
1815} 1897}
1816 OUTPUT: 1898 OUTPUT:
1817 RETVAL 1899 RETVAL
1818 1900
1819void 1901void
1820draw (DC::Map self, int mx, int my, int sw, int sh, int T, U32 player = 0xffffffff, int pdx = 0, int pdy = 0) 1902draw (DC::Map self, int mx, int my, int sw, int sh, int T, U32 player = 0xffffffff, int sdx = 0, int sdy = 0)
1821 CODE: 1903 CODE:
1822{ 1904{
1823 int x, y, z; 1905 int x, y, z;
1824 1906
1825 HV *smooth = (HV *)sv_2mortal ((SV *)newHV ()); 1907 HV *smooth = (HV *)sv_2mortal ((SV *)newHV ());
2072 } 2154 }
2073 2155
2074 if (pl_tex.name) 2156 if (pl_tex.name)
2075 { 2157 {
2076 maptex tex = pl_tex; 2158 maptex tex = pl_tex;
2077 int px = pl_x + pdx; 2159 int px = pl_x + sdx;
2078 int py = pl_y + pdy; 2160 int py = pl_y + sdy;
2079 2161
2080 key.texname = tex.name; 2162 key.texname = tex.name;
2081 arr = rc_array (rc, &key); 2163 arr = rc_array (rc, &key);
2082 2164
2083 rc_t2f_v3f (arr, 0 , 0 , px , py , 0); 2165 rc_t2f_v3f (arr, 0 , 0 , px , py , 0);
2200 SvCUR_set (darkness3_sv, sw34 * sh3); 2282 SvCUR_set (darkness3_sv, sw34 * sh3);
2201 2283
2202 mx += self->x - 1; 2284 mx += self->x - 1;
2203 my += self->y - 1; 2285 my += self->y - 1;
2204 2286
2205 memset (darkness1, 255, sw1 * sh1); 2287 memset (darkness1, 255 - FOW_DARKNESS, sw1 * sh1);
2206 2288
2207 for (y = 0; y < sh1; y++) 2289 for (y = 0; y < sh1; y++)
2208 if (0 <= y + my && y + my < self->rows) 2290 if (0 <= y + my && y + my < self->rows)
2209 { 2291 {
2210 maprow *row = self->row + (y + my); 2292 maprow *row = self->row + (y + my);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines