2014-03-28 02:50:40 +01:00
using System ;
using System.Windows.Forms ;
Rest of DS4Windows has been upped to .NET 4.5 (If you have .net 4/already can run DS4Windows, this won't affect you), thanks to this update, you can now...
Add delay to macros from one millisecond to 60 seconds, macros with delays only run once until pressed again. Without delays, the macro can be repeated while held down.
Profiles and settings are now back inside the application folder to help portability. It will remain in appdata as previous versions if DS4Windows is in a admin folder, I may try to add a setting for location saving.
Import profile option will automatically go to the appdata profile folder, auto profiles and settings will automatically copy over.
Option to delete the appdata folder if not in use in the settings tab, this way it helps with cleanup.
Another fix for auto profiles startup bug
Better reading of autoprofile program path names
Now only one instance of DS4Windows is possible, if another DS4Tool or DS4Windows that is not this version is started, this DS4Windows comes back into focus.
UI fixes
2014-06-10 21:45:09 +02:00
using System.Threading ;
using System.Runtime.InteropServices ;
2018-07-26 09:42:28 +02:00
using Process = System . Diagnostics . Process ;
2014-11-18 22:23:41 +01:00
using System.ComponentModel ;
2015-11-28 06:47:26 +01:00
using System.Globalization ;
2017-04-20 07:54:09 +02:00
using Microsoft.Win32.TaskScheduler ;
2019-07-02 23:02:29 +02:00
using System.IO.MemoryMappedFiles ;
using System.Text ;
Rest of DS4Windows has been upped to .NET 4.5 (If you have .net 4/already can run DS4Windows, this won't affect you), thanks to this update, you can now...
Add delay to macros from one millisecond to 60 seconds, macros with delays only run once until pressed again. Without delays, the macro can be repeated while held down.
Profiles and settings are now back inside the application folder to help portability. It will remain in appdata as previous versions if DS4Windows is in a admin folder, I may try to add a setting for location saving.
Import profile option will automatically go to the appdata profile folder, auto profiles and settings will automatically copy over.
Option to delete the appdata folder if not in use in the settings tab, this way it helps with cleanup.
Another fix for auto profiles startup bug
Better reading of autoprofile program path names
Now only one instance of DS4Windows is possible, if another DS4Tool or DS4Windows that is not this version is started, this DS4Windows comes back into focus.
UI fixes
2014-06-10 21:45:09 +02:00
2014-11-18 22:23:41 +01:00
namespace DS4Windows
2014-03-28 02:50:40 +01:00
{
Rest of DS4Windows has been upped to .NET 4.5 (If you have .net 4/already can run DS4Windows, this won't affect you), thanks to this update, you can now...
Add delay to macros from one millisecond to 60 seconds, macros with delays only run once until pressed again. Without delays, the macro can be repeated while held down.
Profiles and settings are now back inside the application folder to help portability. It will remain in appdata as previous versions if DS4Windows is in a admin folder, I may try to add a setting for location saving.
Import profile option will automatically go to the appdata profile folder, auto profiles and settings will automatically copy over.
Option to delete the appdata folder if not in use in the settings tab, this way it helps with cleanup.
Another fix for auto profiles startup bug
Better reading of autoprofile program path names
Now only one instance of DS4Windows is possible, if another DS4Tool or DS4Windows that is not this version is started, this DS4Windows comes back into focus.
UI fixes
2014-06-10 21:45:09 +02:00
static class Program
2014-03-28 02:50:40 +01:00
{
2019-07-02 23:02:29 +02:00
[DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)]
private static extern int GetClassName ( IntPtr hWnd , StringBuilder lpClassName , int nMaxCount ) ;
2019-07-01 01:45:55 +02:00
[DllImport("user32.dll", EntryPoint = "FindWindow")]
private static extern IntPtr FindWindow ( string sClass , string sWindow ) ;
[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = false)]
2019-07-01 12:34:36 +02:00
private static extern IntPtr SendMessage ( IntPtr hWnd , uint Msg , IntPtr wParam , ref COPYDATASTRUCT lParam ) ;
2019-07-01 01:45:55 +02:00
[StructLayout(LayoutKind.Sequential)]
public struct COPYDATASTRUCT
{
public IntPtr dwData ;
public int cbData ;
public IntPtr lpData ;
}
2014-11-18 22:23:41 +01:00
// 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}" ;
2014-11-18 22:23:41 +01:00
private static EventWaitHandle threadComEvent = null ;
2017-07-03 17:31:58 +02:00
private static bool exitComThread = false ;
2015-02-08 22:51:52 +01:00
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 ;
2019-11-01 03:50:19 +01:00
private static System . Threading . Timer collectTimer ;
2019-01-16 21:12:28 +01:00
private static Form ds4form ;
Rest of DS4Windows has been upped to .NET 4.5 (If you have .net 4/already can run DS4Windows, this won't affect you), thanks to this update, you can now...
Add delay to macros from one millisecond to 60 seconds, macros with delays only run once until pressed again. Without delays, the macro can be repeated while held down.
Profiles and settings are now back inside the application folder to help portability. It will remain in appdata as previous versions if DS4Windows is in a admin folder, I may try to add a setting for location saving.
Import profile option will automatically go to the appdata profile folder, auto profiles and settings will automatically copy over.
Option to delete the appdata folder if not in use in the settings tab, this way it helps with cleanup.
Another fix for auto profiles startup bug
Better reading of autoprofile program path names
Now only one instance of DS4Windows is possible, if another DS4Tool or DS4Windows that is not this version is started, this DS4Windows comes back into focus.
UI fixes
2014-06-10 21:45:09 +02:00
2019-07-02 23:02:29 +02:00
private static MemoryMappedFile ipcClassNameMMF = null ; // MemoryMappedFile for inter-process communication used to hold className of DS4Form window
private static MemoryMappedViewAccessor ipcClassNameMMA = null ;
2014-03-28 02:50:40 +01:00
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
2014-11-18 22:23:41 +01:00
static void Main ( string [ ] args )
2014-03-28 02:50:40 +01:00
{
2017-10-06 09:29:57 +02:00
//Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo("ja");
2017-04-20 07:54:09 +02:00
for ( int i = 0 , argsLen = args . Length ; i < argsLen ; i + + )
2014-12-02 01:07:29 +01:00
{
Version 1.4.5
Added support for the New DS4 USB Adapater (Thanks to boganhobo and
Chamilsaan)
Implemented teokp's amazing fix for hide ds4 not working on the
anniversary update of Windows 10: when a controller fails to enter
exclusive mode, DS4Windows will ask for admin privilages to fix the
issue.
Now (near)unlimited Special Actions can be made from the previous limit
of 50
Special Action Xbox Game DVR is now no longer limited to Windows 10,
renamed multi action button: Assign a macro to single tap, double tap,
and holding down a button
Added option for White DS4Windows Icon in the notification tray (While
not merged from, thanks to tehmantra)
Added option to temporarily turn off DS4Windows when using a certain
program (togglable in the Auto Profiles Tab) (Same case as above but
thanks to dedChar to bring to light)
Fixed Options crashes in certain locales where decimal points are
repesented with commas, such as German (Thanks to kiliansch)
Added/Updated translations for many languauges, now including Japanese,
Slovenian, Hungarian, Greek, Finnish, Czech, Indonesian, and Ukrainian
2016-09-22 03:38:38 +02:00
string s = args [ i ] ;
2014-12-13 21:12:03 +01:00
if ( s = = "driverinstall" | | s = = "-driverinstall" )
2014-12-02 01:07:29 +01:00
{
Application . EnableVisualStyles ( ) ;
2019-04-30 21:29:50 +02:00
Application . Run ( new Forms . WelcomeDialog ( true ) ) ;
2014-12-02 01:07:29 +01:00
return ;
}
Version 1.4.5
Added support for the New DS4 USB Adapater (Thanks to boganhobo and
Chamilsaan)
Implemented teokp's amazing fix for hide ds4 not working on the
anniversary update of Windows 10: when a controller fails to enter
exclusive mode, DS4Windows will ask for admin privilages to fix the
issue.
Now (near)unlimited Special Actions can be made from the previous limit
of 50
Special Action Xbox Game DVR is now no longer limited to Windows 10,
renamed multi action button: Assign a macro to single tap, double tap,
and holding down a button
Added option for White DS4Windows Icon in the notification tray (While
not merged from, thanks to tehmantra)
Added option to temporarily turn off DS4Windows when using a certain
program (togglable in the Auto Profiles Tab) (Same case as above but
thanks to dedChar to bring to light)
Fixed Options crashes in certain locales where decimal points are
repesented with commas, such as German (Thanks to kiliansch)
Added/Updated translations for many languauges, now including Japanese,
Slovenian, Hungarian, Greek, Finnish, Czech, Indonesian, and Ukrainian
2016-09-22 03:38:38 +02:00
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 ;
}
}
2017-04-20 07:54:09 +02:00
else if ( s = = "runtask" | | s = = "-runtask" )
{
TaskService ts = new TaskService ( ) ;
Task tasker = ts . FindTask ( "RunDS4Windows" ) ;
if ( tasker ! = null )
{
tasker . Run ( "" ) ;
}
Environment . ExitCode = 0 ;
return ;
}
2019-07-01 01:45:55 +02:00
else if ( s = = "command" | | s = = "-command" )
{
i + + ;
IntPtr hWndDS4WindowsForm = IntPtr . Zero ;
2019-07-02 23:02:29 +02:00
if ( args [ i ] . Length > 0 & & args [ i ] . Length < = 256 )
2019-07-01 01:45:55 +02:00
{
2019-07-01 12:34:36 +02:00
// Find the main DS4Form window handle and post WM_COPYDATA inter-process message. IPCClasName.dat file was created by the main DS4Windows process
// and it contains the name of the DS4Form .NET window class name string (the hash key part of the string is dynamically generated by .NET engine and it may change,
// so that's why the main process re-creates the file if the window class name is changed by .NET framework). Finding the WND handle usig both class name and window name
// limits chances that WM_COPYDATA message is sent to a wrong window.
2019-07-02 23:02:29 +02:00
hWndDS4WindowsForm = FindWindow ( ReadIPCClassNameMMF ( ) , "DS4Windows" ) ;
2019-07-01 01:45:55 +02:00
if ( hWndDS4WindowsForm ! = IntPtr . Zero )
{
COPYDATASTRUCT cds ;
cds . lpData = IntPtr . Zero ;
try
{
cds . dwData = IntPtr . Zero ;
cds . cbData = args [ i ] . Length ;
cds . lpData = Marshal . StringToHGlobalAnsi ( args [ i ] ) ;
2019-07-01 12:34:36 +02:00
SendMessage ( hWndDS4WindowsForm , Forms . DS4Form . WM_COPYDATA , IntPtr . Zero , ref cds ) ;
2019-07-01 01:45:55 +02:00
}
finally
{
if ( cds . lpData ! = IntPtr . Zero )
Marshal . FreeHGlobal ( cds . lpData ) ;
}
}
else
{
Environment . ExitCode = 2 ;
}
}
else
{
Environment . ExitCode = 1 ;
}
return ;
}
2014-12-02 01:07:29 +01:00
}
2017-06-20 06:37:08 +02:00
2014-03-29 06:29:08 +01:00
try
{
2018-07-26 09:42:28 +02:00
Process . GetCurrentProcess ( ) . PriorityClass =
System . Diagnostics . ProcessPriorityClass . High ;
2014-03-29 06:29:08 +01:00
}
2018-07-26 09:42:28 +02:00
catch { } // Ignore problems raising the priority.
2017-04-21 05:09:08 +02:00
2019-03-12 22:34:24 +01:00
// Force Normal IO Priority
IntPtr ioPrio = new IntPtr ( 2 ) ;
Util . NtSetInformationProcess ( Process . GetCurrentProcess ( ) . Handle ,
Util . PROCESS_INFORMATION_CLASS . ProcessIoPriority , ref ioPrio , 4 ) ;
// Force Normal Page Priority
IntPtr pagePrio = new IntPtr ( 5 ) ;
Util . NtSetInformationProcess ( Process . GetCurrentProcess ( ) . Handle ,
Util . PROCESS_INFORMATION_CLASS . ProcessPagePriority , ref pagePrio , 4 ) ;
2014-11-18 22:23:41 +01: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 ) ;
2014-11-18 22:23:41 +01:00
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
2014-11-18 22:23:41 +01: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();
Version 1.4.5
Added support for the New DS4 USB Adapater (Thanks to boganhobo and
Chamilsaan)
Implemented teokp's amazing fix for hide ds4 not working on the
anniversary update of Windows 10: when a controller fails to enter
exclusive mode, DS4Windows will ask for admin privilages to fix the
issue.
Now (near)unlimited Special Actions can be made from the previous limit
of 50
Special Action Xbox Game DVR is now no longer limited to Windows 10,
renamed multi action button: Assign a macro to single tap, double tap,
and holding down a button
Added option for White DS4Windows Icon in the notification tray (While
not merged from, thanks to tehmantra)
Added option to temporarily turn off DS4Windows when using a certain
program (togglable in the Auto Profiles Tab) (Same case as above but
thanks to dedChar to bring to light)
Fixed Options crashes in certain locales where decimal points are
repesented with commas, such as German (Thanks to kiliansch)
Added/Updated translations for many languauges, now including Japanese,
Slovenian, Hungarian, Greek, Finnish, Czech, Indonesian, and Ukrainian
2016-09-22 03:38:38 +02:00
2017-07-03 10:24:54 +02:00
//if (mutex.WaitOne(TimeSpan.Zero, true))
//{
2019-01-02 20:44:15 +01:00
createControlService ( ) ;
2017-09-08 05:37:56 +02:00
//rootHub = new ControlService();
2014-11-18 22:23:41 +01:00
Application . EnableVisualStyles ( ) ;
2019-04-30 21:29:50 +02:00
ds4form = new Forms . DS4Form ( args ) ;
2018-11-17 15:57:18 +01:00
Application . Run ( ) ;
2017-07-03 17:31:58 +02:00
//mutex.ReleaseMutex();
2017-07-03 10:24:54 +02:00
//}
2014-11-18 22:23:41 +01:00
2017-07-03 17:31:58 +02:00
exitComThread = true ;
threadComEvent . Set ( ) ; // signal the other instance.
2017-09-06 12:21:03 +02:00
while ( testThread . IsAlive )
Thread . SpinWait ( 500 ) ;
2014-11-18 22:23:41 +01:00
threadComEvent . Close ( ) ;
2019-07-02 23:02:29 +02:00
if ( ipcClassNameMMA ! = null ) ipcClassNameMMA . Dispose ( ) ;
if ( ipcClassNameMMF ! = null ) ipcClassNameMMF . Dispose ( ) ;
2014-11-18 22:23:41 +01:00
}
2017-09-08 05:37:56 +02:00
private static void createControlService ( )
{
2019-11-01 03:50:19 +01:00
controlThread = new Thread ( ( ) = > {
rootHub = new ControlService ( ) ;
collectTimer = new System . Threading . Timer ( GarbageTask , null , 30000 , 30000 ) ;
} ) ;
2017-09-08 08:29:35 +02:00
controlThread . Priority = ThreadPriority . Normal ;
controlThread . IsBackground = true ;
controlThread . Start ( ) ;
while ( controlThread . IsAlive )
2017-09-08 05:37:56 +02:00
Thread . SpinWait ( 500 ) ;
}
2019-11-01 03:50:19 +01:00
private static void GarbageTask ( object state )
{
GC . Collect ( 0 , GCCollectionMode . Forced , false ) ;
}
2017-09-06 04:28:54 +02:00
private static void CreateTempWorkerThread ( )
{
2018-07-26 09:14:07 +02:00
testThread = new Thread ( SingleAppComThread_DoWork ) ;
2017-09-06 04:28:54 +02:00
testThread . Priority = ThreadPriority . Lowest ;
testThread . IsBackground = true ;
testThread . Start ( ) ;
}
2018-07-26 09:14:07 +02:00
private static void SingleAppComThread_DoWork ( )
2014-11-18 22:23:41 +01:00
{
2017-07-03 17:31:58 +02:00
while ( ! exitComThread )
Rest of DS4Windows has been upped to .NET 4.5 (If you have .net 4/already can run DS4Windows, this won't affect you), thanks to this update, you can now...
Add delay to macros from one millisecond to 60 seconds, macros with delays only run once until pressed again. Without delays, the macro can be repeated while held down.
Profiles and settings are now back inside the application folder to help portability. It will remain in appdata as previous versions if DS4Windows is in a admin folder, I may try to add a setting for location saving.
Import profile option will automatically go to the appdata profile folder, auto profiles and settings will automatically copy over.
Option to delete the appdata folder if not in use in the settings tab, this way it helps with cleanup.
Another fix for auto profiles startup bug
Better reading of autoprofile program path names
Now only one instance of DS4Windows is possible, if another DS4Tool or DS4Windows that is not this version is started, this DS4Windows comes back into focus.
UI fixes
2014-06-10 21:45:09 +02:00
{
2018-07-26 09:14:07 +02:00
// check for a signal.
2018-07-26 08:10:53 +02:00
if ( threadComEvent . WaitOne ( ) )
Rest of DS4Windows has been upped to .NET 4.5 (If you have .net 4/already can run DS4Windows, this won't affect you), thanks to this update, you can now...
Add delay to macros from one millisecond to 60 seconds, macros with delays only run once until pressed again. Without delays, the macro can be repeated while held down.
Profiles and settings are now back inside the application folder to help portability. It will remain in appdata as previous versions if DS4Windows is in a admin folder, I may try to add a setting for location saving.
Import profile option will automatically go to the appdata profile folder, auto profiles and settings will automatically copy over.
Option to delete the appdata folder if not in use in the settings tab, this way it helps with cleanup.
Another fix for auto profiles startup bug
Better reading of autoprofile program path names
Now only one instance of DS4Windows is possible, if another DS4Tool or DS4Windows that is not this version is started, this DS4Windows comes back into focus.
UI fixes
2014-06-10 21:45:09 +02:00
{
2017-07-03 17:31:58 +02:00
threadComEvent . Reset ( ) ;
2014-11-18 22:23:41 +01:00
// 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.
2018-07-26 09:14:07 +02:00
if ( ! exitComThread )
2014-11-18 22:23:41 +01:00
{
2018-07-26 09:14:07 +02:00
ds4form ? . Invoke ( new SetFormVisableDelegate ( ThreadFormVisable ) , ds4form ) ;
2014-11-18 22:23:41 +01:00
}
}
}
}
/// <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 ) ;
2018-11-09 12:23:42 +01:00
private static void ThreadFormVisable ( Form frm )
2014-11-18 22:23:41 +01:00
{
2019-04-30 21:29:50 +02:00
if ( frm is Forms . DS4Form )
2014-11-18 22:23:41 +01:00
{
2018-07-26 09:14:07 +02:00
// display the form and bring to foreground.
2019-04-30 21:29:50 +02:00
Forms . DS4Form temp = ( Forms . DS4Form ) frm ;
2018-11-09 12:23:42 +01:00
temp . Show ( ) ;
temp . WindowState = FormWindowState . Normal ;
Rest of DS4Windows has been upped to .NET 4.5 (If you have .net 4/already can run DS4Windows, this won't affect you), thanks to this update, you can now...
Add delay to macros from one millisecond to 60 seconds, macros with delays only run once until pressed again. Without delays, the macro can be repeated while held down.
Profiles and settings are now back inside the application folder to help portability. It will remain in appdata as previous versions if DS4Windows is in a admin folder, I may try to add a setting for location saving.
Import profile option will automatically go to the appdata profile folder, auto profiles and settings will automatically copy over.
Option to delete the appdata folder if not in use in the settings tab, this way it helps with cleanup.
Another fix for auto profiles startup bug
Better reading of autoprofile program path names
Now only one instance of DS4Windows is possible, if another DS4Tool or DS4Windows that is not this version is started, this DS4Windows comes back into focus.
UI fixes
2014-06-10 21:45:09 +02:00
}
2014-03-28 02:50:40 +01:00
}
2019-07-02 23:02:29 +02:00
public static void CreateIPCClassNameMMF ( IntPtr hWnd )
{
if ( ipcClassNameMMA ! = null ) return ; // Already holding a handle to MMF file. No need to re-write the data
try
{
StringBuilder wndClassNameStr = new StringBuilder ( 128 ) ;
if ( GetClassName ( hWnd , wndClassNameStr , wndClassNameStr . Capacity ) ! = 0 & & wndClassNameStr . Length > 0 )
{
byte [ ] buffer = ASCIIEncoding . ASCII . GetBytes ( wndClassNameStr . ToString ( ) ) ;
ipcClassNameMMF = MemoryMappedFile . CreateNew ( "DS4Windows_IPCClassName.dat" , 128 ) ;
ipcClassNameMMA = ipcClassNameMMF . CreateViewAccessor ( 0 , buffer . Length ) ;
ipcClassNameMMA . WriteArray ( 0 , buffer , 0 , buffer . Length ) ;
// The MMF file is alive as long this process holds the file handle open
}
}
catch ( Exception )
{
/* Eat all exceptions because errors here are not fatal for DS4Win */
}
}
private static string ReadIPCClassNameMMF ( )
{
MemoryMappedFile mmf = null ;
MemoryMappedViewAccessor mma = null ;
try
{
byte [ ] buffer = new byte [ 128 ] ;
mmf = MemoryMappedFile . OpenExisting ( "DS4Windows_IPCClassName.dat" ) ;
mma = mmf . CreateViewAccessor ( 0 , 128 ) ;
mma . ReadArray ( 0 , buffer , 0 , buffer . Length ) ;
return ASCIIEncoding . ASCII . GetString ( buffer ) ;
}
catch ( Exception )
{
// Eat all exceptions
}
finally
{
if ( mma ! = null ) mma . Dispose ( ) ;
if ( mmf ! = null ) mmf . Dispose ( ) ;
}
return null ;
}
2014-03-28 02:50:40 +01:00
}
2014-11-18 22:23:41 +01:00
}