2008-12-08 05:25:12 +00:00
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Project description
|
2008-12-27 11:32:03 +00:00
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
2009-01-15 06:48:15 +00:00
|
|
|
|
// Name: nJoy
|
2008-12-08 05:25:12 +00:00
|
|
|
|
// Description: A Dolphin Compatible Input Plugin
|
|
|
|
|
//
|
|
|
|
|
// Author: Falcon4ever (nJoy@falcon4ever.com)
|
|
|
|
|
// Site: www.multigesture.net
|
|
|
|
|
// Copyright (C) 2003-2008 Dolphin Project.
|
|
|
|
|
//
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// Licensetype: GNU General Public License (GPL)
|
|
|
|
|
//
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
|
// the Free Software Foundation, version 2.0.
|
|
|
|
|
//
|
|
|
|
|
// This program 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 2.0 for more details.
|
|
|
|
|
//
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
//
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
//
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2009-01-15 06:48:15 +00:00
|
|
|
|
|
2008-12-27 11:32:03 +00:00
|
|
|
|
|
2008-12-28 18:50:24 +00:00
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Issues
|
|
|
|
|
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
|
|
|
|
|
The StrangeHack in ConfigAdvanced.cpp doesn't work in Linux, it still wont resize the
|
|
|
|
|
window correctly. So currently in Linux you have to have advanced controls enabled when
|
|
|
|
|
you open the window to see them.
|
|
|
|
|
|
|
|
|
|
////////////////////////*/
|
|
|
|
|
|
2009-01-15 06:48:15 +00:00
|
|
|
|
|
2008-12-28 18:50:24 +00:00
|
|
|
|
|
2008-12-27 11:32:03 +00:00
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Variables guide
|
|
|
|
|
/* <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
|
2009-01-21 18:09:31 +00:00
|
|
|
|
Joyinfo[1, 2, 3, 4, ..., number of attached devices]: Gamepad info that is populate by Search_Devices()
|
|
|
|
|
PadMapping[1, 2, 3 and 4]: The button mapping
|
|
|
|
|
Joystate[1, 2, 3 and 4]: The current button states
|
2009-01-19 05:49:25 +00:00
|
|
|
|
|
2009-01-24 22:13:53 +00:00
|
|
|
|
The arrays PadMapping[] and PadState[] are numbered 0 to 3 for the four different virtual
|
2009-01-19 05:49:25 +00:00
|
|
|
|
controllers. Joysticks[].ID will have the number of the physical input device mapped to that
|
|
|
|
|
controller (this value range between 0 and the total number of connected physical devices). The
|
2009-01-24 22:13:53 +00:00
|
|
|
|
mapping of a certain physical device to PadState[].joy is initially done by Initialize(), but
|
2009-01-19 05:49:25 +00:00
|
|
|
|
for the configuration we can remap that, like in ConfigBox::ChangeJoystick().
|
2008-12-27 11:32:03 +00:00
|
|
|
|
|
2009-01-19 05:49:25 +00:00
|
|
|
|
The joyinfo[] array holds the physical gamepad info for a certain physical device. It's therefore
|
2009-01-21 18:09:31 +00:00
|
|
|
|
used as joyinfo[PadMapping[controller].ID] if we want to get the joyinfo for a certain joystick.
|
2008-12-27 11:32:03 +00:00
|
|
|
|
|
|
|
|
|
////////////////////////*/
|
|
|
|
|
|
2009-01-15 06:48:15 +00:00
|
|
|
|
|
2008-12-27 11:32:03 +00:00
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
2008-12-26 02:42:15 +00:00
|
|
|
|
// Include
|
2008-12-27 11:32:03 +00:00
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
2008-12-08 05:25:12 +00:00
|
|
|
|
#include "nJoy.h"
|
|
|
|
|
|
2008-12-27 11:32:03 +00:00
|
|
|
|
// Declare config window so that we can write debugging info to it from functions in this file
|
|
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
|
|
|
|
ConfigBox* m_frame;
|
|
|
|
|
#endif
|
|
|
|
|
/////////////////////////
|
|
|
|
|
|
2009-01-15 06:48:15 +00:00
|
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Variables
|
2008-12-27 11:32:03 +00:00
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
2008-12-26 02:42:15 +00:00
|
|
|
|
// Rumble in windows
|
2009-02-10 14:02:01 +00:00
|
|
|
|
#define _EXCLUDE_MAIN_ // Avoid certain declarations in nJoy.h
|
2008-12-08 05:25:12 +00:00
|
|
|
|
FILE *pFile;
|
|
|
|
|
HINSTANCE nJoy_hInst = NULL;
|
2009-02-10 14:02:01 +00:00
|
|
|
|
std::vector<InputCommon::CONTROLLER_INFO> joyinfo;
|
|
|
|
|
InputCommon::CONTROLLER_STATE PadState[4];
|
|
|
|
|
InputCommon::CONTROLLER_MAPPING PadMapping[4];
|
|
|
|
|
bool g_EmulatorRunning = false;
|
2009-02-11 10:30:02 +00:00
|
|
|
|
int NumPads = 0, NumGoodPads = 0, LastPad = 0;
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
HWND m_hWnd = NULL, m_hConsole = NULL; // Handle to window
|
|
|
|
|
#endif
|
2009-02-01 20:45:27 +00:00
|
|
|
|
SPADInitialize *g_PADInitialize = NULL;
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
2008-12-26 09:20:01 +00:00
|
|
|
|
// TODO: fix this dirty hack to stop missing symbols
|
|
|
|
|
void __Log(int log, const char *format, ...) {}
|
|
|
|
|
void __Logv(int log, int v, const char *format, ...) {}
|
|
|
|
|
|
2008-12-26 02:42:15 +00:00
|
|
|
|
// Rumble
|
2008-12-08 05:25:12 +00:00
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
|
|
|
|
|
#elif defined(__linux__)
|
2008-12-26 02:42:15 +00:00
|
|
|
|
extern int fd;
|
2008-12-08 05:25:12 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2009-01-15 06:48:15 +00:00
|
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// wxWidgets
|
2008-12-27 11:32:03 +00:00
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
2008-12-26 02:42:15 +00:00
|
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
|
|
|
|
class wxDLLApp : public wxApp
|
2008-12-08 05:25:12 +00:00
|
|
|
|
{
|
2008-12-26 02:42:15 +00:00
|
|
|
|
bool OnInit()
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
};
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
2009-01-15 06:48:15 +00:00
|
|
|
|
IMPLEMENT_APP_NO_MAIN(wxDLLApp)
|
2008-12-26 02:42:15 +00:00
|
|
|
|
WXDLLIMPEXP_BASE void wxSetInstance(HINSTANCE hInst);
|
2008-12-14 23:52:01 +00:00
|
|
|
|
#endif
|
2008-12-26 02:42:15 +00:00
|
|
|
|
|
2009-01-15 06:48:15 +00:00
|
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
2009-01-15 06:48:15 +00:00
|
|
|
|
// DllMain
|
2008-12-27 11:32:03 +00:00
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
2008-12-08 05:25:12 +00:00
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
BOOL APIENTRY DllMain( HINSTANCE hinstDLL, // DLL module handle
|
|
|
|
|
DWORD dwReason, // reason called
|
|
|
|
|
LPVOID lpvReserved) // reserved
|
2009-01-15 06:48:15 +00:00
|
|
|
|
{
|
2008-12-08 05:25:12 +00:00
|
|
|
|
switch (dwReason)
|
|
|
|
|
{
|
|
|
|
|
case DLL_PROCESS_ATTACH:
|
|
|
|
|
{
|
|
|
|
|
//use wxInitialize() if you don't want GUI instead of the following 12 lines
|
|
|
|
|
wxSetInstance((HINSTANCE)hinstDLL);
|
|
|
|
|
int argc = 0;
|
|
|
|
|
char **argv = NULL;
|
|
|
|
|
wxEntryStart(argc, argv);
|
|
|
|
|
|
2008-12-10 21:23:15 +00:00
|
|
|
|
if (!wxTheApp || !wxTheApp->CallOnInit() )
|
2008-12-08 05:25:12 +00:00
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
2009-01-15 06:48:15 +00:00
|
|
|
|
break;
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
|
|
|
|
case DLL_PROCESS_DETACH:
|
2009-01-15 06:48:15 +00:00
|
|
|
|
wxEntryCleanup(); //use wxUninitialize() if you don't want GUI
|
2008-12-08 05:25:12 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
2009-01-15 06:48:15 +00:00
|
|
|
|
|
|
|
|
|
nJoy_hInst = hinstDLL;
|
2008-12-08 05:25:12 +00:00
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2009-01-19 17:47:00 +00:00
|
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Input Plugin Functions (from spec's)
|
2008-12-27 11:32:03 +00:00
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
|
|
|
|
// Get properties of plugin
|
2008-12-27 11:32:03 +00:00
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
2008-12-08 05:25:12 +00:00
|
|
|
|
void GetDllInfo(PLUGIN_INFO* _PluginInfo)
|
|
|
|
|
{
|
|
|
|
|
_PluginInfo->Version = 0x0100;
|
|
|
|
|
_PluginInfo->Type = PLUGIN_TYPE_PAD;
|
|
|
|
|
|
2009-01-15 06:48:15 +00:00
|
|
|
|
#ifdef DEBUGFAST
|
2008-12-08 05:25:12 +00:00
|
|
|
|
sprintf(_PluginInfo->Name, "nJoy v"INPUT_VERSION" (DebugFast) by Falcon4ever");
|
|
|
|
|
#else
|
|
|
|
|
#ifndef _DEBUG
|
|
|
|
|
sprintf(_PluginInfo->Name, "nJoy v"INPUT_VERSION " by Falcon4ever");
|
|
|
|
|
#else
|
|
|
|
|
sprintf(_PluginInfo->Name, "nJoy v"INPUT_VERSION" (Debug) by Falcon4ever");
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-24 22:13:53 +00:00
|
|
|
|
void SetDllGlobals(PLUGIN_GLOBALS* _pPluginGlobals) {}
|
2009-01-08 12:12:15 +00:00
|
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
|
// Call config dialog
|
2008-12-27 11:32:03 +00:00
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
2008-12-08 05:25:12 +00:00
|
|
|
|
void DllConfig(HWND _hParent)
|
2009-01-15 06:48:15 +00:00
|
|
|
|
{
|
2009-01-24 22:13:53 +00:00
|
|
|
|
// Debugging
|
2009-02-11 10:30:02 +00:00
|
|
|
|
#ifdef SHOW_PAD_STATUS
|
|
|
|
|
Console::Open(100);
|
|
|
|
|
m_hConsole = Console::GetHwnd();
|
|
|
|
|
#endif
|
2009-01-23 21:28:55 +00:00
|
|
|
|
|
2009-01-24 22:13:53 +00:00
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
// Start the pads so we can use them in the configuration and advanced controls
|
2009-02-10 14:02:01 +00:00
|
|
|
|
if(!g_EmulatorRunning)
|
2009-01-24 22:13:53 +00:00
|
|
|
|
{
|
2009-02-10 14:02:01 +00:00
|
|
|
|
Search_Devices(joyinfo, NumPads, NumGoodPads); // Populate joyinfo for all attached devices
|
2009-02-11 10:30:02 +00:00
|
|
|
|
|
|
|
|
|
// Check if a DirectInput error occured
|
|
|
|
|
if(ReloadDLL())
|
|
|
|
|
{
|
|
|
|
|
PostMessage(_hParent, WM_USER, NJOY_RELOAD, 0);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2009-01-24 22:13:53 +00:00
|
|
|
|
}
|
2009-01-23 21:28:55 +00:00
|
|
|
|
|
2009-01-24 22:13:53 +00:00
|
|
|
|
m_frame = new ConfigBox(NULL);
|
2009-02-11 10:30:02 +00:00
|
|
|
|
m_frame->Show();
|
|
|
|
|
|
2009-01-23 21:28:55 +00:00
|
|
|
|
#else
|
2009-01-24 22:13:53 +00:00
|
|
|
|
if (SDL_Init(SDL_INIT_JOYSTICK ) < 0)
|
|
|
|
|
{
|
|
|
|
|
printf("Could not initialize SDL! (%s)\n", SDL_GetError());
|
|
|
|
|
return;
|
|
|
|
|
}
|
2009-01-23 21:28:55 +00:00
|
|
|
|
|
2009-01-24 22:13:53 +00:00
|
|
|
|
g_Config.Load(); // load settings
|
2009-01-23 21:28:55 +00:00
|
|
|
|
|
2009-01-24 22:13:53 +00:00
|
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
|
|
|
|
ConfigBox frame(NULL);
|
|
|
|
|
frame.ShowModal();
|
|
|
|
|
#endif
|
2009-01-23 10:00:59 +00:00
|
|
|
|
#endif
|
2008-12-08 05:25:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
2009-01-24 22:13:53 +00:00
|
|
|
|
void DllDebugger(HWND _hParent, bool Show) {}
|
2008-12-17 17:49:38 +00:00
|
|
|
|
|
2009-01-15 06:48:15 +00:00
|
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
|
// Init PAD (start emulation)
|
2008-12-27 11:32:03 +00:00
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
2009-01-19 17:47:00 +00:00
|
|
|
|
/* Information: This function can not be run twice without a Shutdown in between. If
|
|
|
|
|
it's run twice the SDL_Init() will cause a crash. One solution to this is to keep a
|
2009-02-10 14:02:01 +00:00
|
|
|
|
global function that remembers the SDL_Init() and SDL_Quit() (g_EmulatorRunning does
|
2009-01-19 17:47:00 +00:00
|
|
|
|
not do that since we can open and close this without any game running). But I would
|
|
|
|
|
suggest that avoiding to run this twice from the Core is better. */
|
2009-01-15 06:48:15 +00:00
|
|
|
|
void Initialize(void *init)
|
|
|
|
|
{
|
2009-01-19 17:47:00 +00:00
|
|
|
|
// Debugging
|
2009-02-11 10:30:02 +00:00
|
|
|
|
#ifdef SHOW_PAD_STATUS
|
2009-02-22 04:24:53 +00:00
|
|
|
|
Console::Open(110);
|
2009-02-11 10:30:02 +00:00
|
|
|
|
m_hConsole = Console::GetHwnd();
|
|
|
|
|
#endif
|
2009-01-24 22:13:53 +00:00
|
|
|
|
Console::Print("Initialize: %i\n", SDL_WasInit(0));
|
2009-02-01 16:29:35 +00:00
|
|
|
|
g_PADInitialize = (SPADInitialize*)init;
|
2009-02-10 14:02:01 +00:00
|
|
|
|
g_EmulatorRunning = true;
|
2009-01-24 22:13:53 +00:00
|
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
|
#ifdef _DEBUG
|
2009-01-19 05:49:25 +00:00
|
|
|
|
DEBUG_INIT();
|
2008-12-08 05:25:12 +00:00
|
|
|
|
#endif
|
2009-01-15 06:48:15 +00:00
|
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
|
#ifdef _WIN32
|
2009-02-01 16:29:35 +00:00
|
|
|
|
m_hWnd = (HWND)g_PADInitialize->hWnd;
|
2009-01-23 13:31:00 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2009-02-11 10:30:02 +00:00
|
|
|
|
// Populate joyinfo for all attached devices if the configuration window is not already open
|
2009-02-17 22:05:34 +00:00
|
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
2009-02-11 10:31:43 +00:00
|
|
|
|
if(!m_frame)
|
|
|
|
|
{
|
|
|
|
|
Search_Devices(joyinfo, NumPads, NumGoodPads);
|
|
|
|
|
// Check if a DirectInput error occured
|
|
|
|
|
if(ReloadDLL()) g_PADInitialize->padNumber = -1;
|
|
|
|
|
}
|
2009-02-17 22:05:34 +00:00
|
|
|
|
#endif
|
2009-02-18 23:26:16 +00:00
|
|
|
|
#ifdef RERECORDING
|
|
|
|
|
Recording::Initialize();
|
|
|
|
|
#endif
|
2008-12-27 11:32:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
|
// Shutdown PAD (stop emulation)
|
2008-12-27 11:32:03 +00:00
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
2009-01-19 17:47:00 +00:00
|
|
|
|
/* Information: This function can not be run twice without an Initialize in between. If
|
|
|
|
|
it's run twice the SDL_...() functions below will cause a crash.
|
|
|
|
|
Called from: The Dolphin Core, ConfigBox::OnClose() */
|
2009-01-15 06:48:15 +00:00
|
|
|
|
void Shutdown()
|
2008-12-08 05:25:12 +00:00
|
|
|
|
{
|
2009-01-24 22:13:53 +00:00
|
|
|
|
Console::Print("Shutdown: %i\n", SDL_WasInit(0));
|
2009-01-23 10:00:59 +00:00
|
|
|
|
|
2009-02-18 23:26:16 +00:00
|
|
|
|
// -------------------------------------------
|
|
|
|
|
// Play back input instead of accepting any user input
|
|
|
|
|
// ----------------------
|
|
|
|
|
#ifdef RERECORDING
|
|
|
|
|
Recording::ShutDown();
|
|
|
|
|
#endif
|
|
|
|
|
// ----------------------
|
|
|
|
|
|
2009-02-11 10:30:02 +00:00
|
|
|
|
// Always change this variable
|
|
|
|
|
g_EmulatorRunning = false;
|
|
|
|
|
|
2009-02-12 10:49:38 +00:00
|
|
|
|
// Stop debugging
|
|
|
|
|
#ifdef _DEBUG
|
|
|
|
|
DEBUG_QUIT();
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
// Don't shutdown the gamepad if the configuration window is still showing
|
|
|
|
|
// Todo: Coordinate with the Wiimote plugin, SDL_Quit() will remove the pad for it to
|
2009-02-17 22:05:34 +00:00
|
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
2009-02-11 10:30:02 +00:00
|
|
|
|
if (m_frame) return;
|
2009-02-17 22:05:34 +00:00
|
|
|
|
#endif
|
2009-01-24 22:13:53 +00:00
|
|
|
|
/* Close all devices carefully. We must check that we are not accessing any undefined
|
|
|
|
|
vector elements or any bad devices */
|
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
|
|
|
{
|
|
|
|
|
if (PadMapping[i].enabled && joyinfo.size() > PadMapping[i].ID)
|
|
|
|
|
if (joyinfo.at(PadMapping[i].ID).Good)
|
2009-02-11 10:30:02 +00:00
|
|
|
|
if(SDL_JoystickOpened(PadMapping[i].ID))
|
|
|
|
|
{
|
|
|
|
|
SDL_JoystickClose(PadState[i].joy);
|
|
|
|
|
PadState[i].joy = NULL;
|
|
|
|
|
}
|
2009-01-24 22:13:53 +00:00
|
|
|
|
}
|
2009-01-23 10:00:59 +00:00
|
|
|
|
|
2009-02-10 14:02:01 +00:00
|
|
|
|
// Clear the physical device info
|
|
|
|
|
joyinfo.clear();
|
2009-02-11 10:30:02 +00:00
|
|
|
|
NumPads = 0;
|
|
|
|
|
NumGoodPads = 0;
|
2009-02-10 14:02:01 +00:00
|
|
|
|
|
|
|
|
|
// Finally close SDL
|
|
|
|
|
if (SDL_WasInit(0)) SDL_Quit();
|
2009-01-23 10:00:59 +00:00
|
|
|
|
|
2009-02-11 10:30:02 +00:00
|
|
|
|
// Remove the pointer to the initialize data
|
|
|
|
|
g_PADInitialize = NULL;
|
|
|
|
|
|
2009-01-23 10:00:59 +00:00
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
#ifdef USE_RUMBLE_DINPUT_HACK
|
2009-01-24 22:13:53 +00:00
|
|
|
|
FreeDirectInput();
|
2009-01-23 10:00:59 +00:00
|
|
|
|
#endif
|
|
|
|
|
#elif defined(__linux__)
|
|
|
|
|
close(fd);
|
|
|
|
|
#endif
|
2008-12-08 05:25:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
2008-12-26 02:42:15 +00:00
|
|
|
|
|
2009-02-03 10:17:01 +00:00
|
|
|
|
// Set buttons status from keyboard input. Currently this is done from wxWidgets in the main application.
|
2008-12-28 18:50:24 +00:00
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
2009-01-19 17:47:00 +00:00
|
|
|
|
void PAD_Input(u16 _Key, u8 _UpDown)
|
2008-12-28 18:50:24 +00:00
|
|
|
|
{
|
2009-02-01 20:45:27 +00:00
|
|
|
|
// Check that Dolphin is in focus, otherwise don't update the pad status
|
2009-02-03 10:17:01 +00:00
|
|
|
|
if (!IsFocus()) return;
|
2009-02-01 16:29:35 +00:00
|
|
|
|
|
2008-12-28 18:50:24 +00:00
|
|
|
|
// Check if the keys are interesting, and then update it
|
|
|
|
|
for(int i = 0; i < 4; i++)
|
|
|
|
|
{
|
2009-02-10 14:02:01 +00:00
|
|
|
|
for(int j = InputCommon::CTL_L_SHOULDER; j <= InputCommon::CTL_START; j++)
|
2008-12-28 18:50:24 +00:00
|
|
|
|
{
|
2009-01-21 18:09:31 +00:00
|
|
|
|
if (PadMapping[i].buttons[j] == _Key)
|
2009-01-24 22:13:53 +00:00
|
|
|
|
{ PadState[i].buttons[j] = _UpDown; break; }
|
2008-12-28 18:50:24 +00:00
|
|
|
|
}
|
2009-01-19 17:47:00 +00:00
|
|
|
|
|
2009-02-10 14:02:01 +00:00
|
|
|
|
for(int j = InputCommon::CTL_D_PAD_UP; j <= InputCommon::CTL_D_PAD_RIGHT; j++)
|
2009-01-19 17:47:00 +00:00
|
|
|
|
{
|
2009-01-21 18:09:31 +00:00
|
|
|
|
if (PadMapping[i].dpad2[j] == _Key)
|
2009-01-24 22:13:53 +00:00
|
|
|
|
{ PadState[i].dpad2[j] = _UpDown; break; }
|
2009-01-19 17:47:00 +00:00
|
|
|
|
}
|
2008-12-28 18:50:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2009-01-19 17:47:00 +00:00
|
|
|
|
// Debugging
|
|
|
|
|
//Console::Print("%i", _Key);
|
2009-01-15 06:48:15 +00:00
|
|
|
|
}
|
2008-12-28 18:50:24 +00:00
|
|
|
|
|
2009-01-19 17:47:00 +00:00
|
|
|
|
|
|
|
|
|
// Save state
|
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
2009-02-18 23:26:16 +00:00
|
|
|
|
void DoState(unsigned char **ptr, int mode)
|
|
|
|
|
{
|
|
|
|
|
#ifdef RERECORDING
|
|
|
|
|
Recording::DoState(ptr, mode);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
2009-01-19 17:47:00 +00:00
|
|
|
|
|
2009-02-01 20:19:21 +00:00
|
|
|
|
|
|
|
|
|
// Set PAD attached pads
|
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
unsigned int PAD_GetAttachedPads()
|
|
|
|
|
{
|
|
|
|
|
unsigned int connected = 0;
|
|
|
|
|
|
|
|
|
|
g_Config.Load();
|
|
|
|
|
|
|
|
|
|
if (PadMapping[0].enabled) connected |= 1;
|
|
|
|
|
if (PadMapping[1].enabled) connected |= 2;
|
|
|
|
|
if (PadMapping[2].enabled) connected |= 4;
|
|
|
|
|
if (PadMapping[3].enabled) connected |= 8;
|
|
|
|
|
|
2009-02-11 10:30:02 +00:00
|
|
|
|
//Console::Print("PAD_GetAttachedPads: %i %i %i %i\n", PadMapping[0].enabled, PadMapping[1].enabled, PadMapping[2].enabled, PadMapping[3].enabled);
|
2009-02-01 20:19:21 +00:00
|
|
|
|
|
|
|
|
|
return connected;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-19 17:47:00 +00:00
|
|
|
|
|
|
|
|
|
// Set PAD status
|
2008-12-27 11:32:03 +00:00
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
2009-01-22 00:31:12 +00:00
|
|
|
|
// Called from: SI_DeviceGCController.cpp
|
2009-01-19 05:49:25 +00:00
|
|
|
|
// Function: Gives the current pad status to the Core
|
2008-12-08 05:25:12 +00:00
|
|
|
|
void PAD_GetStatus(u8 _numPAD, SPADStatus* _pPADStatus)
|
|
|
|
|
{
|
2009-02-11 10:30:02 +00:00
|
|
|
|
//Console::Print("PAD_GetStatus(): %i %i %i\n", _numPAD, PadMapping[_numPAD].enabled, PadState[_numPAD].joy);
|
2009-01-24 22:13:53 +00:00
|
|
|
|
|
2009-02-11 10:30:02 +00:00
|
|
|
|
/* Check if the pad is enabled and avaliable, currently we don't disable pads just because they are
|
|
|
|
|
disconnected */
|
2009-01-24 22:13:53 +00:00
|
|
|
|
if (!PadMapping[_numPAD].enabled || !PadState[_numPAD].joy) return;
|
2009-01-15 06:48:15 +00:00
|
|
|
|
|
2009-02-18 23:26:16 +00:00
|
|
|
|
// -------------------------------------------
|
|
|
|
|
// Play back input instead of accepting any user input
|
|
|
|
|
// ----------------------
|
|
|
|
|
#ifdef RERECORDING
|
|
|
|
|
if (g_Config.bPlayback)
|
|
|
|
|
{
|
|
|
|
|
*_pPADStatus = Recording::Play();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
// ----------------------
|
|
|
|
|
|
2008-12-26 02:42:15 +00:00
|
|
|
|
// Clear pad status
|
2008-12-08 05:25:12 +00:00
|
|
|
|
memset(_pPADStatus, 0, sizeof(SPADStatus));
|
|
|
|
|
|
2009-02-10 14:02:01 +00:00
|
|
|
|
// Check that Dolphin is in focus, otherwise don't update the pad status
|
2009-02-11 10:30:02 +00:00
|
|
|
|
if (g_Config.bCheckFocus || IsFocus())
|
2009-02-10 14:02:01 +00:00
|
|
|
|
GetJoyState(PadState[_numPAD], PadMapping[_numPAD], _numPAD, joyinfo[PadMapping[_numPAD].ID].NumButtons);
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
2009-01-20 05:28:30 +00:00
|
|
|
|
// Get type
|
2009-01-21 18:09:31 +00:00
|
|
|
|
int TriggerType = PadMapping[_numPAD].triggertype;
|
2009-01-15 06:48:15 +00:00
|
|
|
|
|
2008-12-27 11:32:03 +00:00
|
|
|
|
///////////////////////////////////////////////////
|
2009-01-19 17:47:00 +00:00
|
|
|
|
// The analog controls
|
2008-12-27 11:32:03 +00:00
|
|
|
|
// -----------
|
|
|
|
|
|
2009-01-19 17:47:00 +00:00
|
|
|
|
// Read axis values
|
2009-02-10 14:02:01 +00:00
|
|
|
|
int i_main_stick_x = PadState[_numPAD].axis[InputCommon::CTL_MAIN_X];
|
|
|
|
|
int i_main_stick_y = -PadState[_numPAD].axis[InputCommon::CTL_MAIN_Y];
|
|
|
|
|
int i_sub_stick_x = PadState[_numPAD].axis[InputCommon::CTL_SUB_X];
|
|
|
|
|
int i_sub_stick_y = -PadState[_numPAD].axis[InputCommon::CTL_SUB_Y];
|
|
|
|
|
int TriggerLeft = PadState[_numPAD].axis[InputCommon::CTL_L_SHOULDER];
|
|
|
|
|
int TriggerRight = PadState[_numPAD].axis[InputCommon::CTL_R_SHOULDER];
|
2009-01-19 17:47:00 +00:00
|
|
|
|
|
2008-12-27 11:32:03 +00:00
|
|
|
|
// Check if we should make adjustments
|
2009-01-21 18:09:31 +00:00
|
|
|
|
if(PadMapping[_numPAD].bSquareToCircle)
|
2008-12-27 11:32:03 +00:00
|
|
|
|
{
|
2009-02-12 08:46:48 +00:00
|
|
|
|
std::vector<int> main_xy = InputCommon::Square2Circle(i_main_stick_x, i_main_stick_y, _numPAD, PadMapping[_numPAD].SDiagonal);
|
2008-12-27 11:32:03 +00:00
|
|
|
|
i_main_stick_x = main_xy.at(0);
|
|
|
|
|
i_main_stick_y = main_xy.at(1);
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-20 05:28:30 +00:00
|
|
|
|
// Convert axis values
|
2009-02-10 14:02:01 +00:00
|
|
|
|
u8 main_stick_x = InputCommon::Pad_Convert(i_main_stick_x);
|
|
|
|
|
u8 main_stick_y = InputCommon::Pad_Convert(i_main_stick_y);
|
|
|
|
|
u8 sub_stick_x = InputCommon::Pad_Convert(i_sub_stick_x);
|
|
|
|
|
u8 sub_stick_y = InputCommon::Pad_Convert(i_sub_stick_y);
|
2009-01-20 05:28:30 +00:00
|
|
|
|
|
2009-02-01 20:19:21 +00:00
|
|
|
|
// Convert the triggers values, if we are using analog triggers at all
|
2009-02-10 14:02:01 +00:00
|
|
|
|
if(PadMapping[_numPAD].triggertype == InputCommon::CTL_TRIGGER_SDL)
|
2009-01-20 14:25:33 +00:00
|
|
|
|
{
|
2009-02-10 14:02:01 +00:00
|
|
|
|
if(PadMapping[_numPAD].buttons[InputCommon::CTL_L_SHOULDER] >= 1000) TriggerLeft = InputCommon::Pad_Convert(TriggerLeft);
|
|
|
|
|
if(PadMapping[_numPAD].buttons[InputCommon::CTL_R_SHOULDER] >= 1000) TriggerRight = InputCommon::Pad_Convert(TriggerRight);
|
2009-01-20 14:25:33 +00:00
|
|
|
|
}
|
2008-12-27 11:32:03 +00:00
|
|
|
|
|
2009-01-19 17:47:00 +00:00
|
|
|
|
// Set Deadzones (perhaps out of function?)
|
2009-01-21 18:09:31 +00:00
|
|
|
|
int deadzone = (int)(((float)(128.00/100.00)) * (float)(PadMapping[_numPAD].deadzone + 1));
|
|
|
|
|
int deadzone2 = (int)(((float)(-128.00/100.00)) * (float)(PadMapping[_numPAD].deadzone + 1));
|
2008-12-27 11:32:03 +00:00
|
|
|
|
|
|
|
|
|
// Send values to Dolpin if they are outside the deadzone
|
|
|
|
|
if ((main_stick_x < deadzone2) || (main_stick_x > deadzone)) _pPADStatus->stickX = main_stick_x;
|
|
|
|
|
if ((main_stick_y < deadzone2) || (main_stick_y > deadzone)) _pPADStatus->stickY = main_stick_y;
|
|
|
|
|
if ((sub_stick_x < deadzone2) || (sub_stick_x > deadzone)) _pPADStatus->substickX = sub_stick_x;
|
|
|
|
|
if ((sub_stick_y < deadzone2) || (sub_stick_y > deadzone)) _pPADStatus->substickY = sub_stick_y;
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
2009-01-15 06:48:15 +00:00
|
|
|
|
|
2008-12-27 11:32:03 +00:00
|
|
|
|
///////////////////////////////////////////////////
|
2009-01-19 17:47:00 +00:00
|
|
|
|
// The L and R triggers
|
|
|
|
|
// -----------
|
2009-01-20 06:38:29 +00:00
|
|
|
|
int TriggerValue = 255;
|
2009-02-01 20:19:21 +00:00
|
|
|
|
if (PadState[_numPAD].halfpress) TriggerValue = 100;
|
|
|
|
|
|
2009-01-19 17:47:00 +00:00
|
|
|
|
_pPADStatus->button |= PAD_USE_ORIGIN; // Neutral value, no button pressed
|
2008-12-27 11:32:03 +00:00
|
|
|
|
|
2009-02-01 20:19:21 +00:00
|
|
|
|
// Check if the digital L button is pressed
|
2009-02-10 14:02:01 +00:00
|
|
|
|
if (PadState[_numPAD].buttons[InputCommon::CTL_L_SHOULDER])
|
2008-12-08 05:25:12 +00:00
|
|
|
|
{
|
2009-01-19 17:47:00 +00:00
|
|
|
|
_pPADStatus->button |= PAD_TRIGGER_L;
|
2009-01-20 06:38:29 +00:00
|
|
|
|
_pPADStatus->triggerLeft = TriggerValue;
|
2008-12-08 05:25:12 +00:00
|
|
|
|
}
|
2009-02-22 04:24:53 +00:00
|
|
|
|
// no the digital L button is not pressed, but the analog left trigger is
|
2009-01-20 14:25:33 +00:00
|
|
|
|
else if(TriggerLeft > 0)
|
2009-01-19 18:09:03 +00:00
|
|
|
|
_pPADStatus->triggerLeft = TriggerLeft;
|
2009-01-19 17:47:00 +00:00
|
|
|
|
|
2009-02-01 20:19:21 +00:00
|
|
|
|
// Check if the digital R button is pressed
|
2009-02-10 14:02:01 +00:00
|
|
|
|
if (PadState[_numPAD].buttons[InputCommon::CTL_R_SHOULDER])
|
2008-12-08 05:25:12 +00:00
|
|
|
|
{
|
2009-01-19 17:47:00 +00:00
|
|
|
|
_pPADStatus->button |= PAD_TRIGGER_R;
|
2009-01-20 06:38:29 +00:00
|
|
|
|
_pPADStatus->triggerRight = TriggerValue;
|
2008-12-08 05:25:12 +00:00
|
|
|
|
}
|
2009-02-22 04:24:53 +00:00
|
|
|
|
// no the digital R button is not pressed, but the analog right trigger is
|
2009-01-20 14:25:33 +00:00
|
|
|
|
else if(TriggerRight > 0)
|
2009-01-19 17:47:00 +00:00
|
|
|
|
_pPADStatus->triggerRight = TriggerRight;
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
2009-01-19 18:09:03 +00:00
|
|
|
|
// Update the buttons in analog mode to
|
|
|
|
|
if(TriggerLeft == 0xff) _pPADStatus->button |= PAD_TRIGGER_L;
|
|
|
|
|
if(TriggerRight == 0xff) _pPADStatus->button |= PAD_TRIGGER_R;
|
|
|
|
|
|
2009-01-19 17:47:00 +00:00
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////
|
|
|
|
|
// The digital buttons
|
|
|
|
|
// -----------
|
2009-02-10 14:02:01 +00:00
|
|
|
|
if (PadState[_numPAD].buttons[InputCommon::CTL_A_BUTTON])
|
2008-12-08 05:25:12 +00:00
|
|
|
|
{
|
2009-01-19 05:49:25 +00:00
|
|
|
|
_pPADStatus->button |= PAD_BUTTON_A;
|
2008-12-08 05:25:12 +00:00
|
|
|
|
_pPADStatus->analogA = 255; // Perhaps support pressure?
|
|
|
|
|
}
|
2009-02-10 14:02:01 +00:00
|
|
|
|
if (PadState[_numPAD].buttons[InputCommon::CTL_B_BUTTON])
|
2008-12-08 05:25:12 +00:00
|
|
|
|
{
|
2009-01-19 05:49:25 +00:00
|
|
|
|
_pPADStatus->button |= PAD_BUTTON_B;
|
2008-12-08 05:25:12 +00:00
|
|
|
|
_pPADStatus->analogB = 255; // Perhaps support pressure?
|
|
|
|
|
}
|
2009-02-10 14:02:01 +00:00
|
|
|
|
if (PadState[_numPAD].buttons[InputCommon::CTL_X_BUTTON]) _pPADStatus->button|=PAD_BUTTON_X;
|
|
|
|
|
if (PadState[_numPAD].buttons[InputCommon::CTL_Y_BUTTON]) _pPADStatus->button|=PAD_BUTTON_Y;
|
|
|
|
|
if (PadState[_numPAD].buttons[InputCommon::CTL_Z_TRIGGER]) _pPADStatus->button|=PAD_TRIGGER_Z;
|
|
|
|
|
if (PadState[_numPAD].buttons[InputCommon::CTL_START]) _pPADStatus->button|=PAD_BUTTON_START;
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
2009-01-19 17:47:00 +00:00
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////
|
|
|
|
|
// The D-pad
|
|
|
|
|
// -----------
|
2009-02-10 14:02:01 +00:00
|
|
|
|
if (PadMapping[_numPAD].controllertype == InputCommon::CTL_DPAD_HAT)
|
2008-12-08 05:25:12 +00:00
|
|
|
|
{
|
2009-01-24 22:13:53 +00:00
|
|
|
|
if (PadState[_numPAD].dpad == SDL_HAT_LEFTUP || PadState[_numPAD].dpad == SDL_HAT_UP || PadState[_numPAD].dpad == SDL_HAT_RIGHTUP ) _pPADStatus->button|=PAD_BUTTON_UP;
|
|
|
|
|
if (PadState[_numPAD].dpad == SDL_HAT_LEFTUP || PadState[_numPAD].dpad == SDL_HAT_LEFT || PadState[_numPAD].dpad == SDL_HAT_LEFTDOWN ) _pPADStatus->button|=PAD_BUTTON_LEFT;
|
|
|
|
|
if (PadState[_numPAD].dpad == SDL_HAT_LEFTDOWN || PadState[_numPAD].dpad == SDL_HAT_DOWN || PadState[_numPAD].dpad == SDL_HAT_RIGHTDOWN ) _pPADStatus->button|=PAD_BUTTON_DOWN;
|
|
|
|
|
if (PadState[_numPAD].dpad == SDL_HAT_RIGHTUP || PadState[_numPAD].dpad == SDL_HAT_RIGHT || PadState[_numPAD].dpad == SDL_HAT_RIGHTDOWN ) _pPADStatus->button|=PAD_BUTTON_RIGHT;
|
2008-12-08 05:25:12 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2009-02-10 14:02:01 +00:00
|
|
|
|
if (PadState[_numPAD].dpad2[InputCommon::CTL_D_PAD_UP])
|
2008-12-27 11:32:03 +00:00
|
|
|
|
_pPADStatus->button |= PAD_BUTTON_UP;
|
2009-02-10 14:02:01 +00:00
|
|
|
|
if (PadState[_numPAD].dpad2[InputCommon::CTL_D_PAD_DOWN])
|
2008-12-27 11:32:03 +00:00
|
|
|
|
_pPADStatus->button |= PAD_BUTTON_DOWN;
|
2009-02-10 14:02:01 +00:00
|
|
|
|
if (PadState[_numPAD].dpad2[InputCommon::CTL_D_PAD_LEFT])
|
2008-12-27 11:32:03 +00:00
|
|
|
|
_pPADStatus->button |= PAD_BUTTON_LEFT;
|
2009-02-10 14:02:01 +00:00
|
|
|
|
if (PadState[_numPAD].dpad2[InputCommon::CTL_D_PAD_RIGHT])
|
2008-12-27 11:32:03 +00:00
|
|
|
|
_pPADStatus->button |= PAD_BUTTON_RIGHT;
|
2008-12-08 05:25:12 +00:00
|
|
|
|
}
|
2009-01-15 06:48:15 +00:00
|
|
|
|
|
2009-01-19 18:09:03 +00:00
|
|
|
|
// Update error code
|
2008-12-08 05:25:12 +00:00
|
|
|
|
_pPADStatus->err = PAD_ERR_NONE;
|
|
|
|
|
|
2008-12-26 02:42:15 +00:00
|
|
|
|
// Use rumble
|
2008-12-27 11:32:03 +00:00
|
|
|
|
Pad_Use_Rumble(_numPAD, _pPADStatus);
|
2009-01-19 17:47:00 +00:00
|
|
|
|
|
2009-02-18 23:26:16 +00:00
|
|
|
|
// -------------------------------------------
|
|
|
|
|
// Rerecording
|
|
|
|
|
// ----------------------
|
|
|
|
|
#ifdef RERECORDING
|
|
|
|
|
// Record input
|
|
|
|
|
if (g_Config.bRecording) Recording::RecordInput(*_pPADStatus);
|
|
|
|
|
#endif
|
|
|
|
|
// ----------------------
|
|
|
|
|
|
2009-02-11 10:30:02 +00:00
|
|
|
|
// Debugging
|
|
|
|
|
/*
|
|
|
|
|
// Show the status of all connected pads
|
|
|
|
|
if ((LastPad == 0 && _numPAD == 0) || _numPAD < LastPad) Console::ClearScreen();
|
|
|
|
|
LastPad = _numPAD;
|
2009-02-22 04:24:53 +00:00
|
|
|
|
Console::ClearScreen();
|
2009-02-11 10:30:02 +00:00
|
|
|
|
Console::Print(
|
|
|
|
|
"Pad | Number:%i Enabled:%i Handle:%i\n"
|
2009-02-22 04:24:53 +00:00
|
|
|
|
"Trigger | StatusL:%04x StatusR:%04x TriggerL:%04x TriggerR:%04x TriggerValue:%i\n"
|
|
|
|
|
"Buttons | Overall:%i A:%i X:%i\n"
|
2009-02-11 10:30:02 +00:00
|
|
|
|
"======================================================\n",
|
2009-01-24 22:13:53 +00:00
|
|
|
|
|
2009-02-11 10:30:02 +00:00
|
|
|
|
_numPAD, PadMapping[_numPAD].enabled, PadState[_numPAD].joy,
|
2009-02-01 20:19:21 +00:00
|
|
|
|
|
2009-02-22 04:24:53 +00:00
|
|
|
|
_pPADStatus->triggerLeft, _pPADStatus->triggerRight, TriggerLeft, TriggerRight, TriggerValue,
|
2009-01-24 22:13:53 +00:00
|
|
|
|
|
2009-02-22 04:24:53 +00:00
|
|
|
|
_pPADStatus->button,
|
|
|
|
|
PadState[_numPAD].buttons[InputCommon::CTL_A_BUTTON],
|
|
|
|
|
PadState[_numPAD].buttons[InputCommon::CTL_X_BUTTON]
|
2009-02-11 10:30:02 +00:00
|
|
|
|
);
|
|
|
|
|
*/
|
2008-12-08 05:25:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
2009-01-19 17:47:00 +00:00
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////// Spec functions
|
|
|
|
|
|
|
|
|
|
|
2009-02-01 16:29:35 +00:00
|
|
|
|
//******************************************************************************
|
|
|
|
|
// Supporting functions
|
|
|
|
|
//******************************************************************************
|
|
|
|
|
|
2009-02-18 23:26:16 +00:00
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Search for SDL devices
|
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
bool Search_Devices(std::vector<InputCommon::CONTROLLER_INFO> &_joyinfo, int &_NumPads, int &_NumGoodPads)
|
|
|
|
|
{
|
|
|
|
|
bool Success = InputCommon::SearchDevices(_joyinfo, _NumPads, _NumGoodPads);
|
|
|
|
|
|
|
|
|
|
// Warn the user if no gamepads are detected
|
|
|
|
|
if (_NumGoodPads == 0 && g_EmulatorRunning)
|
|
|
|
|
{
|
|
|
|
|
PanicAlert("nJoy: No Gamepad Detected");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Load PadMapping[] etc
|
|
|
|
|
g_Config.Load();
|
|
|
|
|
|
|
|
|
|
// Update the PadState[].joy handle
|
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
|
|
|
{
|
|
|
|
|
if (PadMapping[i].enabled && joyinfo.size() > PadMapping[i].ID)
|
|
|
|
|
if(joyinfo.at(PadMapping[i].ID).Good)
|
|
|
|
|
PadState[i].joy = SDL_JoystickOpen(PadMapping[i].ID);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Success;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2009-02-11 10:30:02 +00:00
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
/* Check if any of the pads failed to open. In Windows there is a strange "IDirectInputDevice2::
|
|
|
|
|
SetDataFormat() DirectX error -2147024809" after exactly four SDL_Init() and SDL_Quit() */
|
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
bool ReloadDLL()
|
|
|
|
|
{
|
|
|
|
|
if ( (PadMapping[0].enabled && PadState[0].joy == NULL)
|
|
|
|
|
|| (PadMapping[1].enabled && PadState[1].joy == NULL)
|
|
|
|
|
|| (PadMapping[2].enabled && PadState[2].joy == NULL)
|
|
|
|
|
|| (PadMapping[3].enabled && PadState[3].joy == NULL))
|
|
|
|
|
{
|
|
|
|
|
// Check if it was an error and not just no pads connected
|
|
|
|
|
std::string StrError = SDL_GetError();
|
|
|
|
|
if (StrError.find("IDirectInputDevice2") != std::string::npos)
|
|
|
|
|
{
|
|
|
|
|
// Clear the physical device info
|
|
|
|
|
joyinfo.clear();
|
|
|
|
|
NumPads = 0;
|
|
|
|
|
NumGoodPads = 0;
|
|
|
|
|
// Close SDL
|
|
|
|
|
if (SDL_WasInit(0)) SDL_Quit();
|
|
|
|
|
// Log message
|
|
|
|
|
Console::Print("Error: %s\n", StrError.c_str());
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-01 16:29:35 +00:00
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Check if Dolphin is in focus
|
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
bool IsFocus()
|
|
|
|
|
{
|
2009-02-11 10:30:02 +00:00
|
|
|
|
return true;
|
|
|
|
|
|
2009-02-01 16:29:35 +00:00
|
|
|
|
#ifdef _WIN32
|
2009-02-01 20:45:27 +00:00
|
|
|
|
HWND RenderingWindow = NULL; if (g_PADInitialize) RenderingWindow = g_PADInitialize->hWnd;
|
|
|
|
|
HWND Parent = GetParent(RenderingWindow);
|
2009-02-01 16:29:35 +00:00
|
|
|
|
HWND TopLevel = GetParent(Parent);
|
2009-02-01 20:45:27 +00:00
|
|
|
|
HWND Config = NULL; if (m_frame) Config = (HWND)m_frame->GetHWND();
|
2009-02-11 10:30:02 +00:00
|
|
|
|
// Support both rendering to main window and not, and the config and eventual console window
|
|
|
|
|
if (GetForegroundWindow() == TopLevel || GetForegroundWindow() == RenderingWindow || GetForegroundWindow() == Config || GetForegroundWindow() == m_hConsole)
|
2009-02-01 16:29:35 +00:00
|
|
|
|
return true;
|
|
|
|
|
else
|
|
|
|
|
return false;
|
|
|
|
|
#else
|
|
|
|
|
return true;
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-12-27 11:32:03 +00:00
|
|
|
|
|
2008-12-08 05:25:12 +00:00
|
|
|
|
|
2009-01-15 06:48:15 +00:00
|
|
|
|
|
2008-12-26 02:42:15 +00:00
|
|
|
|
|