@@ -54,7 +54,7 @@ public class GTValues {
54
54
* The Voltage Tiers. Use this Array instead of the old named Voltage Variables
55
55
*/
56
56
public static final long [] V = { 8 , 32 , 128 , 512 , 2048 , 8192 , 32768 , 131072 , 524288 , 2097152 , 8388608 , 33554432 ,
57
- 134217728 , 536870912 , Integer . MAX_VALUE };
57
+ 134217728 , 536870912 , 2147483648L };
58
58
59
59
/**
60
60
* The Voltage Tiers divided by 2.
@@ -74,6 +74,15 @@ public class GTValues {
74
74
public static final int [] VHA = { 7 , 16 , 60 , 240 , 960 , 3840 , 15360 , 61440 , 245760 , 983040 , 3932160 , 15728640 ,
75
75
62914560 , 251658240 , 1006632960 };
76
76
77
+ /**
78
+ * The Voltage Tiers extended all the way to max Long value for overclocking
79
+ */
80
+ public static final long [] VOC = { 8 , 32 , 128 , 512 , 2048 , 8192 , 32768 , 131072 , 524288 , 2097152 , 8388608 , 33554432 ,
81
+ 134217728 , 536870912 , 2147483648L , 8589934592L , 34359738368L , 137438953472L , 549755813888L ,
82
+ 2199023255552L , 8796093022208L , 35184372088832L , 140737488355328L , 562949953421312L , 2251799813685248L ,
83
+ 9007199254740992L , 36028797018963968L , 144115188075855872L , 576460752303423488L , 2305843009213693952L ,
84
+ Long .MAX_VALUE };
85
+
77
86
public static final int ULV = 0 ;
78
87
public static final int LV = 1 ;
79
88
public static final int MV = 2 ;
@@ -90,13 +99,25 @@ public class GTValues {
90
99
public static final int UXV = 12 ;
91
100
public static final int OpV = 13 ;
92
101
public static final int MAX = 14 ;
102
+ public static final int MAX_TRUE = 30 ;
93
103
94
104
/**
95
105
* The short names for the voltages, used for registration primarily
96
106
*/
97
107
public static final String [] VN = new String [] { "ULV" , "LV" , "MV" , "HV" , "EV" , "IV" , "LuV" , "ZPM" , "UV" , "UHV" ,
98
108
"UEV" , "UIV" , "UXV" , "OpV" , "MAX" };
99
109
110
+ /**
111
+ * The short names for the voltages, up to max Long, used for registration primarily
112
+ */
113
+ public static final String [] VOCN = new String [] { "ULV" , "LV" , "MV" , "HV" , "EV" , "IV" , "LuV" , "ZPM" , "UV" , "UHV" ,
114
+ "UEV" , "UIV" , "UXV" , "OpV" , "MAX" , "MAX+1" , "MAX+2" , "MAX+3" , "MAX+4" , "MAX+5" , "MAX+6" , "MAX+7" , "MAX+8" ,
115
+ "MAX+9" , "MAX+10" , "MAX+11" , "MAX+12" , "MAX+13" , "MAX+14" , "MAX+15" , "MAX+16" ,
116
+ };
117
+
118
+ private static final String MAX_PLUS = RED .toString () + BOLD + "M" + YELLOW + BOLD + "A" + GREEN + BOLD + "X" +
119
+ AQUA + BOLD + "+" + LIGHT_PURPLE + BOLD ;
120
+
100
121
/**
101
122
* The short names for the voltages, formatted for text
102
123
*/
@@ -107,6 +128,20 @@ public class GTValues {
107
128
DARK_RED + "UHV" , GREEN + "UEV" , DARK_GREEN + "UIV" ,
108
129
YELLOW + "UXV" , BLUE + "OpV" , RED .toString () + BOLD + "MAX" };
109
130
131
+ /**
132
+ * The short names for the voltages, up to max Long, formatted for text
133
+ */
134
+ public static final String [] VOCNF = new String [] {
135
+ DARK_GRAY + "ULV" , GRAY + "LV" , AQUA + "MV" ,
136
+ GOLD + "HV" , DARK_PURPLE + "EV" , DARK_BLUE + "IV" ,
137
+ LIGHT_PURPLE + "LuV" , RED + "ZPM" , DARK_AQUA + "UV" ,
138
+ DARK_RED + "UHV" , GREEN + "UEV" , DARK_GREEN + "UIV" ,
139
+ YELLOW + "UXV" , BLUE + "OpV" , RED .toString () + BOLD + "MAX" ,
140
+ MAX_PLUS + "1" , MAX_PLUS + "2" , MAX_PLUS + "3" , MAX_PLUS + "4" ,
141
+ MAX_PLUS + "5" , MAX_PLUS + "6" , MAX_PLUS + "7" , MAX_PLUS + "8" ,
142
+ MAX_PLUS + "9" , MAX_PLUS + "10" , MAX_PLUS + "11" , MAX_PLUS + "12" ,
143
+ MAX_PLUS + "13" , MAX_PLUS + "14" , MAX_PLUS + "15" , MAX_PLUS + "16" , };
144
+
110
145
/**
111
146
* Color values for the voltages
112
147
*/
0 commit comments