author | harlekin <harlekin> | 2002-03-05 19:03:08 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-03-05 19:03:08 (UTC) |
commit | 3ccfa79645d8bd99c7b559f9fa315d028db2c75d (patch) (unidiff) | |
tree | 54f422c70dd85e16d10d98696c7cdd9ddc8b916f | |
parent | 7f0e92c12b41207fa75c82bc0b6f30fc57e7e77d (diff) | |
download | opie-3ccfa79645d8bd99c7b559f9fa315d028db2c75d.zip opie-3ccfa79645d8bd99c7b559f9fa315d028db2c75d.tar.gz opie-3ccfa79645d8bd99c7b559f9fa315d028db2c75d.tar.bz2 |
the launch key on ipaq is now the fire button
-rw-r--r-- | noncore/games/qasteroids/toplevel.cpp | 26 |
1 files changed, 22 insertions, 4 deletions
diff --git a/noncore/games/qasteroids/toplevel.cpp b/noncore/games/qasteroids/toplevel.cpp index 57242a0..090099f 100644 --- a/noncore/games/qasteroids/toplevel.cpp +++ b/noncore/games/qasteroids/toplevel.cpp | |||
@@ -32,12 +32,14 @@ | |||
32 | #include <qaccel.h> | 32 | #include <qaccel.h> |
33 | #include <qlabel.h> | 33 | #include <qlabel.h> |
34 | #include <qlayout.h> | 34 | #include <qlayout.h> |
35 | #include <qlcdnumber.h> | 35 | #include <qlcdnumber.h> |
36 | #include <qpushbutton.h> | 36 | #include <qpushbutton.h> |
37 | 37 | ||
38 | #include <sys/utsname.h> | ||
39 | |||
38 | 40 | ||
39 | #define SB_SCORE1 | 41 | #define SB_SCORE1 |
40 | #define SB_LEVEL2 | 42 | #define SB_LEVEL2 |
41 | #define SB_SHIPS3 | 43 | #define SB_SHIPS3 |
42 | 44 | ||
43 | struct SLevel | 45 | struct SLevel |
@@ -250,15 +252,31 @@ KAstTopLevel::KAstTopLevel( QWidget *parent, const char *name ) | |||
250 | actions.insert( Qt::Key_Left, RotateLeft ); | 252 | actions.insert( Qt::Key_Left, RotateLeft ); |
251 | actions.insert( Qt::Key_Right, RotateRight ); | 253 | actions.insert( Qt::Key_Right, RotateRight ); |
252 | actions.insert( Qt::Key_Enter, Shoot ); | 254 | actions.insert( Qt::Key_Enter, Shoot ); |
253 | actions.insert( Qt::Key_Z, Teleport ); | 255 | actions.insert( Qt::Key_Z, Teleport ); |
254 | actions.insert( Qt::Key_Down, Brake ); | 256 | actions.insert( Qt::Key_Down, Brake ); |
255 | actions.insert( Qt::Key_P, Pause ); | 257 | actions.insert( Qt::Key_P, Pause ); |
256 | actions.insert( Key_F12, Launch ); | 258 | |
257 | actions.insert( Key_F11, Shield ); | 259 | |
258 | actions.insert( Key_F9, NewGame ); | 260 | struct utsname name; /* check for embedix kernel running on the zaurus, if |
261 | lineo change string, this break | ||
262 | */ | ||
263 | if (uname(&name) != -1) { | ||
264 | QString release=name.release; | ||
265 | if(release.find("embedix",0,TRUE) !=-1) { | ||
266 | actions.insert( Key_F12, Launch ); | ||
267 | actions.insert( Key_F11, Shield ); | ||
268 | actions.insert( Key_F9, NewGame ); | ||
269 | } else { | ||
270 | // ipaq | ||
271 | actions.insert( Key_F12, Shoot ); | ||
272 | actions.insert( Key_F11, Shield ); | ||
273 | actions.insert( Key_F10, Launch ); | ||
274 | actions.insert( Key_F9, NewGame ); | ||
275 | } | ||
276 | } | ||
259 | 277 | ||
260 | // actions.insert( Qt::Key_S, Shield ); | 278 | // actions.insert( Qt::Key_S, Shield ); |
261 | // actions.insert( Qt::Key_X, Brake ); | 279 | // actions.insert( Qt::Key_X, Brake ); |
262 | // actions.insert( Qt::Key_L, Launch ); | 280 | // actions.insert( Qt::Key_L, Launch ); |
263 | actions.insert( Qt::Key_Space, Shoot ); | 281 | actions.insert( Qt::Key_Space, Shoot ); |
264 | 282 | ||
@@ -448,13 +466,13 @@ void KAstTopLevel::slotShipKilled() | |||
448 | 466 | ||
449 | playSound( "ShipDestroyed" ); | 467 | playSound( "ShipDestroyed" ); |
450 | 468 | ||
451 | if ( shipsRemain > 0 ) | 469 | if ( shipsRemain > 0 ) |
452 | { | 470 | { |
453 | waitShip = TRUE; | 471 | waitShip = TRUE; |
454 | view->showText( tr( "Ship Destroyed.\nPress Launch/Home key."), yellow ); | 472 | view->showText( tr( "Ship Destroyed.\nPress Contacts/Home key."), yellow ); |
455 | } | 473 | } |
456 | else | 474 | else |
457 | { | 475 | { |
458 | view->endGame(); | 476 | view->endGame(); |
459 | doStats(); | 477 | doStats(); |
460 | } | 478 | } |