mirror of
https://github.com/Maschell/controller_patcher.git
synced 2024-11-22 03:59:16 +01:00
Adopt header changes for the nsyshid/hid.h
This commit is contained in:
parent
7091552d3d
commit
f16ce7e9f9
@ -24,14 +24,14 @@
|
|||||||
CPTCPServer * CPTCPServer::instance = NULL;
|
CPTCPServer * CPTCPServer::instance = NULL;
|
||||||
|
|
||||||
CPTCPServer::CPTCPServer(s32 port): TCPServer(port,CPTCPServer::getPriority()) {
|
CPTCPServer::CPTCPServer(s32 port): TCPServer(port,CPTCPServer::getPriority()) {
|
||||||
CPTCPServer::AttachDetach(DETACH);
|
CPTCPServer::AttachDetach(HID_DEVICE_DETACH);
|
||||||
}
|
}
|
||||||
|
|
||||||
CPTCPServer::~CPTCPServer() {
|
CPTCPServer::~CPTCPServer() {
|
||||||
CPTCPServer::AttachDetach(DETACH);
|
CPTCPServer::AttachDetach(HID_DEVICE_DETACH);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CPTCPServer::AttachDetach(s32 attach) {
|
void CPTCPServer::AttachDetach(HIDAttachEvent attach) {
|
||||||
if(HID_DEBUG) {
|
if(HID_DEBUG) {
|
||||||
if(attach) {
|
if(attach) {
|
||||||
DEBUG_FUNCTION_LINE("Network Attach\n");
|
DEBUG_FUNCTION_LINE("Network Attach\n");
|
||||||
@ -47,11 +47,11 @@ void CPTCPServer::AttachDetach(s32 attach) {
|
|||||||
HIDDevice device;
|
HIDDevice device;
|
||||||
memset(&device,0,sizeof(device));
|
memset(&device,0,sizeof(device));
|
||||||
|
|
||||||
device.interface_index = 0;
|
device.interfaceIndex = 0;
|
||||||
device.vid = gNetworkController[i][j][NETWORK_CONTROLLER_VID];
|
device.vid = gNetworkController[i][j][NETWORK_CONTROLLER_VID];
|
||||||
device.pid = gNetworkController[i][j][NETWORK_CONTROLLER_PID];
|
device.pid = gNetworkController[i][j][NETWORK_CONTROLLER_PID];
|
||||||
device.handle = gNetworkController[i][j][NETWORK_CONTROLLER_HANDLE];
|
device.handle = gNetworkController[i][j][NETWORK_CONTROLLER_HANDLE];
|
||||||
device.max_packet_size_rx = 8;
|
device.maxPacketSizeRx = 8;
|
||||||
ControllerPatcherHID::externAttachDetachCallback(&device,attach);
|
ControllerPatcherHID::externAttachDetachCallback(&device,attach);
|
||||||
memset(gNetworkController[i][j],0,sizeof(gNetworkController[i][j]));
|
memset(gNetworkController[i][j],0,sizeof(gNetworkController[i][j]));
|
||||||
}
|
}
|
||||||
@ -68,7 +68,7 @@ void CPTCPServer::AttachDetach(s32 attach) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void CPTCPServer::DetachAndDelete() {
|
void CPTCPServer::DetachAndDelete() {
|
||||||
CPTCPServer::AttachDetach(DETACH);
|
CPTCPServer::AttachDetach(HID_DEVICE_DETACH);
|
||||||
memset(&gNetworkController,0,sizeof(gNetworkController));
|
memset(&gNetworkController,0,sizeof(gNetworkController));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -122,13 +122,13 @@ bool CPTCPServer::whileLoop() {
|
|||||||
HIDDevice device;
|
HIDDevice device;
|
||||||
memset(&device,0,sizeof(device));
|
memset(&device,0,sizeof(device));
|
||||||
device.handle = handle;
|
device.handle = handle;
|
||||||
device.interface_index = 0;
|
device.interfaceIndex = 0;
|
||||||
device.vid = SWAP16(vid);
|
device.vid = SWAP16(vid);
|
||||||
device.pid = SWAP16(pid);
|
device.pid = SWAP16(pid);
|
||||||
device.max_packet_size_rx = 8;
|
device.maxPacketSizeRx = 8;
|
||||||
|
|
||||||
my_cb_user * user = NULL;
|
my_cb_user * user = NULL;
|
||||||
ControllerPatcherHID::externAttachDetachCallback(&device,1);
|
ControllerPatcherHID::externAttachDetachCallback(&device,HID_DEVICE_ATTACH);
|
||||||
if((ret = ControllerPatcherUtils::getDataByHandle(handle,&user)) < 0) {
|
if((ret = ControllerPatcherUtils::getDataByHandle(handle,&user)) < 0) {
|
||||||
DEBUG_FUNCTION_LINE("Error in %02X: getDataByHandle(%d,%08X).\n",WIIU_CP_TCP_ATTACH,handle,&user);
|
DEBUG_FUNCTION_LINE("Error in %02X: getDataByHandle(%d,%08X).\n",WIIU_CP_TCP_ATTACH,handle,&user);
|
||||||
DEBUG_FUNCTION_LINE("Error in %02X: Config for the controller is missing.\n",WIIU_CP_TCP_ATTACH);
|
DEBUG_FUNCTION_LINE("Error in %02X: Config for the controller is missing.\n",WIIU_CP_TCP_ATTACH);
|
||||||
@ -223,12 +223,12 @@ bool CPTCPServer::whileLoop() {
|
|||||||
HIDDevice device;
|
HIDDevice device;
|
||||||
memset(&device,0,sizeof(device));
|
memset(&device,0,sizeof(device));
|
||||||
device.handle = handle;
|
device.handle = handle;
|
||||||
device.interface_index = 0;
|
device.interfaceIndex = 0;
|
||||||
device.vid = SWAP16(vidpid.vid);
|
device.vid = SWAP16(vidpid.vid);
|
||||||
device.pid = SWAP16(vidpid.pid);
|
device.pid = SWAP16(vidpid.pid);
|
||||||
device.max_packet_size_rx = 14;
|
device.maxPacketSizeRx = 14;
|
||||||
|
|
||||||
ControllerPatcherHID::externAttachDetachCallback(&device,DETACH);
|
ControllerPatcherHID::externAttachDetachCallback(&device,HID_DEVICE_DETACH);
|
||||||
memset(gNetworkController[deviceslot][user->pad_slot],0,sizeof(gNetworkController[deviceslot][user->pad_slot]));
|
memset(gNetworkController[deviceslot][user->pad_slot],0,sizeof(gNetworkController[deviceslot][user->pad_slot]));
|
||||||
if(HID_DEBUG) {
|
if(HID_DEBUG) {
|
||||||
DEBUG_FUNCTION_LINE("handle %d disconnected!\n",handle);
|
DEBUG_FUNCTION_LINE("handle %d disconnected!\n",handle);
|
||||||
|
@ -34,9 +34,6 @@
|
|||||||
|
|
||||||
#define WIIU_CP_TCP_HANDSHAKE_ABORT 0x30
|
#define WIIU_CP_TCP_HANDSHAKE_ABORT 0x30
|
||||||
|
|
||||||
#define ATTACH 0x01
|
|
||||||
#define DETACH 0x00
|
|
||||||
|
|
||||||
#define WIIU_CP_TCP_ATTACH 0x01
|
#define WIIU_CP_TCP_ATTACH 0x01
|
||||||
#define WIIU_CP_TCP_DETACH 0x02
|
#define WIIU_CP_TCP_DETACH 0x02
|
||||||
#define WIIU_CP_TCP_PING 0xF0
|
#define WIIU_CP_TCP_PING 0xF0
|
||||||
@ -87,7 +84,7 @@ private:
|
|||||||
|
|
||||||
static void DetachConnectedNetworkController();
|
static void DetachConnectedNetworkController();
|
||||||
|
|
||||||
static void AttachDetach(s32 attach);
|
static void AttachDetach(HIDAttachEvent attach);
|
||||||
|
|
||||||
virtual void DetachAndDelete();
|
virtual void DetachAndDelete();
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
* public implementation for the network controller
|
* public implementation for the network controller
|
||||||
*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
|
*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
|
||||||
|
|
||||||
s32 ControllerPatcherHID::externAttachDetachCallback(HIDDevice *p_device, u32 attach){
|
s32 ControllerPatcherHID::externAttachDetachCallback(HIDDevice *p_device, HIDAttachEvent attach){
|
||||||
HIDClient client;
|
HIDClient client;
|
||||||
memset(&client,0,sizeof(client));
|
memset(&client,0,sizeof(client));
|
||||||
return AttachDetachCallback(&client,p_device,attach);
|
return AttachDetachCallback(&client,p_device,attach);
|
||||||
@ -40,7 +40,7 @@ void ControllerPatcherHID::externHIDReadCallback(u32 handle, unsigned char *buf,
|
|||||||
* private implementation for the HID Api.
|
* private implementation for the HID Api.
|
||||||
*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
|
*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
|
||||||
|
|
||||||
s32 ControllerPatcherHID::myAttachDetachCallback(HIDClient *p_client, HIDDevice *p_device, u32 attach){
|
s32 ControllerPatcherHID::myAttachDetachCallback(HIDClient *p_client, HIDDevice *p_device, HIDAttachEvent attach){
|
||||||
return AttachDetachCallback(p_client,p_device,attach);
|
return AttachDetachCallback(p_client,p_device,attach);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -109,14 +109,14 @@ void ControllerPatcherHID::myHIDReadCallback(u32 handle, s32 error, unsigned cha
|
|||||||
* Intern Callback actions
|
* Intern Callback actions
|
||||||
*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
|
*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
|
||||||
|
|
||||||
s32 ControllerPatcherHID::AttachDetachCallback(HIDClient *p_client, HIDDevice *p_device, u32 attach){
|
s32 ControllerPatcherHID::AttachDetachCallback(HIDClient *p_client, HIDDevice *p_device, HIDAttachEvent attach){
|
||||||
if(attach){
|
if(attach){
|
||||||
DEBUG_FUNCTION_LINE("vid %04x pid %04x connected\n", SWAP16(p_device->vid),SWAP16(p_device->pid));
|
DEBUG_FUNCTION_LINE("vid %04x pid %04x connected\n", SWAP16(p_device->vid),SWAP16(p_device->pid));
|
||||||
if(HID_DEBUG){ DEBUG_FUNCTION_LINE("interface index %02x\n", p_device->interface_index);
|
if(HID_DEBUG){ DEBUG_FUNCTION_LINE("interface index %02x\n", p_device->interfaceIndex);
|
||||||
DEBUG_FUNCTION_LINE("sub class %02x\n", p_device->sub_class);
|
DEBUG_FUNCTION_LINE("sub class %02x\n", p_device->subClass);
|
||||||
DEBUG_FUNCTION_LINE("protocol %02x\n", p_device->protocol);
|
DEBUG_FUNCTION_LINE("protocol %02x\n", p_device->protocol);
|
||||||
DEBUG_FUNCTION_LINE("max packet in %02x\n", p_device->max_packet_size_rx);
|
DEBUG_FUNCTION_LINE("max packet in %02x\n", p_device->maxPacketSizeRx);
|
||||||
DEBUG_FUNCTION_LINE("max packet out %02x\n", p_device->max_packet_size_tx); }
|
DEBUG_FUNCTION_LINE("max packet out %02x\n", p_device->maxPacketSizeRx); }
|
||||||
}
|
}
|
||||||
if(!attach){
|
if(!attach){
|
||||||
DEBUG_FUNCTION_LINE("vid %04x pid %04x disconnected\n", SWAP16(p_device->vid),SWAP16(p_device->pid));
|
DEBUG_FUNCTION_LINE("vid %04x pid %04x disconnected\n", SWAP16(p_device->vid),SWAP16(p_device->pid));
|
||||||
@ -129,11 +129,11 @@ s32 ControllerPatcherHID::AttachDetachCallback(HIDClient *p_client, HIDDevice *p
|
|||||||
|
|
||||||
HIDSlotData * slotdata = &(device_info.slotdata);
|
HIDSlotData * slotdata = &(device_info.slotdata);
|
||||||
|
|
||||||
if ((p_device->sub_class == 1) && (p_device->protocol == 1)) { //Keyboard
|
if ((p_device->subClass == 1) && (p_device->protocol == 1)) { //Keyboard
|
||||||
slotdata->hidmask = gHID_LIST_KEYBOARD;
|
slotdata->hidmask = gHID_LIST_KEYBOARD;
|
||||||
slotdata->deviceslot = gHID_SLOT_KEYBOARD;
|
slotdata->deviceslot = gHID_SLOT_KEYBOARD;
|
||||||
//DEBUG_FUNCTION_LINE("Found Keyboard: device: %s slot: %d\n",byte_to_binary(device_info.slotdata.hidmask),device_info.slotdata.deviceslot);
|
//DEBUG_FUNCTION_LINE("Found Keyboard: device: %s slot: %d\n",byte_to_binary(device_info.slotdata.hidmask),device_info.slotdata.deviceslot);
|
||||||
}else if ((p_device->sub_class == 1) && (p_device->protocol == 2)){ // MOUSE
|
}else if ((p_device->subClass == 1) && (p_device->protocol == 2)){ // MOUSE
|
||||||
slotdata->hidmask = gHID_LIST_MOUSE;
|
slotdata->hidmask = gHID_LIST_MOUSE;
|
||||||
slotdata->deviceslot = gMouseSlot;
|
slotdata->deviceslot = gMouseSlot;
|
||||||
//DEBUG_FUNCTION_LINE("Found Mouse: device: %s slot: %d\n",byte_to_binary(device_info.hid),device_info.slot);
|
//DEBUG_FUNCTION_LINE("Found Mouse: device: %s slot: %d\n",byte_to_binary(device_info.hid),device_info.slot);
|
||||||
@ -158,7 +158,7 @@ s32 ControllerPatcherHID::AttachDetachCallback(HIDClient *p_client, HIDDevice *p
|
|||||||
my_cb_user *usr = (my_cb_user *) memalign(64,sizeof(my_cb_user));
|
my_cb_user *usr = (my_cb_user *) memalign(64,sizeof(my_cb_user));
|
||||||
usr->buf = buf;
|
usr->buf = buf;
|
||||||
usr->slotdata = device_info.slotdata;
|
usr->slotdata = device_info.slotdata;
|
||||||
usr->transfersize = p_device->max_packet_size_rx;
|
usr->transfersize = p_device->maxPacketSizeRx;
|
||||||
usr->handle = p_device->handle;
|
usr->handle = p_device->handle;
|
||||||
gHIDAttached |= slotdata->hidmask;
|
gHIDAttached |= slotdata->hidmask;
|
||||||
gHIDCurrentDevice |= slotdata->hidmask;
|
gHIDCurrentDevice |= slotdata->hidmask;
|
||||||
@ -233,11 +233,11 @@ s32 ControllerPatcherHID::AttachDetachCallback(HIDClient *p_client, HIDDevice *p
|
|||||||
HIDWrite(p_device->handle, usr->buf, 1, NULL,NULL);
|
HIDWrite(p_device->handle, usr->buf, 1, NULL,NULL);
|
||||||
HIDRead(p_device->handle, usr->buf, usr->transfersize, myHIDReadCallback, usr);
|
HIDRead(p_device->handle, usr->buf, usr->transfersize, myHIDReadCallback, usr);
|
||||||
}else if (slotdata->hidmask == gHID_LIST_MOUSE){
|
}else if (slotdata->hidmask == gHID_LIST_MOUSE){
|
||||||
HIDSetProtocol(p_device->handle, p_device->interface_index, 0, 0, 0);
|
HIDSetProtocol(p_device->handle, p_device->interfaceIndex, 0, 0, 0);
|
||||||
//HIDGetDescriptor(p_device->handle,0x22,0x00,0,my_buf,512,my_foo_cb,NULL);
|
//HIDGetDescriptor(p_device->handle,0x22,0x00,0,my_buf,512,my_foo_cb,NULL);
|
||||||
HIDSetIdle(p_device->handle,p_device->interface_index,1,NULL,NULL);
|
HIDSetIdle(p_device->handle,p_device->interfaceIndex,1,NULL,NULL);
|
||||||
gHID_Mouse_Mode = HID_MOUSE_MODE_AIM;
|
gHID_Mouse_Mode = HID_MOUSE_MODE_AIM;
|
||||||
HIDRead(p_device->handle, buf, p_device->max_packet_size_rx, myHIDMouseReadCallback, usr);
|
HIDRead(p_device->handle, buf, p_device->maxPacketSizeRx, myHIDMouseReadCallback, usr);
|
||||||
}else if (slotdata->hidmask == gHID_LIST_SWITCH_PRO){
|
}else if (slotdata->hidmask == gHID_LIST_SWITCH_PRO){
|
||||||
s32 read_result = HIDRead(p_device->handle, usr->buf, usr->transfersize, NULL, NULL);
|
s32 read_result = HIDRead(p_device->handle, usr->buf, usr->transfersize, NULL, NULL);
|
||||||
if(read_result == 64){
|
if(read_result == 64){
|
||||||
@ -267,17 +267,17 @@ s32 ControllerPatcherHID::AttachDetachCallback(HIDClient *p_client, HIDDevice *p
|
|||||||
HIDRead(p_device->handle, usr->buf, usr->transfersize, myHIDReadCallback, usr);
|
HIDRead(p_device->handle, usr->buf, usr->transfersize, myHIDReadCallback, usr);
|
||||||
}
|
}
|
||||||
}else if (slotdata->hidmask == gHID_LIST_KEYBOARD){
|
}else if (slotdata->hidmask == gHID_LIST_KEYBOARD){
|
||||||
HIDSetProtocol(p_device->handle, p_device->interface_index, 1, 0, 0);
|
HIDSetProtocol(p_device->handle, p_device->interfaceIndex, 1, 0, 0);
|
||||||
HIDSetIdle(p_device->handle, p_device->interface_index, 0, 0, 0);
|
HIDSetIdle(p_device->handle, p_device->interfaceIndex, 0, 0, 0);
|
||||||
HIDRead(p_device->handle, buf, p_device->max_packet_size_rx, myHIDReadCallback, usr);
|
HIDRead(p_device->handle, buf, p_device->maxPacketSizeRx, myHIDReadCallback, usr);
|
||||||
}else if (slotdata->hidmask == gHID_LIST_DS3){
|
}else if (slotdata->hidmask == gHID_LIST_DS3){
|
||||||
HIDSetProtocol(p_device->handle, p_device->interface_index, 1, 0, 0);
|
HIDSetProtocol(p_device->handle, p_device->interfaceIndex, 1, 0, 0);
|
||||||
HIDDS3Rumble(p_device->handle,usr,0);
|
HIDDS3Rumble(p_device->handle,usr,0);
|
||||||
buf[0] = 0x42; buf[1] = 0x0c; buf[2] = 0x00; buf[3] = 0x00;
|
buf[0] = 0x42; buf[1] = 0x0c; buf[2] = 0x00; buf[3] = 0x00;
|
||||||
HIDSetReport(p_device->handle, HID_REPORT_FEATURE, PS3_F4_REPORT_ID, buf, PS3_F4_REPORT_LEN, NULL, NULL);
|
HIDSetReport(p_device->handle, HID_REPORT_FEATURE, PS3_F4_REPORT_ID, buf, PS3_F4_REPORT_LEN, NULL, NULL);
|
||||||
HIDRead(p_device->handle, usr->buf, p_device->max_packet_size_rx, myHIDReadCallback, usr);
|
HIDRead(p_device->handle, usr->buf, p_device->maxPacketSizeRx, myHIDReadCallback, usr);
|
||||||
}else{
|
}else{
|
||||||
HIDRead(p_device->handle, usr->buf, p_device->max_packet_size_rx, myHIDReadCallback, usr);
|
HIDRead(p_device->handle, usr->buf, p_device->maxPacketSizeRx, myHIDReadCallback, usr);
|
||||||
}
|
}
|
||||||
return HID_DEVICE_ATTACH;
|
return HID_DEVICE_ATTACH;
|
||||||
|
|
||||||
|
@ -44,7 +44,7 @@ class ControllerPatcherHID{
|
|||||||
friend class ControllerPatcher;
|
friend class ControllerPatcher;
|
||||||
friend class ControllerPatcherUtils;
|
friend class ControllerPatcherUtils;
|
||||||
public:
|
public:
|
||||||
static s32 externAttachDetachCallback(HIDDevice *p_device, u32 attach);
|
static s32 externAttachDetachCallback(HIDDevice *p_device, HIDAttachEvent attach);
|
||||||
static void externHIDReadCallback(u32 handle, unsigned char *buf, u32 bytes_transfered, my_cb_user * usr);
|
static void externHIDReadCallback(u32 handle, unsigned char *buf, u32 bytes_transfered, my_cb_user * usr);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
@ -65,12 +65,12 @@ class ControllerPatcherHID{
|
|||||||
/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||||
* HID Callbacks
|
* HID Callbacks
|
||||||
*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
|
*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
|
||||||
static s32 myAttachDetachCallback(HIDClient *p_client, HIDDevice *p_device, u32 attach);
|
static s32 myAttachDetachCallback(HIDClient *p_client, HIDDevice *p_device, HIDAttachEvent attach);
|
||||||
|
|
||||||
static void myHIDMouseReadCallback(u32 handle, s32 error, unsigned char *buf, u32 bytes_transfered, void *p_user);
|
static void myHIDMouseReadCallback(u32 handle, s32 error, unsigned char *buf, u32 bytes_transfered, void *p_user);
|
||||||
static void myHIDReadCallback(u32 handle, s32 error, unsigned char *buf, u32 bytes_transfered, void *p_user);
|
static void myHIDReadCallback(u32 handle, s32 error, unsigned char *buf, u32 bytes_transfered, void *p_user);
|
||||||
|
|
||||||
static s32 AttachDetachCallback(HIDClient *p_client, HIDDevice *p_device, u32 attach);
|
static s32 AttachDetachCallback(HIDClient *p_client, HIDDevice *p_device, HIDAttachEvent attach);
|
||||||
static void HIDReadCallback(u32 handle, unsigned char *buf, u32 bytes_transfered, my_cb_user * usr);
|
static void HIDReadCallback(u32 handle, unsigned char *buf, u32 bytes_transfered, my_cb_user * usr);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user