X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=plugins%2Fdfinput%2Fpad.c;h=ab55db0f2ee289f53b1cd34f1dde35776a99dd95;hp=9a09563f965e2f6f92c957455492cb63c70ed955;hb=87c45ad1e2a265cedb7970cc1b7777591d0050b7;hpb=9c1517da3ec9533c8722a7a0e5bbf815dbb2909f diff --git a/plugins/dfinput/pad.c b/plugins/dfinput/pad.c index 9a09563f..ab55db0f 100644 --- a/plugins/dfinput/pad.c +++ b/plugins/dfinput/pad.c @@ -22,6 +22,7 @@ #include #include "../../libpcsxcore/psemu_plugin_defs.h" +#include "main.h" enum { ANALOG_LEFT = 0, @@ -102,7 +103,6 @@ static uint8_t stdmodel[2][8] = { 0x00} }; -static uint8_t CurPad = 0, CurByte = 0, CurCmd = 0, CmdLen = 0; static uint8_t *buf; static uint8_t do_cmd(void) @@ -203,10 +203,26 @@ static void do_cmd2(unsigned char value) break; } break; + + case CMD_READ_DATA_AND_VIBRATE: + if (value == 1 && CurPad == 0 && in_enable_vibration) + plat_trigger_vibrate(); + break; } } -static unsigned char PADpoll_(unsigned char value) { +#if 0 +#include +unsigned char PADpoll_(unsigned char value); +unsigned char PADpoll(unsigned char value) { + unsigned char b = CurByte, r = PADpoll_(value); + printf("poll[%d] %02x %02x\n", b, value, r); + return r; +} +#define PADpoll PADpoll_ +#endif + +unsigned char PADpoll_pad(unsigned char value) { if (CurByte == 0) { CurCmd = value; @@ -228,57 +244,27 @@ static unsigned char PADpoll_(unsigned char value) { return buf[CurByte++]; } -#if 0 -#include -static unsigned char PADpoll(unsigned char value) { - unsigned char b = CurByte, r = PADpoll_(value); - printf("poll[%d] %02x %02x\n", b, value, r); - return r; -} -#else -#define PADpoll PADpoll_ -#endif - -/* hack.. */ -extern long (*PAD1_readPort1)(PadDataS *pad); - -static unsigned char PADstartPoll1(int pad) { - CurPad = 0; +unsigned char PADstartPoll_pad(int pad) { + CurPad = pad - 1; CurByte = 0; - PAD1_readPort1(&padstate[0].pad); + if (pad == 1) + PAD1_readPort1(&padstate[0].pad); + else + PAD2_readPort2(&padstate[1].pad); return 0xFF; } -/* some more hacks here but oh well */ -extern void *PAD1_startPoll, *PAD1_poll; - -void dfinput_activate(int yes) +void pad_init(void) { - static void *old_start, *old_poll; - - if (!yes) { - if (PAD1_startPoll == PADstartPoll1) - PAD1_startPoll = old_start; - if (PAD1_poll == PADpoll) - PAD1_poll = old_poll; - return; - } - - if (PAD1_startPoll == PADstartPoll1 && PAD1_poll == PADpoll) - return; - - old_start = PAD1_startPoll; - old_poll = PAD1_poll; - PAD1_startPoll = PADstartPoll1; - PAD1_poll = PADpoll; + int i; PAD1_readPort1(&padstate[0].pad); - padstate[0].PadID = padstate[0].pad.controllerType == PSE_PAD_TYPE_ANALOGPAD ? 0x73 : 0x41; - padstate[0].PadMode = padstate[0].pad.controllerType == PSE_PAD_TYPE_ANALOGPAD; + PAD2_readPort2(&padstate[1].pad); - padstate[1].PadID = 0x41; - padstate[1].PadMode = 0; + for (i = 0; i < 2; i++) { + padstate[i].PadID = padstate[i].pad.controllerType == PSE_PAD_TYPE_ANALOGPAD ? 0x73 : 0x41; + padstate[i].PadMode = padstate[i].pad.controllerType == PSE_PAD_TYPE_ANALOGPAD; + } } -