mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-10 22:49:00 +01:00
DolphinWX: Less duplication between GetTraversalPort/Server
They now also return their results the regular way.
This commit is contained in:
parent
e5325fd082
commit
7a165db94f
@ -23,20 +23,25 @@
|
|||||||
#include "DolphinWX/NetPlay/NetWindow.h"
|
#include "DolphinWX/NetPlay/NetWindow.h"
|
||||||
#include "DolphinWX/WxUtils.h"
|
#include "DolphinWX/WxUtils.h"
|
||||||
|
|
||||||
static void GetTraversalPort(IniFile::Section& section, std::string* port)
|
static std::string GetFromINI(IniFile::Section& section, const std::string& key,
|
||||||
|
const std::string& default_value)
|
||||||
{
|
{
|
||||||
section.Get("TraversalPort", port, "6262");
|
std::string result;
|
||||||
port->erase(std::remove(port->begin(), port->end(), ' '), port->end());
|
section.Get(key, &result, default_value);
|
||||||
if (port->empty())
|
result.erase(std::remove(result.begin(), result.end(), ' '), result.end());
|
||||||
*port = "6262";
|
if (result.empty())
|
||||||
|
return default_value;
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void GetTraversalServer(IniFile::Section& section, std::string* server)
|
static std::string GetTraversalPort(IniFile::Section& section)
|
||||||
{
|
{
|
||||||
section.Get("TraversalServer", server, "stun.dolphin-emu.org");
|
return GetFromINI(section, "TraversalPort", "6262");
|
||||||
server->erase(std::remove(server->begin(), server->end(), ' '), server->end());
|
}
|
||||||
if (server->empty())
|
|
||||||
*server = "stun.dolphin-emu.org";
|
static std::string GetTraversalServer(IniFile::Section& section)
|
||||||
|
{
|
||||||
|
return GetFromINI(section, "TraversalServer", "stun.dolphin-emu.org");
|
||||||
}
|
}
|
||||||
|
|
||||||
NetPlaySetupFrame::NetPlaySetupFrame(wxWindow* const parent, const CGameListCtrl* const game_list)
|
NetPlaySetupFrame::NetPlaySetupFrame(wxWindow* const parent, const CGameListCtrl* const game_list)
|
||||||
@ -98,10 +103,8 @@ NetPlaySetupFrame::NetPlaySetupFrame(wxWindow* const parent, const CGameListCtrl
|
|||||||
m_direct_traversal->Select(DIRECT_CHOICE);
|
m_direct_traversal->Select(DIRECT_CHOICE);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string centralPort;
|
std::string centralPort = GetTraversalPort(netplay_section);
|
||||||
GetTraversalPort(netplay_section, ¢ralPort);
|
std::string centralServer = GetTraversalServer(netplay_section);
|
||||||
std::string centralServer;
|
|
||||||
GetTraversalServer(netplay_section, ¢ralServer);
|
|
||||||
|
|
||||||
m_traversal_lbl = new wxStaticText(panel, wxID_ANY, _("Traversal Server:") + " " +
|
m_traversal_lbl = new wxStaticText(panel, wxID_ANY, _("Traversal Server:") + " " +
|
||||||
centralServer + ":" + centralPort);
|
centralServer + ":" + centralPort);
|
||||||
@ -312,13 +315,11 @@ void NetPlaySetupFrame::MakeNetPlayDiag(int port, const std::string& game, bool
|
|||||||
inifile.Load(File::GetUserPath(F_DOLPHINCONFIG_IDX));
|
inifile.Load(File::GetUserPath(F_DOLPHINCONFIG_IDX));
|
||||||
IniFile::Section& netplay_section = *inifile.GetOrCreateSection("NetPlay");
|
IniFile::Section& netplay_section = *inifile.GetOrCreateSection("NetPlay");
|
||||||
|
|
||||||
std::string centralPortString;
|
std::string centralPortString = GetTraversalPort(netplay_section);
|
||||||
GetTraversalPort(netplay_section, ¢ralPortString);
|
|
||||||
unsigned long int centralPort;
|
unsigned long int centralPort;
|
||||||
StrToWxStr(centralPortString).ToULong(¢ralPort);
|
StrToWxStr(centralPortString).ToULong(¢ralPort);
|
||||||
|
|
||||||
std::string centralServer;
|
std::string centralServer = GetTraversalServer(netplay_section);
|
||||||
GetTraversalServer(netplay_section, ¢ralServer);
|
|
||||||
|
|
||||||
netplay_client = new NetPlayClient(ip, (u16)port, npd, WxStrToStr(m_nickname_text->GetValue()),
|
netplay_client = new NetPlayClient(ip, (u16)port, npd, WxStrToStr(m_nickname_text->GetValue()),
|
||||||
trav, centralServer, (u16)centralPort);
|
trav, centralServer, (u16)centralPort);
|
||||||
@ -394,13 +395,11 @@ void NetPlaySetupFrame::DoHost()
|
|||||||
m_host_port_text->GetValue().ToULong(&listen_port);
|
m_host_port_text->GetValue().ToULong(&listen_port);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string centralPortString;
|
std::string centralPortString = GetTraversalPort(netplay_section);
|
||||||
GetTraversalPort(netplay_section, ¢ralPortString);
|
|
||||||
unsigned long int centralPort;
|
unsigned long int centralPort;
|
||||||
StrToWxStr(centralPortString).ToULong(¢ralPort);
|
StrToWxStr(centralPortString).ToULong(¢ralPort);
|
||||||
|
|
||||||
std::string centralServer;
|
std::string centralServer = GetTraversalServer(netplay_section);
|
||||||
GetTraversalServer(netplay_section, ¢ralServer);
|
|
||||||
|
|
||||||
netplay_server = new NetPlayServer((u16)listen_port, trav, centralServer, (u16)centralPort);
|
netplay_server = new NetPlayServer((u16)listen_port, trav, centralServer, (u16)centralPort);
|
||||||
if (netplay_server->is_connected)
|
if (netplay_server->is_connected)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user