2021-06-05 14:59:38 +00:00
|
|
|
// 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>
|
2021-07-29 21:03:43 +00:00
|
|
|
#include <atomic>
|
2021-06-05 14:59:38 +00:00
|
|
|
|
|
|
|
#include "ppsspp_config.h"
|
|
|
|
|
|
|
|
#include "Common/File/Path.h"
|
|
|
|
#include "Common/UI/UIScreen.h"
|
2021-07-29 21:03:43 +00:00
|
|
|
#include "Common/Thread/Promise.h"
|
|
|
|
|
|
|
|
#include "UI/MiscScreens.h"
|
2021-06-05 14:59:38 +00:00
|
|
|
|
|
|
|
// MemStickScreen - let's you configure your memory stick directory.
|
|
|
|
// Currently only useful for Android.
|
|
|
|
class MemStickScreen : public UIDialogScreenWithBackground {
|
|
|
|
public:
|
2021-07-24 22:16:30 +00:00
|
|
|
MemStickScreen(bool initialSetup);
|
|
|
|
~MemStickScreen() {}
|
2021-06-05 14:59:38 +00:00
|
|
|
|
|
|
|
std::string tag() const override { return "game"; }
|
|
|
|
|
|
|
|
protected:
|
2021-07-26 20:11:07 +00:00
|
|
|
void CreateViews() override;
|
|
|
|
|
2021-06-05 14:59:38 +00:00
|
|
|
void sendMessage(const char *message, const char *value) override;
|
2021-07-24 22:16:30 +00:00
|
|
|
void dialogFinished(const Screen *dialog, DialogResult result) override;
|
|
|
|
void update() override;
|
2021-07-24 22:54:41 +00:00
|
|
|
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.
|
|
|
|
}
|
|
|
|
}
|
2021-06-05 14:59:38 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
// Event handlers
|
|
|
|
UI::EventReturn OnBrowse(UI::EventParams &e);
|
2021-09-15 20:46:52 +00:00
|
|
|
UI::EventReturn OnHelp(UI::EventParams &e);
|
2021-07-25 13:33:11 +00:00
|
|
|
UI::EventReturn OnUseInternalStorage(UI::EventParams ¶ms);
|
2021-08-04 21:21:28 +00:00
|
|
|
UI::EventReturn OnUseStorageRoot(UI::EventParams ¶ms);
|
2021-09-10 21:59:54 +00:00
|
|
|
UI::EventReturn OnSetFolderManually(UI::EventParams ¶ms);
|
2021-07-25 13:33:11 +00:00
|
|
|
|
|
|
|
SettingInfoMessage *settingInfo_ = nullptr;
|
|
|
|
|
|
|
|
bool initialSetup_;
|
2021-07-24 22:16:30 +00:00
|
|
|
bool done_ = false;
|
|
|
|
};
|
|
|
|
|
2021-07-29 21:03:43 +00:00
|
|
|
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_;
|
|
|
|
};
|
|
|
|
|
2021-07-24 22:16:30 +00:00
|
|
|
class ConfirmMemstickMoveScreen : public UIDialogScreenWithBackground {
|
|
|
|
public:
|
|
|
|
ConfirmMemstickMoveScreen(Path newMemstickFolder, bool initialSetup);
|
2021-07-29 21:03:43 +00:00
|
|
|
~ConfirmMemstickMoveScreen();
|
2021-07-26 20:11:07 +00:00
|
|
|
protected:
|
2021-07-29 21:03:43 +00:00
|
|
|
void update() override;
|
2021-07-24 22:16:30 +00:00
|
|
|
void CreateViews() override;
|
|
|
|
|
|
|
|
private:
|
2021-08-05 19:53:08 +00:00
|
|
|
UI::EventReturn OnMoveDataClick(UI::EventParams ¶ms);
|
2021-07-29 21:03:43 +00:00
|
|
|
void FinishFolderMove();
|
|
|
|
|
2021-07-24 22:16:30 +00:00
|
|
|
UI::EventReturn OnConfirm(UI::EventParams ¶ms);
|
|
|
|
|
|
|
|
Path newMemstickFolder_;
|
|
|
|
bool existingFilesInNewFolder_;
|
2021-07-25 13:33:11 +00:00
|
|
|
bool moveData_ = true;
|
2021-07-24 22:16:30 +00:00
|
|
|
bool initialSetup_;
|
|
|
|
|
2021-07-29 21:03:43 +00:00
|
|
|
ProgressReporter progressReporter_;
|
|
|
|
UI::TextView *progressView_ = nullptr;
|
|
|
|
|
|
|
|
Promise<bool> *moveDataTask_ = nullptr;
|
|
|
|
|
2021-07-24 22:16:30 +00:00
|
|
|
std::string error_;
|
2021-06-05 14:59:38 +00:00
|
|
|
};
|