2022-10-14 14:04:59 -04:00
|
|
|
#include <Geode/modify/LoadingLayer.hpp>
|
2022-08-01 11:18:03 -04:00
|
|
|
#include <array>
|
2022-10-14 14:04:59 -04:00
|
|
|
#include <InternalLoader.hpp>
|
2022-08-01 11:18:03 -04:00
|
|
|
|
|
|
|
USE_GEODE_NAMESPACE();
|
|
|
|
|
|
|
|
class $modify(CustomLoadingLayer, LoadingLayer) {
|
2022-10-15 11:35:13 -04:00
|
|
|
bool m_updatingResources;
|
2022-10-14 14:04:59 -04:00
|
|
|
|
2022-10-15 11:35:13 -04:00
|
|
|
CustomLoadingLayer() : m_updatingResources(false) {}
|
2022-10-14 14:04:59 -04:00
|
|
|
|
2022-08-01 11:18:03 -04:00
|
|
|
bool init(bool fromReload) {
|
|
|
|
if (!LoadingLayer::init(fromReload))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
auto winSize = CCDirector::sharedDirector()->getWinSize();
|
|
|
|
|
|
|
|
auto count = Loader::get()->getAllMods().size();
|
|
|
|
|
|
|
|
auto label = CCLabelBMFont::create(
|
|
|
|
CCString::createWithFormat(
|
|
|
|
"Geode: Loaded %lu mods",
|
|
|
|
static_cast<unsigned long>(count)
|
|
|
|
)->getCString(),
|
|
|
|
"goldFont.fnt"
|
|
|
|
);
|
|
|
|
label->setPosition(winSize.width / 2, 30.f);
|
|
|
|
label->setScale(.45f);
|
2022-10-14 14:04:59 -04:00
|
|
|
label->setID("geode-loaded-info");
|
2022-08-01 11:18:03 -04:00
|
|
|
this->addChild(label);
|
|
|
|
|
2022-10-14 14:04:59 -04:00
|
|
|
// verify loader resources
|
|
|
|
if (!InternalLoader::get()->verifyLoaderResources(
|
|
|
|
std::bind(
|
|
|
|
&CustomLoadingLayer::updateResourcesProgress, this,
|
|
|
|
std::placeholders::_1, std::placeholders::_2,
|
|
|
|
std::placeholders::_3
|
|
|
|
)
|
|
|
|
)) {
|
2022-10-15 11:35:13 -04:00
|
|
|
// auto bg = CCScale9Sprite::create(
|
|
|
|
// "square02b_001.png", { 0.0f, 0.0f, 80.0f, 80.0f }
|
|
|
|
// );
|
|
|
|
// bg->setScale(.6f);
|
|
|
|
// bg->setColor({ 0, 0, 0 });
|
|
|
|
// bg->setOpacity(150);
|
|
|
|
// bg->setPosition(winSize / 2);
|
|
|
|
// this->addChild(bg);
|
2022-10-14 14:04:59 -04:00
|
|
|
|
2022-10-15 11:35:13 -04:00
|
|
|
// m_fields->m_updatingResourcesBG = bg;
|
2022-10-14 14:04:59 -04:00
|
|
|
|
2022-10-15 11:35:13 -04:00
|
|
|
// auto label = CCLabelBMFont::create("", "goldFont.fnt");
|
|
|
|
// label->setScale(1.1f);
|
|
|
|
// bg->addChild(label);
|
2022-10-14 14:04:59 -04:00
|
|
|
|
2022-10-15 11:35:13 -04:00
|
|
|
m_fields->m_updatingResources = true;
|
2022-10-14 14:04:59 -04:00
|
|
|
|
|
|
|
this->setUpdateText("Downloading Resources");
|
|
|
|
}
|
|
|
|
|
2022-08-01 11:18:03 -04:00
|
|
|
return true;
|
|
|
|
}
|
2022-10-14 14:04:59 -04:00
|
|
|
|
|
|
|
void setUpdateText(std::string const& text) {
|
2022-10-15 11:35:13 -04:00
|
|
|
m_textArea->setString(text.c_str());
|
|
|
|
// m_fields->m_updatingResources->setString(text.c_str());
|
|
|
|
// m_fields->m_updatingResourcesBG->setContentSize({
|
|
|
|
// m_fields->m_updatingResources->getScaledContentSize().width + 30.f,
|
|
|
|
// 50.f
|
|
|
|
// });
|
|
|
|
// m_fields->m_updatingResources->setPosition(
|
|
|
|
// m_fields->m_updatingResourcesBG->getContentSize() / 2
|
|
|
|
// );
|
2022-10-14 14:04:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void updateResourcesProgress(
|
|
|
|
UpdateStatus status,
|
|
|
|
std::string const& info,
|
|
|
|
uint8_t progress
|
|
|
|
) {
|
|
|
|
switch (status) {
|
|
|
|
case UpdateStatus::Progress: {
|
|
|
|
this->setUpdateText(
|
|
|
|
"Downloading Resources: " +
|
|
|
|
std::to_string(progress) + "%"
|
|
|
|
);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case UpdateStatus::Finished: {
|
|
|
|
this->setUpdateText("Resources Downloaded");
|
2022-10-15 11:35:13 -04:00
|
|
|
m_fields->m_updatingResources = false;
|
2022-10-14 14:04:59 -04:00
|
|
|
this->loadAssets();
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case UpdateStatus::Failed: {
|
|
|
|
InternalLoader::platformMessageBox(
|
|
|
|
"Error updating resources",
|
|
|
|
"Unable to update Geode resources: " + info + ".\n"
|
|
|
|
"The game will be loaded as normal, but please be aware "
|
|
|
|
"that it may very likely crash."
|
|
|
|
);
|
|
|
|
this->setUpdateText("Resource Download Failed");
|
2022-10-15 11:35:13 -04:00
|
|
|
m_fields->m_updatingResources = false;
|
2022-10-14 14:04:59 -04:00
|
|
|
this->loadAssets();
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void loadAssets() {
|
|
|
|
if (m_fields->m_updatingResources) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
LoadingLayer::loadAssets();
|
|
|
|
}
|
2022-08-01 11:18:03 -04:00
|
|
|
};
|