mirror of https://github.com/PCSX2/pcsx2.git
355 lines
7.4 KiB
C++
355 lines
7.4 KiB
C++
/* OnePAD - author: arcum42(@gmail.com)
|
|
* Copyright (C) 2009
|
|
*
|
|
* Based on ZeroPAD, author zerofrog@gmail.com
|
|
* Copyright (C) 2006-2007
|
|
*
|
|
* 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; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* 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 for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
#include <fcntl.h>
|
|
#include <string.h>
|
|
#include <stdarg.h>
|
|
|
|
#include "keyboard.h"
|
|
#include "onepad.h"
|
|
#include "svnrev.h"
|
|
#include "state_management.h"
|
|
|
|
#ifdef __linux__
|
|
#include <unistd.h>
|
|
#endif
|
|
#ifdef _MSC_VER
|
|
#define snprintf sprintf_s
|
|
#endif
|
|
|
|
PADconf *conf;
|
|
static char libraryName[256];
|
|
|
|
keyEvent event;
|
|
|
|
static keyEvent s_event;
|
|
std::string s_strIniPath("inis/");
|
|
std::string s_strLogPath("logs/");
|
|
bool toggleAutoRepeat = false;
|
|
|
|
const u32 version = PS2E_PAD_VERSION;
|
|
const u32 revision = 1;
|
|
const u32 build = 3; // increase that with each version
|
|
#define PAD_SAVE_STATE_VERSION ((revision << 8) | (build << 0))
|
|
|
|
FILE *padLog = NULL;
|
|
|
|
KeyStatus *key_status = NULL;
|
|
MtQueue<keyEvent> g_ev_fifo;
|
|
|
|
static void InitLibraryName()
|
|
{
|
|
#ifdef PUBLIC
|
|
|
|
// Public Release!
|
|
// Output a simplified string that's just our name:
|
|
|
|
strcpy(libraryName, "OnePAD");
|
|
|
|
#else
|
|
|
|
// Use TortoiseSVN's SubWCRev utility's output
|
|
// to label the specific revision:
|
|
|
|
snprintf(libraryName, 255, "OnePAD %lld%s"
|
|
#ifdef PCSX2_DEBUG
|
|
"-Debug"
|
|
#elif defined(PCSX2_DEVBUILD)
|
|
"-Dev"
|
|
#endif
|
|
,
|
|
SVN_REV,
|
|
SVN_MODS ? "m" : "");
|
|
#endif
|
|
}
|
|
|
|
EXPORT_C_(u32) PS2EgetLibType()
|
|
{
|
|
return PS2E_LT_PAD;
|
|
}
|
|
|
|
EXPORT_C_(const char *) PS2EgetLibName()
|
|
{
|
|
InitLibraryName();
|
|
return libraryName;
|
|
}
|
|
|
|
EXPORT_C_(u32) PS2EgetLibVersion2(u32 type)
|
|
{
|
|
return (version << 16) | (revision << 8) | build;
|
|
}
|
|
|
|
void __Log(const char *fmt, ...)
|
|
{
|
|
va_list list;
|
|
|
|
if (padLog == NULL)
|
|
return;
|
|
va_start(list, fmt);
|
|
vfprintf(padLog, fmt, list);
|
|
va_end(list);
|
|
}
|
|
|
|
void __LogToConsole(const char *fmt, ...)
|
|
{
|
|
va_list list;
|
|
|
|
va_start(list, fmt);
|
|
|
|
if (padLog != NULL)
|
|
vfprintf(padLog, fmt, list);
|
|
|
|
printf("OnePAD: ");
|
|
vprintf(fmt, list);
|
|
va_end(list);
|
|
}
|
|
|
|
void initLogging()
|
|
{
|
|
#ifdef PAD_LOG
|
|
if (padLog)
|
|
return;
|
|
|
|
const std::string LogFile(s_strLogPath + "padLog.txt");
|
|
padLog = fopen(LogFile.c_str(), "w");
|
|
|
|
if (padLog)
|
|
setvbuf(padLog, NULL, _IONBF, 0);
|
|
|
|
PAD_LOG("PADinit\n");
|
|
#endif
|
|
}
|
|
|
|
void CloseLogging()
|
|
{
|
|
#ifdef PAD_LOG
|
|
if (padLog)
|
|
{
|
|
fclose(padLog);
|
|
padLog = NULL;
|
|
}
|
|
#endif
|
|
}
|
|
|
|
void clearPAD(int pad)
|
|
{
|
|
conf->keysym_map[pad].clear();
|
|
for (int key = 0; key < MAX_KEYS; ++key)
|
|
set_key(pad, key, 0);
|
|
}
|
|
|
|
EXPORT_C_(s32) PADinit(u32 flags)
|
|
{
|
|
initLogging();
|
|
|
|
LoadConfig();
|
|
|
|
key_status = new KeyStatus();
|
|
|
|
Pad::reset_all();
|
|
|
|
query.reset();
|
|
|
|
for (int port = 0; port < 2; port++)
|
|
slots[port] = 0;
|
|
|
|
return 0;
|
|
}
|
|
|
|
EXPORT_C_(void) PADshutdown()
|
|
{
|
|
CloseLogging();
|
|
|
|
delete conf;
|
|
conf = nullptr;
|
|
|
|
delete key_status;
|
|
key_status = nullptr;
|
|
}
|
|
|
|
EXPORT_C_(s32) PADopen(void *pDsp)
|
|
{
|
|
memset(&event, 0, sizeof(event));
|
|
key_status->Init();
|
|
g_ev_fifo.reset();
|
|
|
|
#if defined(__unix__)
|
|
GamePad::EnumerateGamePads(s_vgamePad);
|
|
#endif
|
|
return _PADopen(pDsp);
|
|
}
|
|
|
|
EXPORT_C_(void) PADsetSettingsDir(const char *dir)
|
|
{
|
|
// Get the path to the ini directory.
|
|
s_strIniPath = (dir == NULL) ? "inis/" : dir;
|
|
}
|
|
|
|
EXPORT_C_(void) PADsetLogDir(const char *dir)
|
|
{
|
|
// Get the path to the log directory.
|
|
s_strLogPath = (dir == NULL) ? "logs/" : dir;
|
|
|
|
// Reload the log file after updated the path
|
|
CloseLogging();
|
|
initLogging();
|
|
}
|
|
|
|
EXPORT_C_(void) PADclose()
|
|
{
|
|
_PADclose();
|
|
}
|
|
|
|
EXPORT_C_(u32) PADquery()
|
|
{
|
|
return 3; // both
|
|
}
|
|
|
|
EXPORT_C_(s32) PADsetSlot(u8 port, u8 slot)
|
|
{
|
|
port--;
|
|
slot--;
|
|
if (port > 1 || slot > 3)
|
|
{
|
|
return 0;
|
|
}
|
|
// Even if no pad there, record the slot, as it is the active slot regardless.
|
|
slots[port] = slot;
|
|
|
|
return 1;
|
|
}
|
|
|
|
EXPORT_C_(s32) PADfreeze(int mode, freezeData *data)
|
|
{
|
|
if (!data)
|
|
return -1;
|
|
|
|
if (mode == FREEZE_SIZE)
|
|
{
|
|
data->size = sizeof(PadPluginFreezeData);
|
|
}
|
|
else if (mode == FREEZE_LOAD)
|
|
{
|
|
PadPluginFreezeData *pdata = (PadPluginFreezeData *)(data->data);
|
|
|
|
Pad::stop_vibrate_all();
|
|
|
|
if (data->size != sizeof(PadPluginFreezeData) || pdata->version != PAD_SAVE_STATE_VERSION ||
|
|
strncmp(pdata->format, "OnePad", sizeof(pdata->format)))
|
|
return 0;
|
|
|
|
query = pdata->query;
|
|
if (pdata->query.slot < 4)
|
|
{
|
|
query = pdata->query;
|
|
}
|
|
|
|
// Tales of the Abyss - pad fix
|
|
// - restore data for both ports
|
|
for (int port = 0; port < 2; port++)
|
|
{
|
|
for (int slot = 0; slot < 4; slot++)
|
|
{
|
|
u8 mode = pdata->padData[port][slot].mode;
|
|
|
|
if (mode != MODE_DIGITAL && mode != MODE_ANALOG && mode != MODE_DS2_NATIVE)
|
|
{
|
|
break;
|
|
}
|
|
|
|
memcpy(&pads[port][slot], &pdata->padData[port][slot], sizeof(PadFreezeData));
|
|
}
|
|
|
|
if (pdata->slot[port] < 4)
|
|
slots[port] = pdata->slot[port];
|
|
}
|
|
}
|
|
else if (mode == FREEZE_SAVE)
|
|
{
|
|
if (data->size != sizeof(PadPluginFreezeData))
|
|
return 0;
|
|
|
|
PadPluginFreezeData *pdata = (PadPluginFreezeData *)(data->data);
|
|
|
|
// Tales of the Abyss - pad fix
|
|
// - PCSX2 only saves port0 (save #1), then port1 (save #2)
|
|
|
|
memset(pdata, 0, data->size);
|
|
strncpy(pdata->format, "OnePad", sizeof(pdata->format));
|
|
pdata->version = PAD_SAVE_STATE_VERSION;
|
|
pdata->query = query;
|
|
|
|
for (int port = 0; port < 2; port++)
|
|
{
|
|
for (int slot = 0; slot < 4; slot++)
|
|
{
|
|
pdata->padData[port][slot] = pads[port][slot];
|
|
}
|
|
|
|
pdata->slot[port] = slots[port];
|
|
}
|
|
}
|
|
else
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
EXPORT_C_(u8) PADstartPoll(int pad)
|
|
{
|
|
return pad_start_poll(pad);
|
|
}
|
|
|
|
EXPORT_C_(u8) PADpoll(u8 value)
|
|
{
|
|
return pad_poll(value);
|
|
}
|
|
|
|
// PADkeyEvent is called every vsync (return NULL if no event)
|
|
EXPORT_C_(keyEvent *) PADkeyEvent()
|
|
{
|
|
if (g_ev_fifo.size() == 0) {
|
|
// PAD_LOG("No events in queue, returning empty event\n");
|
|
s_event = event;
|
|
event.evt = 0;
|
|
event.key = 0;
|
|
return &s_event;
|
|
}
|
|
s_event = g_ev_fifo.dequeue();
|
|
AnalyzeKeyEvent(s_event);
|
|
// PAD_LOG("Returning Event. Event Type: %d, Key: %d\n", s_event.evt, s_event.key);
|
|
return &s_event;
|
|
}
|
|
|
|
#if defined(__unix__)
|
|
EXPORT_C_(void) PADWriteEvent(keyEvent &evt)
|
|
{
|
|
// if (evt.evt != 6) { // Skip mouse move events for logging
|
|
// PAD_LOG("Pushing Event. Event Type: %d, Key: %d\n", evt.evt, evt.key);
|
|
// }
|
|
g_ev_fifo.push(evt);
|
|
}
|
|
#endif
|