dolphin/Source/Core/DolphinWX/TASInputDlg.cpp

777 lines
22 KiB
C++
Raw Normal View History

// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
2014-02-22 23:36:30 +01:00
#include <cstddef>
#include <wx/bitmap.h>
#include <wx/chartype.h>
#include <wx/checkbox.h>
#include <wx/dcmemory.h>
#include <wx/defs.h>
#include <wx/dialog.h>
#include <wx/event.h>
#include <wx/gdicmn.h>
#include <wx/layout.h>
#include <wx/sizer.h>
#include <wx/slider.h>
#include <wx/statbmp.h>
#include <wx/string.h>
#include <wx/textctrl.h>
#include <wx/translation.h>
#include <wx/validate.h>
#include <wx/window.h>
#include <wx/windowid.h>
#include "Common/CommonTypes.h"
2014-09-15 05:42:32 +02:00
#include "Core/HW/WiimoteEmu/MatrixMath.h"
#include "DolphinWX/TASInputDlg.h"
2014-02-22 23:36:30 +01:00
#include "InputCommon/GCPadStatus.h"
2014-09-15 05:42:32 +02:00
BEGIN_EVENT_TABLE(TASInputDlg, wxDialog)
EVT_CLOSE(TASInputDlg::OnCloseWindow)
END_EVENT_TABLE()
TASInputDlg::TASInputDlg(wxWindow* parent, wxWindowID id, const wxString& title,
2014-09-15 05:42:32 +02:00
const wxPoint& position, const wxSize& size, long style)
: wxDialog(parent, id, title, position, size, style)
{
2014-09-15 05:42:32 +02:00
Buttons[0] = &A;
Buttons[1] = &B;
Buttons[2] = &dpad_down;
Buttons[3] = &dpad_up;
Buttons[4] = &dpad_left;
Buttons[5] = &dpad_right;
Buttons[13] = nullptr;
Controls[0] = &MainStick.xCont;
Controls[1] = &MainStick.yCont;
Controls[9] = nullptr;
A = CreateButton("A");
B = CreateButton("B");
dpad_up = CreateButton("Up");
dpad_right = CreateButton("Right");
dpad_down = CreateButton("Down");
dpad_left = CreateButton("Left");
buttons_dpad->AddSpacer(20);
buttons_dpad->Add(dpad_up.Checkbox, false);
buttons_dpad->AddSpacer(20);
buttons_dpad->Add(dpad_left.Checkbox, false);
buttons_dpad->AddSpacer(20);
buttons_dpad->Add(dpad_right.Checkbox, false);
buttons_dpad->AddSpacer(20);
buttons_dpad->Add(dpad_down.Checkbox, false);
buttons_dpad->AddSpacer(20);
}
const int TASInputDlg::GCPadButtonsBitmask[12] = {
PAD_BUTTON_A, PAD_BUTTON_B, PAD_BUTTON_DOWN, PAD_BUTTON_UP, PAD_BUTTON_LEFT,PAD_BUTTON_RIGHT,
PAD_BUTTON_X, PAD_BUTTON_Y, PAD_TRIGGER_Z, PAD_TRIGGER_L, PAD_TRIGGER_R, PAD_BUTTON_START
};
const int TASInputDlg::WiiButtonsBitmask[13] = {
WiimoteEmu::Wiimote::BUTTON_A, WiimoteEmu::Wiimote::BUTTON_B, WiimoteEmu::Wiimote::PAD_DOWN,
WiimoteEmu::Wiimote::PAD_UP, WiimoteEmu::Wiimote::PAD_LEFT, WiimoteEmu::Wiimote::PAD_RIGHT,
WiimoteEmu::Wiimote::BUTTON_ONE, WiimoteEmu::Wiimote::BUTTON_TWO, WiimoteEmu::Wiimote::BUTTON_PLUS,
WiimoteEmu::Wiimote::BUTTON_MINUS, WiimoteEmu::Wiimote::BUTTON_HOME
};
void TASInputDlg::CreateWiiLayout()
{
if (hasLayout)
return;
isWii = true;
hasLayout = true;
Buttons[6] = &ONE;
Buttons[7] = &TWO;
Buttons[8] = &PLUS;
Buttons[9] = &MINUS;
Buttons[10] = &HOME;
Buttons[11] = nullptr; //&C;
Buttons[12] = nullptr; //&Z;
2014-10-08 04:35:56 +02:00
Controls[2] = nullptr;
Controls[3] = nullptr;
Controls[4] = nullptr;
Controls[5] = nullptr;
2014-09-15 05:42:32 +02:00
Controls[6] = &xCont;
Controls[7] = &yCont;
Controls[8] = &zCont;
MainStick = CreateStick(ID_MAIN_STICK);
wxStaticBoxSizer* const main_stick = CreateStickLayout(&MainStick, "IR");
MainStick.xCont.defaultValue = 512;
MainStick.yCont.defaultValue = 384;
wxStaticBoxSizer* const axisBox = new wxStaticBoxSizer(wxHORIZONTAL, this, _("Orientation"));
wxStaticBoxSizer* const xBox = new wxStaticBoxSizer(wxVERTICAL, this, _("X"));
wxStaticBoxSizer* const yBox = new wxStaticBoxSizer(wxVERTICAL, this, _("Y"));
wxStaticBoxSizer* const zBox = new wxStaticBoxSizer(wxVERTICAL, this, _("Z"));
xCont = CreateControl(wxSL_VERTICAL, -1, 100);
yCont = CreateControl(wxSL_VERTICAL, -1, 100);
zCont = CreateControl(wxSL_VERTICAL, -1, 100);
zCont.defaultValue = 154;
xBox->Add(xCont.Slider, 0, wxALIGN_CENTER_VERTICAL);
xBox->Add(xCont.Text, 0, wxALIGN_CENTER_VERTICAL);
yBox->Add(yCont.Slider, 0, wxALIGN_CENTER_VERTICAL);
yBox->Add(yCont.Text, 0, wxALIGN_CENTER_VERTICAL);
zBox->Add(zCont.Slider, 0, wxALIGN_CENTER_VERTICAL);
zBox->Add(zCont.Text, 0, wxALIGN_CENTER_VERTICAL);
axisBox->Add(xBox);
axisBox->Add(yBox);
axisBox->Add(zBox);
for (unsigned int i = 0; i < 10; ++i)
{
if (Controls[i] != nullptr)
Controls[i]->Slider->Connect(wxEVT_RIGHT_UP, wxMouseEventHandler(TASInputDlg::OnRightClickSlider), nullptr, this);
}
wxStaticBoxSizer* const buttons_box = new wxStaticBoxSizer(wxVERTICAL, this, _("Buttons"));
wxGridSizer* const buttons_grid = new wxGridSizer(4);
//C = CreateButton("C");
//Z = CreateButton("Z");
PLUS = CreateButton("+");
MINUS = CreateButton("-");
ONE = CreateButton("1");
TWO = CreateButton("2");
HOME = CreateButton("HOME");
buttons_grid->Add(A.Checkbox, false);
buttons_grid->Add(B.Checkbox, false);
//buttons_grid->Add(C.Checkbox, false);
//buttons_grid->Add(Z.Checkbox, false);
buttons_grid->Add(PLUS.Checkbox, false);
buttons_grid->Add(MINUS.Checkbox, false);
buttons_grid->Add(ONE.Checkbox, false);
buttons_grid->Add(TWO.Checkbox, false);
buttons_grid->Add(HOME.Checkbox, false);
buttons_grid->AddSpacer(5);
buttons_box->Add(buttons_grid);
buttons_box->Add(buttons_dpad);
wxBoxSizer* const main_szr = new wxBoxSizer(wxHORIZONTAL);
main_szr->Add(main_stick);
main_szr->Add(axisBox);
main_szr->Add(buttons_box);
SetSizerAndFit(main_szr);
ResetValues();
}
void TASInputDlg::CreateGCLayout()
{
if (hasLayout)
return;
Buttons[6] = &X;
Buttons[7] = &Y;
Buttons[8] = &Z;
Buttons[9] = &L;
Buttons[10] = &R;
Buttons[11] = &START;
Buttons[12] = nullptr;
Controls[2] = &lCont;
Controls[3] = &rCont;
Controls[4] = &CStick.xCont;
Controls[5] = &CStick.yCont;
2014-10-08 04:35:56 +02:00
Controls[6] = nullptr;
Controls[7] = nullptr;
Controls[8] = nullptr;
wxBoxSizer* const top_box = new wxBoxSizer(wxHORIZONTAL);
wxBoxSizer* const bottom_box = new wxBoxSizer(wxHORIZONTAL);
2014-09-15 05:42:32 +02:00
MainStick = CreateStick(ID_MAIN_STICK);
wxStaticBoxSizer* const main_box = CreateStickLayout(&MainStick, "Main Stick");
2014-09-15 05:42:32 +02:00
CStick = CreateStick(ID_C_STICK);
wxStaticBoxSizer* const c_box = CreateStickLayout(&CStick, "C Stick");
2014-09-15 05:42:32 +02:00
wxStaticBoxSizer* const shoulder_box = new wxStaticBoxSizer(wxHORIZONTAL, this, _("Shoulder Buttons"));
lCont = CreateControl(wxSL_VERTICAL | wxSL_INVERSE, -1, 100);
lCont.defaultValue = 0;
rCont = CreateControl(wxSL_VERTICAL | wxSL_INVERSE, -1, 100);
rCont.defaultValue = 0;
shoulder_box->Add(lCont.Slider, 0, wxALIGN_CENTER_VERTICAL);
shoulder_box->Add(lCont.Text, 0, wxALIGN_CENTER_VERTICAL);
shoulder_box->Add(rCont.Slider, 0, wxALIGN_CENTER_VERTICAL);
shoulder_box->Add(rCont.Text, 0, wxALIGN_CENTER_VERTICAL);
2014-09-15 05:42:32 +02:00
for (unsigned int i = 0; i < 10; ++i)
{
if (Controls[i] != nullptr)
Controls[i]->Slider->Connect(wxEVT_RIGHT_UP, wxMouseEventHandler(TASInputDlg::OnRightClickSlider), nullptr, this);
}
wxStaticBoxSizer* const buttons_box = new wxStaticBoxSizer(wxVERTICAL, this, _("Buttons"));
wxGridSizer* const buttons_grid = new wxGridSizer(4);
2014-09-15 05:42:32 +02:00
X = CreateButton("X");
Y = CreateButton("Y");
L = CreateButton("L");
R = CreateButton("R");
Z = CreateButton("Z");
START = CreateButton("Start");
buttons_grid->Add(A.Checkbox, false);
buttons_grid->Add(B.Checkbox, false);
buttons_grid->Add(X.Checkbox, false);
buttons_grid->Add(Y.Checkbox, false);
buttons_grid->Add(L.Checkbox, false);
buttons_grid->Add(R.Checkbox, false);
buttons_grid->Add(Z.Checkbox, false);
buttons_grid->Add(START.Checkbox, false);
buttons_grid->AddSpacer(5);
buttons_box->Add(buttons_grid);
buttons_box->Add(buttons_dpad);
wxBoxSizer* const main_szr = new wxBoxSizer(wxVERTICAL);
2012-01-22 01:39:17 +01:00
top_box->AddSpacer(5);
top_box->Add(main_box);
top_box->AddSpacer(5);
top_box->Add(c_box);
top_box->AddSpacer(5);
bottom_box->AddSpacer(5);
bottom_box->Add(shoulder_box);
bottom_box->AddSpacer(5);
bottom_box->Add(buttons_box);
bottom_box->AddSpacer(5);
main_szr->Add(top_box);
main_szr->Add(bottom_box);
SetSizerAndFit(main_szr);
ResetValues();
2014-10-08 15:46:28 +02:00
hasLayout = true;
}
2014-09-15 05:42:32 +02:00
TASInputDlg::Control TASInputDlg::CreateControl(long style, int width, int height, u32 range)
{
2014-09-15 05:42:32 +02:00
Control tempCont;
tempCont.range = range;
tempCont.Slider = new wxSlider(this, eleID++, range/2+1, 0, range, wxDefaultPosition, wxDefaultSize, style);
tempCont.Slider->SetMinSize(wxSize(width, height));
tempCont.Slider->Connect(wxEVT_SLIDER, wxCommandEventHandler(TASInputDlg::UpdateFromSliders), nullptr, this);
tempCont.Text = new wxTextCtrl(this, eleID++, std::to_string(range/2+1), wxDefaultPosition, wxSize(40, 20));
tempCont.Text->SetMaxLength(range > 999 ? 4 : 3);
tempCont.Text_ID = eleID - 1;
tempCont.Text->Connect(wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler(TASInputDlg::UpdateFromText), nullptr, this);
tempCont.Slider_ID = eleID - 2;
return tempCont;
}
2014-09-15 05:42:32 +02:00
TASInputDlg::Stick TASInputDlg::CreateStick(int id_stick)
2012-01-22 01:39:17 +01:00
{
2014-09-15 05:42:32 +02:00
Stick tempStick;
tempStick.bitmap = new wxStaticBitmap(this, id_stick, CreateStickBitmap(128,128), wxDefaultPosition, wxDefaultSize);
tempStick.bitmap->Connect(wxEVT_MOTION, wxMouseEventHandler(TASInputDlg::OnMouseDownL), nullptr, this);
tempStick.bitmap->Connect(wxEVT_LEFT_DOWN, wxMouseEventHandler(TASInputDlg::OnMouseDownL), nullptr, this);
tempStick.bitmap->Connect(wxEVT_RIGHT_UP, wxMouseEventHandler(TASInputDlg::OnMouseUpR), nullptr, this);
tempStick.xCont = CreateControl(wxSL_HORIZONTAL | (isWii ? wxSL_INVERSE : 0), 120, -1, isWii ? 1024 : 255);
tempStick.yCont = CreateControl(wxSL_VERTICAL | (isWii ? 0 : wxSL_INVERSE), -1, 120, isWii ? 768 : 255);
return tempStick;
}
2014-09-15 05:42:32 +02:00
wxStaticBoxSizer* TASInputDlg::CreateStickLayout(Stick* tempStick, std::string title)
{
wxStaticBoxSizer* const temp_box = new wxStaticBoxSizer(wxHORIZONTAL, this, _(title));
wxBoxSizer* const temp_xslider_box = new wxBoxSizer(wxHORIZONTAL);
wxBoxSizer* const temp_yslider_box = new wxBoxSizer(wxVERTICAL);
wxBoxSizer* const temp_stick_box = new wxBoxSizer(wxVERTICAL);
temp_xslider_box->Add(tempStick->xCont.Slider, 0, wxALIGN_TOP);
temp_xslider_box->Add(tempStick->xCont.Text, 0, wxALIGN_TOP);
temp_stick_box->Add(temp_xslider_box);
temp_stick_box->Add(tempStick->bitmap,0, wxALL|wxCenter,3);
temp_box->Add(temp_stick_box);
temp_yslider_box->Add(tempStick->yCont.Slider, 0, wxALIGN_CENTER_VERTICAL);
temp_yslider_box->Add(tempStick->yCont.Text, 0, wxALIGN_CENTER_VERTICAL);
temp_box->Add(temp_yslider_box);
return temp_box;
}
2014-09-15 05:42:32 +02:00
TASInputDlg::Button TASInputDlg::CreateButton(const std::string& name)
{
Button temp;
wxCheckBox* checkbox = new wxCheckBox(this, eleID++, name, wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, wxCheckBoxNameStr);
checkbox->Connect(wxEVT_RIGHT_DOWN, wxMouseEventHandler(TASInputDlg::SetTurbo), nullptr, this);
checkbox->Connect(wxEVT_LEFT_DOWN, wxMouseEventHandler(TASInputDlg::SetTurbo), nullptr, this);
temp.Checkbox = checkbox;
temp.ID = eleID - 1;
return temp;
}
2014-09-15 05:42:32 +02:00
void TASInputDlg::ResetValues()
{
if (!hasLayout)
return;
2014-09-15 05:42:32 +02:00
for (unsigned int i = 0; i < 14; ++i)
{
2014-09-15 05:42:32 +02:00
if (Buttons[i] != nullptr)
Buttons[i]->Checkbox->SetValue(false);
}
2014-09-15 05:42:32 +02:00
for (unsigned int i = 0; i < 10; ++i)
2012-01-22 01:39:17 +01:00
{
2014-09-15 05:42:32 +02:00
if (Controls[i] != nullptr)
{
Controls[i]->value = Controls[i]->defaultValue;
Controls[i]->Slider->SetValue(Controls[i]->defaultValue);
Controls[i]->Text->SetValue(std::to_string(Controls[i]->defaultValue));
}
2012-01-22 01:39:17 +01:00
}
2014-09-15 05:42:32 +02:00
}
2012-01-22 01:39:17 +01:00
2014-09-15 05:42:32 +02:00
void TASInputDlg::SetStickValue(bool* ActivatedByKeyboard, int* AmountPressed, wxTextCtrl* Textbox, int CurrentValue, int center)
{
if (CurrentValue != center)
2012-01-22 01:39:17 +01:00
{
2014-09-15 05:42:32 +02:00
*AmountPressed = CurrentValue;
*ActivatedByKeyboard = true;
Textbox->SetValue(std::to_string(*AmountPressed));
2012-01-22 01:39:17 +01:00
}
2014-09-15 05:42:32 +02:00
else if (*ActivatedByKeyboard)
2012-01-22 01:39:17 +01:00
{
2014-09-15 05:42:32 +02:00
*AmountPressed = center;
*ActivatedByKeyboard = false;
Textbox->SetValue(std::to_string(*AmountPressed));
2012-01-22 01:39:17 +01:00
}
2014-09-15 05:42:32 +02:00
}
2012-01-22 01:39:17 +01:00
2014-09-15 05:42:32 +02:00
void TASInputDlg::SetSliderValue(Control* control, int CurrentValue, int defaultValue)
{
if (CurrentValue != defaultValue)
2012-01-22 01:39:17 +01:00
{
2014-09-15 05:42:32 +02:00
control->value = CurrentValue;
control->SetByKeyboard = true;
control->Text->SetValue(std::to_string(CurrentValue));
2012-01-22 01:39:17 +01:00
}
2014-09-15 05:42:32 +02:00
else if (control->SetByKeyboard)
2012-01-22 01:39:17 +01:00
{
2014-09-15 05:42:32 +02:00
control->value = defaultValue;
control->SetByKeyboard = false;
control->Text->SetValue(std::to_string(defaultValue));
2012-01-22 01:39:17 +01:00
}
2014-09-15 05:42:32 +02:00
}
2014-09-15 05:42:32 +02:00
void TASInputDlg::SetButtonValue(Button* button, bool CurrentState)
{
if (CurrentState)
2012-01-22 01:39:17 +01:00
{
2014-09-15 05:42:32 +02:00
button->SetByKeyboard = true;
button->Checkbox->SetValue(CurrentState);
2012-01-22 01:39:17 +01:00
}
2014-09-15 05:42:32 +02:00
else if (button->SetByKeyboard)
2012-01-22 01:39:17 +01:00
{
2014-09-15 05:42:32 +02:00
button->SetByKeyboard = false;
button->Checkbox->SetValue(CurrentState);
2012-01-22 01:39:17 +01:00
}
2014-09-15 05:42:32 +02:00
}
2012-01-22 01:39:17 +01:00
2014-09-15 05:42:32 +02:00
void TASInputDlg::SetWiiButtons(wm_core* butt)
{
for (unsigned int i = 0; i < 14; ++i)
2012-01-22 01:39:17 +01:00
{
2014-09-15 05:42:32 +02:00
if (Buttons[i] != nullptr)
*butt |= (Buttons[i]->Checkbox->IsChecked()) ? WiiButtonsBitmask[i] : 0;
2012-01-22 01:39:17 +01:00
}
2014-09-15 05:42:32 +02:00
ButtonTurbo();
}
2012-01-22 01:39:17 +01:00
2014-09-15 05:42:32 +02:00
void TASInputDlg::GetKeyBoardInput(GCPadStatus* PadStatus)
{
SetStickValue(&MainStick.xCont.SetByKeyboard, &MainStick.xCont.value, MainStick.xCont.Text, PadStatus->stickX);
SetStickValue(&MainStick.yCont.SetByKeyboard, &MainStick.yCont.value, MainStick.yCont.Text, PadStatus->stickY);
2012-01-22 01:39:17 +01:00
2014-09-15 05:42:32 +02:00
SetStickValue(&CStick.xCont.SetByKeyboard, &CStick.xCont.value, CStick.xCont.Text, PadStatus->substickX);
SetStickValue(&CStick.yCont.SetByKeyboard, &CStick.yCont.value, CStick.yCont.Text, PadStatus->substickY);
2012-01-22 01:39:17 +01:00
2014-09-15 05:42:32 +02:00
for (unsigned int i = 0; i < 14; ++i)
2012-01-22 01:39:17 +01:00
{
2014-09-15 05:42:32 +02:00
if (Buttons[i] != nullptr)
SetButtonValue(Buttons[i], ((PadStatus->button & GCPadButtonsBitmask[i]) != 0));
2012-01-22 01:39:17 +01:00
}
2014-09-15 05:42:32 +02:00
SetButtonValue(&L, ((PadStatus->triggerLeft) != 0) || ((PadStatus->button & PAD_TRIGGER_L) != 0));
SetButtonValue(&R, ((PadStatus->triggerRight) != 0) || ((PadStatus->button & PAD_TRIGGER_R) != 0));
}
void TASInputDlg::GetKeyBoardInput(u8* data, WiimoteEmu::ReportFeatures rptf)
{
u8* const coreData = rptf.core ? (data + rptf.core) : nullptr;
u8* const accelData = rptf.accel ? (data + rptf.accel) : nullptr;
u8* const irData = rptf.ir ? (data + rptf.ir) : nullptr;
2012-01-22 01:39:17 +01:00
2014-09-15 05:42:32 +02:00
if (coreData)
2012-01-22 01:39:17 +01:00
{
2014-09-15 05:42:32 +02:00
for (unsigned int i = 0; i < 14; ++i)
{
2014-09-15 05:42:32 +02:00
if (Buttons[i] != nullptr)
SetButtonValue(Buttons[i], (*(wm_core*)coreData & WiiButtonsBitmask[i]) != 0);
}
2012-01-22 01:39:17 +01:00
}
2014-09-15 05:42:32 +02:00
if (accelData)
2012-01-22 01:39:17 +01:00
{
2014-09-15 05:42:32 +02:00
wm_accel* dt = (wm_accel*)accelData;
SetSliderValue(&xCont, dt->x);
SetSliderValue(&yCont, dt->y);
SetSliderValue(&zCont, dt->z, 154);
2012-01-22 01:39:17 +01:00
}
2014-09-15 05:42:32 +02:00
// I don't think this can be made to work in a sane manner.
//if (irData)
//{
// u16 x = 1023 - (irData[0] | ((irData[2] >> 4 & 0x3) << 8));
// u16 y = irData[1] | ((irData[2] >> 6 & 0x3) << 8);
2014-09-15 05:42:32 +02:00
// SetStickValue(&MainStick.xCont.SetByKeyboard, &MainStick.xCont.value, MainStick.xCont.Text, x, 561);
// SetStickValue(&MainStick.yCont.SetByKeyboard, &MainStick.yCont.value, MainStick.yCont.Text, y, 486);
//}
}
2012-01-22 01:39:17 +01:00
2014-09-15 05:42:32 +02:00
void TASInputDlg::GetValues(u8* data, WiimoteEmu::ReportFeatures rptf)
{
if (!IsShown())
return;
if (!isWii)
return;
GetKeyBoardInput(data, rptf);
u8* const coreData = rptf.core ? (data + rptf.core) : nullptr;
u8* const accelData = rptf.accel ? (data + rptf.accel) : nullptr;
u8* const irData = rptf.ir ? (data + rptf.ir) : nullptr;
u8 size = rptf.size;
if (coreData)
SetWiiButtons((wm_core*)coreData);
2014-09-15 05:42:32 +02:00
if (accelData)
2012-01-22 01:39:17 +01:00
{
2014-09-15 05:42:32 +02:00
wm_accel* dt = (wm_accel*)accelData;
dt->x = xCont.value;
dt->y = yCont.value;
dt->z = zCont.value;
2012-01-22 01:39:17 +01:00
}
2014-09-15 05:42:32 +02:00
if (irData)
2012-01-22 01:39:17 +01:00
{
2014-09-15 05:42:32 +02:00
u16 x[4];
u16 y;
2012-01-22 01:39:17 +01:00
2014-09-15 05:42:32 +02:00
x[0] = MainStick.xCont.value;
y = MainStick.yCont.value;
x[1] = x[0] + 100;
x[2] = x[0] - 10;
x[3] = x[1] + 10;
2014-09-15 05:42:32 +02:00
u8 mode;
// Mode 5 not supported in core anyway.
if (rptf.ext)
mode = (rptf.ext - rptf.ir) == 10 ? 1 : 3;
else
mode = (rptf.size - rptf.ir) == 10 ? 1 : 3;
if (mode == 1)
{
memset(irData, 0xFF, sizeof(wm_ir_basic) * 2);
wm_ir_basic* data = (wm_ir_basic*)irData;
for (unsigned int i = 0; i < 2; ++i)
{
if (x[i*2] < 1024 && y < 768)
{
data[i].x1 = static_cast<u8>(x[i*2]);
data[i].x1hi = x[i*2] >> 8;
data[i].y1 = static_cast<u8>(y);
data[i].y1hi = y >> 8;
}
if (x[i*2+1] < 1024 && y < 768)
{
data[i].x2 = static_cast<u8>(x[i*2+1]);
data[i].x2hi = x[i*2+1] >> 8;
data[i].y2 = static_cast<u8>(y);
data[i].y2hi = y >> 8;
}
}
}
else
{
memset(data, 0xFF, sizeof(wm_ir_extended) * 4);
wm_ir_extended* const data = (wm_ir_extended*)irData;
for (unsigned int i = 0; i < 4; ++i)
{
if (x[i] < 1024 && y < 768)
{
data[i].x = static_cast<u8>(x[i]);
data[i].xhi = x[i] >> 8;
data[i].y = static_cast<u8>(y);
data[i].yhi = y >> 8;
data[i].size = 10;
}
}
}
}
}
2014-09-15 05:42:32 +02:00
void TASInputDlg::GetValues(GCPadStatus* PadStatus)
{
if (!IsShown())
return;
2014-09-15 05:42:32 +02:00
if (isWii)
return;
//TODO:: Make this instant not when polled.
2012-01-22 01:39:17 +01:00
GetKeyBoardInput(PadStatus);
2014-09-15 05:42:32 +02:00
PadStatus->stickX = MainStick.xCont.value;
PadStatus->stickY = MainStick.yCont.value;
PadStatus->substickX = CStick.xCont.value;
PadStatus->substickY = CStick.yCont.value;
PadStatus->triggerLeft = L.Checkbox->GetValue() ? 255 : lCont.Slider->GetValue();
PadStatus->triggerRight = R.Checkbox->GetValue() ? 255 : rCont.Slider->GetValue();
2014-09-15 05:42:32 +02:00
for (unsigned int i = 0; i < 14; ++i)
{
2014-09-15 05:42:32 +02:00
if (Buttons[i] != nullptr)
{
if (Buttons[i]->Checkbox->IsChecked())
PadStatus->button |= GCPadButtonsBitmask[i];
else
PadStatus->button &= ~GCPadButtonsBitmask[i];
}
}
2014-09-15 05:42:32 +02:00
if (A.Checkbox->IsChecked())
PadStatus->analogA = 0xFF;
else
PadStatus->analogA = 0x00;
2014-09-15 05:42:32 +02:00
if (B.Checkbox->IsChecked())
PadStatus->analogB = 0xFF;
else
PadStatus->analogB = 0x00;
2012-01-22 01:39:17 +01:00
ButtonTurbo();
}
void TASInputDlg::UpdateFromSliders(wxCommandEvent& event)
{
wxTextCtrl* text;
2014-09-15 05:42:32 +02:00
for (unsigned int i = 0; i < 10; ++i)
{
2014-09-15 05:42:32 +02:00
if (Controls[i] != nullptr && event.GetId() == Controls[i]->Slider_ID)
text = Controls[i]->Text;
}
int value = ((wxSlider*) event.GetEventObject())->GetValue();
2014-09-15 05:42:32 +02:00
text->SetValue(std::to_string(value));
}
void TASInputDlg::UpdateFromText(wxCommandEvent& event)
{
2014-09-15 05:42:32 +02:00
int v;
unsigned long value;
2014-09-15 05:42:32 +02:00
if (!((wxTextCtrl*) event.GetEventObject())->GetValue().ToULong(&value))
return;
2012-01-22 01:39:17 +01:00
2014-09-15 05:42:32 +02:00
for (unsigned int i = 0; i < 10; ++i)
{
if (Controls[i] != nullptr && event.GetId() == Controls[i]->Text_ID)
2012-01-22 01:39:17 +01:00
{
2014-09-15 05:42:32 +02:00
v = value > Controls[i]->range ? Controls[i]->range : value;
Controls[i]->Slider->SetValue(v);
Controls[i]->value = v;
2012-01-22 01:39:17 +01:00
}
2012-03-02 01:00:41 +01:00
}
2014-09-15 05:42:32 +02:00
if (!isWii)
CStick.bitmap->SetBitmap(CreateStickBitmap(CStick.xCont.value, 255 - CStick.yCont.value));
int x = (u8)((double)MainStick.xCont.value / (double)MainStick.xCont.range * 255.0);
int y = (u8)((double)MainStick.yCont.value / (double)MainStick.yCont.range * 255.0);
if (!isWii)
y = 255 - (u8)y;
else
x = 255 - (u8)x;
MainStick.bitmap->SetBitmap(CreateStickBitmap(x, y));
}
void TASInputDlg::OnCloseWindow(wxCloseEvent& event)
{
if (event.CanVeto())
{
event.Skip(false);
this->Show(false);
ResetValues();
}
}
bool TASInputDlg::TASHasFocus()
{
2014-10-08 15:46:28 +02:00
if (!hasLayout)
return false;
2012-01-22 01:39:17 +01:00
//allows numbers to be used as hotkeys
2014-09-15 05:42:32 +02:00
for (unsigned int i = 0; i < 10; ++i)
{
if (Controls[i] != nullptr && wxWindow::FindFocus() == Controls[i]->Text)
return false;
}
2012-01-22 01:39:17 +01:00
if (wxWindow::FindFocus() == this)
return true;
2014-09-15 05:42:32 +02:00
else if (wxWindow::FindFocus() != nullptr && wxWindow::FindFocus()->GetParent() == this)
return true;
else
return false;
}
2012-01-22 01:39:17 +01:00
2014-09-15 05:42:32 +02:00
void TASInputDlg::OnMouseUpR(wxMouseEvent& event)
2012-01-22 01:39:17 +01:00
{
2014-09-15 05:42:32 +02:00
Stick* stick = nullptr;
if (event.GetId() == ID_MAIN_STICK)
stick = &MainStick;
else if (event.GetId() == ID_C_STICK)
stick = &CStick;
2012-01-22 01:39:17 +01:00
2014-09-15 05:42:32 +02:00
if (stick == nullptr)
return;
2012-01-22 01:39:17 +01:00
2014-09-15 05:42:32 +02:00
u32 xCenter = stick->xCont.range / 2 + (stick->xCont.range % 2 == 0 ? 0 : 1);
u32 yCenter = stick->yCont.range / 2 + (stick->yCont.range % 2 == 0 ? 0 : 1);
2012-01-22 01:39:17 +01:00
2014-09-15 05:42:32 +02:00
stick->xCont.value = xCenter;
stick->yCont.value = yCenter;
stick->bitmap->SetBitmap(CreateStickBitmap(128,128));
stick->xCont.Text->SetValue(std::to_string(xCenter));
stick->yCont.Text->SetValue(std::to_string(yCenter));
stick->xCont.Slider->SetValue(xCenter);
stick->yCont.Slider->SetValue(yCenter);
2012-01-22 01:39:17 +01:00
2014-09-15 05:42:32 +02:00
event.Skip(true);
2012-01-22 01:39:17 +01:00
}
2014-09-15 05:42:32 +02:00
void TASInputDlg::OnRightClickSlider(wxMouseEvent& event)
2012-01-22 01:39:17 +01:00
{
2014-09-15 05:42:32 +02:00
for (unsigned int i = 0; i < 10; ++i)
2012-01-22 01:39:17 +01:00
{
2014-09-15 05:42:32 +02:00
if (Controls[i] != nullptr && event.GetId() == Controls[i]->Slider_ID)
{
Controls[i]->value = Controls[i]->defaultValue;
Controls[i]->Slider->SetValue(Controls[i]->defaultValue);
Controls[i]->Text->SetValue(std::to_string(Controls[i]->defaultValue));
}
2012-01-22 01:39:17 +01:00
}
}
void TASInputDlg::OnMouseDownL(wxMouseEvent& event)
2012-01-22 01:39:17 +01:00
{
2014-09-15 05:42:32 +02:00
if (!event.LeftIsDown())
return;
2014-09-15 05:42:32 +02:00
Stick* stick;
if (event.GetId() == ID_MAIN_STICK)
stick = &MainStick;
else if (event.GetId() == ID_C_STICK)
stick = &CStick;
else
return;
2012-01-22 01:39:17 +01:00
wxPoint ptM(event.GetPosition());
2014-09-15 05:42:32 +02:00
stick->xCont.value = ptM.x * stick->xCont.range / 127;
stick->yCont.value = ptM.y * stick->yCont.range / 127;
2012-01-22 01:39:17 +01:00
2014-09-15 05:42:32 +02:00
if ((unsigned)stick->yCont.value > stick->yCont.range)
stick->yCont.value = stick->yCont.range;
if ((unsigned)stick->xCont.value > stick->xCont.range)
stick->xCont.value = stick->xCont.range;
2012-01-22 01:39:17 +01:00
2014-09-15 05:42:32 +02:00
if (!isWii)
stick->yCont.value = 255 - (u8)stick->yCont.value;
else
stick->xCont.value = stick->xCont.range - (u16)stick->xCont.value;
2012-01-22 01:39:17 +01:00
2014-09-15 05:42:32 +02:00
stick->xCont.value = (unsigned)stick->xCont.value > stick->xCont.range ? stick->xCont.range : stick->xCont.value;
stick->yCont.value = (unsigned)stick->yCont.value > stick->yCont.range ? stick->yCont.range : stick->yCont.value;
stick->xCont.value = (unsigned)stick->xCont.value < 0 ? 0 : stick->xCont.value;
stick->yCont.value = (unsigned)stick->yCont.value < 0 ? 0 : stick->yCont.value;
2012-01-22 01:39:17 +01:00
2014-09-15 05:42:32 +02:00
int x = (u8)((double)stick->xCont.value / (double)stick->xCont.range * 255.0);
int y = (u8)((double)stick->yCont.value / (double)stick->yCont.range * 255.0);
2012-01-22 01:39:17 +01:00
2014-09-15 05:42:32 +02:00
stick->bitmap->SetBitmap(CreateStickBitmap(ptM.x*2, ptM.y*2));
2012-01-22 01:39:17 +01:00
2014-09-15 05:42:32 +02:00
stick->xCont.Text->SetValue(std::to_string(stick->xCont.value));
stick->yCont.Text->SetValue(std::to_string(stick->yCont.value));
2014-09-15 05:42:32 +02:00
stick->xCont.Slider->SetValue(stick->xCont.value);
stick->yCont.Slider->SetValue(stick->yCont.value);
event.Skip(true);
2012-01-22 01:39:17 +01:00
}
void TASInputDlg::SetTurbo(wxMouseEvent& event)
{
2014-09-15 05:42:32 +02:00
Button* button;
for (unsigned int i = 0; i < 14; ++i)
{
if (Buttons[i] != nullptr && event.GetId() == Buttons[i]->ID)
button = Buttons[i];
}
if (event.LeftDown())
2012-01-22 01:39:17 +01:00
{
2014-09-15 05:42:32 +02:00
button->TurboOn = false;
event.Skip(true);
return;
2012-01-22 01:39:17 +01:00
}
2014-09-15 05:42:32 +02:00
button->Checkbox->SetValue(true);
button->TurboOn = !button->TurboOn;
event.Skip(true);
2012-01-22 01:39:17 +01:00
}
void TASInputDlg::ButtonTurbo()
{
2014-09-15 05:42:32 +02:00
for (unsigned int i = 0; i < 14; ++i)
2012-01-22 01:39:17 +01:00
{
2014-09-15 05:42:32 +02:00
if (Buttons[i] != nullptr && Buttons[i]->TurboOn)
Buttons[i]->Checkbox->SetValue(!Buttons[i]->Checkbox->GetValue());
2012-01-22 01:39:17 +01:00
}
}
wxBitmap TASInputDlg::CreateStickBitmap(int x, int y)
{
2014-09-15 05:42:32 +02:00
x = x / 2;
y = y / 2;
2012-01-22 01:39:17 +01:00
wxMemoryDC memDC;
2014-09-15 05:42:32 +02:00
wxBitmap bitmap(129, 129);
memDC.SelectObject(bitmap);
memDC.SetBackground(*wxLIGHT_GREY_BRUSH);
memDC.Clear();
memDC.SetBrush(*wxWHITE_BRUSH);
2014-09-15 05:42:32 +02:00
memDC.DrawCircle(65, 65, 64);
2012-01-22 01:39:17 +01:00
memDC.SetBrush(*wxRED_BRUSH);
2014-09-15 05:42:32 +02:00
memDC.DrawLine(64, 64, x, y);
memDC.DrawLine(63, 64, x - 1, y);
memDC.DrawLine(65, 64, x + 1 , y);
memDC.DrawLine(64, 63, x, y - 1);
memDC.DrawLine(64, 65, x, y + 1);
2012-01-22 01:39:17 +01:00
memDC.SetPen(*wxBLACK_PEN);
2014-09-15 05:42:32 +02:00
memDC.CrossHair(64, 64);
2012-01-22 01:39:17 +01:00
memDC.SetBrush(*wxBLUE_BRUSH);
2014-09-15 05:42:32 +02:00
memDC.DrawCircle(x, y, 5);
memDC.SelectObject(wxNullBitmap);
2014-09-15 05:42:32 +02:00
return bitmap;
}