2016-12-04 07:04:35 +00:00
|
|
|
// Copyright 2016 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "DolphinWX/ISOProperties/FilesystemPanel.h"
|
|
|
|
|
|
|
|
#include <array>
|
2017-06-21 09:05:48 +00:00
|
|
|
#include <chrono>
|
|
|
|
#include <future>
|
2015-08-08 17:59:33 +00:00
|
|
|
#include <memory>
|
2016-12-04 07:04:35 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include <wx/bitmap.h>
|
|
|
|
#include <wx/button.h>
|
|
|
|
#include <wx/filepicker.h>
|
|
|
|
#include <wx/imaglist.h>
|
|
|
|
#include <wx/menu.h>
|
|
|
|
#include <wx/msgdlg.h>
|
|
|
|
#include <wx/progdlg.h>
|
|
|
|
#include <wx/sizer.h>
|
|
|
|
#include <wx/textctrl.h>
|
|
|
|
#include <wx/treectrl.h>
|
|
|
|
|
|
|
|
#include "Common/CommonPaths.h"
|
|
|
|
#include "Common/FileUtil.h"
|
|
|
|
#include "Common/Logging/Log.h"
|
2017-06-17 10:37:30 +00:00
|
|
|
#include "DiscIO/DiscExtractor.h"
|
2016-12-04 07:04:35 +00:00
|
|
|
#include "DiscIO/Enums.h"
|
|
|
|
#include "DiscIO/Filesystem.h"
|
|
|
|
#include "DiscIO/Volume.h"
|
|
|
|
#include "DolphinWX/ISOFile.h"
|
|
|
|
#include "DolphinWX/WxUtils.h"
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
class WiiPartition final : public wxTreeItemData
|
|
|
|
{
|
|
|
|
public:
|
2017-06-06 09:49:01 +00:00
|
|
|
WiiPartition(std::unique_ptr<DiscIO::FileSystem> filesystem_) : filesystem{std::move(filesystem_)}
|
2016-12-04 07:04:35 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-06-06 09:49:01 +00:00
|
|
|
std::unique_ptr<DiscIO::FileSystem> filesystem;
|
2016-12-04 07:04:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum : int
|
|
|
|
{
|
|
|
|
ICON_DISC,
|
|
|
|
ICON_FOLDER,
|
|
|
|
ICON_FILE
|
|
|
|
};
|
|
|
|
|
|
|
|
wxImageList* LoadIconBitmaps(const wxWindow* context)
|
|
|
|
{
|
|
|
|
static constexpr std::array<const char*, 3> icon_names{
|
|
|
|
{"isoproperties_disc", "isoproperties_folder", "isoproperties_file"}};
|
|
|
|
|
|
|
|
const wxSize icon_size = context->FromDIP(wxSize(16, 16));
|
|
|
|
auto* const icon_list = new wxImageList(icon_size.GetWidth(), icon_size.GetHeight());
|
|
|
|
|
|
|
|
for (const auto& name : icon_names)
|
|
|
|
{
|
|
|
|
icon_list->Add(
|
|
|
|
WxUtils::LoadScaledResourceBitmap(name, context, icon_size, wxDefaultSize,
|
|
|
|
WxUtils::LSI_SCALE_DOWN | WxUtils::LSI_ALIGN_CENTER));
|
|
|
|
}
|
|
|
|
|
|
|
|
return icon_list;
|
|
|
|
}
|
|
|
|
|
2015-08-08 17:59:33 +00:00
|
|
|
void CreateDirectoryTree(wxTreeCtrl* tree_ctrl, wxTreeItemId parent,
|
|
|
|
const DiscIO::FileInfo& directory)
|
2016-12-04 07:04:35 +00:00
|
|
|
{
|
2015-08-08 17:59:33 +00:00
|
|
|
for (const DiscIO::FileInfo& file_info : directory)
|
2016-12-04 07:04:35 +00:00
|
|
|
{
|
2015-08-08 17:59:33 +00:00
|
|
|
const wxString name = StrToWxStr(file_info.GetName());
|
2016-12-04 07:04:35 +00:00
|
|
|
if (file_info.IsDirectory())
|
|
|
|
{
|
2015-08-08 17:59:33 +00:00
|
|
|
wxTreeItemId item = tree_ctrl->AppendItem(parent, name, ICON_FOLDER);
|
|
|
|
CreateDirectoryTree(tree_ctrl, item, file_info);
|
2016-12-04 07:04:35 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-08-08 17:59:33 +00:00
|
|
|
tree_ctrl->AppendItem(parent, name, ICON_FILE);
|
2016-12-04 07:04:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
WiiPartition* FindWiiPartition(wxTreeCtrl* tree_ctrl, const wxString& label)
|
|
|
|
{
|
|
|
|
wxTreeItemIdValue cookie;
|
|
|
|
auto partition = tree_ctrl->GetFirstChild(tree_ctrl->GetRootItem(), cookie);
|
|
|
|
|
|
|
|
while (partition.IsOk())
|
|
|
|
{
|
|
|
|
const wxString partition_label = tree_ctrl->GetItemText(partition);
|
|
|
|
|
|
|
|
if (partition_label == label)
|
|
|
|
return static_cast<WiiPartition*>(tree_ctrl->GetItemData(partition));
|
|
|
|
|
|
|
|
partition = tree_ctrl->GetNextSibling(partition);
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
} // Anonymous namespace
|
|
|
|
|
2015-06-13 10:51:24 +00:00
|
|
|
FilesystemPanel::FilesystemPanel(wxWindow* parent, wxWindowID id,
|
2017-06-06 09:49:01 +00:00
|
|
|
const std::unique_ptr<DiscIO::Volume>& opened_iso)
|
2015-06-13 10:51:24 +00:00
|
|
|
: wxPanel{parent, id}, m_opened_iso{opened_iso}
|
2016-12-04 07:04:35 +00:00
|
|
|
{
|
|
|
|
CreateGUI();
|
2017-06-04 12:30:40 +00:00
|
|
|
if (PopulateFileSystemTree())
|
|
|
|
{
|
|
|
|
BindEvents();
|
|
|
|
m_tree_ctrl->Expand(m_tree_ctrl->GetRootItem());
|
|
|
|
}
|
2016-12-04 07:04:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
FilesystemPanel::~FilesystemPanel() = default;
|
|
|
|
|
|
|
|
void FilesystemPanel::BindEvents()
|
|
|
|
{
|
|
|
|
m_tree_ctrl->Bind(wxEVT_TREE_ITEM_RIGHT_CLICK, &FilesystemPanel::OnRightClickTree, this);
|
|
|
|
|
|
|
|
Bind(wxEVT_MENU, &FilesystemPanel::OnExtractFile, this, ID_EXTRACT_FILE);
|
2017-06-20 13:41:17 +00:00
|
|
|
Bind(wxEVT_MENU, &FilesystemPanel::OnExtractAll, this, ID_EXTRACT_ALL);
|
2016-12-04 07:04:35 +00:00
|
|
|
Bind(wxEVT_MENU, &FilesystemPanel::OnExtractDirectories, this, ID_EXTRACT_DIR);
|
2017-06-20 13:48:55 +00:00
|
|
|
Bind(wxEVT_MENU, &FilesystemPanel::OnExtractSystemData, this, ID_EXTRACT_SYSTEM_DATA);
|
2016-12-04 07:04:35 +00:00
|
|
|
Bind(wxEVT_MENU, &FilesystemPanel::OnCheckPartitionIntegrity, this, ID_CHECK_INTEGRITY);
|
|
|
|
}
|
|
|
|
|
|
|
|
void FilesystemPanel::CreateGUI()
|
|
|
|
{
|
|
|
|
m_tree_ctrl = new wxTreeCtrl(this);
|
|
|
|
m_tree_ctrl->AssignImageList(LoadIconBitmaps(this));
|
|
|
|
m_tree_ctrl->AddRoot(_("Disc"), ICON_DISC);
|
|
|
|
|
|
|
|
const auto space_5 = FromDIP(5);
|
|
|
|
auto* const main_sizer = new wxBoxSizer(wxVERTICAL);
|
|
|
|
main_sizer->AddSpacer(space_5);
|
|
|
|
main_sizer->Add(m_tree_ctrl, 1, wxEXPAND | wxLEFT | wxRIGHT, space_5);
|
|
|
|
main_sizer->AddSpacer(space_5);
|
|
|
|
|
|
|
|
SetSizer(main_sizer);
|
|
|
|
}
|
|
|
|
|
2017-06-04 12:30:40 +00:00
|
|
|
bool FilesystemPanel::PopulateFileSystemTree()
|
2016-12-04 07:04:35 +00:00
|
|
|
{
|
2017-06-03 15:24:28 +00:00
|
|
|
const std::vector<DiscIO::Partition> partitions = m_opened_iso->GetPartitions();
|
|
|
|
m_has_partitions = !partitions.empty();
|
2016-12-04 07:04:35 +00:00
|
|
|
|
2017-06-03 15:24:28 +00:00
|
|
|
if (m_has_partitions)
|
2016-12-04 07:04:35 +00:00
|
|
|
{
|
2017-06-03 15:24:28 +00:00
|
|
|
for (size_t i = 0; i < partitions.size(); ++i)
|
2016-12-04 07:04:35 +00:00
|
|
|
{
|
2017-06-06 09:49:01 +00:00
|
|
|
std::unique_ptr<DiscIO::FileSystem> file_system(
|
2017-06-03 15:24:28 +00:00
|
|
|
DiscIO::CreateFileSystem(m_opened_iso.get(), partitions[i]));
|
|
|
|
if (file_system)
|
|
|
|
{
|
|
|
|
wxTreeItemId partition_root = m_tree_ctrl->AppendItem(
|
|
|
|
m_tree_ctrl->GetRootItem(), wxString::Format(_("Partition %zu"), i), ICON_DISC);
|
2016-12-04 07:04:35 +00:00
|
|
|
|
2017-06-03 15:24:28 +00:00
|
|
|
WiiPartition* const partition = new WiiPartition(std::move(file_system));
|
2016-12-04 07:04:35 +00:00
|
|
|
|
2017-06-03 15:24:28 +00:00
|
|
|
m_tree_ctrl->SetItemData(partition_root, partition);
|
2015-08-08 17:59:33 +00:00
|
|
|
CreateDirectoryTree(m_tree_ctrl, partition_root, partition->filesystem->GetRoot());
|
2016-12-04 07:04:35 +00:00
|
|
|
|
2017-06-09 16:04:58 +00:00
|
|
|
if (partitions[i] == m_opened_iso->GetGamePartition())
|
2017-06-03 15:24:28 +00:00
|
|
|
m_tree_ctrl->Expand(partition_root);
|
|
|
|
}
|
2016-12-04 07:04:35 +00:00
|
|
|
}
|
|
|
|
}
|
2017-06-03 15:24:28 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
m_filesystem = DiscIO::CreateFileSystem(m_opened_iso.get(), DiscIO::PARTITION_NONE);
|
|
|
|
if (!m_filesystem)
|
2017-06-04 12:30:40 +00:00
|
|
|
return false;
|
2017-06-03 15:24:28 +00:00
|
|
|
|
2015-08-08 17:59:33 +00:00
|
|
|
CreateDirectoryTree(m_tree_ctrl, m_tree_ctrl->GetRootItem(), m_filesystem->GetRoot());
|
2017-06-03 15:24:28 +00:00
|
|
|
}
|
2017-06-04 12:30:40 +00:00
|
|
|
|
|
|
|
return true;
|
2016-12-04 07:04:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void FilesystemPanel::OnRightClickTree(wxTreeEvent& event)
|
|
|
|
{
|
|
|
|
m_tree_ctrl->SelectItem(event.GetItem());
|
|
|
|
|
|
|
|
wxMenu menu;
|
|
|
|
|
2017-06-20 13:41:17 +00:00
|
|
|
const wxTreeItemId selection = m_tree_ctrl->GetSelection();
|
|
|
|
const wxTreeItemId first_visible_item = m_tree_ctrl->GetFirstVisibleItem();
|
2016-12-04 07:04:35 +00:00
|
|
|
const int image_type = m_tree_ctrl->GetItemImage(selection);
|
2017-06-20 13:41:17 +00:00
|
|
|
const bool is_parent_of_partitions = m_has_partitions && first_visible_item == selection;
|
2016-12-04 07:04:35 +00:00
|
|
|
|
2017-06-20 13:41:17 +00:00
|
|
|
if (image_type == ICON_FILE)
|
2016-12-04 07:04:35 +00:00
|
|
|
menu.Append(ID_EXTRACT_FILE, _("Extract File..."));
|
2017-06-20 13:41:17 +00:00
|
|
|
else if (!is_parent_of_partitions)
|
|
|
|
menu.Append(ID_EXTRACT_DIR, _("Extract Files..."));
|
2016-12-04 07:04:35 +00:00
|
|
|
|
2017-06-20 13:41:17 +00:00
|
|
|
if (image_type == ICON_DISC)
|
2016-12-04 07:04:35 +00:00
|
|
|
{
|
2017-06-20 13:41:17 +00:00
|
|
|
if (!is_parent_of_partitions)
|
2017-06-20 13:48:55 +00:00
|
|
|
menu.Append(ID_EXTRACT_SYSTEM_DATA, _("Extract System Data..."));
|
2016-12-04 07:04:35 +00:00
|
|
|
|
2017-06-20 13:41:17 +00:00
|
|
|
if (first_visible_item == selection)
|
|
|
|
menu.Append(ID_EXTRACT_ALL, _("Extract Entire Disc..."));
|
|
|
|
else
|
|
|
|
menu.Append(ID_EXTRACT_ALL, _("Extract Entire Partition..."));
|
|
|
|
|
|
|
|
if (first_visible_item != selection)
|
|
|
|
{
|
|
|
|
menu.AppendSeparator();
|
|
|
|
menu.Append(ID_CHECK_INTEGRITY, _("Check Partition Integrity"));
|
|
|
|
}
|
2016-12-04 07:04:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
PopupMenu(&menu);
|
|
|
|
event.Skip();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FilesystemPanel::OnExtractFile(wxCommandEvent& WXUNUSED(event))
|
|
|
|
{
|
|
|
|
const wxString selection_label = m_tree_ctrl->GetItemText(m_tree_ctrl->GetSelection());
|
|
|
|
|
|
|
|
const wxString output_file_path =
|
|
|
|
wxFileSelector(_("Extract File"), wxEmptyString, selection_label, wxEmptyString,
|
|
|
|
wxGetTranslation(wxALL_FILES), wxFD_SAVE, this);
|
|
|
|
|
|
|
|
if (output_file_path.empty() || selection_label.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
ExtractSingleFile(output_file_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
void FilesystemPanel::OnExtractDirectories(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
const wxString selected_directory_label = m_tree_ctrl->GetItemText(m_tree_ctrl->GetSelection());
|
|
|
|
const wxString extract_path = wxDirSelector(_("Choose the folder to extract to"));
|
|
|
|
|
2017-06-20 13:41:17 +00:00
|
|
|
if (!extract_path.empty() && !selected_directory_label.empty())
|
2016-12-04 07:04:35 +00:00
|
|
|
ExtractSingleDirectory(extract_path);
|
|
|
|
}
|
|
|
|
|
2017-06-20 13:48:55 +00:00
|
|
|
void FilesystemPanel::OnExtractSystemData(wxCommandEvent& event)
|
2016-12-04 07:04:35 +00:00
|
|
|
{
|
|
|
|
const wxString path = wxDirSelector(_("Choose the folder to extract to"));
|
|
|
|
|
|
|
|
if (path.empty())
|
|
|
|
return;
|
|
|
|
|
2017-06-17 10:37:30 +00:00
|
|
|
DiscIO::Partition partition;
|
2017-06-03 15:24:28 +00:00
|
|
|
if (m_has_partitions)
|
2016-12-04 07:04:35 +00:00
|
|
|
{
|
|
|
|
const auto* const selection_data = m_tree_ctrl->GetItemData(m_tree_ctrl->GetSelection());
|
2017-06-17 10:37:30 +00:00
|
|
|
const auto* const wii_partition = static_cast<const WiiPartition*>(selection_data);
|
2016-12-04 07:04:35 +00:00
|
|
|
|
2017-06-17 10:37:30 +00:00
|
|
|
partition = wii_partition->filesystem->GetPartition();
|
2016-12-04 07:04:35 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-06-17 10:37:30 +00:00
|
|
|
partition = DiscIO::PARTITION_NONE;
|
2016-12-04 07:04:35 +00:00
|
|
|
}
|
|
|
|
|
2017-06-20 13:48:55 +00:00
|
|
|
if (!DiscIO::ExportSystemData(*m_opened_iso, partition, WxStrToStr(path)))
|
2016-12-04 07:04:35 +00:00
|
|
|
{
|
|
|
|
WxUtils::ShowErrorDialog(
|
|
|
|
wxString::Format(_("Failed to extract to %s!"), WxStrToStr(path).c_str()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-20 13:41:17 +00:00
|
|
|
void FilesystemPanel::OnExtractAll(wxCommandEvent& event)
|
|
|
|
{
|
|
|
|
const wxString extract_path = wxDirSelector(_("Choose the folder to extract to"));
|
|
|
|
|
|
|
|
if (extract_path.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
const wxTreeItemId selection = m_tree_ctrl->GetSelection();
|
|
|
|
const bool first_item_selected = m_tree_ctrl->GetFirstVisibleItem() == selection;
|
|
|
|
|
|
|
|
if (m_has_partitions && first_item_selected)
|
|
|
|
{
|
|
|
|
const wxTreeItemId root = m_tree_ctrl->GetRootItem();
|
|
|
|
|
|
|
|
wxTreeItemIdValue cookie;
|
|
|
|
wxTreeItemId item = m_tree_ctrl->GetFirstChild(root, cookie);
|
|
|
|
|
|
|
|
while (item.IsOk())
|
|
|
|
{
|
|
|
|
const auto* const partition = static_cast<WiiPartition*>(m_tree_ctrl->GetItemData(item));
|
|
|
|
ExtractPartition(WxStrToStr(extract_path), *partition->filesystem);
|
|
|
|
item = m_tree_ctrl->GetNextChild(root, cookie);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (m_has_partitions && !first_item_selected)
|
|
|
|
{
|
|
|
|
const auto* const partition = static_cast<WiiPartition*>(m_tree_ctrl->GetItemData(selection));
|
|
|
|
ExtractPartition(WxStrToStr(extract_path), *partition->filesystem);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ExtractPartition(WxStrToStr(extract_path), *m_filesystem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-04 07:04:35 +00:00
|
|
|
void FilesystemPanel::OnCheckPartitionIntegrity(wxCommandEvent& WXUNUSED(event))
|
|
|
|
{
|
2017-06-03 15:24:28 +00:00
|
|
|
// Normally we can't enter this function if we're analyzing a volume that
|
|
|
|
// doesn't have partitions anyway, but let's still check to be sure.
|
|
|
|
if (!m_has_partitions)
|
2016-12-04 07:04:35 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
wxProgressDialog dialog(_("Checking integrity..."), _("Working..."), 1000, this,
|
|
|
|
wxPD_APP_MODAL | wxPD_ELAPSED_TIME | wxPD_SMOOTH);
|
|
|
|
|
|
|
|
const auto selection = m_tree_ctrl->GetSelection();
|
2015-06-13 10:51:24 +00:00
|
|
|
WiiPartition* partition =
|
|
|
|
static_cast<WiiPartition*>(m_tree_ctrl->GetItemData(m_tree_ctrl->GetSelection()));
|
2017-06-21 09:05:48 +00:00
|
|
|
std::future<bool> is_valid = std::async(std::launch::async, [&] {
|
|
|
|
return m_opened_iso->CheckIntegrity(partition->filesystem->GetPartition());
|
|
|
|
});
|
2016-12-04 07:04:35 +00:00
|
|
|
|
2017-06-21 09:05:48 +00:00
|
|
|
while (is_valid.wait_for(std::chrono::milliseconds(50)) != std::future_status::ready)
|
2016-12-04 07:04:35 +00:00
|
|
|
dialog.Pulse();
|
2017-06-21 09:05:48 +00:00
|
|
|
dialog.Hide();
|
2016-12-04 07:04:35 +00:00
|
|
|
|
2017-06-21 09:05:48 +00:00
|
|
|
if (is_valid.get())
|
2016-12-04 07:04:35 +00:00
|
|
|
{
|
|
|
|
wxMessageBox(_("Integrity check completed. No errors have been found."),
|
|
|
|
_("Integrity check completed"), wxOK | wxICON_INFORMATION, this);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wxMessageBox(wxString::Format(_("Integrity check for %s failed. The disc image is most "
|
|
|
|
"likely corrupted or has been patched incorrectly."),
|
|
|
|
m_tree_ctrl->GetItemText(selection)),
|
|
|
|
_("Integrity Check Error"), wxOK | wxICON_ERROR, this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void FilesystemPanel::ExtractSingleFile(const wxString& output_file_path) const
|
|
|
|
{
|
2017-06-18 10:44:32 +00:00
|
|
|
const std::pair<wxString, const DiscIO::FileSystem&> path = BuildFilePathFromSelection();
|
|
|
|
DiscIO::ExportFile(*m_opened_iso, path.second.GetPartition(),
|
|
|
|
path.second.FindFileInfo(WxStrToStr(path.first)).get(),
|
|
|
|
WxStrToStr(output_file_path));
|
2016-12-04 07:04:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void FilesystemPanel::ExtractSingleDirectory(const wxString& output_folder)
|
|
|
|
{
|
2017-06-18 10:44:32 +00:00
|
|
|
const std::pair<wxString, const DiscIO::FileSystem&> path = BuildDirectoryPathFromSelection();
|
|
|
|
ExtractDirectories(WxStrToStr(path.first), WxStrToStr(output_folder), path.second);
|
2016-12-04 07:04:35 +00:00
|
|
|
}
|
|
|
|
|
2015-08-08 17:59:33 +00:00
|
|
|
void FilesystemPanel::ExtractDirectories(const std::string& full_path,
|
|
|
|
const std::string& output_folder,
|
|
|
|
const DiscIO::FileSystem& filesystem)
|
|
|
|
{
|
|
|
|
std::unique_ptr<DiscIO::FileInfo> file_info = filesystem.FindFileInfo(full_path);
|
|
|
|
u32 size = file_info->GetTotalChildren();
|
|
|
|
u32 progress = 0;
|
|
|
|
|
|
|
|
wxString dialog_title = full_path.empty() ? _("Extracting All Files") : _("Extracting Directory");
|
|
|
|
wxProgressDialog dialog(dialog_title, _("Extracting..."), size, this,
|
2016-12-04 07:04:35 +00:00
|
|
|
wxPD_APP_MODAL | wxPD_AUTO_HIDE | wxPD_CAN_ABORT | wxPD_ELAPSED_TIME |
|
|
|
|
wxPD_ESTIMATED_TIME | wxPD_REMAINING_TIME | wxPD_SMOOTH);
|
|
|
|
|
2017-06-18 11:20:54 +00:00
|
|
|
DiscIO::ExportDirectory(
|
|
|
|
*m_opened_iso, filesystem.GetPartition(), *file_info, true, full_path, output_folder,
|
2017-06-17 10:37:30 +00:00
|
|
|
[&](const std::string& path) {
|
|
|
|
dialog.SetTitle(wxString::Format(
|
|
|
|
"%s : %d%%", dialog_title.c_str(),
|
|
|
|
static_cast<u32>((static_cast<float>(progress) / static_cast<float>(size)) * 100)));
|
|
|
|
dialog.Update(progress, wxString::Format(_("Extracting %s"), StrToWxStr(path)));
|
|
|
|
++progress;
|
|
|
|
return dialog.WasCancelled();
|
|
|
|
});
|
2016-12-04 07:04:35 +00:00
|
|
|
}
|
|
|
|
|
2017-06-20 13:41:17 +00:00
|
|
|
void FilesystemPanel::ExtractPartition(const std::string& output_folder,
|
|
|
|
const DiscIO::FileSystem& filesystem)
|
|
|
|
{
|
|
|
|
ExtractDirectories("", output_folder, filesystem);
|
|
|
|
DiscIO::ExportSystemData(*m_opened_iso, filesystem.GetPartition(), output_folder);
|
|
|
|
}
|
|
|
|
|
2017-06-18 10:44:32 +00:00
|
|
|
std::pair<wxString, const DiscIO::FileSystem&> FilesystemPanel::BuildFilePathFromSelection() const
|
2016-12-04 07:04:35 +00:00
|
|
|
{
|
2017-06-20 18:58:18 +00:00
|
|
|
const wxTreeItemId root_node = m_tree_ctrl->GetRootItem();
|
|
|
|
wxTreeItemId node = m_tree_ctrl->GetSelection();
|
2016-12-04 07:04:35 +00:00
|
|
|
|
2017-06-20 18:58:18 +00:00
|
|
|
wxString file_path;
|
2016-12-04 07:04:35 +00:00
|
|
|
|
2017-06-20 18:58:18 +00:00
|
|
|
if (node != root_node)
|
2016-12-04 07:04:35 +00:00
|
|
|
{
|
2017-06-20 18:58:18 +00:00
|
|
|
file_path = m_tree_ctrl->GetItemText(node);
|
2016-12-04 07:04:35 +00:00
|
|
|
node = m_tree_ctrl->GetItemParent(node);
|
2017-06-20 18:58:18 +00:00
|
|
|
|
|
|
|
while (node != root_node)
|
|
|
|
{
|
|
|
|
file_path = m_tree_ctrl->GetItemText(node) + DIR_SEP_CHR + file_path;
|
|
|
|
node = m_tree_ctrl->GetItemParent(node);
|
|
|
|
}
|
2016-12-04 07:04:35 +00:00
|
|
|
}
|
|
|
|
|
2017-06-18 10:44:32 +00:00
|
|
|
if (m_has_partitions)
|
|
|
|
{
|
|
|
|
const size_t slash_index = file_path.find('/');
|
|
|
|
const wxString partition_label = file_path.substr(0, slash_index);
|
|
|
|
const auto* const partition = FindWiiPartition(m_tree_ctrl, partition_label);
|
|
|
|
|
|
|
|
// Remove "Partition x/"
|
|
|
|
file_path.erase(0, slash_index + 1);
|
|
|
|
|
|
|
|
return {file_path, *partition->filesystem};
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return {file_path, *m_filesystem};
|
|
|
|
}
|
2016-12-04 07:04:35 +00:00
|
|
|
}
|
|
|
|
|
2017-06-18 10:44:32 +00:00
|
|
|
std::pair<wxString, const DiscIO::FileSystem&>
|
|
|
|
FilesystemPanel::BuildDirectoryPathFromSelection() const
|
2016-12-04 07:04:35 +00:00
|
|
|
{
|
2017-06-18 10:44:32 +00:00
|
|
|
const std::pair<wxString, const DiscIO::FileSystem&> result = BuildFilePathFromSelection();
|
|
|
|
return {result.first + DIR_SEP_CHR, result.second};
|
2016-12-04 07:04:35 +00:00
|
|
|
}
|