cemu-DS4Windows/DS4Windows/Program.cs

171 lines
6.4 KiB
C#
Raw Normal View History

using System;
using System.Windows.Forms;
using System.Threading;
using System.Runtime.InteropServices;
2018-07-26 09:42:28 +02:00
using Process = System.Diagnostics.Process;
using System.ComponentModel;
using System.Globalization;
using System.Runtime;
using Microsoft.Win32.TaskScheduler;
namespace DS4Windows
{
static class Program
{
// Add "global\" in front of the EventName, then only one instance is allowed on the
// whole system, including other users. But the application can not be brought
// into view, of course.
2017-07-03 17:31:58 +02:00
private static string SingleAppComEventName = "{a52b5b20-d9ee-4f32-8518-307fa14aa0c6}";
private static EventWaitHandle threadComEvent = null;
2017-07-03 17:31:58 +02:00
private static bool exitComThread = false;
public static ControlService rootHub;
2017-09-06 04:28:54 +02:00
private static Thread testThread;
2017-09-08 08:29:35 +02:00
private static Thread controlThread;
private static DS4Form ds4form;
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
//Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo("ja");
for (int i = 0, argsLen = args.Length; i < argsLen; i++)
{
string s = args[i];
if (s == "driverinstall" || s == "-driverinstall")
{
Application.EnableVisualStyles();
Application.Run(new WelcomeDialog(true));
return;
}
else if (s == "re-enabledevice" || s == "-re-enabledevice")
{
try
{
i++;
string deviceInstanceId = args[i];
DS4Devices.reEnableDevice(deviceInstanceId);
Environment.ExitCode = 0;
return;
}
catch (Exception)
{
Environment.ExitCode = Marshal.GetLastWin32Error();
return;
}
}
else if (s == "runtask" || s == "-runtask")
{
TaskService ts = new TaskService();
Task tasker = ts.FindTask("RunDS4Windows");
if (tasker != null)
{
tasker.Run("");
}
Environment.ExitCode = 0;
return;
}
}
2017-06-20 06:37:08 +02:00
GCSettings.LatencyMode = GCLatencyMode.LowLatency;
2017-04-21 05:09:08 +02:00
try
{
2018-07-26 09:42:28 +02:00
Process.GetCurrentProcess().PriorityClass =
System.Diagnostics.ProcessPriorityClass.High;
}
2018-07-26 09:42:28 +02:00
catch { } // Ignore problems raising the priority.
2017-04-21 05:09:08 +02:00
try
{
// another instance is already running if OpenExsting succeeds.
2018-07-26 10:23:38 +02:00
threadComEvent = EventWaitHandle.OpenExisting(SingleAppComEventName,
System.Security.AccessControl.EventWaitHandleRights.Synchronize |
System.Security.AccessControl.EventWaitHandleRights.Modify);
threadComEvent.Set(); // signal the other instance.
threadComEvent.Close();
return; // return immediatly.
}
2018-07-26 09:42:28 +02:00
catch { /* don't care about errors */ }
2017-04-21 05:09:08 +02:00
// Create the Event handle
2017-07-03 17:31:58 +02:00
threadComEvent = new EventWaitHandle(false, EventResetMode.ManualReset, SingleAppComEventName);
2017-09-06 04:28:54 +02:00
//System.Threading.Tasks.Task.Run(() => CreateTempWorkerThread());
//CreateInterAppComThread();
CreateTempWorkerThread();
//System.Threading.Tasks.Task.Run(() => { Thread.CurrentThread.Priority = ThreadPriority.Lowest; CreateInterAppComThread(); Thread.CurrentThread.Priority = ThreadPriority.Lowest; }).Wait();
2017-07-03 10:24:54 +02:00
//if (mutex.WaitOne(TimeSpan.Zero, true))
//{
createControlService();
//rootHub = new ControlService();
Application.EnableVisualStyles();
ds4form = new DS4Form(args);
Application.Run(ds4form);
2017-07-03 17:31:58 +02:00
//mutex.ReleaseMutex();
2017-07-03 10:24:54 +02:00
//}
2017-07-03 17:31:58 +02:00
exitComThread = true;
threadComEvent.Set(); // signal the other instance.
while (testThread.IsAlive)
Thread.SpinWait(500);
threadComEvent.Close();
}
private static void createControlService()
{
2017-09-08 08:29:35 +02:00
controlThread = new Thread(() => { rootHub = new ControlService(); });
controlThread.Priority = ThreadPriority.Normal;
controlThread.IsBackground = true;
controlThread.Start();
while (controlThread.IsAlive)
Thread.SpinWait(500);
}
2017-09-06 04:28:54 +02:00
private static void CreateTempWorkerThread()
{
testThread = new Thread(SingleAppComThread_DoWork);
2017-09-06 04:28:54 +02:00
testThread.Priority = ThreadPriority.Lowest;
testThread.IsBackground = true;
testThread.Start();
}
private static void SingleAppComThread_DoWork()
{
2017-07-03 17:31:58 +02:00
while (!exitComThread)
{
// check for a signal.
2018-07-26 08:10:53 +02:00
if (threadComEvent.WaitOne())
{
2017-07-03 17:31:58 +02:00
threadComEvent.Reset();
// The user tried to start another instance. We can't allow that,
// so bring the other instance back into view and enable that one.
// That form is created in another thread, so we need some thread sync magic.
if (!exitComThread)
{
ds4form?.Invoke(new SetFormVisableDelegate(ThreadFormVisable), ds4form);
}
}
}
}
/// <summary>
/// When this method is called using a Invoke then this runs in the thread
/// that created the form, which is nice.
/// </summary>
/// <param name="frm"></param>
private delegate void SetFormVisableDelegate(Form frm);
private static void ThreadFormVisable(Form frm)
{
if (frm is DS4Form)
{
// display the form and bring to foreground.
DS4Form temp = (DS4Form)frm;
temp.Show();
temp.WindowState = FormWindowState.Normal;
}
}
}
}