]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - vid_sdl.c
Fix registered/shareware detection.
[xonotic/darkplaces.git] / vid_sdl.c
index 934295d8e23eb01930750defb2ef088922cb8290..942cbdd24bea465bcf19374ce0f29681b1a7cfc6 100644 (file)
--- a/vid_sdl.c
+++ b/vid_sdl.c
@@ -23,6 +23,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 #include "quakedef.h"
 #include "image.h"
 #include "dpsoftrast.h"
+#include "utf8lib.h"
 
 #ifndef __IPHONEOS__
 #ifdef MACOSX
@@ -1213,8 +1214,7 @@ void Sys_SendKeyEvents( void )
        static qboolean sound_active = true;
        int keycode;
        int i;
-       int j;
-       int unicode;
+       Uchar unicode;
        SDL_Event event;
 
        VID_EnableJoystick(true);
@@ -1353,30 +1353,11 @@ void Sys_SendKeyEvents( void )
 #ifdef DEBUGSDLEVENTS
                                Con_DPrintf("SDL_Event: SDL_TEXTINPUT - text: %s\n", event.text.text);
 #endif
-                               // we have some characters to parse
-                               {
-                                       unicode = 0;
-                                       for (i = 0;event.text.text[i];)
-                                       {
-                                               unicode = event.text.text[i++];
-                                               if (unicode & 0x80)
-                                               {
-                                                       // UTF-8 character
-                                                       // strip high bits (we could count these to validate character length but we don't)
-                                                       for (j = 0x80;unicode & j;j >>= 1)
-                                                               unicode ^= j;
-                                                       for (;(event.text.text[i] & 0xC0) == 0x80;i++)
-                                                               unicode = (unicode << 6) | (event.text.text[i] & 0x3F);
-                                                       // low characters are invalid and could be bad, so replace them
-                                                       if (unicode < 0x80)
-                                                               unicode = '?'; // we could use 0xFFFD instead, the unicode substitute character
-                                               }
-                                               //Con_DPrintf("SDL_TEXTINPUT: K_TEXT %i \n", unicode);
-
-                                               Key_Event(K_TEXT, unicode, true);
-                                               Key_Event(K_TEXT, unicode, false);
-                                       }
-                               }
+                               // convert utf8 string to char
+                               // NOTE: this code is supposed to run even if utf8enable is 0
+                               unicode = u8_getchar_utf8_enabled(event.text.text + (int)u8_bytelen(event.text.text, 0), NULL);
+                               Key_Event(K_TEXT, unicode, true);
+                               Key_Event(K_TEXT, unicode, false);
                                break;
                        case SDL_MOUSEMOTION:
                                break;
@@ -2525,7 +2506,12 @@ static qboolean VID_InitModeGL(viddef_mode_t *mode)
        {
                if (mode->fullscreen) {
                        if (vid_desktopfullscreen.integer)
+                       {
+                               vid_mode_t *m = VID_GetDesktopMode();
+                               mode->width = m->width;
+                               mode->height = m->height;
                                windowflags |= SDL_WINDOW_FULLSCREEN_DESKTOP;
+                       }
                        else
                                windowflags |= SDL_WINDOW_FULLSCREEN;
                        vid_isfullscreen = true;
@@ -2861,6 +2847,7 @@ void VID_Finish (void)
        vid_usevsync = (vid_vsync.integer && !cls.timedemo);
        if (vid_usingvsync != vid_usevsync)
        {
+               vid_usingvsync = vid_usevsync;
                if (SDL_GL_SetSwapInterval(vid_usevsync != 0) >= 0)
                        Con_DPrintf("Vsync %s\n", vid_usevsync ? "activated" : "deactivated");
                else