mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 21:39:52 +00:00
139 lines
3.4 KiB
C++
139 lines
3.4 KiB
C++
// Copyright (c) 2013- PPSSPP Project.
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
// Official git repository and contact information can be found at
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
#pragma once
|
|
|
|
#include <functional>
|
|
#include <string>
|
|
#include <atomic>
|
|
|
|
#include "ppsspp_config.h"
|
|
|
|
#include "Common/File/Path.h"
|
|
#include "Common/UI/UIScreen.h"
|
|
#include "Common/Thread/Promise.h"
|
|
|
|
#include "UI/MiscScreens.h"
|
|
|
|
// MemStickScreen - let's you configure your memory stick directory.
|
|
// Currently only useful for Android.
|
|
class MemStickScreen : public UIDialogScreenWithBackground {
|
|
public:
|
|
MemStickScreen(bool initialSetup);
|
|
~MemStickScreen() {}
|
|
|
|
const char *tag() const override { return "MemStick"; }
|
|
|
|
enum Choice {
|
|
CHOICE_BROWSE_FOLDER,
|
|
CHOICE_PRIVATE_DIRECTORY,
|
|
CHOICE_STORAGE_ROOT,
|
|
CHOICE_SET_MANUAL,
|
|
};
|
|
|
|
protected:
|
|
void CreateViews() override;
|
|
|
|
void dialogFinished(const Screen *dialog, DialogResult result) override;
|
|
void update() override;
|
|
void render() override {
|
|
// Simple anti-flicker due to delayed finish.
|
|
if (!done_) {
|
|
// render as usual.
|
|
UIDialogScreenWithBackground::render();
|
|
} else {
|
|
// no render. black frame insertion is better than flicker.
|
|
}
|
|
}
|
|
|
|
private:
|
|
// Event handlers
|
|
UI::EventReturn OnHelp(UI::EventParams &e);
|
|
|
|
// Confirm button sub handlers
|
|
UI::EventReturn Browse(UI::EventParams &e);
|
|
UI::EventReturn UseInternalStorage(UI::EventParams ¶ms);
|
|
UI::EventReturn UseStorageRoot(UI::EventParams ¶ms);
|
|
UI::EventReturn SetFolderManually(UI::EventParams ¶ms);
|
|
|
|
// Button handlers.
|
|
UI::EventReturn OnConfirmClick(UI::EventParams ¶ms);
|
|
UI::EventReturn OnChoiceClick(UI::EventParams ¶ms);
|
|
|
|
SettingInfoMessage *settingInfo_ = nullptr;
|
|
|
|
bool initialSetup_;
|
|
bool storageBrowserWorking_;
|
|
bool done_ = false;
|
|
|
|
int choice_ = 0;
|
|
};
|
|
|
|
class ProgressReporter {
|
|
public:
|
|
void Set(std::string value) {
|
|
std::lock_guard<std::mutex> guard(mutex_);
|
|
progress_ = value;
|
|
}
|
|
|
|
std::string Get() {
|
|
std::lock_guard<std::mutex> guard(mutex_);
|
|
return progress_;
|
|
}
|
|
|
|
private:
|
|
std::string progress_;
|
|
std::mutex mutex_;
|
|
};
|
|
|
|
struct MoveResult {
|
|
bool success; // Got through the whole move.
|
|
std::string errorMessage;
|
|
size_t failedFiles;
|
|
size_t skippedFiles;
|
|
};
|
|
|
|
class ConfirmMemstickMoveScreen : public UIDialogScreenWithBackground {
|
|
public:
|
|
ConfirmMemstickMoveScreen(Path newMemstickFolder, bool initialSetup);
|
|
~ConfirmMemstickMoveScreen();
|
|
|
|
const char *tag() const override { return "ConfirmMemstickMove"; }
|
|
|
|
protected:
|
|
void update() override;
|
|
void CreateViews() override;
|
|
|
|
private:
|
|
UI::EventReturn OnMoveDataClick(UI::EventParams ¶ms);
|
|
void FinishFolderMove();
|
|
|
|
UI::EventReturn OnConfirm(UI::EventParams ¶ms);
|
|
|
|
Path newMemstickFolder_;
|
|
bool existingFilesInNewFolder_;
|
|
bool moveData_ = true;
|
|
bool initialSetup_;
|
|
|
|
ProgressReporter progressReporter_;
|
|
UI::TextView *progressView_ = nullptr;
|
|
|
|
Promise<MoveResult *> *moveDataTask_ = nullptr;
|
|
|
|
std::string error_;
|
|
};
|