forked from nomi-san/parsec-vdd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCLI.cs
326 lines (289 loc) · 11.3 KB
/
CLI.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
using System;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text.RegularExpressions;
using System.Threading;
namespace ParsecVDisplay
{
internal static class CLI
{
public static int Execute(string[] args)
{
AttachConsole(-1);
if (args.Length > 0)
{
try
{
switch (args[0])
{
case "add":
return AddDisplay();
case "remove":
return RemoveDisplay(args);
case "list":
return ListDisplay();
case "set":
return SetDisplayMode(args);
case "status":
return QueryDriverStatus();
case "version":
return QueryDriverVersion();
case "help":
ShowHelp();
return 0;
default:
Console.WriteLine("Invalid command '{0}'", args[0]);
ShowHelp();
return 0;
}
}
catch (Exception ex)
{
Console.WriteLine("Error: {0}", ex.Message);
#if DEBUG
Console.Error.WriteLine(ex.StackTrace);
#endif
return -1;
}
finally
{
ParsecVDD.Uninit();
}
}
else
{
ShowHelp();
return 0;
}
}
static Device.Status PrepareVdd()
{
var status = ParsecVDD.QueryStatus();
if (status == Device.Status.NOT_INSTALLED)
{
throw new Exception("The driver is not found, please install it first");
}
else if (status != Device.Status.OK)
{
throw new Exception($"The driver is not OK, got status {status}");
}
if (!ParsecVDD.Init())
{
throw new Exception("Failed to obtain the driver device handle");
}
return status;
}
static void CheckAppRunning()
{
if (!EventWaitHandle.TryOpenExisting(Program.AppId, out var _))
{
throw new Exception($"{Program.AppName} app is not running");
}
}
static int AddDisplay()
{
var displays = ParsecVDD.GetDisplays();
if (displays.Count >= ParsecVDD.MAX_DISPLAYS)
{
throw new Exception(string.Format("Exceeded limit ({0}), could not add more displays", ParsecVDD.MAX_DISPLAYS));
}
PrepareVdd();
CheckAppRunning();
if (ParsecVDD.AddDisplay(out int index))
{
Console.WriteLine($"Added a virtual display with index {0}.", index);
return index;
}
else
{
throw new Exception("Failed to add a virtual display.");
}
}
static int RemoveDisplay(string[] args)
{
var arg1 = args.Length >= 2 ? args[1] : "";
bool removeAll = arg1 == "all" || arg1 == "*";
int index = -1;
if (args.Length == 1 || removeAll || int.TryParse(arg1, out index))
{
var displays = ParsecVDD.GetDisplays();
if (displays.Count == 0)
{
Console.WriteLine("No Parsec Display available.");
return 0;
}
else if (removeAll)
{
PrepareVdd();
foreach (var di in displays)
{
if (!ParsecVDD.RemoveDisplay(di.DisplayIndex))
throw new Exception(string.Format("Failed to remove the display at index {0}.", index));
}
Console.WriteLine("Removed all added displays.");
return 0;
}
else
{
var display = index < 0 ? displays.LastOrDefault()
: displays.FirstOrDefault(di => di.DisplayIndex == index);
if (display != null)
{
PrepareVdd();
if (!ParsecVDD.RemoveDisplay(display.DisplayIndex))
throw new Exception(string.Format("Failed to remove the display at index {0}.", display.DisplayIndex));
Console.WriteLine("Removed display at index {0}.", display.DisplayIndex);
return 0;
}
else
{
throw new Exception(string.Format("Display index {0} is not found.", index));
}
}
}
else
{
throw new Exception(string.Format("Invalid display index '{0}'.", arg1));
}
}
static int ListDisplay()
{
var displays = ParsecVDD.GetDisplays();
if (displays.Count > 0)
{
foreach (var di in displays)
{
Console.WriteLine("Index: {0}", di.DisplayIndex);
Console.WriteLine(" - Device: {0}", di.DeviceName);
Console.WriteLine(" - Number: {0}", di.Identifier);
Console.WriteLine(" - Name: {0}", di.DisplayName);
Console.WriteLine(" - Mode: {0}", di.CurrentMode);
Console.WriteLine(" - Orientation: {0} ({1}°)", di.CurrentOrientation, (int)di.CurrentOrientation * 90);
}
}
else
{
Console.WriteLine("No Parsec Display available.");
}
return 0;
}
static int SetDisplayMode(string[] args)
{
if (args.Length < 2)
throw new Exception("Missing display index.");
if (args.Length < 3)
throw new Exception("Missing resolution and/or refresh rate.");
var argIndex = args[1];
var argDMode = string.Join(" ", args.Skip(2));
if (int.TryParse(argIndex, out int index))
{
var displays = ParsecVDD.GetDisplays();
if (displays.Count == 0)
{
Console.WriteLine("No Parsec Display available.");
return 0;
}
else
{
var display = displays.Find(di => di.DisplayIndex == index);
if (display == null)
throw new Exception(string.Format("Display index {0} is not found.", index));
int? width, height, hz;
ParseDisplayModeArg(argDMode, out width, out height, out hz);
if ((width != null && height != null) || hz != null)
{
if (display.ChangeMode(width, height, hz, null))
{
Console.WriteLine($"Display index {index} is set to '{argDMode}'.");
return 0;
}
else
{
throw new Exception($"Failed to set, display mode '{argDMode}' is not supported.");
}
}
else
{
throw new Exception("Nothing to do, recheck your syntax.");
}
}
}
else
{
throw new Exception(string.Format("Invalid display index '{0}'.", argIndex));
}
}
static int QueryDriverStatus()
{
var status = ParsecVDD.QueryStatus();
Console.WriteLine("The driver status is {0}", status);
return (int)status;
}
static int QueryDriverVersion()
{
PrepareVdd();
if (ParsecVDD.QueryVersion(out var version))
{
Console.WriteLine("{0} v{1}", ParsecVDD.ADAPTER, version);
return 0;
}
else
{
throw new Exception("Failed to query the driver version.");
}
}
static void ShowHelp()
{
Console.WriteLine("vdd-cli [command] [args...]");
Console.WriteLine(" add - Add a virtual display");
Console.WriteLine(" remove - Remove the last added virtual display");
Console.WriteLine(" X - Remove the virtual display at index X (number)");
Console.WriteLine(" all - Remove all the added virtual displays");
Console.WriteLine(" list - Show all the added virtual displays and specs");
Console.WriteLine(" set X WxH - Set resolution for a virtual display");
Console.WriteLine(" where X is index number, WxH is size, e.g 1920x1080");
Console.WriteLine(" X @R - Set only the refresh rate R, e.g @60, @120 (hz)");
Console.WriteLine(" on Powershell, you should replace '@' with 'r'");
Console.WriteLine(" X WxH@R - Set full display mode as above, e.g 1920x1080@144");
Console.WriteLine(" status - Query the driver status");
Console.WriteLine(" version - Query the driver version");
Console.WriteLine(" help - Show this help");
}
static void ParseDisplayModeArg(string arg, out int? width, out int? height, out int? hz)
{
Match match;
arg = arg.Trim();
width = null;
height = null;
hz = null;
const string regexSize = @"^(\d+)\s*[xX]\s*(\d+)$";
if (Regex.IsMatch(arg, regexSize))
{
match = Regex.Match(arg, regexSize);
width = int.Parse(match.Groups[1].Value);
height = int.Parse(match.Groups[2].Value);
return;
}
const string regexHz = @"^[r@](\d+)$";
if (Regex.IsMatch(arg, regexHz))
{
match = Regex.Match(arg, regexHz);
hz = int.Parse(match.Groups[1].Value);
return;
}
const string regexAll = @"^(\d+)\s*[xX]\s*(\d+)\s*[r@](\d+)$";
if (Regex.IsMatch(arg, regexAll))
{
match = Regex.Match(arg, regexAll);
width = int.Parse(match.Groups[1].Value);
height = int.Parse(match.Groups[2].Value);
hz = int.Parse(match.Groups[3].Value);
return;
}
}
[DllImport("kernel32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
static extern bool AttachConsole(int dwProcessId);
}
}