mirror of
https://github.com/Maschell/controller_patcher.git
synced 2024-11-22 12:09:16 +01:00
Tweaked deadzones of the PS3 pad. Some code clean up
This commit is contained in:
parent
d7537197b9
commit
96893fe883
@ -112,13 +112,17 @@ void init_config_controller(){
|
|||||||
|
|
||||||
setConfigValue((u8*)&config_controller[CONTRPD_DS3][CONTRPS_VPAD_BUTTON_L_STICK_X], 0x06,0x80);
|
setConfigValue((u8*)&config_controller[CONTRPD_DS3][CONTRPS_VPAD_BUTTON_L_STICK_X], 0x06,0x80);
|
||||||
setConfigValue((u8*)&config_controller[CONTRPD_DS3][CONTRPS_VPAD_BUTTON_L_STICK_X_MINMAX], 0x00,0xFF);
|
setConfigValue((u8*)&config_controller[CONTRPD_DS3][CONTRPS_VPAD_BUTTON_L_STICK_X_MINMAX], 0x00,0xFF);
|
||||||
|
setConfigValue((u8*)&config_controller[CONTRPD_DS3][CONTRPS_VPAD_BUTTON_L_STICK_X_DEADZONE],CONTROLLER_PATCHER_VALUE_SET,0x06);
|
||||||
setConfigValue((u8*)&config_controller[CONTRPD_DS3][CONTRPS_VPAD_BUTTON_L_STICK_Y], 0x07,0x80);
|
setConfigValue((u8*)&config_controller[CONTRPD_DS3][CONTRPS_VPAD_BUTTON_L_STICK_Y], 0x07,0x80);
|
||||||
setConfigValue((u8*)&config_controller[CONTRPD_DS3][CONTRPS_VPAD_BUTTON_L_STICK_Y_INVERT], CONTROLLER_PATCHER_VALUE_SET,0x01);
|
|
||||||
setConfigValue((u8*)&config_controller[CONTRPD_DS3][CONTRPS_VPAD_BUTTON_L_STICK_Y_MINMAX], 0x00,0xFF);
|
setConfigValue((u8*)&config_controller[CONTRPD_DS3][CONTRPS_VPAD_BUTTON_L_STICK_Y_MINMAX], 0x00,0xFF);
|
||||||
setConfigValue((u8*)&config_controller[CONTRPD_DS3][CONTRPS_VPAD_BUTTON_R_STICK_X], 0x08,0x83);
|
setConfigValue((u8*)&config_controller[CONTRPD_DS3][CONTRPS_VPAD_BUTTON_L_STICK_Y_DEADZONE],CONTROLLER_PATCHER_VALUE_SET,0x06);
|
||||||
|
setConfigValue((u8*)&config_controller[CONTRPD_DS3][CONTRPS_VPAD_BUTTON_L_STICK_Y_INVERT], CONTROLLER_PATCHER_VALUE_SET,0x01);
|
||||||
|
setConfigValue((u8*)&config_controller[CONTRPD_DS3][CONTRPS_VPAD_BUTTON_R_STICK_X], 0x08,0x80);
|
||||||
|
setConfigValue((u8*)&config_controller[CONTRPD_DS3][CONTRPS_VPAD_BUTTON_R_STICK_X_DEADZONE],CONTROLLER_PATCHER_VALUE_SET,0x08);
|
||||||
setConfigValue((u8*)&config_controller[CONTRPD_DS3][CONTRPS_VPAD_BUTTON_R_STICK_X_MINMAX], 0x00,0xFF);
|
setConfigValue((u8*)&config_controller[CONTRPD_DS3][CONTRPS_VPAD_BUTTON_R_STICK_X_MINMAX], 0x00,0xFF);
|
||||||
setConfigValue((u8*)&config_controller[CONTRPD_DS3][CONTRPS_VPAD_BUTTON_R_STICK_Y], 0x09,0x80);
|
setConfigValue((u8*)&config_controller[CONTRPD_DS3][CONTRPS_VPAD_BUTTON_R_STICK_Y], 0x09,0x80);
|
||||||
setConfigValue((u8*)&config_controller[CONTRPD_DS3][CONTRPS_VPAD_BUTTON_R_STICK_Y_INVERT], CONTROLLER_PATCHER_VALUE_SET,0x01);
|
setConfigValue((u8*)&config_controller[CONTRPD_DS3][CONTRPS_VPAD_BUTTON_R_STICK_Y_INVERT], CONTROLLER_PATCHER_VALUE_SET,0x01);
|
||||||
|
setConfigValue((u8*)&config_controller[CONTRPD_DS3][CONTRPS_VPAD_BUTTON_R_STICK_Y_DEADZONE],CONTROLLER_PATCHER_VALUE_SET,0x06);
|
||||||
setConfigValue((u8*)&config_controller[CONTRPD_DS3][CONTRPS_VPAD_BUTTON_R_STICK_Y_MINMAX], 0x00,0xFF);
|
setConfigValue((u8*)&config_controller[CONTRPD_DS3][CONTRPS_VPAD_BUTTON_R_STICK_Y_MINMAX], 0x00,0xFF);
|
||||||
|
|
||||||
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
//!----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
||||||
@ -800,8 +804,8 @@ void setTouch(HID_Data_Struct data,VPADData * buffer){
|
|||||||
if(hid & HID_LIST_MOUSE && gHID_Mouse_Mode == HID_MOUSE_MODE_TOUCH){
|
if(hid & HID_LIST_MOUSE && gHID_Mouse_Mode == HID_MOUSE_MODE_TOUCH){
|
||||||
if(getButtonPressed(data,VPAD_BUTTON_TOUCH)){
|
if(getButtonPressed(data,VPAD_BUTTON_TOUCH)){
|
||||||
HID_Mouse_Data * ms_data = (HID_Mouse_Data *) src;
|
HID_Mouse_Data * ms_data = (HID_Mouse_Data *) src;
|
||||||
int x_mouse = 80 + ((int)(((ms_data->X)*1.0/1280.0)*3890.0));
|
int x_mouse = 80 + ((int)(((ms_data->X)*1.0f/1280.0)*3890.0f));
|
||||||
int y_mouse = 3910 - ((int)(((ms_data->Y)*1.0/720.0)*3760.0));
|
int y_mouse = 3910 - ((int)(((ms_data->Y)*1.0f/720.0)*3760.0f));
|
||||||
buffer->tpdata.x = x_mouse;
|
buffer->tpdata.x = x_mouse;
|
||||||
buffer->tpdata.y = y_mouse;
|
buffer->tpdata.y = y_mouse;
|
||||||
buffer->tpdata.touched = 1;
|
buffer->tpdata.touched = 1;
|
||||||
@ -826,12 +830,12 @@ f32 convertAnalogValue(u8 value, u8 default_val, u8 min, u8 max, u8 invert,u8 de
|
|||||||
}else if((value+deadzone) < default_val){
|
}else if((value+deadzone) < default_val){
|
||||||
range = (default_val - min);
|
range = (default_val - min);
|
||||||
}else{
|
}else{
|
||||||
return 0.0;
|
return 0.0f;
|
||||||
}
|
}
|
||||||
if(invert != 0x01){
|
if(invert != 0x01){
|
||||||
return (new_value / (1.0*range));
|
return (new_value / (1.0f*range));
|
||||||
}else{
|
}else{
|
||||||
return -1.0*(new_value / (1.0*range));
|
return -1.0f*(new_value / (1.0f*range));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -842,8 +846,8 @@ void convertAnalogSticks(HID_Data_Struct data, VPADData * buffer){
|
|||||||
if (hid & HID_LIST_MOUSE){
|
if (hid & HID_LIST_MOUSE){
|
||||||
if(gHID_Mouse_Mode == HID_MOUSE_MODE_AIM){ // TODO: tweak values
|
if(gHID_Mouse_Mode == HID_MOUSE_MODE_AIM){ // TODO: tweak values
|
||||||
HID_Mouse_Data * ms_data = (HID_Mouse_Data *) src;
|
HID_Mouse_Data * ms_data = (HID_Mouse_Data *) src;
|
||||||
buffer->rstick.x += ms_data->deltaX/10.0;
|
buffer->rstick.x += ms_data->deltaX/10.0f;
|
||||||
buffer->rstick.y += -1*(ms_data->deltaY/10.0);
|
buffer->rstick.y += -1.0f*(ms_data->deltaY/10.0f);
|
||||||
changed = 1;
|
changed = 1;
|
||||||
}
|
}
|
||||||
}else{
|
}else{
|
||||||
@ -860,34 +864,34 @@ void convertAnalogSticks(HID_Data_Struct data, VPADData * buffer){
|
|||||||
|
|
||||||
if(w){
|
if(w){
|
||||||
if(!s){
|
if(!s){
|
||||||
buffer->lstick.y = 1;
|
buffer->lstick.y = 1.0f;
|
||||||
}
|
}
|
||||||
if(a || d){
|
if(a || d){
|
||||||
buffer->lstick.y = 0.75;
|
buffer->lstick.y = 0.75f;
|
||||||
if(a) buffer->lstick.x = -0.75;
|
if(a) buffer->lstick.x = -0.75f;
|
||||||
if(d) buffer->lstick.x = 0.75;
|
if(d) buffer->lstick.x = 0.75f;
|
||||||
}
|
}
|
||||||
changed = 1;
|
changed = 1;
|
||||||
}else if(s){
|
}else if(s){
|
||||||
if(!w){
|
if(!w){
|
||||||
buffer->lstick.y = -1;
|
buffer->lstick.y = -1.0f;
|
||||||
}
|
}
|
||||||
if(a || d){
|
if(a || d){
|
||||||
buffer->lstick.y = -0.75;
|
buffer->lstick.y = -0.75f;
|
||||||
if(a) buffer->lstick.x = -0.75;
|
if(a) buffer->lstick.x = -0.75f;
|
||||||
if(d) buffer->lstick.x = 0.75;
|
if(d) buffer->lstick.x = 0.75f;
|
||||||
}
|
}
|
||||||
changed = 1;
|
changed = 1;
|
||||||
}else{
|
}else{
|
||||||
if(a){
|
if(a){
|
||||||
if(!d){
|
if(!d){
|
||||||
buffer->lstick.x = -1;
|
buffer->lstick.x = -1.0f;
|
||||||
changed = 1;
|
changed = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
}else if(d){
|
}else if(d){
|
||||||
if(!s){
|
if(!s){
|
||||||
buffer->lstick.x = 1;
|
buffer->lstick.x = 1.0f;
|
||||||
changed = 1;
|
changed = 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -943,10 +947,10 @@ void convertAnalogSticks(HID_Data_Struct data, VPADData * buffer){
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(changed){
|
if(changed){
|
||||||
if(buffer->rstick.x > 1.0) buffer->rstick.x = 1.0;
|
if(buffer->rstick.x > 1.0f) buffer->rstick.x = 1.0f;
|
||||||
if(buffer->rstick.y > 1.0) buffer->rstick.y = 1.0;
|
if(buffer->rstick.y > 1.0f) buffer->rstick.y = 1.0f;
|
||||||
if(buffer->rstick.x < -1.0) buffer->rstick.x = -1.0;
|
if(buffer->rstick.x < -1.0f) buffer->rstick.x = -1.0f;
|
||||||
if(buffer->rstick.y < -1.0) buffer->rstick.y = -1.0;
|
if(buffer->rstick.y < -1.0f) buffer->rstick.y = -1.0f;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -1010,7 +1014,6 @@ void my_ms_read_cb(unsigned int handle, int error, unsigned char *buf, unsigned
|
|||||||
y_value = buf[xy_offset+1];
|
y_value = buf[xy_offset+1];
|
||||||
}else if(type == MOUSE_XY_TYPE_B){
|
}else if(type == MOUSE_XY_TYPE_B){
|
||||||
x_value = buf[xy_offset];
|
x_value = buf[xy_offset];
|
||||||
|
|
||||||
y_value = ((buf[xy_offset+1] & 0xF0) >>4) | ((buf[xy_offset+2] & 0x0F) <<4);
|
y_value = ((buf[xy_offset+1] & 0xF0) >>4) | ((buf[xy_offset+2] & 0x0F) <<4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user