Added keyboard support for flap control.
This commit is contained in:
parent
cd49be7182
commit
4c92fd1418
1 changed files with 10 additions and 0 deletions
|
@ -263,6 +263,16 @@ void GLUTkey(unsigned char k, int x, int y) {
|
||||||
controls.move_throttle( FGControls::ALL_ENGINES, -0.01 );
|
controls.move_throttle( FGControls::ALL_ENGINES, -0.01 );
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
case 91: // [ key
|
||||||
|
controls.move_flaps(-0.34);
|
||||||
|
FG_LOG( FG_INPUT, FG_INFO,
|
||||||
|
"Set flaps to " << controls.get_flaps() );
|
||||||
|
return;
|
||||||
|
case 93: // ] key
|
||||||
|
controls.move_flaps(0.34);
|
||||||
|
FG_LOG( FG_INPUT, FG_INFO,
|
||||||
|
"Set flaps to " << controls.get_flaps() );
|
||||||
|
return;
|
||||||
case 97: // a key
|
case 97: // a key
|
||||||
speed = current_options.get_speed_up();
|
speed = current_options.get_speed_up();
|
||||||
speed++;
|
speed++;
|
||||||
|
|
Loading…
Add table
Reference in a new issue