Frictional Games Forum (read-only)

Full Version: No keyboard 1234567890 keys and mouse wheel buttons
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I'm running debian sid, i managed to run Overture deleting some libs in the lib folder and putting my own.

The game launches fine and runs well, except the fact the mouse wheel does not work (outside the game it works), and the 1234567890 keys do not work (so i guess it's pretty hard to play this game unless i want to go in the inventory everytime i need to switch weapons).
It's a pity we cannot set these keys in the options..

I have an azerty (french) keyboard, so it might be the cause (though caps lock does not help)... But for the mouse......

I'm running the latest available version of Overture from Humble Indie.

Thanks for the help.
The mouse is interesting.. My guess would be some X configuration issue. Penumbra basically assumes mouse button 4 and 5 are the wheel.

As for the number keys, that is a known issue with SDL 1.2 based games and many non-US keyboard layouts. And unfortunately there isn't any easy fix for it other than changing your input layout when running Penumbra. The plan is to switch to SDL 2.0 for future games which does not have this annoying limitation.
Thanks for the quick response Urkle, much appreciated Smile

Indeed i made the following script for me to run penumbra:

#!/bin/bash
sudo /etc/init.d/bumblebeed start
setxkbmap -layout us
optirun ./penumbra
setxkbmap -layout fr


i have an optimus card, so for those that don't have one, just use:

#!/bin/bash
setxkbmap -layout us
./penumbra
setxkbmap -layout fr

With your current layout instead of "fr".
And the buttons work fine for me (need to redefine the buttons in the options).

I wonder if it's not optirun/bumblebeed that causes the mouse issue, i tried to add my mouse in the xorg config of bumblebee but it's the same, still no wheel.

At least the keyboard now works, so it's playable, thanks a lot! Smile