Jump to content

configuring the controls


poesel

Recommended Posts

I have some issues with that.

1) you cannot change the controls during a scenario. If you notice you can't activate a function (see 3) below), you have to disconnect.

2) I would like to put 'next ammo type' on either the RMB or on 'scrollwheel up'. I haven't found out how to do this. I can have any key or a mouse axis. The mouse buttons are only available for functions that already use a mouse button.

3) several functions are not reachable on a german keyboard layout. Together with 1) that is very ugly.

Link to comment
Share on other sites

1) I am examining if this will be possible. It if is, we will implement it.

2) Right now, we use SDL (Simple Directly Layer) for all keyboard/mouse/joystick inputs and SDL does not yet support the mouse wheel. When it does, we will update our configurable controls to allow the mouse wheel as a linear control.

3) We do not have a german keyboard available to us. Can you tell me specifically which controls are not implemented?

Link to comment
Share on other sites

Google is your friend smile.gif

I found this comparison between german and US keyboard:

keyb_de-us.png

Taking the values from http://www.lookuptables.com/ you had to change for a 1:1 translation to a german keyboard:

<table>

<tr><td>US</td><td></td><td>german</td><td></td></tr>

<tr><td>code</td><td>char</td><td>code</td><td>char</td></tr>

<tr><td>45</td><td>-</td><td>225</td><td>ß</td></tr>

<tr><td>61</td><td>=</td><td>39</td><td>'</td></tr>

<tr><td>91</td><td>[</td><td>129</td><td>ü</td></tr>

<tr><td>93</td><td>]</td><td>43</td><td>+</td></tr>

<tr><td>92</td><td>\</td><td>35</td><td>#</td></tr>

<tr><td>47</td><td>/</td><td>45</td><td>-</td></tr>

<tr><td>122</td><td>z</td><td>121</td><td>y</td></tr>

</table>

Link to comment
Share on other sites

×
×
  • Create New...