Clean up code a little
This commit is contained in:
@@ -102,25 +102,35 @@ internal static class Program {
|
|||||||
return foregroundProcess;
|
return foregroundProcess;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static Boolean ProcessTracked(int id) {
|
||||||
|
for (int i = 0; i < NumProc; i++) {
|
||||||
|
if (windows[i] != null && windows[i].Id == id) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void Track(Process process) {
|
||||||
|
for (int i = 0; i < NumProc; i++) {
|
||||||
|
if (windows[i] == null) {
|
||||||
|
windows[i] = process;
|
||||||
|
Console.WriteLine($"Added {process.ProcessName} to tracked windows at index {i}");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private static void TrackWows() {
|
private static void TrackWows() {
|
||||||
CleanWindows();
|
CleanWindows();
|
||||||
var processes = Process.GetProcesses();
|
var processes = Process.GetProcesses();
|
||||||
foreach (var process in processes) {
|
foreach (var process in processes) {
|
||||||
if (process.ProcessName == "UWow-64") {
|
if (process.ProcessName == "UWow-64") {
|
||||||
Console.WriteLine($"Found UWow-64 at pid {process.Id}");
|
Console.WriteLine($"Found UWow-64 at pid {process.Id}");
|
||||||
for (int i = 0; i < NumProc; i++) {
|
if (ProcessTracked(process.Id))
|
||||||
if (windows[i] != null && windows[i].Id == process.Id) {
|
continue;
|
||||||
Console.WriteLine($"UWow-64 is already tracked at index {i}");
|
Track(process);
|
||||||
continue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
for (int i = 0; i < NumProc; i++) {
|
|
||||||
if (windows[i] == null) {
|
|
||||||
windows[i] = process;
|
|
||||||
Console.WriteLine($"Added UWow-64 to tracked windows at index {i}");
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -219,4 +229,4 @@ internal static class Program {
|
|||||||
while (true)
|
while (true)
|
||||||
System.Threading.Thread.Sleep(100000);
|
System.Threading.Thread.Sleep(100000);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user