![]() |
2009-03-10
, 15:03
|
|
Posts: 241 |
Thanked: 74 times |
Joined on Jul 2007
|
#2
|
![]() |
2009-03-10
, 17:35
|
Posts: 2,152 |
Thanked: 1,490 times |
Joined on Jan 2006
@ Czech Republic
|
#3
|
The Following User Says Thank You to fanoush For This Useful Post: | ||
![]() |
2009-03-10
, 19:47
|
|
Posts: 241 |
Thanked: 74 times |
Joined on Jul 2007
|
#4
|
You need to call SDL_EnableUNICODE(1) at runtime. Both keys (fn+key) need to be pressed though.
SDL_EnableKeyRepeat(SDL_DEFAULT_REPEAT_DELAY, SDL_DEFAULT_REPEAT_INTERVAL); SDL_EnableUNICODE(1);
![]() |
2009-03-10
, 20:54
|
Posts: 2,152 |
Thanked: 1,490 times |
Joined on Jan 2006
@ Czech Republic
|
#5
|
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <SDL/SDL.h> void PrintModifiers( SDLMod mod ); /* Print all information about a key event */ void PrintKeyInfo( SDL_KeyboardEvent *key ){ /* Is it a release or a press? */ if( key->type == SDL_KEYUP ) printf( "Release:- " ); else printf( "Press:- " ); /* Print the hardware scancode first */ printf( "Scancode: 0x%02X", key->keysym.scancode ); /* Print the name of the key */ printf( ", Name: %s", SDL_GetKeyName( key->keysym.sym ) ); /* We want to print the unicode info, but we need to make */ /* sure its a press event first (remember, release events */ /* don't have unicode info */ if( key->type == SDL_KEYDOWN ){ printf("\nkeysym %04X %c\n",key->keysym.sym,key->keysym.sym); /* If the Unicode value is less than 0x80 then the */ /* unicode value can be used to get a printable */ /* representation of the key, using (char)unicode. */ printf(", Unicode: " ); if( key->keysym.unicode < 0x80 && key->keysym.unicode > 0 ){ printf( "%c (0x%04X)", (char)key->keysym.unicode, key->keysym.unicode ); } else{ printf( "? (0x%04X)", key->keysym.unicode ); } } printf( "\n" ); /* Print modifier info */ PrintModifiers( key->keysym.mod ); } /* Print modifier info */ void PrintModifiers( SDLMod mod ){ printf( "Modifers: " ); /* If there are none then say so and return */ if( mod == KMOD_NONE ){ printf( "None\n" ); return; } /* Check for the presence of each SDLMod value */ /* This looks messy, but there really isn't */ /* a clearer way. */ if( mod & KMOD_NUM ) printf( "NUMLOCK " ); if( mod & KMOD_CAPS ) printf( "CAPSLOCK " ); if( mod & KMOD_LCTRL ) printf( "LCTRL " ); if( mod & KMOD_RCTRL ) printf( "RCTRL " ); if( mod & KMOD_RSHIFT ) printf( "RSHIFT " ); if( mod & KMOD_LSHIFT ) printf( "LSHIFT " ); if( mod & KMOD_RALT ) printf( "RALT " ); if( mod & KMOD_LALT ) printf( "LALT " ); if( mod & KMOD_CTRL ) printf( "CTRL " ); if( mod & KMOD_SHIFT ) printf( "SHIFT " ); if( mod & KMOD_ALT ) printf( "ALT " ); printf( "\n" ); } /* The screen surface */ SDL_Surface *screen = NULL; SDL_Surface *fb=NULL; //Uint32 white,black; int black=0; int fullscreen=0; SDL_Rect rect; int main (int argc, char *argv[]) { char *msg; int done=0; SDL_Event event; /* Initialize SDL */ if (SDL_Init (SDL_INIT_VIDEO) < 0){ exit (1); } atexit (SDL_Quit); /* Set 640x480 16-bits video mode */ screen = SDL_SetVideoMode (640, 480, 16, SDL_SWSURFACE | SDL_DOUBLEBUF); if (screen == NULL) { printf ("Couldn't set 640x480x16 video mode: %s\n", SDL_GetError ()); exit (2); } SDL_WM_SetCaption ("SDL MultiMedia Application", NULL); SDL_EnableUNICODE(1); /* Check for events */ while (!done){ if (SDL_PollEvent (&event)){ switch (event.type) { case SDL_KEYDOWN: switch (event.key.keysym.sym){ case SDLK_F6: if (SDL_WM_ToggleFullScreen(screen)) fullscreen=!fullscreen; break; case SDLK_q: done=1; break; } case SDL_KEYUP: PrintKeyInfo( &event.key ); break; case SDL_QUIT: done=1; break; default: break; } } } exit(0);
The Following User Says Thank You to fanoush For This Useful Post: | ||
![]() |
2009-03-10
, 21:22
|
Posts: 2,152 |
Thanked: 1,490 times |
Joined on Jan 2006
@ Czech Republic
|
#6
|
The Following User Says Thank You to fanoush For This Useful Post: | ||
![]() |
2009-03-11
, 02:24
|
|
Posts: 241 |
Thanked: 74 times |
Joined on Jul 2007
|
#7
|
switch (event.key.keysym.sym) { case SDLK_ESCAPE: key_esc_pressed = 1; break; case SDLK_LSHIFT: key_shift_pressed = 1; break;
![]() |
2009-03-11
, 12:40
|
|
Posts: 241 |
Thanked: 74 times |
Joined on Jul 2007
|
#8
|
It is a bit confusing but it makes sense. SDL is too low level. Since you really press fn and t keys you always get keycodes for fn and t. The enable unicode part enables additional calls inside SDL to translate those raw keys according to current keyboard mapping. it is same like shift + a, you get keycodes for shift and a and this translates into upppercase A
![]() |
2009-03-15
, 17:01
|
|
Posts: 241 |
Thanked: 74 times |
Joined on Jul 2007
|
#9
|
![]() |
2009-03-15
, 18:03
|
Posts: 2,152 |
Thanked: 1,490 times |
Joined on Jan 2006
@ Czech Republic
|
#10
|
The Following User Says Thank You to fanoush For This Useful Post: | ||
This pretty much cripples dosbox and any game requiring numeric input. Have I overlooked something?
If anyone has a clue how to fix, please post here. If/when I find a solution i'll do the same.
Cheers.
------------------------
edit; incorrect. some sdl apps do accept fn key - gemrb works - when it accepts keyboard input at all.
Last edited by ArnimS; 2008-01-23 at 06:11. Reason: incorrect