-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOperation.cs
344 lines (294 loc) · 11.8 KB
/
Operation.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
using Microsoft.Win32;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
using System.Windows.Forms;
using WindowsInput;
using WindowsInput.Native;
namespace PocketTDPControl
{
internal class Operation
{
public static MachineType DetermineMachineType(string machineName) {
MachineType machineType;
var name = machineName.Replace(" ", "").ToUpper();
if(Enum.TryParse(name, true, out machineType))
{
return machineType;
}
else { return MachineType.None; }
}
public static void Adjust(string type, int tdp)
{
Process p = new Process();
p.StartInfo.FileName = "./ryzenadj/ryzenadj.exe";
p.StartInfo.Arguments = $"-{type} {tdp * 1000}";
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.CreateNoWindow = true;
p.Start();
var successResult = p.StandardOutput.ReadToEnd();
Console.WriteLine(successResult);
p.Close();
p.Dispose();
}
public static void Adjust(string[] type, int[] tdp)
{
Process p = new Process();
p.StartInfo.FileName = "./ryzenadj/ryzenadj.exe";
p.StartInfo.Arguments = $"-{type[0]} {tdp[0] * 1000} -{type[1]} {tdp[1] * 1000} -{type[2]} {tdp[2] * 1000}";
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.CreateNoWindow = true;
p.Start();
var successResult = p.StandardOutput.ReadToEnd();
Console.WriteLine(successResult);
p.Close();
p.Dispose();
}
public static bool LoopbackExempt()
{
RegistryKey rkConfig = Registry.CurrentUser.OpenSubKey("Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppContainer\\Mappings\\");
var keys = rkConfig.GetSubKeyNames();
foreach (string key in keys)
{
if (rkConfig.OpenSubKey(key).GetValue("DisplayName").ToString() == "PocketTDPControlWidget")
{
Process p = new Process();
p.StartInfo.FileName = "CheckNetIsolation";
p.StartInfo.Arguments = $"LoopbackExempt -a -p={key}";
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.CreateNoWindow = true;
p.Start();
string error = p.StandardError.ReadToEnd();
p.Close();
if (error.Trim() == "")
{
return true;
}
else
{
return false;
}
}
}
return false;
}
#region keyboard mapping
/// </summary>
private static Dictionary<int, bool> FromComboKey = new Dictionary<int, bool>();
private static VirtualKeyCode ToModifierKey, ToKey = 0;
private static KeyboardHook KBH = new KeyboardHook();
private static void KeyboardHookKeyPress(KeyboardHook.HookStruct hookStruct, out bool handle)
{
handle = false;
foreach (var pair in Operation.FromComboKey.ToArray())
{
if (hookStruct.vkCode == pair.Key)
{
Operation.FromComboKey[pair.Key] = true;
}
}
var checklist = Operation.FromComboKey.Values.Distinct();
if (checklist.Count() == 1 && checklist.First() == true)
{
foreach (var pair in Operation.FromComboKey.ToArray())
{
Operation.FromComboKey[pair.Key] = false;
}
new InputSimulator().Keyboard.ModifiedKeyStroke(Operation.ToModifierKey, Operation.ToKey);
}
handle = true;
}
public static void InitialKeyboardHook() {
KBH.InstallHook(KeyboardHookKeyPress);
}
public static void CustomKeyMapping(Keys[] fromComboKey, VirtualKeyCode[] toComboKey)
{
KBH.InstallHook(KeyboardHookKeyPress);
foreach (var key in fromComboKey)
{
var keyCode = (int)key;
if (Operation.FromComboKey.ContainsKey(keyCode))
{
Operation.FromComboKey[keyCode] = false;
}
else { Operation.FromComboKey.Add(keyCode, false); }
}
Operation.ToModifierKey = toComboKey[0];
Operation.ToKey = toComboKey[1];
}
public static void CancelCustomKeyMapping() {
FromComboKey.Clear();
ToModifierKey = 0;
ToKey = 0;
}
public static void DisposeKeyboardHook() {
KBH?.UninstallHook();
}
#endregion
#region Ayaneo 2 fan control via ec direct r/w
private static Ols ols = null;
private static ushort reg_addr = 78;
private static ushort reg_data = 79;
private static event EventHandler OlsInitFailedEvent;
public static float GetAYANEO2FanSpeedPrecentage() => (float)ECRamDirectRead((ushort)6153);
public static void SetAYANEO2FanSpeedPrecentage(byte fanSpeedPrecentage) => ECRamDirectWrite((ushort)1099, fanSpeedPrecentage);
public static void SetAYANEO2FanSpeedToAutoControl() => ECRamDirectWrite((ushort)1098, (byte)0);
public static void SetAYANEO2FanSpeedToManualControl() => ECRamDirectWrite((ushort)1098, (byte)1);
public static byte ECRamDirectRead(ushort address)
{
if (ols == null)
OlsInit();
if (ols == null)
return 0;
byte num1 = (byte)((int)address >> 8 & (int)byte.MaxValue);
byte num2 = (byte)((uint)address & (uint)byte.MaxValue);
try
{
reg_addr = (ushort)78;
reg_data = (ushort)79;
ols.WriteIoPortByte(reg_addr, (byte)46);
ols.WriteIoPortByte(reg_data, (byte)17);
ols.WriteIoPortByte(reg_addr, (byte)47);
ols.WriteIoPortByte(reg_data, num1);
ols.WriteIoPortByte(reg_addr, (byte)46);
ols.WriteIoPortByte(reg_data, (byte)16);
ols.WriteIoPortByte(reg_addr, (byte)47);
ols.WriteIoPortByte(reg_data, num2);
ols.WriteIoPortByte(reg_addr, (byte)46);
ols.WriteIoPortByte(reg_data, (byte)18);
ols.WriteIoPortByte(reg_addr, (byte)47);
return ols.ReadIoPortByte(reg_data);
}
catch
{
OlsFree();
return 0;
}
}
public static void ECRamDirectWrite(ushort address, byte data)
{
if (ols == null)
OlsInit();
if (ols == null)
return;
byte num1 = (byte)((int)address >> 8 & (int)byte.MaxValue);
byte num2 = (byte)((uint)address & (uint)byte.MaxValue);
try
{
reg_addr = (ushort)78;
reg_data = (ushort)79;
ols.WriteIoPortByte(reg_addr, (byte)46);
ols.WriteIoPortByte(reg_data, (byte)17);
ols.WriteIoPortByte(reg_addr, (byte)47);
ols.WriteIoPortByte(reg_data, num1);
ols.WriteIoPortByte(reg_addr, (byte)46);
ols.WriteIoPortByte(reg_data, (byte)16);
ols.WriteIoPortByte(reg_addr, (byte)47);
ols.WriteIoPortByte(reg_data, num2);
ols.WriteIoPortByte(reg_addr, (byte)46);
ols.WriteIoPortByte(reg_data, (byte)18);
ols.WriteIoPortByte(reg_addr, (byte)47);
ols.WriteIoPortByte(reg_data, data);
}
catch
{
OlsFree();
}
}
public static bool OlsInit()
{
bool flag = false;
ols = new Ols();
switch (ols.GetStatus())
{
case 0:
flag = true;
break;
}
switch (ols.GetDllStatus())
{
case 0:
flag = true;
break;
case 1:
int num1 = (int)MessageBox.Show("WingRing0 DLL Status Error!! OLS_UNSUPPORTED_PLATFORM");
OlsFree();
break;
case 2:
int num2 = (int)MessageBox.Show("WingRing0 DLL Status Error!! OLS_DRIVER_NOT_LOADED");
OlsFree();
break;
case 3:
int num3 = (int)MessageBox.Show("WingRing0 DLL Status Error!! OLS_DLL_DRIVER_NOT_FOUND");
OlsFree();
break;
case 4:
int num4 = (int)MessageBox.Show("WingRing0 DLL Status Error!! OLS_DLL_DRIVER_UNLOADED");
OlsFree();
break;
case 5:
int num5 = (int)MessageBox.Show("WingRing0 DLL Status Error!! DRIVER_NOT_LOADED_ON_NETWORK");
OlsFree();
break;
case 9:
int num6 = (int)MessageBox.Show("WingRing0 DLL Status Error!! OLS_DLL_UNKNOWN_ERROR");
OlsFree();
break;
}
if (ols != null)
return flag;
RaiseOlsInitFailedEvent();
return false;
}
public static void OlsFree()
{
if (ols != null)
ols.Dispose();
ols = (Ols)null;
}
public static void RaiseOlsInitFailedEvent()
{
if (OlsInitFailedEvent == null)
return;
OlsInitFailedEvent((object)null, (EventArgs)new OlsInitFailedEventArgs());
}
#endregion
#region Use RTSS to limit FPS
private static readonly string RTSSGlobalProfilePath = "C:\\Program Files (x86)\\RivaTuner Statistics Server\\Profiles\\Global";
private static readonly string RTSSApplicationPath = "C:\\Program Files (x86)\\RivaTuner Statistics Server\\RTSS.exe";
[DllImport("RTSSHooks64.dll")]
private static extern void UpdateProfiles();
public static bool IsRTSSExisted() => File.Exists(RTSSApplicationPath);
public static bool IsRTSSRunning() => Process.GetProcessesByName("RTSS").Length != 0;
public static int GetTargetFPS()
{
if (IsRTSSExisted() && IsRTSSRunning())
return int.Parse(INIHelper.ReadString("Framerate", "Limit", null, RTSSGlobalProfilePath));
else
throw new Exception();
}
public static void SetTargetFPS(int limit)
{
if (IsRTSSExisted() && IsRTSSRunning())
{
INIHelper.WriteString("Framerate", "Limit", limit.ToString(), RTSSGlobalProfilePath);
UpdateProfiles();
}
else
throw new Exception();
}
#endregion
}
}