X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=include%2Fpsemu_plugin_defs.h;h=ce577b4f24cda8e8ae8791b6c7af3eed14780dba;hb=6190810ae9af3fd5f5030b4ffc05e861aa1f0769;hp=7232d033c933c81ccf98bf8e0e4db3fe166c85ac;hpb=29f3675b9b2f24b8a16db73588b8b04d628eabd8;p=pcsx_rearmed.git diff --git a/include/psemu_plugin_defs.h b/include/psemu_plugin_defs.h index 7232d033..ce577b4f 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,13 +193,14 @@ 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 + //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; @@ -212,8 +215,13 @@ typedef struct unsigned char Vib[2]; unsigned char VibF[2]; - + + //configuration mode Request 0x43 + int configMode; unsigned char reserved[87]; + + //Lightgun values + int absoluteX,absoluteY; } PadDataS;