2020-12-12 15:41:56 +00:00
|
|
|
#include "dialogue_page.hpp"
|
2021-02-10 16:28:47 +00:00
|
|
|
#include "utils.hpp"
|
|
|
|
#include "reboot_payload.h"
|
|
|
|
#include "main_frame.hpp"
|
2021-05-21 17:12:58 +01:00
|
|
|
#include "fs.hpp"
|
|
|
|
#include <filesystem>
|
|
|
|
|
2020-12-12 15:41:56 +00:00
|
|
|
namespace i18n = brls::i18n;
|
|
|
|
using namespace i18n::literals;
|
|
|
|
|
2021-05-22 17:10:34 +01:00
|
|
|
DialoguePage::DialoguePage(brls::StagedAppletFrame* frame, std::string text, bool erista) : erista(erista)
|
2020-12-12 15:41:56 +00:00
|
|
|
{
|
2021-03-01 18:19:17 +00:00
|
|
|
this->button1 = (new brls::Button(brls::ButtonStyle::REGULAR))->setLabel("menus/common/yes"_i18n);
|
2020-12-12 15:41:56 +00:00
|
|
|
this->button1->setParent(this);
|
2021-03-01 18:19:17 +00:00
|
|
|
this->button2 = (new brls::Button(brls::ButtonStyle::REGULAR))->setLabel("menus/common/no"_i18n);
|
2020-12-12 15:41:56 +00:00
|
|
|
this->button2->setParent(this);
|
|
|
|
|
|
|
|
this->button1->getClickEvent()->subscribe([frame, this](View* view) {
|
|
|
|
if (!frame->isLastStage()) frame->nextStage();
|
|
|
|
else {
|
|
|
|
brls::Application::pushView(new MainFrame());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
this->button2->getClickEvent()->subscribe([frame, this](View* view) {
|
2021-05-24 18:23:16 +01:00
|
|
|
if(this->erista) {
|
2021-05-21 17:12:58 +01:00
|
|
|
reboot_to_payload(RCM_PAYLOAD_PATH);
|
2021-05-24 18:23:16 +01:00
|
|
|
}
|
2021-05-21 17:12:58 +01:00
|
|
|
else {
|
|
|
|
if(std::filesystem::exists(UPDATE_BIN_PATH)) {
|
|
|
|
fs::copyFile(UPDATE_BIN_PATH, MARIKO_PAYLOAD_PATH_TEMP);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
fs::copyFile(REBOOT_PAYLOAD_PATH, MARIKO_PAYLOAD_PATH_TEMP);
|
|
|
|
}
|
|
|
|
fs::copyFile(RCM_PAYLOAD_PATH, MARIKO_PAYLOAD_PATH);
|
|
|
|
util::shutDown(true);
|
|
|
|
}
|
2020-12-12 15:41:56 +00:00
|
|
|
brls::Application::popView();
|
|
|
|
});
|
|
|
|
|
2021-03-01 18:19:17 +00:00
|
|
|
this->label = new brls::Label(brls::LabelStyle::DIALOG, "menus/ams_update/install_hekate"_i18n + "\n\n" + text, true);
|
2020-12-12 15:41:56 +00:00
|
|
|
this->label->setHorizontalAlign(NVG_ALIGN_CENTER);
|
|
|
|
this->label->setParent(this);
|
2021-02-06 21:38:16 +00:00
|
|
|
|
|
|
|
this->navigationMap.add(
|
|
|
|
this->button1,
|
|
|
|
brls::FocusDirection::RIGHT,
|
|
|
|
this->button2);
|
|
|
|
|
|
|
|
this->navigationMap.add(
|
|
|
|
this->button2,
|
|
|
|
brls::FocusDirection::LEFT,
|
|
|
|
this->button1);
|
2021-02-15 18:31:06 +00:00
|
|
|
|
|
|
|
this->registerAction("", brls::Key::B, [this] { return true; });
|
2020-12-12 15:41:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DialoguePage::draw(NVGcontext* vg, int x, int y, unsigned width, unsigned height, brls::Style* style, brls::FrameContext* ctx)
|
|
|
|
{
|
|
|
|
this->label->frame(ctx);
|
|
|
|
this->button1->frame(ctx);
|
|
|
|
this->button2->frame(ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DialoguePage::layout(NVGcontext* vg, brls::Style* style, brls::FontStash* stash)
|
|
|
|
{
|
|
|
|
this->label->setWidth(this->width);
|
|
|
|
this->label->invalidate(true);
|
|
|
|
this->label->setBoundaries(
|
|
|
|
this->x + this->width / 2 - this->label->getWidth() / 2,
|
|
|
|
this->y + (this->height - this->label->getHeight() - this->y - style->CrashFrame.buttonHeight)/2,
|
|
|
|
this->label->getWidth(),
|
|
|
|
this->label->getHeight());
|
|
|
|
this->button1->setBoundaries(
|
|
|
|
this->x + this->width / 2 - style->CrashFrame.buttonWidth / 2 - 200,
|
|
|
|
this->y + (this->height-style->CrashFrame.buttonHeight*3),
|
|
|
|
style->CrashFrame.buttonWidth,
|
|
|
|
style->CrashFrame.buttonHeight);
|
|
|
|
this->button1->invalidate();
|
|
|
|
|
|
|
|
this->button2->setBoundaries(
|
|
|
|
this->x + this->width / 2 - style->CrashFrame.buttonWidth / 2 + 200,
|
|
|
|
this->y + (this->height-style->CrashFrame.buttonHeight*3),
|
|
|
|
style->CrashFrame.buttonWidth,
|
|
|
|
style->CrashFrame.buttonHeight);
|
|
|
|
this->button2->invalidate();
|
|
|
|
}
|
|
|
|
|
|
|
|
brls::View* DialoguePage::getDefaultFocus()
|
|
|
|
{
|
|
|
|
return this->button1;
|
|
|
|
}
|
|
|
|
|
2021-02-06 21:38:16 +00:00
|
|
|
brls::View* DialoguePage::getNextFocus(brls::FocusDirection direction, brls::View* currentView){
|
|
|
|
return this->navigationMap.getNextFocus(direction, currentView);
|
2020-12-12 15:41:56 +00:00
|
|
|
}
|