mirror of
https://github.com/vrcx-team/VRCX.git
synced 2026-04-06 00:32:02 +02:00
* refactor: merge two overlay offScreenBrowser into one * Electron support for shared overlay * Separate overlay into its own process * fix: invalid overlay texture size * Handle duplicate processes * Remove logging --------- Co-authored-by: pa <maplenagisa@gmail.com> Co-authored-by: rs189 <35667100+rs189@users.noreply.github.com>
186 lines
7.3 KiB
C#
186 lines
7.3 KiB
C#
using System;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.IO.Pipes;
|
|
using System.Linq;
|
|
using System.Management;
|
|
using System.Text;
|
|
using System.Text.Json;
|
|
using System.Threading;
|
|
|
|
#if !LINUX
|
|
using System.Windows.Forms;
|
|
using CefSharp.Internals;
|
|
#endif
|
|
|
|
namespace VRCX
|
|
{
|
|
internal class StartupArgs
|
|
{
|
|
private const string SubProcessTypeArgument = "--type";
|
|
public static VrcxLaunchArguments LaunchArguments = new();
|
|
public static string[] Args;
|
|
|
|
public static void ArgsCheck(string[] args)
|
|
{
|
|
Args = args;
|
|
Debug.Assert(Program.LaunchDebug = true);
|
|
|
|
LaunchArguments = ParseArgs(args);
|
|
|
|
if (LaunchArguments.IsDebug)
|
|
Program.LaunchDebug = true;
|
|
|
|
if (LaunchArguments.ConfigDirectory != null)
|
|
{
|
|
if (File.Exists(LaunchArguments.ConfigDirectory))
|
|
{
|
|
var message =
|
|
"Move your \"VRCX.sqlite3\" into a folder then specify the folder in the launch parameter e.g.\n--config=\"C:\\VRCX\\\"";
|
|
#if !LINUX
|
|
MessageBox.Show(message, "--config is now a directory", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
#endif
|
|
Console.WriteLine(message);
|
|
Environment.Exit(0);
|
|
}
|
|
|
|
Program.AppDataDirectory = LaunchArguments.ConfigDirectory;
|
|
}
|
|
|
|
#if !LINUX
|
|
var disableClosing = LaunchArguments.IsUpgrade || // we're upgrading, allow it
|
|
!string.IsNullOrEmpty(CommandLineArgsParser.GetArgumentValue(args, CefSharpArguments.SubProcessTypeArgument)); // we're launching a subprocess, allow it
|
|
|
|
// if we're launching a second instance with same config directory, focus the first instance then exit
|
|
if (!disableClosing && IsDuplicateProcessRunning(LaunchArguments))
|
|
{
|
|
IPCToMain();
|
|
Thread.Sleep(10);
|
|
Environment.Exit(0);
|
|
}
|
|
#endif
|
|
}
|
|
|
|
private static VrcxLaunchArguments ParseArgs(string[] args)
|
|
{
|
|
var arguments = new VrcxLaunchArguments();
|
|
foreach (var arg in args)
|
|
{
|
|
if (arg == VrcxLaunchArguments.IsStartupPrefix)
|
|
arguments.IsStartup = true;
|
|
|
|
if (arg == VrcxLaunchArguments.IsUpgradePrefix)
|
|
arguments.IsUpgrade = true;
|
|
|
|
if (arg.StartsWith(VrcxLaunchArguments.IsDebugPrefix))
|
|
arguments.IsDebug = true;
|
|
|
|
if (arg == VrcxLaunchArguments.Overlay)
|
|
arguments.IsOverlay = true;
|
|
|
|
if (arg.StartsWith(VrcxLaunchArguments.LaunchCommandPrefix) && arg.Length > VrcxLaunchArguments.LaunchCommandPrefix.Length)
|
|
arguments.LaunchCommand = arg.Substring(VrcxLaunchArguments.LaunchCommandPrefix.Length);
|
|
|
|
if (arg.StartsWith(VrcxLaunchArguments.LinuxLaunchCommandPrefix) && arg.Length > VrcxLaunchArguments.LinuxLaunchCommandPrefix.Length)
|
|
arguments.LaunchCommand = arg.Substring(VrcxLaunchArguments.LinuxLaunchCommandPrefix.Length);
|
|
|
|
if (arg.StartsWith(VrcxLaunchArguments.ConfigDirectoryPrefix) && arg.Length > VrcxLaunchArguments.ConfigDirectoryPrefix.Length)
|
|
arguments.ConfigDirectory = arg.Substring(VrcxLaunchArguments.ConfigDirectoryPrefix.Length + 1);
|
|
|
|
if (arg.StartsWith(VrcxLaunchArguments.ProxyUrlPrefix) && arg.Length > VrcxLaunchArguments.ProxyUrlPrefix.Length)
|
|
arguments.ProxyUrl = arg.Substring(VrcxLaunchArguments.ProxyUrlPrefix.Length + 1).Replace("'", string.Empty).Replace("\"", string.Empty);
|
|
}
|
|
return arguments;
|
|
}
|
|
|
|
internal class VrcxLaunchArguments
|
|
{
|
|
public const string IsStartupPrefix = "--startup";
|
|
public bool IsStartup { get; set; } = false;
|
|
|
|
public const string IsUpgradePrefix = "/Upgrade";
|
|
public bool IsUpgrade { get; set; } = false;
|
|
|
|
public const string IsDebugPrefix = "--debug";
|
|
public bool IsDebug { get; set; } = false;
|
|
|
|
public const string Overlay = "--overlay";
|
|
public bool IsOverlay { get; set; } = false;
|
|
|
|
public const string LaunchCommandPrefix = "/uri=vrcx://";
|
|
public const string LinuxLaunchCommandPrefix = "vrcx://";
|
|
public string LaunchCommand { get; set; } = null;
|
|
|
|
public const string ConfigDirectoryPrefix = "--config";
|
|
public string ConfigDirectory { get; set; } = null;
|
|
|
|
public const string ProxyUrlPrefix = "--proxy-server";
|
|
public string ProxyUrl { get; set; } = null;
|
|
}
|
|
|
|
private static bool IsDuplicateProcessRunning(VrcxLaunchArguments launchArguments)
|
|
{
|
|
var processes = Process.GetProcessesByName("VRCX");
|
|
var isDuplicateProcessRunning = false;
|
|
foreach (var process in processes)
|
|
{
|
|
if (process.Id == Environment.ProcessId)
|
|
continue;
|
|
|
|
var commandLine = string.Empty;
|
|
try
|
|
{
|
|
using var searcher = new ManagementObjectSearcher("SELECT CommandLine FROM Win32_Process WHERE ProcessId = " + process.Id);
|
|
using var objects = searcher.Get();
|
|
commandLine =
|
|
objects.Cast<ManagementBaseObject>().SingleOrDefault()?["CommandLine"]?.ToString() ??
|
|
string.Empty;
|
|
}
|
|
catch
|
|
{
|
|
// ignored
|
|
}
|
|
|
|
if (commandLine.Contains(SubProcessTypeArgument)) // ignore subprocesses
|
|
continue;
|
|
|
|
if (launchArguments.IsOverlay)
|
|
{
|
|
if (commandLine.Contains(VrcxLaunchArguments.Overlay))
|
|
{
|
|
Console.WriteLine(@"Another overlay instance is already running. Exiting this instance.");
|
|
Environment.Exit(0);
|
|
}
|
|
continue; // we are an overlay, ignore non-overlay instances
|
|
}
|
|
|
|
if (commandLine.Contains(VrcxLaunchArguments.Overlay))
|
|
continue; // we aren't an overlay, ignore overlay instances
|
|
|
|
var processArguments = ParseArgs(commandLine.Split(' '));
|
|
if (processArguments.ConfigDirectory == launchArguments.ConfigDirectory)
|
|
{
|
|
isDuplicateProcessRunning = true;
|
|
break;
|
|
}
|
|
}
|
|
foreach (var process in processes)
|
|
process.Dispose();
|
|
|
|
return isDuplicateProcessRunning;
|
|
}
|
|
|
|
private static void IPCToMain()
|
|
{
|
|
new IPCServer().CreateIPCServer();
|
|
var ipcClient = new NamedPipeClientStream(".", IPCServer.GetIpcName(), PipeDirection.InOut);
|
|
ipcClient.Connect();
|
|
|
|
if (ipcClient.IsConnected)
|
|
{
|
|
var buffer = Encoding.UTF8.GetBytes($"{{\"type\":\"LaunchCommand\",\"command\":\"{LaunchArguments.LaunchCommand}\"}}" + (char)0x00);
|
|
ipcClient.BeginWrite(buffer, 0, buffer.Length, IPCClient.Close, ipcClient);
|
|
}
|
|
}
|
|
}
|
|
} |