2015-04-11 05:24:45 +00:00
|
|
|
// Copyright 2015 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2015-04-11 05:24:45 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <wx/button.h>
|
|
|
|
#include <wx/checkbox.h>
|
|
|
|
#include <wx/choice.h>
|
2016-08-02 06:23:02 +00:00
|
|
|
#include <wx/gbsizer.h>
|
2015-04-11 05:24:45 +00:00
|
|
|
#include <wx/listbox.h>
|
|
|
|
#include <wx/notebook.h>
|
|
|
|
#include <wx/panel.h>
|
|
|
|
#include <wx/sizer.h>
|
2015-09-20 11:08:37 +00:00
|
|
|
#include <wx/spinctrl.h>
|
2015-04-11 05:24:45 +00:00
|
|
|
#include <wx/stattext.h>
|
|
|
|
#include <wx/textctrl.h>
|
|
|
|
|
|
|
|
#include "DolphinWX/Frame.h"
|
|
|
|
#include "DolphinWX/Main.h"
|
2016-10-03 12:35:27 +00:00
|
|
|
#include "DolphinWX/NetPlay/NetPlayLauncher.h"
|
2015-04-11 05:24:45 +00:00
|
|
|
#include "DolphinWX/NetPlay/NetPlaySetupFrame.h"
|
|
|
|
#include "DolphinWX/NetPlay/NetWindow.h"
|
2016-06-24 08:43:46 +00:00
|
|
|
#include "DolphinWX/WxUtils.h"
|
2015-04-11 05:24:45 +00:00
|
|
|
|
2017-01-24 01:20:40 +00:00
|
|
|
#include "Common/FileUtil.h"
|
2017-08-02 23:52:26 +00:00
|
|
|
#include "Core/Config/NetplaySettings.h"
|
2017-01-24 01:20:40 +00:00
|
|
|
#include "Core/NetPlayClient.h"
|
|
|
|
#include "Core/NetPlayServer.h"
|
|
|
|
|
2016-10-03 04:16:56 +00:00
|
|
|
namespace
|
|
|
|
{
|
2017-08-02 23:52:26 +00:00
|
|
|
wxString GetTraversalLabelText()
|
2016-10-02 14:43:43 +00:00
|
|
|
{
|
2017-08-02 23:52:26 +00:00
|
|
|
std::string server = Config::Get(Config::NETPLAY_TRAVERSAL_SERVER);
|
|
|
|
std::string port = std::to_string(Config::Get(Config::NETPLAY_TRAVERSAL_PORT));
|
2016-10-02 14:43:43 +00:00
|
|
|
return wxString::Format(_("Traversal Server: %s"), (server + ":" + port).c_str());
|
|
|
|
}
|
2016-10-03 04:16:56 +00:00
|
|
|
} // Anonymous namespace
|
2016-10-02 14:43:43 +00:00
|
|
|
|
2017-06-19 09:20:14 +00:00
|
|
|
NetPlaySetupFrame::NetPlaySetupFrame(wxWindow* const parent, const GameListCtrl* const game_list)
|
2016-06-24 08:43:46 +00:00
|
|
|
: wxFrame(parent, wxID_ANY, _("Dolphin NetPlay Setup")), m_game_list(game_list)
|
2015-04-11 05:24:45 +00:00
|
|
|
{
|
2016-08-02 06:23:02 +00:00
|
|
|
CreateGUI();
|
2016-10-03 07:19:56 +00:00
|
|
|
SetIcons(WxUtils::GetDolphinIconBundle());
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-08-02 06:23:02 +00:00
|
|
|
{
|
2017-08-02 23:52:26 +00:00
|
|
|
m_nickname_text->SetValue(StrToWxStr(Config::Get(Config::NETPLAY_NICKNAME)));
|
|
|
|
m_connect_hashcode_text->SetValue(StrToWxStr(Config::Get(Config::NETPLAY_HOST_CODE)));
|
|
|
|
m_connect_ip_text->SetValue(StrToWxStr(Config::Get(Config::NETPLAY_ADDRESS)));
|
|
|
|
m_connect_port_text->SetValue(
|
|
|
|
StrToWxStr(std::to_string(Config::Get(Config::NETPLAY_CONNECT_PORT))));
|
|
|
|
m_host_port_text->SetValue(StrToWxStr(std::to_string(Config::Get(Config::NETPLAY_HOST_PORT))));
|
|
|
|
m_game_lbox->SetStringSelection(StrToWxStr(Config::Get(Config::NETPLAY_SELECTED_HOST_GAME)));
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-08-02 06:23:02 +00:00
|
|
|
#ifdef USE_UPNP
|
2017-08-02 23:52:26 +00:00
|
|
|
m_upnp_chk->SetValue(Config::Get(Config::NETPLAY_USE_UPNP));
|
2016-08-02 06:23:02 +00:00
|
|
|
#endif
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-08-02 23:52:26 +00:00
|
|
|
unsigned int listen_port = Config::Get(Config::NETPLAY_LISTEN_PORT);
|
2016-08-02 06:23:02 +00:00
|
|
|
m_traversal_listen_port_enabled->SetValue(listen_port != 0);
|
|
|
|
m_traversal_listen_port->Enable(m_traversal_listen_port_enabled->IsChecked());
|
|
|
|
m_traversal_listen_port->SetValue(listen_port);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-08-02 23:52:26 +00:00
|
|
|
if (Config::Get(Config::NETPLAY_TRAVERSAL_CHOICE) == "traversal")
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
2016-07-12 18:31:04 +00:00
|
|
|
m_direct_traversal->Select(TRAVERSAL_CHOICE);
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-07-12 18:31:04 +00:00
|
|
|
m_direct_traversal->Select(DIRECT_CHOICE);
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
|
2017-08-02 23:52:26 +00:00
|
|
|
m_traversal_lbl->SetLabelText(GetTraversalLabelText());
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
2016-08-02 06:23:02 +00:00
|
|
|
|
|
|
|
Center();
|
|
|
|
Show();
|
|
|
|
|
|
|
|
// Needs to be done last or it set up the spacing on the page correctly
|
|
|
|
wxCommandEvent ev;
|
|
|
|
OnDirectTraversalChoice(ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
void NetPlaySetupFrame::CreateGUI()
|
|
|
|
{
|
|
|
|
const int space5 = FromDIP(5);
|
|
|
|
|
|
|
|
wxPanel* const panel = new wxPanel(this);
|
|
|
|
panel->Bind(wxEVT_CHAR_HOOK, &NetPlaySetupFrame::OnKeyDown, this);
|
|
|
|
|
|
|
|
// Connection Config
|
|
|
|
wxStaticText* const connectiontype_lbl = new wxStaticText(panel, wxID_ANY, _("Connection Type:"));
|
|
|
|
|
|
|
|
m_direct_traversal = new wxChoice(panel, wxID_ANY);
|
|
|
|
m_direct_traversal->Bind(wxEVT_CHOICE, &NetPlaySetupFrame::OnDirectTraversalChoice, this);
|
|
|
|
m_direct_traversal->Append(_("Direct Connection"));
|
|
|
|
m_direct_traversal->Append(_("Traversal Server"));
|
|
|
|
|
|
|
|
m_trav_reset_btn = new wxButton(panel, wxID_ANY, _("Reset Traversal Settings"));
|
|
|
|
m_trav_reset_btn->Bind(wxEVT_BUTTON, &NetPlaySetupFrame::OnResetTraversal, this);
|
|
|
|
|
|
|
|
// Nickname
|
|
|
|
wxStaticText* const nick_lbl = new wxStaticText(panel, wxID_ANY, _("Nickname:"));
|
|
|
|
|
|
|
|
m_nickname_text = new wxTextCtrl(panel, wxID_ANY, "Player");
|
|
|
|
|
|
|
|
m_traversal_lbl = new wxStaticText(panel, wxID_ANY, "Traversal Server");
|
|
|
|
|
|
|
|
wxButton* const quit_btn = new wxButton(panel, wxID_ANY, _("Quit"));
|
|
|
|
quit_btn->Bind(wxEVT_BUTTON, &NetPlaySetupFrame::OnQuit, this);
|
|
|
|
|
|
|
|
wxGridBagSizer* top_sizer = new wxGridBagSizer(space5, space5);
|
|
|
|
top_sizer->Add(connectiontype_lbl, wxGBPosition(0, 0), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
|
|
|
|
top_sizer->Add(WxUtils::GiveMinSizeDIP(m_direct_traversal, wxSize(100, -1)), wxGBPosition(0, 1),
|
|
|
|
wxDefaultSpan, wxEXPAND);
|
|
|
|
top_sizer->Add(m_trav_reset_btn, wxGBPosition(0, 2), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
|
|
|
|
top_sizer->Add(nick_lbl, wxGBPosition(1, 0), wxDefaultSpan, wxALIGN_CENTER_VERTICAL);
|
|
|
|
top_sizer->Add(WxUtils::GiveMinSizeDIP(m_nickname_text, wxSize(150, -1)), wxGBPosition(1, 1),
|
|
|
|
wxDefaultSpan, wxEXPAND);
|
|
|
|
|
|
|
|
m_notebook = CreateNotebookGUI(panel);
|
|
|
|
m_notebook->Bind(wxEVT_NOTEBOOK_PAGE_CHANGED, &NetPlaySetupFrame::OnTabChanged, this);
|
|
|
|
|
|
|
|
// main sizer
|
|
|
|
wxBoxSizer* const main_szr = new wxBoxSizer(wxVERTICAL);
|
|
|
|
main_szr->AddSpacer(space5);
|
|
|
|
main_szr->Add(top_sizer, 0, wxLEFT | wxRIGHT, space5);
|
|
|
|
main_szr->AddSpacer(space5);
|
|
|
|
main_szr->Add(m_traversal_lbl, 0, wxLEFT | wxRIGHT, space5);
|
|
|
|
main_szr->AddSpacer(space5);
|
|
|
|
main_szr->Add(m_notebook, 1, wxLEFT | wxRIGHT | wxEXPAND, space5);
|
|
|
|
main_szr->AddSpacer(space5);
|
|
|
|
main_szr->Add(quit_btn, 0, wxALIGN_RIGHT | wxLEFT | wxRIGHT, space5);
|
|
|
|
main_szr->AddSpacer(space5);
|
|
|
|
|
|
|
|
panel->SetSizerAndFit(main_szr);
|
|
|
|
main_szr->SetSizeHints(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
wxNotebook* NetPlaySetupFrame::CreateNotebookGUI(wxWindow* parent)
|
|
|
|
{
|
|
|
|
const int space5 = FromDIP(5);
|
|
|
|
|
|
|
|
wxNotebook* const notebook = new wxNotebook(parent, wxID_ANY);
|
|
|
|
wxPanel* const connect_tab = new wxPanel(notebook, wxID_ANY);
|
|
|
|
notebook->AddPage(connect_tab, _("Connect"));
|
|
|
|
wxPanel* const host_tab = new wxPanel(notebook, wxID_ANY);
|
|
|
|
notebook->AddPage(host_tab, _("Host"));
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
// connect tab
|
|
|
|
{
|
2017-04-30 13:09:57 +00:00
|
|
|
// The text of these three controls will be set by OnDirectTraversalChoice
|
|
|
|
m_ip_lbl = new wxStaticText(connect_tab, wxID_ANY, "");
|
|
|
|
m_connect_ip_text = new wxTextCtrl(connect_tab, wxID_ANY);
|
|
|
|
m_connect_hashcode_text = new wxTextCtrl(connect_tab, wxID_ANY);
|
2016-02-02 15:35:27 +00:00
|
|
|
|
|
|
|
// Will be overridden by OnDirectTraversalChoice, but is necessary
|
|
|
|
// so that both inputs do not take up space
|
|
|
|
m_connect_hashcode_text->Hide();
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-04-30 13:09:57 +00:00
|
|
|
m_client_port_lbl = new wxStaticText(connect_tab, wxID_ANY, _("Port:"));
|
2017-08-02 23:52:26 +00:00
|
|
|
m_connect_port_text = new wxTextCtrl(connect_tab, wxID_ANY, "");
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
wxButton* const connect_btn = new wxButton(connect_tab, wxID_ANY, _("Connect"));
|
|
|
|
connect_btn->Bind(wxEVT_BUTTON, &NetPlaySetupFrame::OnJoin, this);
|
|
|
|
|
|
|
|
wxStaticText* const alert_lbl = new wxStaticText(
|
|
|
|
connect_tab, wxID_ANY,
|
|
|
|
_("ALERT:\n\n"
|
|
|
|
"All players must use the same Dolphin version.\n"
|
|
|
|
"All memory cards, SD cards and cheats must be identical between players or disabled.\n"
|
|
|
|
"If DSP LLE is used, DSP ROMs must be identical between players.\n"
|
|
|
|
"If connecting directly, the host must have the chosen UDP port open/forwarded!\n"
|
|
|
|
"\n"
|
2016-10-26 02:49:41 +00:00
|
|
|
"Wii Remote support in netplay is experimental and should not be expected to work.\n"));
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
wxBoxSizer* const top_szr = new wxBoxSizer(wxHORIZONTAL);
|
2016-08-02 06:23:02 +00:00
|
|
|
top_szr->Add(m_ip_lbl, 0, wxALIGN_CENTER_VERTICAL);
|
|
|
|
top_szr->Add(m_connect_ip_text, 3, wxALIGN_CENTER_VERTICAL | wxLEFT, space5);
|
|
|
|
top_szr->Add(m_connect_hashcode_text, 3, wxALIGN_CENTER_VERTICAL | wxLEFT, space5);
|
|
|
|
top_szr->Add(m_client_port_lbl, 0, wxALIGN_CENTER_VERTICAL | wxLEFT, space5);
|
|
|
|
top_szr->Add(m_connect_port_text, 1, wxALIGN_CENTER_VERTICAL | wxLEFT, space5);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
wxBoxSizer* const con_szr = new wxBoxSizer(wxVERTICAL);
|
2016-08-02 06:23:02 +00:00
|
|
|
con_szr->AddSpacer(space5);
|
|
|
|
con_szr->Add(top_szr, 0, wxEXPAND | wxLEFT | wxRIGHT, space5);
|
2016-06-24 08:43:46 +00:00
|
|
|
con_szr->AddStretchSpacer(1);
|
2016-08-02 06:23:02 +00:00
|
|
|
con_szr->AddSpacer(space5);
|
|
|
|
con_szr->Add(alert_lbl, 0, wxEXPAND | wxLEFT | wxRIGHT, space5);
|
2016-06-24 08:43:46 +00:00
|
|
|
con_szr->AddStretchSpacer(1);
|
2016-08-02 06:23:02 +00:00
|
|
|
con_szr->AddSpacer(space5);
|
|
|
|
con_szr->Add(connect_btn, 0, wxALIGN_RIGHT | wxLEFT | wxRIGHT, space5);
|
|
|
|
con_szr->AddSpacer(space5);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
connect_tab->SetSizerAndFit(con_szr);
|
|
|
|
}
|
|
|
|
|
|
|
|
// host tab
|
|
|
|
{
|
2017-05-06 13:40:36 +00:00
|
|
|
m_host_port_lbl = new wxStaticText(host_tab, wxID_ANY, _("Port:"));
|
2017-08-02 23:52:26 +00:00
|
|
|
m_host_port_text = new wxTextCtrl(host_tab, wxID_ANY, "");
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-05-06 13:40:36 +00:00
|
|
|
m_traversal_listen_port_enabled = new wxCheckBox(host_tab, wxID_ANY, _("Force Listen Port:"));
|
2016-06-24 08:43:46 +00:00
|
|
|
m_traversal_listen_port = new wxSpinCtrl(host_tab, wxID_ANY, "", wxDefaultPosition,
|
2016-08-02 06:23:02 +00:00
|
|
|
wxDefaultSize, wxSP_ARROW_KEYS, 1, 65535);
|
|
|
|
m_traversal_listen_port->SetMinSize(WxUtils::GetTextWidgetMinSize(m_traversal_listen_port));
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
m_traversal_listen_port_enabled->Bind(wxEVT_CHECKBOX,
|
|
|
|
&NetPlaySetupFrame::OnTraversalListenPortChanged, this);
|
|
|
|
m_traversal_listen_port->Bind(wxEVT_TEXT, &NetPlaySetupFrame::OnTraversalListenPortChanged,
|
|
|
|
this);
|
|
|
|
|
|
|
|
wxButton* const host_btn = new wxButton(host_tab, wxID_ANY, _("Host"));
|
|
|
|
host_btn->Bind(wxEVT_BUTTON, &NetPlaySetupFrame::OnHost, this);
|
|
|
|
|
|
|
|
m_game_lbox =
|
|
|
|
new wxListBox(host_tab, wxID_ANY, wxDefaultPosition, wxDefaultSize, 0, nullptr, wxLB_SORT);
|
|
|
|
m_game_lbox->Bind(wxEVT_LISTBOX_DCLICK, &NetPlaySetupFrame::OnHost, this);
|
|
|
|
|
2016-08-02 06:23:02 +00:00
|
|
|
NetPlayDialog::FillWithGameNames(m_game_lbox, *m_game_list);
|
2016-02-02 15:35:27 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
wxBoxSizer* const top_szr = new wxBoxSizer(wxHORIZONTAL);
|
2016-08-02 06:23:02 +00:00
|
|
|
top_szr->Add(m_host_port_lbl, 0, wxALIGN_CENTER_VERTICAL);
|
|
|
|
top_szr->Add(m_host_port_text, 0, wxALIGN_CENTER_VERTICAL | wxLEFT, space5);
|
2015-04-11 05:24:45 +00:00
|
|
|
#ifdef USE_UPNP
|
2017-05-11 22:59:31 +00:00
|
|
|
m_upnp_chk = new wxCheckBox(host_tab, wxID_ANY, _("Forward Port (UPnP)"));
|
2016-08-02 06:23:02 +00:00
|
|
|
top_szr->Add(m_upnp_chk, 0, wxALIGN_CENTER_VERTICAL | wxLEFT, space5);
|
2015-04-11 05:24:45 +00:00
|
|
|
#endif
|
2016-08-02 06:23:02 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
wxBoxSizer* const bottom_szr = new wxBoxSizer(wxHORIZONTAL);
|
2016-08-02 06:23:02 +00:00
|
|
|
bottom_szr->Add(m_traversal_listen_port_enabled, 0, wxALIGN_CENTER_VERTICAL);
|
|
|
|
bottom_szr->Add(m_traversal_listen_port, 0, wxALIGN_CENTER_VERTICAL | wxLEFT, space5);
|
|
|
|
bottom_szr->AddStretchSpacer();
|
|
|
|
bottom_szr->Add(host_btn, 0, wxLEFT, space5);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
wxBoxSizer* const host_szr = new wxBoxSizer(wxVERTICAL);
|
2016-08-02 06:23:02 +00:00
|
|
|
// NOTE: Top row can disappear entirely
|
|
|
|
host_szr->Add(top_szr, 0, wxEXPAND | wxLEFT | wxRIGHT | wxTOP, space5);
|
|
|
|
host_szr->AddSpacer(space5);
|
|
|
|
host_szr->Add(m_game_lbox, 1, wxEXPAND | wxLEFT | wxRIGHT, space5);
|
|
|
|
host_szr->AddSpacer(space5);
|
|
|
|
host_szr->Add(bottom_szr, 0, wxEXPAND | wxLEFT | wxRIGHT, space5);
|
|
|
|
host_szr->AddSpacer(space5);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
host_tab->SetSizerAndFit(host_szr);
|
|
|
|
}
|
|
|
|
|
2016-08-02 06:23:02 +00:00
|
|
|
return notebook;
|
2015-04-11 05:24:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NetPlaySetupFrame::~NetPlaySetupFrame()
|
|
|
|
{
|
2016-02-02 15:35:27 +00:00
|
|
|
std::string travChoice;
|
|
|
|
switch (m_direct_traversal->GetSelection())
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
2016-02-02 15:35:27 +00:00
|
|
|
case TRAVERSAL_CHOICE:
|
|
|
|
travChoice = "traversal";
|
|
|
|
break;
|
|
|
|
case DIRECT_CHOICE:
|
2016-06-24 08:43:46 +00:00
|
|
|
travChoice = "direct";
|
2016-02-02 15:35:27 +00:00
|
|
|
break;
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
|
2017-08-02 23:52:26 +00:00
|
|
|
Config::SetBaseOrCurrent(Config::NETPLAY_TRAVERSAL_CHOICE, travChoice);
|
|
|
|
Config::SetBaseOrCurrent(Config::NETPLAY_NICKNAME, WxStrToStr(m_nickname_text->GetValue()));
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-02-02 15:35:27 +00:00
|
|
|
if (m_direct_traversal->GetCurrentSelection() == DIRECT_CHOICE)
|
2017-08-02 23:52:26 +00:00
|
|
|
Config::SetBaseOrCurrent(Config::NETPLAY_ADDRESS, WxStrToStr(m_connect_ip_text->GetValue()));
|
2016-06-24 08:43:46 +00:00
|
|
|
else
|
2017-08-02 23:52:26 +00:00
|
|
|
Config::SetBaseOrCurrent(Config::NETPLAY_HOST_CODE,
|
|
|
|
WxStrToStr(m_connect_hashcode_text->GetValue()));
|
|
|
|
|
|
|
|
Config::SetBaseOrCurrent(Config::NETPLAY_CONNECT_PORT,
|
|
|
|
static_cast<u16>(WxStrToUL(m_connect_port_text->GetValue())));
|
|
|
|
Config::SetBaseOrCurrent(Config::NETPLAY_HOST_PORT,
|
|
|
|
static_cast<u16>(WxStrToUL(m_host_port_text->GetValue())));
|
|
|
|
Config::SetBaseOrCurrent(Config::NETPLAY_LISTEN_PORT,
|
|
|
|
static_cast<u16>(m_traversal_listen_port_enabled->IsChecked() ?
|
|
|
|
m_traversal_listen_port->GetValue() :
|
|
|
|
0));
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-08-02 06:23:02 +00:00
|
|
|
#ifdef USE_UPNP
|
2017-08-02 23:52:26 +00:00
|
|
|
Config::SetBaseOrCurrent(Config::NETPLAY_USE_UPNP, m_upnp_chk->GetValue());
|
2016-08-02 06:23:02 +00:00
|
|
|
#endif
|
|
|
|
|
2017-05-01 00:11:01 +00:00
|
|
|
main_frame->m_netplay_setup_frame = nullptr;
|
2015-04-11 05:24:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void NetPlaySetupFrame::OnHost(wxCommandEvent&)
|
|
|
|
{
|
2016-02-02 15:35:27 +00:00
|
|
|
DoHost();
|
|
|
|
}
|
|
|
|
|
|
|
|
void NetPlaySetupFrame::DoHost()
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
if (m_game_lbox->GetSelection() == wxNOT_FOUND)
|
|
|
|
{
|
|
|
|
WxUtils::ShowErrorDialog(_("You must choose a game!"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-10-03 12:35:27 +00:00
|
|
|
NetPlayHostConfig host_config;
|
|
|
|
host_config.game_name = WxStrToStr(m_game_lbox->GetStringSelection());
|
|
|
|
host_config.use_traversal = m_direct_traversal->GetCurrentSelection() == TRAVERSAL_CHOICE;
|
|
|
|
host_config.player_name = WxStrToStr(m_nickname_text->GetValue());
|
|
|
|
host_config.game_list_ctrl = m_game_list;
|
2017-08-02 23:51:05 +00:00
|
|
|
host_config.SetDialogInfo(m_parent);
|
2016-11-19 15:36:26 +00:00
|
|
|
#ifdef USE_UPNP
|
2016-10-03 12:35:27 +00:00
|
|
|
host_config.forward_port = m_upnp_chk->GetValue();
|
2016-11-19 15:36:26 +00:00
|
|
|
#endif
|
2016-10-03 12:35:27 +00:00
|
|
|
|
|
|
|
if (host_config.use_traversal)
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
2016-10-03 12:35:27 +00:00
|
|
|
host_config.listen_port = static_cast<u16>(
|
|
|
|
m_traversal_listen_port_enabled->IsChecked() ? m_traversal_listen_port->GetValue() : 0);
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-10-03 12:35:27 +00:00
|
|
|
unsigned long listen_port;
|
2016-06-24 08:43:46 +00:00
|
|
|
m_host_port_text->GetValue().ToULong(&listen_port);
|
2016-10-03 12:35:27 +00:00
|
|
|
host_config.listen_port = static_cast<u16>(listen_port);
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
|
2017-08-02 23:52:26 +00:00
|
|
|
host_config.traversal_port = Config::Get(Config::NETPLAY_TRAVERSAL_PORT);
|
|
|
|
host_config.traversal_host = Config::Get(Config::NETPLAY_TRAVERSAL_SERVER);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-08-02 23:52:26 +00:00
|
|
|
Config::SetBaseOrCurrent(Config::NETPLAY_SELECTED_HOST_GAME, host_config.game_name);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2016-10-03 12:35:27 +00:00
|
|
|
if (NetPlayLauncher::Host(host_config))
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
2016-10-03 12:35:27 +00:00
|
|
|
Destroy();
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
2015-04-11 05:24:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void NetPlaySetupFrame::OnJoin(wxCommandEvent&)
|
2016-02-02 15:35:27 +00:00
|
|
|
{
|
|
|
|
DoJoin();
|
|
|
|
}
|
|
|
|
|
|
|
|
void NetPlaySetupFrame::DoJoin()
|
2015-04-11 05:24:45 +00:00
|
|
|
{
|
2016-10-03 12:35:27 +00:00
|
|
|
NetPlayJoinConfig join_config;
|
|
|
|
join_config.use_traversal = m_direct_traversal->GetCurrentSelection() == TRAVERSAL_CHOICE;
|
|
|
|
join_config.player_name = WxStrToStr(m_nickname_text->GetValue());
|
|
|
|
join_config.game_list_ctrl = m_game_list;
|
2017-08-02 23:51:05 +00:00
|
|
|
join_config.SetDialogInfo(m_parent);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
unsigned long port = 0;
|
|
|
|
m_connect_port_text->GetValue().ToULong(&port);
|
2016-10-03 12:35:27 +00:00
|
|
|
|
|
|
|
join_config.connect_port = static_cast<u16>(port);
|
|
|
|
|
|
|
|
if (join_config.use_traversal)
|
|
|
|
join_config.connect_hash_code = WxStrToStr(m_connect_hashcode_text->GetValue());
|
|
|
|
else
|
|
|
|
join_config.connect_host = WxStrToStr(m_connect_ip_text->GetValue());
|
|
|
|
|
2017-08-02 23:52:26 +00:00
|
|
|
join_config.traversal_port = Config::Get(Config::NETPLAY_TRAVERSAL_PORT);
|
|
|
|
join_config.traversal_host = Config::Get(Config::NETPLAY_TRAVERSAL_SERVER);
|
2016-10-03 12:35:27 +00:00
|
|
|
|
|
|
|
if (NetPlayLauncher::Join(join_config))
|
|
|
|
{
|
|
|
|
Destroy();
|
|
|
|
}
|
2015-04-11 05:24:45 +00:00
|
|
|
}
|
|
|
|
|
2015-05-10 23:09:44 +00:00
|
|
|
void NetPlaySetupFrame::OnResetTraversal(wxCommandEvent& event)
|
|
|
|
{
|
2017-08-02 23:52:26 +00:00
|
|
|
Config::SetBaseOrCurrent(Config::NETPLAY_TRAVERSAL_SERVER,
|
|
|
|
Config::NETPLAY_TRAVERSAL_SERVER.default_value);
|
|
|
|
Config::SetBaseOrCurrent(Config::NETPLAY_TRAVERSAL_PORT,
|
|
|
|
Config::NETPLAY_TRAVERSAL_PORT.default_value);
|
|
|
|
|
|
|
|
m_traversal_lbl->SetLabelText(GetTraversalLabelText());
|
2015-05-10 23:09:44 +00:00
|
|
|
}
|
|
|
|
|
2015-09-20 11:08:37 +00:00
|
|
|
void NetPlaySetupFrame::OnTraversalListenPortChanged(wxCommandEvent& event)
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
m_traversal_listen_port->Enable(m_traversal_listen_port_enabled->IsChecked());
|
2015-09-20 11:08:37 +00:00
|
|
|
}
|
|
|
|
|
2016-02-02 15:35:27 +00:00
|
|
|
void NetPlaySetupFrame::OnDirectTraversalChoice(wxCommandEvent& event)
|
2015-04-11 05:24:45 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
int sel = m_direct_traversal->GetSelection();
|
|
|
|
|
2016-02-02 15:35:27 +00:00
|
|
|
if (sel == TRAVERSAL_CHOICE)
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
2016-08-02 06:23:02 +00:00
|
|
|
m_traversal_lbl->SetLabelText(m_traversal_string);
|
2016-06-24 08:43:46 +00:00
|
|
|
m_trav_reset_btn->Show();
|
2016-02-02 15:35:27 +00:00
|
|
|
m_connect_hashcode_text->Show();
|
|
|
|
m_connect_ip_text->Hide();
|
2016-06-24 08:43:46 +00:00
|
|
|
// Traversal
|
|
|
|
// client tab
|
|
|
|
{
|
2017-04-30 13:09:57 +00:00
|
|
|
m_ip_lbl->SetLabelText(_("Host Code:"));
|
2016-06-24 08:43:46 +00:00
|
|
|
m_client_port_lbl->Hide();
|
|
|
|
m_connect_port_text->Hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
// server tab
|
|
|
|
{
|
|
|
|
m_host_port_lbl->Hide();
|
|
|
|
m_host_port_text->Hide();
|
|
|
|
m_traversal_listen_port->Show();
|
|
|
|
m_traversal_listen_port_enabled->Show();
|
2015-05-06 18:58:06 +00:00
|
|
|
#ifdef USE_UPNP
|
2016-06-24 08:43:46 +00:00
|
|
|
m_upnp_chk->Hide();
|
2015-05-06 18:58:06 +00:00
|
|
|
#endif
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-08-02 06:23:02 +00:00
|
|
|
m_traversal_lbl->SetLabel(wxEmptyString);
|
2016-06-24 08:43:46 +00:00
|
|
|
m_trav_reset_btn->Hide();
|
2016-02-02 15:35:27 +00:00
|
|
|
m_connect_hashcode_text->Hide();
|
|
|
|
m_connect_ip_text->Show();
|
2016-06-24 08:43:46 +00:00
|
|
|
// Direct
|
|
|
|
// Client tab
|
|
|
|
{
|
2017-04-30 13:09:57 +00:00
|
|
|
m_ip_lbl->SetLabelText(_("IP Address:"));
|
2017-08-02 23:52:26 +00:00
|
|
|
m_connect_ip_text->SetLabelText(Config::Get(Config::NETPLAY_ADDRESS));
|
2016-06-24 08:43:46 +00:00
|
|
|
|
|
|
|
m_client_port_lbl->Show();
|
|
|
|
m_connect_port_text->Show();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Server tab
|
|
|
|
m_traversal_listen_port->Hide();
|
|
|
|
m_traversal_listen_port_enabled->Hide();
|
|
|
|
m_host_port_lbl->Show();
|
|
|
|
m_host_port_text->Show();
|
2015-05-06 18:58:06 +00:00
|
|
|
#ifdef USE_UPNP
|
2016-06-24 08:43:46 +00:00
|
|
|
m_upnp_chk->Show();
|
2015-05-06 18:58:06 +00:00
|
|
|
#endif
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
2016-08-02 06:23:02 +00:00
|
|
|
|
|
|
|
// wxWidgets' layout engine sucks. It only updates when a size event occurs so we
|
|
|
|
// have to manually invoke the layout system.
|
|
|
|
// Caveat: This only works if the new layout is not substantially different from the
|
|
|
|
// old one because otherwise the minimum sizes assigned by SetSizerAndFit won't make
|
|
|
|
// sense and the layout will break (overlapping widgets). You can't just SetSizeHints
|
|
|
|
// because that will change the current sizes as well as the minimum sizes, it's a mess.
|
|
|
|
for (wxWindow* tab : m_notebook->GetChildren())
|
|
|
|
tab->Layout();
|
|
|
|
// Because this is a wxFrame, not a dialog, everything is inside a wxPanel which
|
|
|
|
// is the only direct child of the frame.
|
|
|
|
GetChildren()[0]->Layout();
|
|
|
|
|
2016-02-02 15:35:27 +00:00
|
|
|
DispatchFocus();
|
|
|
|
}
|
|
|
|
|
|
|
|
void NetPlaySetupFrame::OnKeyDown(wxKeyEvent& event)
|
|
|
|
{
|
|
|
|
// Let the event propagate
|
|
|
|
event.Skip();
|
|
|
|
|
|
|
|
if (event.GetKeyCode() != wxKeyCode::WXK_RETURN)
|
|
|
|
return;
|
|
|
|
|
|
|
|
int current_tab = m_notebook->GetSelection();
|
|
|
|
|
|
|
|
switch (current_tab)
|
|
|
|
{
|
|
|
|
case CONNECT_TAB:
|
|
|
|
DoJoin();
|
|
|
|
break;
|
|
|
|
case HOST_TAB:
|
|
|
|
DoHost();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-12 18:31:35 +00:00
|
|
|
void NetPlaySetupFrame::OnTabChanged(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
// Propagate event
|
|
|
|
event.Skip();
|
|
|
|
|
2016-08-02 06:23:02 +00:00
|
|
|
// Let the base class fiddle with the focus first then correct it afterwards
|
|
|
|
CallAfter(&NetPlaySetupFrame::DispatchFocus);
|
2016-07-12 18:31:35 +00:00
|
|
|
}
|
|
|
|
|
2016-02-02 15:35:27 +00:00
|
|
|
void NetPlaySetupFrame::DispatchFocus()
|
|
|
|
{
|
|
|
|
int current_tab = m_notebook->GetSelection();
|
|
|
|
|
|
|
|
switch (current_tab)
|
|
|
|
{
|
|
|
|
case CONNECT_TAB:
|
|
|
|
if (m_direct_traversal->GetCurrentSelection() == TRAVERSAL_CHOICE)
|
|
|
|
m_connect_hashcode_text->SetFocus();
|
|
|
|
else
|
|
|
|
m_connect_ip_text->SetFocus();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case HOST_TAB:
|
|
|
|
m_game_lbox->SetFocus();
|
|
|
|
break;
|
|
|
|
}
|
2015-04-11 05:24:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void NetPlaySetupFrame::OnQuit(wxCommandEvent&)
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
Destroy();
|
2015-04-11 05:24:45 +00:00
|
|
|
}
|