101 lines
3.0 KiB
C++
101 lines
3.0 KiB
C++
// Copyright 2016 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#include <wx/button.h>
|
|
#include <wx/event.h>
|
|
#include <wx/gauge.h>
|
|
#include <wx/panel.h>
|
|
#include <wx/sizer.h>
|
|
#include <wx/stattext.h>
|
|
|
|
#include "Common/StringUtil.h"
|
|
#include "DolphinWX/NetPlay/MD5Dialog.h"
|
|
#include "DolphinWX/NetPlay/NetWindow.h"
|
|
|
|
MD5Dialog::MD5Dialog(wxWindow* parent, NetPlayServer* server, std::vector<const Player*> players,
|
|
const std::string& game)
|
|
: wxDialog(parent, wxID_ANY, _("MD5 Checksum")), m_netplay_server(server)
|
|
{
|
|
Bind(wxEVT_CLOSE_WINDOW, &MD5Dialog::OnClose, this);
|
|
wxBoxSizer* const main_sizer = new wxBoxSizer(wxVERTICAL);
|
|
|
|
main_sizer->Add(new wxStaticText(this, wxID_ANY, _("Computing MD5 Checksum for:") + "\n" + game,
|
|
wxDefaultPosition, wxDefaultSize, wxALIGN_CENTRE_HORIZONTAL),
|
|
0, wxALIGN_CENTER_HORIZONTAL | wxALL, 5);
|
|
|
|
for (const Player* player : players)
|
|
{
|
|
wxStaticBoxSizer* const player_szr = new wxStaticBoxSizer(
|
|
wxVERTICAL, this, player->name + " (p" + std::to_string(player->pid) + ")");
|
|
|
|
wxGauge* gauge = new wxGauge(this, wxID_ANY, 100);
|
|
m_progress_bars[player->pid] = gauge;
|
|
player_szr->Add(gauge, 0, wxEXPAND | wxALL, 5);
|
|
|
|
m_result_labels[player->pid] =
|
|
new wxStaticText(this, wxID_ANY, _("Computing..."), wxDefaultPosition, wxSize(250, 20),
|
|
wxALIGN_CENTRE_HORIZONTAL);
|
|
|
|
m_result_labels[player->pid]->SetSize(250, 15);
|
|
player_szr->Add(m_result_labels[player->pid], 0, wxALL, 5);
|
|
|
|
main_sizer->Add(player_szr, 0, wxEXPAND | wxALL, 5);
|
|
}
|
|
|
|
m_final_result_label =
|
|
new wxStaticText(this, wxID_ANY,
|
|
" ", // so it takes space
|
|
wxDefaultPosition, wxDefaultSize, wxALIGN_CENTRE_HORIZONTAL);
|
|
main_sizer->Add(m_final_result_label, 1, wxALL, 5);
|
|
|
|
wxButton* close_btn = new wxButton(this, wxID_ANY, _("Close"));
|
|
close_btn->Bind(wxEVT_BUTTON, &MD5Dialog::OnCloseBtnPressed, this);
|
|
main_sizer->Add(close_btn, 0, wxEXPAND | wxALL, 5);
|
|
|
|
SetSizerAndFit(main_sizer);
|
|
SetFocus();
|
|
Center();
|
|
}
|
|
|
|
void MD5Dialog::SetProgress(int pid, int progress)
|
|
{
|
|
if (m_progress_bars[pid] == nullptr)
|
|
return;
|
|
|
|
m_progress_bars[pid]->SetValue(progress);
|
|
m_result_labels[pid]->SetLabel(_("Computing: ") + std::to_string(progress) + "%");
|
|
Update();
|
|
}
|
|
|
|
void MD5Dialog::SetResult(int pid, const std::string& result)
|
|
{
|
|
if (m_result_labels[pid] == nullptr)
|
|
return;
|
|
|
|
m_result_labels[pid]->SetLabel(result);
|
|
m_hashes.push_back(result);
|
|
|
|
if (m_hashes.size() <= 1)
|
|
return;
|
|
|
|
wxString label = AllHashesMatch() ? _("Hashes match!") : _("Hashes do not match.");
|
|
m_final_result_label->SetLabel(label);
|
|
}
|
|
|
|
bool MD5Dialog::AllHashesMatch() const
|
|
{
|
|
return std::adjacent_find(m_hashes.begin(), m_hashes.end(), std::not_equal_to<>()) ==
|
|
m_hashes.end();
|
|
}
|
|
|
|
void MD5Dialog::OnClose(wxCloseEvent& event)
|
|
{
|
|
m_netplay_server->AbortMD5();
|
|
}
|
|
|
|
void MD5Dialog::OnCloseBtnPressed(wxCommandEvent&)
|
|
{
|
|
Close();
|
|
}
|