-
Notifications
You must be signed in to change notification settings - Fork 0
/
Hardware.cs
88 lines (80 loc) · 2.78 KB
/
Hardware.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
//using OpenHardwareMonitor.Hardware;
//using System;
//using System.Collections.Generic;
//using System.Linq;
//using System.Security.Principal;
//using System.Text;
//using System.Threading.Tasks;
//namespace RunCat
//{
// public class UpdateVisitor : IVisitor
// {
// public void VisitComputer(IComputer computer)
// {
// computer.Traverse(this);
// }
// public void VisitHardware(IHardware hardware)
// {
// hardware.Update();
// foreach (IHardware subHardware in hardware.SubHardware) subHardware.Accept(this);
// }
// public void VisitParameter(IParameter parameter) { }
// public void VisitSensor(ISensor sensor) { }
// }
// public class Hardware: IDisposable
// {
// private readonly UpdateVisitor updateVisitor = new UpdateVisitor();
// private readonly Computer computer = new Computer();
// public Hardware()
// {
// computer.Open();
// computer.CPUEnabled = true;
// computer.Accept(updateVisitor);
// }
// public void Dispose()
// {
// computer.Close();
// }
// public static bool IsRunAsAdmin()
// {
// WindowsIdentity id = WindowsIdentity.GetCurrent();
// WindowsPrincipal principal = new WindowsPrincipal(id);
// return principal.IsInRole(WindowsBuiltInRole.Administrator);
// }
// public bool CheckTemperature()
// {
// for (int i = 0; i < computer.Hardware.Length; i++)
// {
// if (computer.Hardware[i].HardwareType == HardwareType.CPU)
// {
// for (int j = 0; j < computer.Hardware[i].Sensors.Length; j++)
// {
// if (computer.Hardware[i].Sensors[j].SensorType == SensorType.Temperature)
// {
// return true;
// }
// }
// }
// }
// return false;
// }
// public float GetTemperature()
// {
// for (int i = 0; i < computer.Hardware.Length; i++)
// {
// if (computer.Hardware[i].HardwareType == HardwareType.CPU)
// {
// for (int j = 0; j < computer.Hardware[i].Sensors.Length; j++)
// {
// if (computer.Hardware[i].Sensors[j].SensorType == SensorType.Temperature)
// {
// computer.Hardware[i].Update();
// return computer.Hardware[i].Sensors[j].Value ?? 0;
// }
// }
// }
// }
// return 0;
// }
// }
//}