home *** CD-ROM | disk | FTP | other *** search
/ Classic Fond 54 / ClassicFond54.iso / games / stars.rar / keyMaps / WingExtreme_Digital.cs < prev    next >
Text File  |  1999-02-19  |  1KB  |  37 lines

  1. #------------------------------------------------------------------------------
  2. # include generic game actions
  3. exec( "_gameActions.cs" );
  4.  
  5. #------------------------------------------------------------------------------
  6. # include generic camera controls
  7. exec( "_defCamera.cs" );
  8.  
  9.  
  10. #------------------------------------------------------------------------------
  11. # include generic keyboard controls
  12. exec( "_defKeyboard.cs" );
  13.  
  14.  
  15. #------------------------------------------------------------------------------
  16. #
  17. # Add support for Logitech WingmanExtreme Digital
  18. #
  19. editActionMap( Herc );
  20.  
  21. bindAction( joystick, zaxis, TO, IDACTION_SPEED, deadzone, 0.1, center, square );
  22. bindAction( joystick, xaxis, TO, IDACTION_YAW, deadzone, 0.1, center, square );
  23. bindAction( joystick, yaxis, TO, IDACTION_SPEED, deadzone, 0.1, center, square );
  24.  
  25. bindAction( joystick, xpov, TO, IDACTION_LOOK_X, flip, center );
  26. bindAction( joystick, ypov, TO, IDACTION_LOOK_Y,center );
  27. bindAction( joystick, make, button0, TO, IDACTION_FIRE, 1.0 );
  28. bindAction( joystick, break, button0, TO, IDACTION_FIRE, 0.0 );
  29. bindAction( joystick, make, button2, TO, IDACTION_TARGET_SELECTED );
  30. bindAction( joystick, make, button1, TO, IDACTION_CAMOUFLAGE );
  31. bindAction( joystick, make, button3, TO, IDACTION_WEAPON_MODE_SELECT, 1.0 );
  32. bindAction( joystick, make, button4, TO, IDACTION_WEAPON_ADJ, 1.0 );
  33. bindAction( joystick, break, button5, TO, IDACTION_WEAPON_ADJ, -1.0 );
  34.  
  35.  
  36.  
  37.