The key you just pressed is not recognized by SDL

Hi,

Here’s a few unrecognized keycodes that come from windows shortcut keys

   Keyboard: Dell SK-8135 USB
   Webcam: Chicony I-cam 3120
   Viewer: Modified luvcview-0.2.4
   OSvers: 3.2.0-26-generic ubuntu

12.04

   Rectangular Music button to left of Print Screen

    The key you just pressed is not recognized by SDL.
    To help get this fixed, please report this to the
    SDL mailing list <sdl at libsdl.org>
    X11 KeyCode 152 (144), X11 KeySym 0x1008FF5D (XF86Explorer).




   Round button above F11

    The key you just pressed is not recognized by SDL.
    To help get this fixed, please report this to the
    SDL mailing list <sdl at libsdl.org>
    X11 KeyCode 179 (171), X11 KeySym 0x1008FF81 (XF86Tools).



   This one does not seem to be from the keyboard or the webcam button

    The key you just pressed is not recognized by SDL.
    To help get this fixed, please report this to the
    SDL mailing list <sdl at libsdl.org>
    X11 KeyCode 220 (212), X11 KeySym 0x1008FF8F (XF86WebCam).

cheers,
Ron

Manufacturers are allowed to make any non standard buttons they want and
make them do whatever they want. The standards are things you can plan for
or fix but there is no telling what people will do.

https://wiki.archlinux.org/index.php/Extra_Keyboard_Keys

sdl mail list disclaimer: that’s my opinion , i can always be wrong ,
things can change , I have no opinion about this topic or this author other
than the actual words that were used (if any), and even then the wrong word
could get used on accident.On Sun, Jul 22, 2012 at 7:38 PM, Ron Howe wrote:

Hi,

Here’s a few unrecognized keycodes that come from windows shortcut keys

   Keyboard: Dell SK-8135 USB
   Webcam: Chicony I-cam 3120
   Viewer: Modified luvcview-0.2.4
   OSvers: 3.2.0-26-generic ubuntu

12.04

   Rectangular Music button to left of Print Screen

    The key you just pressed is not recognized by SDL.
    To help get this fixed, please report this to the
    SDL mailing list <sdl at libsdl.org>
    X11 KeyCode 152 (144), X11 KeySym 0x1008FF5D (XF86Explorer).




   Round button above F11

    The key you just pressed is not recognized by SDL.
    To help get this fixed, please report this to the
    SDL mailing list <sdl at libsdl.org>
    X11 KeyCode 179 (171), X11 KeySym 0x1008FF81 (XF86Tools).



   This one does not seem to be from the keyboard or the webcam button

    The key you just pressed is not recognized by SDL.
    To help get this fixed, please report this to the
    SDL mailing list <sdl at libsdl.org>
    X11 KeyCode 220 (212), X11 KeySym 0x1008FF8F (XF86WebCam).

cheers,
Ron


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org

I get this for any key i press in l4d2 (steam linux port) except the
arrow keys pretty much.

The key you just pressed is not recognized by SDL. To help get this
fixed, please report this to the SDL mailing list X11
KeyCode 25 (17), X11 KeySym 0x2C (comma).
The key you just pressed is not recognized by SDL. To help get this
fixed, please report this to the SDL mailing list X11
KeyCode 39 (31), X11 KeySym 0x6F (o).
The key you just pressed is not recognized by SDL. To help get this
fixed, please report this to the SDL mailing list X11
KeyCode 38 (30), X11 KeySym 0x61 (a).
The key you just pressed is not recognized by SDL. To help get this
fixed, please report this to the SDL mailing list X11
KeyCode 38 (30), X11 KeySym 0x61 (a).
The key you just pressed is not recognized by SDL. To help get this
fixed, please report this to the SDL mailing list X11
KeyCode 40 (32), X11 KeySym 0x65 (e).

at the start of the game i also get this message

Keyboard layout unknown, please send the following to the SDL mailing
list (sdl at libsdl.org):

and none of the keys work in the game obviously. Regardless of
recognizing the layout, could you not send the keyboard event to the
game so that something actually happens when i press it?–
Mikael Magnusson

Can you send me an e-mail with the output after the “please send the
following” ?

Thanks!On Tue, Sep 24, 2013 at 4:05 AM, Mikael Magnusson wrote:

I get this for any key i press in l4d2 (steam linux port) except the
arrow keys pretty much.

The key you just pressed is not recognized by SDL. To help get this
fixed, please report this to the SDL mailing list X11
KeyCode 25 (17), X11 KeySym 0x2C (comma).
The key you just pressed is not recognized by SDL. To help get this
fixed, please report this to the SDL mailing list X11
KeyCode 39 (31), X11 KeySym 0x6F (o).
The key you just pressed is not recognized by SDL. To help get this
fixed, please report this to the SDL mailing list X11
KeyCode 38 (30), X11 KeySym 0x61 (a).
The key you just pressed is not recognized by SDL. To help get this
fixed, please report this to the SDL mailing list X11
KeyCode 38 (30), X11 KeySym 0x61 (a).
The key you just pressed is not recognized by SDL. To help get this
fixed, please report this to the SDL mailing list X11
KeyCode 40 (32), X11 KeySym 0x65 (e).

at the start of the game i also get this message

Keyboard layout unknown, please send the following to the SDL mailing
list (sdl at libsdl.org):

and none of the keys work in the game obviously. Regardless of
recognizing the layout, could you not send the keyboard event to the
game so that something actually happens when i press it?


Mikael Magnusson


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org

2013/9/24, Mikael Magnusson :

and none of the keys work in the game obviously. Regardless of
recognizing the layout, could you not send the keyboard event to the
game so that something actually happens when i press it?

Not really. SDL needs to remap the input (platform-dependent) to its
own scancodes (platform-independent) so programs can use them, and if
it doesn’t know to what scancode does a key map, it doesn’t know what
scancode it should return, so it does nothing.

Yay portability ._.’