-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConstants.java
More file actions
22 lines (15 loc) · 836 Bytes
/
Constants.java
File metadata and controls
22 lines (15 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
public class Constants {
public static final int NUM_GAMES = 100;
public static final int MIN_RANDOM_AUTO_ACCURACY = 40;
public static final int MAX_RANDOM_AUTO_ACCURACY = 90;
public static final int MIN_RANDOM_TELE_ACCURACY = 40;
public static final int MAX_RANDOM_TELE_ACCURACY = 90;
public static final int MIN_RANDOM_AUTO_CYCLE = 3;
public static final int MAX_RANDOM_AUTO_CYCLE = 8;
public static final int MIN_RANDOM_TELE_CYCLE = 5;
public static final int MAX_RANDOM_TELE_CYCLE = 10;
public static final int MIN_RANDOM_HANGTIME = 15;
public static final int MAX_RANDOM_HANGTIME = 30;
public static final double CHANCE_LOW_AUTO = 0.3; //percent chance of picking low only auto
public static final double CHANCE_LOW_TELE = 0.3; //percent chance of picking low only tele
}