----------------07-23-97 05:08am-----------------
Here is the readme for f13dfx.exe with enhanced joystick support.

This release is the glide library, 3dfx version of the game.
If the joystick support is acceptable, f1rend.exe and f1d3d.exe will follow.


FEATURES:
---------

DirectPlay allows up to 6 axes (analog controllers) and 32 buttons.
Moderately, I have enabled control by the first 4 axes (x,y,z,and r)
as well as the first 8 buttons. That should handle most controllers.

Make sure your joystick is calibrated in Windows 95 before running the
game. The joystick or controller control panel will help you learn
which axes and buttons your DirectPlay compatible controller supports.

SETTING UP THE CONTROLS:
------------------------

Simply go to the OPTIONS->CONTROLLER menu and use the arrows to
change "KEYBOARD" to either ANALOG JOYSTICK or DIGITAL JOYSTICK.

Then use down arrow and instructions will appear in the empty box.
Number keys 1-8 on the keyboard will adjust options 1-8, and
numbers 9 & 0 will set the analog and digital joystick default
settings.

In digital joystick mode, axes are merely sampled as on/off values
and treated like buttons.

In analog joystick mode, axes are treated as ranges of values giving
the user a variable sensitivity.

Only the first 4 options use the analog data; the rest treat it
digitally.

The options are:

STEER_LEFT
STEER_RIGHT
ACCELERATE
BRAKE
REVERSE
REARVIEW
GEAR_UP
GEAR_DOWN

F1 was not written to accelerate and brake at the same time, and
I believe acceleration has precidence (brake is ignored when accelerating)


FUTURE ENHANCEMENTS IF DESIRED

- Ability to save joystick settings once set
- Other exe support than 3dfx


--------------------------------------------------*/

// ANALOG DEFAULT SETTINGS
STEER_LEFT=JOY_X_HIGH
STEER_RIGHT=JOY_X_LOW
ACCELERATE=JOY_Y_LOW
BRAKE=JOY_Y_HIGH
REVERSE=JOY_B3
REARVIEW=JOY_B4
GEAR_UP=JOY_B1
GEAR_DOWN=JOY_B2

// DIGITAL DEFAULT SETTINGS
STEER_LEFT=JOY_X_HIGH
STEER_RIGHT=JOY_X_LOW
ACCELERATE=JOY_Y_LOW
BRAKE=JOY_B2
REVERSE=JOY_B3
REARVIEW=JOY_B4
GEAR_UP=JOY_NULL
GEAR_DOWN=JOY_NULL


