X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=include%2Fpsemu_plugin_defs.h;h=c7a0d1c990f047082e1e4d4efd53f75fa71c09aa;hb=f056eca3edc0ae9b00581fe10c17ed2a7916dfb1;hp=fafd8c43360caa4e7ba90f1ffeb80d3d6867ea7b;hpb=b1fa817721fc53af709d68258bcbc976559fa17f;p=pcsx_rearmed.git diff --git a/include/psemu_plugin_defs.h b/include/psemu_plugin_defs.h index fafd8c43..c7a0d1c9 100644 --- a/include/psemu_plugin_defs.h +++ b/include/psemu_plugin_defs.h @@ -5,6 +5,10 @@ extern "C" { #endif +// this can't be __stdcall like it was in PSEmu API as too many functions are mixed up +#undef CALLBACK +#define CALLBACK + // header version #define _PPDK_HEADER_VERSION 3 @@ -137,7 +141,7 @@ typedef struct long PADquery(void); unsigned char PADstartPoll(int); - unsigned char PADpoll(unsigned char); + unsigned char PADpoll(unsigned char, int *); */ @@ -153,6 +157,8 @@ typedef struct +// No controller +#define PSE_PAD_TYPE_NONE 0 // MOUSE SCPH-1030 #define PSE_PAD_TYPE_MOUSE 1 // NEGCON - 16 button analog controller SLPH-00001 @@ -194,9 +200,9 @@ typedef struct // controller type - fill it withe predefined values above unsigned char controllerType; - //0 : no multitap between psx and pad - //1 : multitap between psx and pad on port 1 - //2 : multitap between psx and pad on port 2 + unsigned char padding; + unsigned short saveSize; + int portMultitap; int requestPadIndex; @@ -211,13 +217,24 @@ typedef struct // values are in range -128 - 127 unsigned char moveX, moveY; + // Lightgun values + int absoluteX, absoluteY; + unsigned char Vib[2]; unsigned char VibF[2]; - //configuration mode Request 0x43 - int configMode; - unsigned char reserved[87]; - + struct { + unsigned char configMode; + unsigned char padMode; // 0 : digital 1: analog + unsigned char cmd4dConfig[6]; + unsigned int lastUseFrame; + unsigned int digitalModeFrames; + } ds; + unsigned char multitapLongModeEnabled; + unsigned char padding2; + unsigned char txData[34]; + + unsigned char reserved[26]; } PadDataS; /* NET PlugIn v2 */