From 033bd59cfc2dff93529ad448459ad6348ea29c8d Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Wed, 3 Sep 2008 19:43:31 +0000 Subject: only one key repeat per frame --- doc/manual.html | 38 +++++++++++++++++++++++--------------- osirion.kdevelop | 2 +- src/client/input.cc | 7 ++----- src/client/keyboard.cc | 5 +++-- 4 files changed, 29 insertions(+), 23 deletions(-) diff --git a/doc/manual.html b/doc/manual.html index e6ee5e5..b788485 100644 --- a/doc/manual.html +++ b/doc/manual.html @@ -51,7 +51,7 @@ bind p screenshot

You can use the list_binds command to get a list of currently - bound keys. Use the 'list_keys' command to get a list of all + bound keys. Use the list_keys command to get a list of all available key names.

The default configuration: @@ -67,27 +67,27 @@ bind p screenshot shift+v previous camera view - - space bar - toggle mouse control on or off - - - arrow left right up down + + left right up down rotate camera in free view - + - keypad left right up down - steer the ship left/right/up/down + keypad left right + direction - keypad / * - roll left/right + keypad up down + pitch keypad + - increase/decrease forward thruster + space bar + toggle mouse control on or off + + tab kinetic impulse drive control @@ -96,20 +96,28 @@ bind p screenshot strafe left/right + q / e + roll left/right + + w s afterburner/reverse n - Select next target + select next target shift+n - Select previous target + select previous target + + + ctrl+n + deselect current target t - Open the chat window + chat window print screen diff --git a/osirion.kdevelop b/osirion.kdevelop index 0a41004..c94d33e 100644 --- a/osirion.kdevelop +++ b/osirion.kdevelop @@ -21,7 +21,7 @@ - src/render/librender.la + src/server/libserver.la debug diff --git a/src/client/input.cc b/src/client/input.cc index 75fa0f3..5cbb17c 100644 --- a/src/client/input.cc +++ b/src/client/input.cc @@ -786,11 +786,8 @@ void frame(float seconds) for (Keyboard::iterator it = keyboard->begin(); it != keyboard->end(); it++) { key = (*it).second; if (key && key->pressed()) { - while ((key->pressed()+delay < core::application()->time()) && (key->lastpressed()+repeat < core::application()->time())) { - if (key->lastpressed() > key->pressed()) - key->key_lastpressed += repeat; - else - key->key_lastpressed += delay; + if ((key->pressed()+delay < core::application()->time()) && (key->lastpressed()+repeat < core::application()->time())) { + key->key_lastpressed = core::application()->time(); key_pressed(key); } } diff --git a/src/client/keyboard.cc b/src/client/keyboard.cc index ae21eb1..b420fb8 100644 --- a/src/client/keyboard.cc +++ b/src/client/keyboard.cc @@ -112,7 +112,7 @@ Keyboard::Keyboard() add_key("b", SDLK_b, 'b'); add_key("c", SDLK_c, 'c'); add_key("d", SDLK_d, 'd', "+straferight"); - add_key("e", SDLK_e, 'e'); + add_key("e", SDLK_e, 'e', "+rollright"); add_key("f", SDLK_f, 'f'); add_key("g", SDLK_g, 'g'); add_key("h", SDLK_h, 'h'); @@ -123,9 +123,10 @@ Keyboard::Keyboard() add_key("m", SDLK_m, 'm'); key = add_key("n", SDLK_n, 'n', "target_next"); key->assign(Key::Shift, "target_prev"); + key->assign(Key::Ctrl, "target_none"); add_key("o", SDLK_o, 'o'); add_key("p", SDLK_p, 'p'); - add_key("q", SDLK_q, 'q'); + add_key("q", SDLK_q, 'q', "+rollleft"); add_key("r", SDLK_r, 'r'); add_key("s", SDLK_s, 's', "+reverse"); add_key("t", SDLK_t, 't', "ui_chat"); -- cgit v1.2.3