mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-10-30 07:11:05 +00:00
Add tutorial for installer wizard for add files and add folder (#86)
* Add tutorial for installer wizard for add files and add folder. * locale: update tutorial strings --------- Co-authored-by: Hyper <34012267+hyperbx@users.noreply.github.com>
This commit is contained in:
parent
5c98a34084
commit
72250e691a
2 changed files with 56 additions and 9 deletions
|
|
@ -255,6 +255,18 @@ std::unordered_map<std::string, std::unordered_map<ELanguage, std::string>> g_lo
|
|||
{ ELanguage::Italian, "Alcuni dei file che sono stati\nselezionati non sono validi.\n\nAssicurati che tutti\ni file sono quelli corretti\ne riprova." }
|
||||
}
|
||||
},
|
||||
{
|
||||
"Installer_Message_FilePickerTutorial",
|
||||
{
|
||||
{ ELanguage::English, "Select a digital dump from\nyour Xbox 360.\n\nFor choosing a folder with\npre-existing game files,\nuse the \"Add Folder\"\noption instead." },
|
||||
}
|
||||
},
|
||||
{
|
||||
"Installer_Message_FolderPickerTutorial",
|
||||
{
|
||||
{ ELanguage::English, "Select a folder that contains\nthe files that have been\nextracted from the game.\n\nFor choosing a digital dump\nfrom your Xbox 360, use the\n\"Add Files\" option instead." },
|
||||
}
|
||||
},
|
||||
{
|
||||
"Installer_Message_IncompatibleGameData",
|
||||
{
|
||||
|
|
|
|||
|
|
@ -137,6 +137,9 @@ static std::list<std::filesystem::path> g_currentPickerResults;
|
|||
static std::atomic<bool> g_currentPickerResultsReady = false;
|
||||
static std::string g_currentPickerErrorMessage;
|
||||
static std::unique_ptr<std::thread> g_currentPickerThread;
|
||||
static bool g_pickerTutorialCleared[2] = {};
|
||||
static bool g_pickerTutorialTriggered = false;
|
||||
static bool g_pickerTutorialFolderMode = false;
|
||||
static bool g_currentPickerVisible = false;
|
||||
static bool g_currentPickerFolderMode = false;
|
||||
static int g_currentMessageResult = -1;
|
||||
|
|
@ -913,8 +916,7 @@ static void PickerThreadProcess()
|
|||
g_currentPickerResultsReady = true;
|
||||
}
|
||||
|
||||
static void ShowPicker(bool folderMode)
|
||||
{
|
||||
static void PickerStart(bool folderMode) {
|
||||
if (g_currentPickerThread != nullptr)
|
||||
{
|
||||
g_currentPickerThread->join();
|
||||
|
|
@ -934,7 +936,22 @@ static void ShowPicker(bool folderMode)
|
|||
g_currentPickerThread = std::make_unique<std::thread>(PickerThreadProcess);
|
||||
}
|
||||
|
||||
static void ParseSourcePaths(std::list<std::filesystem::path> &paths)
|
||||
static void PickerShow(bool folderMode)
|
||||
{
|
||||
if (g_pickerTutorialCleared[folderMode])
|
||||
{
|
||||
PickerStart(folderMode);
|
||||
}
|
||||
else
|
||||
{
|
||||
g_currentMessagePrompt = Localise(folderMode ? "Installer_Message_FolderPickerTutorial" : "Installer_Message_FilePickerTutorial");
|
||||
g_currentMessagePromptConfirmation = false;
|
||||
g_pickerTutorialTriggered = true;
|
||||
g_pickerTutorialFolderMode = folderMode;
|
||||
}
|
||||
}
|
||||
|
||||
static bool ParseSourcePaths(std::list<std::filesystem::path> &paths)
|
||||
{
|
||||
assert((g_currentPage == WizardPage::SelectGameAndUpdate) || (g_currentPage == WizardPage::SelectDLC));
|
||||
|
||||
|
|
@ -995,6 +1012,8 @@ static void ParseSourcePaths(std::list<std::filesystem::path> &paths)
|
|||
g_currentMessagePrompt = stringStream.str();
|
||||
g_currentMessagePromptConfirmation = false;
|
||||
}
|
||||
|
||||
return failedPaths.empty();
|
||||
}
|
||||
|
||||
static void DrawLanguagePicker()
|
||||
|
|
@ -1040,7 +1059,7 @@ static void DrawSourcePickers()
|
|||
DrawButton(min, max, addFilesText.c_str(), false, true, buttonPressed, ADD_BUTTON_MAX_TEXT_WIDTH);
|
||||
if (buttonPressed)
|
||||
{
|
||||
ShowPicker(false);
|
||||
PickerShow(false);
|
||||
}
|
||||
|
||||
min.x += Scale(BOTTOM_X_GAP + textSize.x * squashRatio);
|
||||
|
|
@ -1053,7 +1072,7 @@ static void DrawSourcePickers()
|
|||
DrawButton(min, max, addFolderText.c_str(), false, true, buttonPressed, ADD_BUTTON_MAX_TEXT_WIDTH);
|
||||
if (buttonPressed)
|
||||
{
|
||||
ShowPicker(true);
|
||||
PickerShow(true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1354,7 +1373,18 @@ static void DrawMessagePrompt()
|
|||
}
|
||||
}
|
||||
|
||||
static void CheckPickerResults()
|
||||
static void PickerCheckTutorial()
|
||||
{
|
||||
if (!g_pickerTutorialTriggered || !g_currentMessagePrompt.empty())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
PickerStart(g_pickerTutorialFolderMode);
|
||||
g_pickerTutorialTriggered = false;
|
||||
}
|
||||
|
||||
static void PickerCheckResults()
|
||||
{
|
||||
if (!g_currentPickerResultsReady)
|
||||
{
|
||||
|
|
@ -1368,7 +1398,11 @@ static void CheckPickerResults()
|
|||
g_currentPickerErrorMessage.clear();
|
||||
}
|
||||
|
||||
ParseSourcePaths(g_currentPickerResults);
|
||||
if (!g_currentPickerResults.empty() && ParseSourcePaths(g_currentPickerResults))
|
||||
{
|
||||
g_pickerTutorialCleared[g_pickerTutorialFolderMode] = true;
|
||||
}
|
||||
|
||||
g_currentPickerResultsReady = false;
|
||||
g_currentPickerVisible = false;
|
||||
}
|
||||
|
|
@ -1411,7 +1445,8 @@ void InstallerWizard::Draw()
|
|||
DrawNextButton();
|
||||
DrawBorders();
|
||||
DrawMessagePrompt();
|
||||
CheckPickerResults();
|
||||
PickerCheckTutorial();
|
||||
PickerCheckResults();
|
||||
|
||||
if (g_isDisappearing)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue