X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=include%2Fpsemu_plugin_defs.h;h=6fc59b7fcad26e7448fb5af60403aba207233df5;hb=f0a02fdcf0043d9afa9c4b26c38c28cb761e1e10;hp=0805f4ae39e8d8b28a98ab2f6d69375859fe3981;hpb=8d24cb85c2a67040aff70716f317fd6d37777dd5;p=pcsx_rearmed.git diff --git a/include/psemu_plugin_defs.h b/include/psemu_plugin_defs.h index 0805f4ae..6fc59b7f 100644 --- a/include/psemu_plugin_defs.h +++ b/include/psemu_plugin_defs.h @@ -153,6 +153,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 @@ -191,9 +193,15 @@ typedef struct typedef struct { - // controler type - fill it withe predefined values above + // 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 + int portMultitap; + int requestPadIndex; + // status of buttons - every controller fills this field unsigned short buttonStatus; @@ -205,11 +213,12 @@ typedef struct // values are in range -128 - 127 unsigned char moveX, moveY; - uint8_t Vib[2]; - - volatile uint8_t VibF[2]; - - unsigned char reserved[87]; + unsigned char Vib[2]; + unsigned char VibF[2]; + + //configuration mode Request 0x43 + int configMode; + unsigned char reserved[87]; } PadDataS;