From afef8526096e856508c099c1199bef5837f3befa Mon Sep 17 00:00:00 2001 From: Gauvain 'GovanifY' Roussel-Tarbouriech Date: Fri, 11 Dec 2020 20:16:39 +0100 Subject: [PATCH] PAD: windows removal of callbacks, merging with linux api --- pcsx2/PAD/Windows/DeviceEnumerator.cpp | 2 +- pcsx2/PAD/Windows/DirectInput.cpp | 2 +- pcsx2/PAD/Windows/DualShock3.cpp | 2 +- pcsx2/PAD/Windows/InputManager.cpp | 2 +- pcsx2/PAD/Windows/PAD.cpp | 109 +++--------------- pcsx2/PAD/Windows/PAD.h | 54 +++++++++ pcsx2/PAD/Windows/{LilyPad.rc => PAD.rc} | 0 .../PAD/Windows/{Config.cpp => PADConfig.cpp} | 7 +- pcsx2/PAD/Windows/{Config.h => PADConfig.h} | 0 .../Windows/{RawInput.cpp => PADRawInput.cpp} | 1 + .../PAD/Windows/{RawInput.h => PADRawInput.h} | 0 pcsx2/PAD/Windows/XInputEnum.cpp | 2 +- pcsx2/windows/VCprojects/pcsx2.vcxproj | 11 +- .../windows/VCprojects/pcsx2.vcxproj.filters | 29 ++--- 14 files changed, 105 insertions(+), 116 deletions(-) create mode 100644 pcsx2/PAD/Windows/PAD.h rename pcsx2/PAD/Windows/{LilyPad.rc => PAD.rc} (100%) rename pcsx2/PAD/Windows/{Config.cpp => PADConfig.cpp} (99%) rename pcsx2/PAD/Windows/{Config.h => PADConfig.h} (100%) rename pcsx2/PAD/Windows/{RawInput.cpp => PADRawInput.cpp} (99%) rename pcsx2/PAD/Windows/{RawInput.h => PADRawInput.h} (100%) diff --git a/pcsx2/PAD/Windows/DeviceEnumerator.cpp b/pcsx2/PAD/Windows/DeviceEnumerator.cpp index 50f6b45bfa..09e222f483 100644 --- a/pcsx2/PAD/Windows/DeviceEnumerator.cpp +++ b/pcsx2/PAD/Windows/DeviceEnumerator.cpp @@ -23,7 +23,7 @@ #ifdef _WIN32 #include "WindowsMessaging.h" #include "DirectInput.h" -#include "RawInput.h" +#include "PADRawInput.h" #include "XInputEnum.h" #include "HidDevice.h" #include "DualShock3.h" diff --git a/pcsx2/PAD/Windows/DirectInput.cpp b/pcsx2/PAD/Windows/DirectInput.cpp index 1ecf7d9026..7aac4df7c3 100644 --- a/pcsx2/PAD/Windows/DirectInput.cpp +++ b/pcsx2/PAD/Windows/DirectInput.cpp @@ -20,7 +20,7 @@ #define DIRECTINPUT_VERSION 0x0800 #include #include "InputManager.h" -#include "Config.h" +#include "PADConfig.h" #include "VKey.h" #include "DirectInput.h" diff --git a/pcsx2/PAD/Windows/DualShock3.cpp b/pcsx2/PAD/Windows/DualShock3.cpp index 268f145504..50f93d8431 100644 --- a/pcsx2/PAD/Windows/DualShock3.cpp +++ b/pcsx2/PAD/Windows/DualShock3.cpp @@ -18,7 +18,7 @@ #include "PrecompiledHeader.h" #include "Global.h" #include "InputManager.h" -#include "Config.h" +#include "PADConfig.h" #include "usb.h" #include "HidDevice.h" diff --git a/pcsx2/PAD/Windows/InputManager.cpp b/pcsx2/PAD/Windows/InputManager.cpp index af127e91c7..cea576ab38 100644 --- a/pcsx2/PAD/Windows/InputManager.cpp +++ b/pcsx2/PAD/Windows/InputManager.cpp @@ -19,7 +19,7 @@ #include "Global.h" #include "InputManager.h" #include "KeyboardQueue.h" -#include "Config.h" +#include "PADConfig.h" InputDeviceManager *dm = 0; diff --git a/pcsx2/PAD/Windows/PAD.cpp b/pcsx2/PAD/Windows/PAD.cpp index 38a79614a4..59920b62e4 100644 --- a/pcsx2/PAD/Windows/PAD.cpp +++ b/pcsx2/PAD/Windows/PAD.cpp @@ -25,7 +25,8 @@ #include #include "resource.h" #include "InputManager.h" -#include "Config.h" +#include "PADConfig.h" +#include "PAD.h" #define PADdefs @@ -37,6 +38,7 @@ #include "KeyboardQueue.h" #include "svnrev.h" #include "DualShock3.h" +#include #define WMA_FORCE_UPDATE (WM_APP + 0x537) #define FORCE_UPDATE_WPARAM ((WPARAM)0x74328943) @@ -328,25 +330,6 @@ void UpdateEnabledDevices(int updateList = 0) } } -#ifdef _MSC_VER -BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD fdwReason, void *lpvReserved) -{ - hInst = hInstance; - if (fdwReason == DLL_PROCESS_ATTACH) { - InitializeCriticalSection(&updateLock); - - DisableThreadLibraryCalls(hInstance); - } else if (fdwReason == DLL_PROCESS_DETACH) { - while (openCount) - PADclose(); - PADshutdown(); - UninitLibUsb(); - DeleteCriticalSection(&updateLock); - } - return 1; -} -#endif - void AddForce(ButtonSum *sum, u8 cmd, int delta = 255) { if (!delta) @@ -705,7 +688,7 @@ void Update(unsigned int port, unsigned int slot) --stateUpdated[0]; } -void CALLBACK PADupdate(int port) +void PADupdate(int port) { Update(port + 3, 0); } @@ -715,18 +698,6 @@ inline void SetVibrate(int port, int slot, int motor, u8 val) pads[port][slot].nextVibrate[motor] = val; } -u32 CALLBACK PS2EgetLibType(void) -{ - return PS2E_LT_PAD; -} - -u32 CALLBACK PS2EgetLibVersion2(u32 type) -{ - if (type == PS2E_LT_PAD) - return (PS2E_PAD_VERSION << 16) | VERSION; - return 0; -} - #ifdef _MSC_VER // Used in about and config screens. void GetNameAndVersionString(wchar_t *out) @@ -739,24 +710,8 @@ void GetNameAndVersionString(wchar_t *out) } #endif -char *CALLBACK PS2EgetLibName(void) -{ -#if defined(PCSX2_DEBUG) - static char version[50]; - sprintf(version, "LilyPad Debug (%lld)", SVN_REV); - return version; -#else - static char version[50]; - sprintf(version, "LilyPad (%lld)", SVN_REV); - return version; -#endif -} -//void CALLBACK PADgsDriverInfo(GSdriverInfo *info) { -// info=info; -//} - -void CALLBACK PADshutdown() +void PADshutdown() { DEBUG_TEXT_OUT("LilyPad shutdown.\n\n"); for (int i = 0; i < 8; i++) @@ -826,7 +781,7 @@ struct QueryInfo u8 response[42]; } query = {0, 0, 0, 0, 0, 0xFF, {0xF3}}; -s32 CALLBACK PADinit(u32 flags) +s32 PADinit(u32 flags) { // Note: Won't load settings if already loaded. if (LoadSettings() < 0) { @@ -980,7 +935,7 @@ DWORD WINAPI MaximizeWindowThreadProc(void *lpParameter) } #endif -void CALLBACK PADconfigure() +void PADconfigure() { if (openCount) { return; @@ -1005,7 +960,7 @@ DWORD WINAPI RenameWindowThreadProc(void *lpParameter) } #endif -s32 CALLBACK PADopen(void *pDsp) +s32 PADopen(void *pDsp) { if (openCount++) return 0; @@ -1097,7 +1052,7 @@ s32 CALLBACK PADopen(void *pDsp) return 0; } -void CALLBACK PADclose() +void PADclose() { if (openCount && !--openCount) { DEBUG_TEXT_OUT("LilyPad closed\n\n"); @@ -1115,7 +1070,7 @@ void CALLBACK PADclose() } } -u8 CALLBACK PADstartPoll(int port) +u8 PADstartPoll(int port) { DEBUG_NEW_SET(); port--; @@ -1148,7 +1103,7 @@ inline int IsDualshock2(u8 port, u8 slot) (config.padConfigs[query.port][query.slot].type == GuitarPad && config.GH2); } -u8 CALLBACK PADpoll(u8 value) +u8 PADpoll(u8 value) { DEBUG_IN(value); if (query.lastByte + 1 >= query.numBytes) { @@ -1460,40 +1415,12 @@ u8 CALLBACK PADpoll(u8 value) // returns: 1 if supports pad1 // 2 if supports pad2 // 3 if both are supported -u32 CALLBACK PADquery() +u32 PADquery() { return 3; } -#ifdef _MSC_VER -INT_PTR CALLBACK AboutDialogProc(HWND hWndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam) -{ - if (uMsg == WM_INITDIALOG) { - wchar_t idString[100]; - GetNameAndVersionString(idString); - SetDlgItemTextW(hWndDlg, IDC_VERSION, idString); - } else if (uMsg == WM_COMMAND && (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL)) { - EndDialog(hWndDlg, 0); - return 1; - } - return 0; -} -#endif - - -void CALLBACK PADabout() -{ -#ifdef _MSC_VER - DialogBox(hInst, MAKEINTRESOURCE(IDD_ABOUT), 0, AboutDialogProc); -#endif -} - -s32 CALLBACK PADtest() -{ - return 0; -} - -keyEvent *CALLBACK PADkeyEvent() +keyEvent *PADkeyEvent() { // If running both pads, ignore every other call. So if two keys pressed in same interval... static char eventCount = 0; @@ -1559,7 +1486,7 @@ struct PadPluginFreezeData QueryInfo query; }; -s32 CALLBACK PADfreeze(int mode, freezeData *data) +s32 PADfreeze(int mode, freezeData *data) { if (!data) { printf("LilyPad savestate null pointer!\n"); @@ -1628,7 +1555,7 @@ s32 CALLBACK PADfreeze(int mode, freezeData *data) return 0; } -u32 CALLBACK PADreadPort1(PadDataS *pads) +u32 PADreadPort1(PadDataS *pads) { PADstartPoll(1); PADpoll(0x42); @@ -1638,7 +1565,7 @@ u32 CALLBACK PADreadPort1(PadDataS *pads) return 0; } -u32 CALLBACK PADreadPort2(PadDataS *pads) +u32 PADreadPort2(PadDataS *pads) { PADstartPoll(2); PADpoll(0x42); @@ -1648,7 +1575,7 @@ u32 CALLBACK PADreadPort2(PadDataS *pads) return 0; } -s32 CALLBACK PADqueryMtap(u8 port) +s32 PADqueryMtap(u8 port) { port--; if (port > 1) @@ -1656,7 +1583,7 @@ s32 CALLBACK PADqueryMtap(u8 port) return config.multitap[port]; } -s32 CALLBACK PADsetSlot(u8 port, u8 slot) +s32 PADsetSlot(u8 port, u8 slot) { port--; slot--; diff --git a/pcsx2/PAD/Windows/PAD.h b/pcsx2/PAD/Windows/PAD.h new file mode 100644 index 0000000000..8dcf6c1080 --- /dev/null +++ b/pcsx2/PAD/Windows/PAD.h @@ -0,0 +1,54 @@ +/* PCSX2 - PS2 Emulator for PCs + * Copyright (C) 2002-2020 PCSX2 Dev Team + * + * PCSX2 is free software: you can redistribute it and/or modify it under the terms + * of the GNU Lesser General Public License as published by the Free Software Found- + * ation, either version 3 of the License, or (at your option) any later version. + * + * PCSX2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + * PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along with PCSX2. + * If not, see . + */ + +#pragma once + +#include +#include +#include +#include +#include +#include "Utilities/pxStreams.h" +#include "Utilities/Console.h" +#include +#include +#include "PS2Edefs.h" + +#include +#include + +#include +#include +#include +#include +#include +#include +#include + + +s32 PADinit(); +void PADshutdown(); +s32 PADopen(void* pDsp); +void PADclose(); +u32 PADquery(); +s32 PADsetSlot(u8 port, u8 slot); +s32 PADfreeze(int mode, freezeData* data); +u8 PADstartPoll(int pad); +u8 PADpoll(u8 value); +keyEvent* PADkeyEvent(); +void PADupdate(int pad); +void PADconfigure(); +//void PADDoFreezeOut(void* dest); +//void PADDoFreezeIn(pxInputStream& infp); \ No newline at end of file diff --git a/pcsx2/PAD/Windows/LilyPad.rc b/pcsx2/PAD/Windows/PAD.rc similarity index 100% rename from pcsx2/PAD/Windows/LilyPad.rc rename to pcsx2/PAD/Windows/PAD.rc diff --git a/pcsx2/PAD/Windows/Config.cpp b/pcsx2/PAD/Windows/PADConfig.cpp similarity index 99% rename from pcsx2/PAD/Windows/Config.cpp rename to pcsx2/PAD/Windows/PADConfig.cpp index 510e22a92b..15052a9a07 100644 --- a/pcsx2/PAD/Windows/Config.cpp +++ b/pcsx2/PAD/Windows/PADConfig.cpp @@ -15,11 +15,12 @@ * with PCSX2. If not, see . */ +#include "PrecompiledHeader.h" #include "Global.h" #include "resource.h" #include "InputManager.h" -#include "Config.h" +#include "PADConfig.h" #include "Tooltips.h" #include "Diagnostics.h" @@ -31,7 +32,9 @@ #include // Needed to know if raw input is available. It requires XP or higher. -#include "RawInput.h" +#include "PADRawInput.h" +#include +#include //max len 24 wchar_t const wchar_t *padTypes[] = { diff --git a/pcsx2/PAD/Windows/Config.h b/pcsx2/PAD/Windows/PADConfig.h similarity index 100% rename from pcsx2/PAD/Windows/Config.h rename to pcsx2/PAD/Windows/PADConfig.h diff --git a/pcsx2/PAD/Windows/RawInput.cpp b/pcsx2/PAD/Windows/PADRawInput.cpp similarity index 99% rename from pcsx2/PAD/Windows/RawInput.cpp rename to pcsx2/PAD/Windows/PADRawInput.cpp index 71596a8bee..f0068cbd87 100644 --- a/pcsx2/PAD/Windows/RawInput.cpp +++ b/pcsx2/PAD/Windows/PADRawInput.cpp @@ -15,6 +15,7 @@ * with PCSX2. If not, see . */ +#include "PrecompiledHeader.h" #include "Global.h" #include "InputManager.h" #include "WindowsMessaging.h" diff --git a/pcsx2/PAD/Windows/RawInput.h b/pcsx2/PAD/Windows/PADRawInput.h similarity index 100% rename from pcsx2/PAD/Windows/RawInput.h rename to pcsx2/PAD/Windows/PADRawInput.h diff --git a/pcsx2/PAD/Windows/XInputEnum.cpp b/pcsx2/PAD/Windows/XInputEnum.cpp index eb787b3944..0a03d4d5a5 100644 --- a/pcsx2/PAD/Windows/XInputEnum.cpp +++ b/pcsx2/PAD/Windows/XInputEnum.cpp @@ -22,7 +22,7 @@ #include "VKey.h" #include "InputManager.h" #include "XInputEnum.h" -#include "Config.h" +#include "PADConfig.h" // Extra enum #define XINPUT_GAMEPAD_GUIDE 0x0400 diff --git a/pcsx2/windows/VCprojects/pcsx2.vcxproj b/pcsx2/windows/VCprojects/pcsx2.vcxproj index 24e62f5309..7e53b69fdf 100644 --- a/pcsx2/windows/VCprojects/pcsx2.vcxproj +++ b/pcsx2/windows/VCprojects/pcsx2.vcxproj @@ -289,7 +289,7 @@ - + @@ -299,7 +299,7 @@ - + @@ -648,7 +648,8 @@ - + + @@ -657,7 +658,7 @@ - + @@ -888,7 +889,7 @@ $(SolutionDir)3rdparty\wxwidgets3.0\$(PlatformName);$(SolutionDir)3rdparty\wxwidgets3.0\include;%(AdditionalIncludeDirectories) - + diff --git a/pcsx2/windows/VCprojects/pcsx2.vcxproj.filters b/pcsx2/windows/VCprojects/pcsx2.vcxproj.filters index 5e51208ac1..2300cc5a38 100644 --- a/pcsx2/windows/VCprojects/pcsx2.vcxproj.filters +++ b/pcsx2/windows/VCprojects/pcsx2.vcxproj.filters @@ -1211,9 +1211,6 @@ System\Ps2\USB\shared - - System\Ps2\PAD - System\Ps2\PAD @@ -1238,9 +1235,6 @@ System\Ps2\PAD - - System\Ps2\PAD - System\Ps2\PAD @@ -1265,6 +1259,12 @@ System\Ps2\PAD + + System\Ps2\PAD + + + System\Ps2\PAD + @@ -1966,9 +1966,6 @@ System\Ps2\USB\Win32 - - System\Ps2\PAD - System\Ps2\PAD @@ -1993,9 +1990,6 @@ System\Ps2\PAD - - System\Ps2\PAD - System\Ps2\PAD @@ -2023,6 +2017,15 @@ System\Ps2\PAD + + System\Ps2\PAD + + + System\Ps2\PAD + + + System\Ps2\PAD + @@ -2046,7 +2049,7 @@ System\Ps2\USB\Win32 - + System\Ps2\PAD