-
Notifications
You must be signed in to change notification settings - Fork 0
/
OVRToolkit.cs
106 lines (92 loc) · 3.28 KB
/
OVRToolkit.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
using System;
using System.Diagnostics;
using System.Threading;
using VRDeclutter.Interop;
namespace VRDeclutter
{
public class OVRToolkit
{
private readonly MainWindow _mainWindow;
private readonly Thread _watcherThread;
public bool HidingEnabled = true;
public bool IsHidden;
public bool IsWatching;
public Process Process;
public OVRToolkit(MainWindow mainWindow)
{
_mainWindow = mainWindow;
_watcherThread = new Thread(WatcherWork) { IsBackground = true };
_watcherThread.SetApartmentState(ApartmentState.STA);
new Thread(delegate(object? o)
{
AttachToOVRToolkit(); // Wait for OVRToolkit to be open
}).Start();
}
public void AttachToOVRToolkit()
{
// Wait for at least one process to appear
while (Process.GetProcessesByName("OVR Toolkit Settings").Length == 0)
Thread.Sleep(1000); // CPU usage "optimization"
// Wait for Proper Window Handle
while (Process.GetProcessesByName("OVR Toolkit Settings")[0].MainWindowHandle == IntPtr.Zero)
Thread.Sleep(1000); // CPU usage "optimization"
// Get Process
Process = Process.GetProcessesByName("OVR Toolkit Settings")[0];
Process.EnableRaisingEvents = true;
Process.Exited += OnProcessExited;
// Start Watcher
IsWatching = true;
_watcherThread.Start();
}
// Reset window attachment
private void OnProcessExited(object? sender, EventArgs e)
{
IsWatching = false;
HidingEnabled = true;
new Thread(delegate(object? o)
{
AttachToOVRToolkit(); // Wait for OVRToolkit to be open
}).Start();
}
public void ShowOVR()
{
if (IsHidden)
{
// Show OVRToolkit Window
NativeMethods.ShowNormalWindow(Process.MainWindowHandle);
IsHidden = false;
}
}
public void HideOVR()
{
if (!IsHidden)
{
// Hide OVRToolkit Window
NativeMethods.HideNormalWindow(Process.MainWindowHandle);
IsHidden = true;
}
}
private void WatcherWork()
{
while (true)
{
if (IsWatching)
{
// If hide on minimize is enabled
if (_mainWindow.Settings.OvrToolkitActionSetting == Settings.ActionSetting.MinimizeHide)
// Check for window state
if (NativeMethods.IsWindowMinimized(Process.MainWindowHandle))
// Hide OVRToolkit Window
HideOVR();
// If autohide is enabled
if (_mainWindow.Settings.OvrToolkitActionSetting == Settings.ActionSetting.AutoHide &&
HidingEnabled)
// Hide OVRToolkit Window
HideOVR();
}
// CPU Usage "optimization"
Thread.Sleep(1);
}
}
}
}