home *** CD-ROM | disk | FTP | other *** search
- ;--------------------------------
- ; Force Feedback Force Variables
- ;--------------------------------
-
- PollTime = 0 ; Time (in seconds) between uploading forces
- ForceDead = 0 ; Change in force required before uploading
- AccelScaleY = 30000 ; Force scale along y-axis
- AccelScaleX = 90000 ; Force scale along x-axis
- WheelForceScale = 22 ; Forces due to unbalanced wheels, scale
- V_Speed = 1.3 ; Speed of wheel vibration
-
- ; There is a spring force being applied to the steering wheel. When the
- ; uploaded force (number below) is negative then the steering wheel pulls
- ; you to the left and to the right, when the uploaded force is positive the
- ; steering wheel pushes you to the left and to the right.
- ;
- ; Each surface type has a different amount of spring force and this spring
- ; force additionally varies with the velocity of the car. So for example,
- ; 'F_Concrete_Min' is the uploaded spring force the car has at minimum speed
- ; on a concrete surface and 'F_Concrete_Max' is the uploaded spring force
- ; the car has at maximum speed on a concrete surface.
- ;
- ; The force varies between -10,000 and 10,000 (maximum pull and maximum push).
-
- F_Concrete_Min = 0
- F_Concrete_Max = -1000
- F_WetConcrete_Min = 0
- F_WetConcrete_Max = -3000
- F_Soil_Min = 0
- F_Soil_Max = 1000
- F_WetSoil_Min = 1000
- F_WetSoil_Max = -4000
- F_Snow_Min = 0
- F_Snow_Max = -10000
- F_Grass_Min = 0
- F_Grass_Max = -3000
- F_Sand_Min = 0
- F_Sand_Max = -2000
- F_Puddle_Min = 0
- F_Puddle_Max = 10000
- F_Rock_Min = 6000
- F_Rock_Max = 6000
- F_Gravel_Min = 0
- F_Gravel_Max = 3000
- F_Hedge_Min = 0
- F_Hedge_Max = 8000
-
- ; The car makes the steering wheel vibrate from left to right. The amplitude
- ; of vibration is detailed below and is different for every surface. The
- ; amplitude can also vary with the current velocity of the car (like above).
- ;
- ; The amplitude is really a force and varies from 0 to 10,000 (no amplitude
- ; to maximum amplitude).
-
- VAmp_Concrete_Min = 0
- VAmp_Concrete_Max = 0
- VAmp_WetConcrete_Min = 1000
- VAmp_WetConcrete_Max = 0
- VAmp_Soil_Min = 0
- VAmp_Soil_Max = 0
- VAmp_Snow_Min = 0
- VAmp_Snow_Max = 0
- VAmp_Grass_Min = 5000
- VAmp_Grass_Max = 500
- VAmp_Sand_Min = 300
- VAmp_Sand_Max = 0
- VAmp_Puddle_Min = 1500
- VAmp_Puddle_Max = 100
- VAmp_Rock_Min = 8000
- VAmp_Rock_Max = 1000
- VAmp_Gravel_Min = 1500
- VAmp_Gravel_Max = 100
- VAmp_Hedge_Min = 3000
- VAmp_Hedge_Max = 100
-