This repository has been archived by the owner on Nov 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Made a Settings File. Added check to see if game and DSX are running.
- Loading branch information
1 parent
7d28df5
commit 5093948
Showing
30 changed files
with
770 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
namespace ForzaDualSense | ||
{ | ||
public class Settings | ||
{ | ||
public float GRIP_LOSS_VAL { get; set; } = 0.5f; //The point at which the brake will begin to become choppy | ||
public int MAX_BRAKE_VIBRATION { get; set; } = 35; //The maximum brake frequency in Hz (avoid over 40). COrrelates to better grip | ||
public float TURN_ACCEL_MOD { get; set; } = 0.5f; //How to scale turning acceleration in determining throttle stiffness. | ||
public float FORWARD_ACCEL_MOD { get; set; } = 1.0f;//How to scale Forward acceleration in determining throttle stiffness. | ||
public int MIN_BRAKE_STIFFNESS { get; set; } = 200; //On a scale of 1-200 with 1 being most stiff | ||
public int MAX_BRAKE_STIFFNESS { get; set; } = 1; //On a scale of 1-200 with 1 being most stiff | ||
public int BRAKE_VIBRATION_START { get; set; } = 20; //The position (0-255) at which the brake should feel engaged with low grip surfaces | ||
public int MAX_THROTTLE_RESISTANCE { get; set; } = 6; //The Maximum resistance on the throttle (0-7) | ||
public int MAX_BRAKE_RESISTANCE { get; set; } = 6;//The Maximum resistance on the Brake (0-7) | ||
public int MIN_THROTTLE_RESISTANCE { get; set; } = 1;//The Minimum resistance on the throttle (0-7) | ||
public int MIN_BRAKE_RESISTANCE { get; set; } = 1;//The Minimum resistance on the Brake (0-7) | ||
public int ACCELRATION_LIMIT { get; set; } = 10; //The upper end acceleration when calculating the throttle resistance. Any acceleration above this will be counted as this value when determining the throttle resistance. | ||
public bool DISABLE_APP_CHECK { get; set; } = false; //Should we disable the check for running applications? | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
;The point at which the brake will begin to become choppy | ||
GRIP_LOSS_VAL=0.5 | ||
;The maximum brake frequency in Hz (avoid over 40). COrrelates to better grip | ||
MAX_BRAKE_VIBRATION=35 | ||
;How to scale turning acceleration in determining throttle stiffness. | ||
TURN_ACCEL_MOD=0.5 | ||
;How to scale Forward acceleration in determining throttle stiffness. | ||
FORWARD_ACCEL_MOD=1.0 | ||
;On a scale of 1-200 with 1 being most stiff | ||
MIN_BRAKE_STIFFNESS=200 | ||
;On a scale of 1-200 with 1 being most stiff | ||
MAX_BRAKE_STIFFNESS=1 | ||
;The position (0-255) at which the brake should feel engaged with low grip surfaces | ||
BRAKE_VIBRATION_START=20 | ||
;The Maximum resistance on the throttle (0-7) | ||
MAX_THROTTLE_RESISTANCE=6 | ||
;The Maximum resistance on the Brake (0-7) | ||
MAX_BRAKE_RESISTANCE=6 | ||
;The Minimum resistance on the throttle (0-7) | ||
MIN_THROTTLE_RESISTANCE=1 | ||
;The Minimum resistance on the Brake (0-7) | ||
MIN_BRAKE_RESISTANCE=1 | ||
;The upper end acceleration when calculating the throttle resistance. Any acceleration above this will be counted as this value when determining the throttle resistance. | ||
ACCELRATION_LIMIT=10 | ||
DISABLE_APP_CHECK=true |
Oops, something went wrong.