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.262 by root, Wed Jul 16 20:12:27 2008 UTC vs.
Revision 1.266 by root, Sun Jul 20 02:51:40 2008 UTC

85 85
86#define MIN_FONT_HEIGHT 10 86#define MIN_FONT_HEIGHT 10
87 87
88/* mask out modifiers we are not interested in */ 88/* mask out modifiers we are not interested in */
89#define MOD_MASK (KMOD_CTRL | KMOD_SHIFT | KMOD_ALT | KMOD_META) 89#define MOD_MASK (KMOD_CTRL | KMOD_SHIFT | KMOD_ALT | KMOD_META)
90
91#if 1
92# define PARACHUTE SDL_INIT_NOPARACHUTE
93#else
94# define PARACHUTE 0
95#endif
96 90
97static AV *texture_av; 91static AV *texture_av;
98 92
99static struct 93static struct
100{ 94{
644 const_iv (KMOD_NUM), 638 const_iv (KMOD_NUM),
645 const_iv (KMOD_CAPS), 639 const_iv (KMOD_CAPS),
646 const_iv (KMOD_MODE), 640 const_iv (KMOD_MODE),
647 641
648 const_iv (MIX_DEFAULT_FORMAT), 642 const_iv (MIX_DEFAULT_FORMAT),
643
644 const_iv (SDL_INIT_TIMER),
645 const_iv (SDL_INIT_AUDIO),
646 const_iv (SDL_INIT_VIDEO),
647 const_iv (SDL_INIT_CDROM),
648 const_iv (SDL_INIT_JOYSTICK),
649 const_iv (SDL_INIT_EVERYTHING),
650 const_iv (SDL_INIT_NOPARACHUTE),
651 const_iv (SDL_INIT_EVENTTHREAD),
652
653 const_iv (SDL_GL_RED_SIZE),
654 const_iv (SDL_GL_GREEN_SIZE),
655 const_iv (SDL_GL_BLUE_SIZE),
656 const_iv (SDL_GL_ALPHA_SIZE),
657 const_iv (SDL_GL_DOUBLEBUFFER),
658 const_iv (SDL_GL_BUFFER_SIZE),
659 const_iv (SDL_GL_DEPTH_SIZE),
660 const_iv (SDL_GL_STENCIL_SIZE),
661 const_iv (SDL_GL_ACCUM_RED_SIZE),
662 const_iv (SDL_GL_ACCUM_GREEN_SIZE),
663 const_iv (SDL_GL_ACCUM_BLUE_SIZE),
664 const_iv (SDL_GL_ACCUM_ALPHA_SIZE),
665 const_iv (SDL_GL_STEREO),
666 const_iv (SDL_GL_MULTISAMPLEBUFFERS),
667 const_iv (SDL_GL_MULTISAMPLESAMPLES),
668 const_iv (SDL_GL_ACCELERATED_VISUAL),
669 const_iv (SDL_GL_SWAP_CONTROL)
649# undef const_iv 670# undef const_iv
650 }; 671 };
651 672
652 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 673 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
653 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 674 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
689 pango_context_set_language (opengl_context, pango_language_from_string ("en")); 710 pango_context_set_language (opengl_context, pango_language_from_string ("en"));
690 /*pango_context_set_base_dir (opengl_context, PANGO_DIRECTION_WEAK_LTR);*/ 711 /*pango_context_set_base_dir (opengl_context, PANGO_DIRECTION_WEAK_LTR);*/
691#endif 712#endif
692} 713}
693 714
694char *
695SDL_GetError () 715char *SDL_GetError ()
696 716
697int 717int SDL_Init (U32 flags)
698SDL_Init (U32 flags = SDL_INIT_VIDEO | SDL_INIT_AUDIO | PARACHUTE)
699 718
700void 719int SDL_InitSubSystem (U32 flags)
720
721void SDL_QuitSubSystem (U32 flags)
722
701SDL_Quit () 723void SDL_Quit ()
724
725int SDL_GL_SetAttribute (int attr, int value)
726
727int SDL_GL_GetAttribute (int attr)
728 CODE:
729 if (SDL_GL_GetAttribute (attr, &RETVAL))
730 XSRETURN_UNDEF;
731 OUTPUT:
732 RETVAL
702 733
703void 734void
704SDL_ListModes (int rgb, int alpha) 735SDL_ListModes (int rgb, int alpha)
705 PPCODE: 736 PPCODE:
706{ 737{
718 SDL_GL_SetAttribute (SDL_GL_ACCUM_GREEN_SIZE, 0); 749 SDL_GL_SetAttribute (SDL_GL_ACCUM_GREEN_SIZE, 0);
719 SDL_GL_SetAttribute (SDL_GL_ACCUM_BLUE_SIZE , 0); 750 SDL_GL_SetAttribute (SDL_GL_ACCUM_BLUE_SIZE , 0);
720 SDL_GL_SetAttribute (SDL_GL_ACCUM_ALPHA_SIZE, 0); 751 SDL_GL_SetAttribute (SDL_GL_ACCUM_ALPHA_SIZE, 0);
721 752
722 SDL_GL_SetAttribute (SDL_GL_DOUBLEBUFFER, 1); 753 SDL_GL_SetAttribute (SDL_GL_DOUBLEBUFFER, 1);
723#if SDL_VERSION_ATLEAST(1,2,10)
724 SDL_GL_SetAttribute (SDL_GL_ACCELERATED_VISUAL, 1);
725 SDL_GL_SetAttribute (SDL_GL_SWAP_CONTROL, 1); 754 SDL_GL_SetAttribute (SDL_GL_SWAP_CONTROL, 1);
726#endif
727 755
728 m = SDL_ListModes (0, SDL_FULLSCREEN | SDL_OPENGL); 756 m = SDL_ListModes (0, SDL_FULLSCREEN | SDL_OPENGL);
729 757
730 if (m && m != (SDL_Rect **)-1) 758 if (m && m != (SDL_Rect **)-1)
731 while (*m) 759 while (*m)
732 { 760 {
733 if ((*m)->w >= 800 && (*m)->h >= 480) 761 if ((*m)->w >= 400 && (*m)->h >= 300)
734 { 762 {
735 AV *av = newAV (); 763 AV *av = newAV ();
736 av_push (av, newSViv ((*m)->w)); 764 av_push (av, newSViv ((*m)->w));
737 av_push (av, newSViv ((*m)->h)); 765 av_push (av, newSViv ((*m)->h));
738 av_push (av, newSViv (rgb)); 766 av_push (av, newSViv (rgb));
1752 } 1780 }
1753 } 1781 }
1754 } 1782 }
1755 } 1783 }
1756 else 1784 else
1785 {
1757 cell->darkness = 0; 1786 cell->darkness = 0;
1787 cell->stat_hp = 0;
1788 cell->flags = 0;
1789 cell->player = 0;
1790 }
1758 } 1791 }
1759} 1792}
1760 OUTPUT: 1793 OUTPUT:
1761 RETVAL 1794 RETVAL
1762 1795
1814} 1847}
1815 OUTPUT: 1848 OUTPUT:
1816 RETVAL 1849 RETVAL
1817 1850
1818void 1851void
1819draw (DC::Map self, int mx, int my, int sw, int sh, int T, U32 player = 0xffffffff, int pdx = 0, int pdy = 0) 1852draw (DC::Map self, int mx, int my, int sw, int sh, int T, U32 player = 0xffffffff, int sdx = 0, int sdy = 0)
1820 CODE: 1853 CODE:
1821{ 1854{
1822 int x, y, z; 1855 int x, y, z;
1823 1856
1824 HV *smooth = (HV *)sv_2mortal ((SV *)newHV ()); 1857 HV *smooth = (HV *)sv_2mortal ((SV *)newHV ());
2071 } 2104 }
2072 2105
2073 if (pl_tex.name) 2106 if (pl_tex.name)
2074 { 2107 {
2075 maptex tex = pl_tex; 2108 maptex tex = pl_tex;
2076 int px = pl_x + pdx; 2109 int px = pl_x + sdx;
2077 int py = pl_y + pdy; 2110 int py = pl_y + sdy;
2078 2111
2079 key.texname = tex.name; 2112 key.texname = tex.name;
2080 arr = rc_array (rc, &key); 2113 arr = rc_array (rc, &key);
2081 2114
2082 rc_t2f_v3f (arr, 0 , 0 , px , py , 0); 2115 rc_t2f_v3f (arr, 0 , 0 , px , py , 0);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines