mirror of
https://github.com/geode-sdk/geode.git
synced 2025-04-04 01:01:00 -04:00
new-index: add a ton of node ids
This commit is contained in:
parent
2b60027636
commit
961c6e2a40
7 changed files with 107 additions and 7 deletions
loader/src/ui
|
@ -25,6 +25,9 @@ $execute {
|
|||
ColorProvider::get()->define("mod-list-recommended-by"_spr, ccc3(25, 255, 167));
|
||||
ColorProvider::get()->define("mod-list-recommended-by-2"_spr, ccc3(47, 255, 255));
|
||||
|
||||
// Only used when GD theme is active
|
||||
ColorProvider::get()->define("mods-layer-gd-bg"_spr, { 0, 102, 255, 255 });
|
||||
|
||||
auto updateColors = +[](bool enabled) {
|
||||
if (enabled) {
|
||||
ColorProvider::get()->reset("mod-list-bg"_spr);
|
||||
|
@ -120,7 +123,8 @@ protected:
|
|||
bool init(float sideLength) {
|
||||
if (!CCNode::init())
|
||||
return false;
|
||||
|
||||
|
||||
this->setID("loading-spinner");
|
||||
this->setContentSize({ sideLength, sideLength });
|
||||
this->setAnchorPoint({ .5f, .5f });
|
||||
|
||||
|
|
|
@ -13,16 +13,20 @@ bool ModsStatusNode::init() {
|
|||
this->ignoreAnchorPointForPosition(false);
|
||||
this->setAnchorPoint({ .5f, 1.f });
|
||||
this->setContentSize({ 300, 35 });
|
||||
this->setID("ModsStatusNode");
|
||||
|
||||
m_statusBG = CCScale9Sprite::create("black-square.png"_spr);
|
||||
m_statusBG->setID("status-bg");
|
||||
m_statusBG->setContentSize({ 570, 40 });
|
||||
m_statusBG->setScale(.5f);
|
||||
|
||||
m_status = CCLabelBMFont::create("", "bigFont.fnt");
|
||||
m_status->setID("status-label");
|
||||
m_status->setScale(.8f);
|
||||
m_statusBG->addChildAtPosition(m_status, Anchor::Center);
|
||||
|
||||
m_statusPercentage = CCLabelBMFont::create("", "bigFont.fnt");
|
||||
m_statusPercentage->setID("status-percentage-label");
|
||||
m_statusPercentage->setScale(.8f);
|
||||
m_statusBG->addChildAtPosition(m_statusPercentage, Anchor::Right, ccp(-25, 0));
|
||||
|
||||
|
@ -30,6 +34,7 @@ bool ModsStatusNode::init() {
|
|||
m_statusBG->addChildAtPosition(m_loadingCircle, Anchor::Left, ccp(25, 0));
|
||||
|
||||
m_progressBar = Slider::create(nullptr, nullptr);
|
||||
m_progressBar->setID("progress-bar");
|
||||
m_progressBar->m_touchLogic->m_thumb->setVisible(false);
|
||||
m_progressBar->setScale(2.f);
|
||||
m_progressBar->setAnchorPoint({ 0, 0 }),
|
||||
|
@ -38,6 +43,7 @@ bool ModsStatusNode::init() {
|
|||
this->addChildAtPosition(m_statusBG, Anchor::Bottom);
|
||||
|
||||
m_btnMenu = CCMenu::create();
|
||||
m_btnMenu->setID("button-menu");
|
||||
m_btnMenu->setContentWidth(m_obContentSize.width);
|
||||
|
||||
auto restartSpr = createGeodeButton("Restart Now");
|
||||
|
@ -45,11 +51,13 @@ bool ModsStatusNode::init() {
|
|||
m_restartBtn = CCMenuItemSpriteExtra::create(
|
||||
restartSpr, this, menu_selector(ModsStatusNode::onRestart)
|
||||
);
|
||||
m_restartBtn->setID("restart-button");
|
||||
m_btnMenu->addChild(m_restartBtn);
|
||||
|
||||
auto viewSpr = createGeodeButton("View");
|
||||
viewSpr->setScale(.65f);
|
||||
m_viewBtn = CCMenuItemSpriteExtra::create(viewSpr, this, nullptr);
|
||||
m_viewBtn->setID("view-button");
|
||||
m_btnMenu->addChild(m_viewBtn);
|
||||
|
||||
auto cancelSpr = createGeodeButton("Cancel");
|
||||
|
@ -57,6 +65,7 @@ bool ModsStatusNode::init() {
|
|||
m_cancelBtn = CCMenuItemSpriteExtra::create(
|
||||
cancelSpr, this, menu_selector(ModsStatusNode::onCancel)
|
||||
);
|
||||
m_cancelBtn->setID("cancel-button");
|
||||
m_btnMenu->addChild(m_cancelBtn);
|
||||
|
||||
m_btnMenu->setLayout(RowLayout::create());
|
||||
|
@ -274,6 +283,8 @@ bool ModsLayer::init() {
|
|||
if (!CCLayer::init())
|
||||
return false;
|
||||
|
||||
this->setID("ModsLayer");
|
||||
|
||||
auto winSize = CCDirector::get()->getWinSize();
|
||||
|
||||
const bool geodeTheme = isGeodeTheme();
|
||||
|
@ -286,6 +297,7 @@ bool ModsLayer::init() {
|
|||
}
|
||||
|
||||
auto backMenu = CCMenu::create();
|
||||
backMenu->setID("back-menu");
|
||||
backMenu->setContentWidth(100.f);
|
||||
backMenu->setAnchorPoint({ .0f, .5f });
|
||||
|
||||
|
@ -293,6 +305,7 @@ bool ModsLayer::init() {
|
|||
auto backBtn = CCMenuItemSpriteExtra::create(
|
||||
backSpr, this, menu_selector(ModsLayer::onBack)
|
||||
);
|
||||
backBtn->setID("back-button");
|
||||
backMenu->addChild(backBtn);
|
||||
|
||||
backMenu->setLayout(
|
||||
|
@ -302,6 +315,7 @@ bool ModsLayer::init() {
|
|||
this->addChildAtPosition(backMenu, Anchor::TopLeft, ccp(12, -25), false);
|
||||
|
||||
auto actionsMenu = CCMenu::create();
|
||||
actionsMenu->setID("actions-menu");
|
||||
actionsMenu->setContentHeight(200.f);
|
||||
actionsMenu->setAnchorPoint({ .5f, .0f });
|
||||
|
||||
|
@ -314,6 +328,7 @@ bool ModsLayer::init() {
|
|||
auto reloadBtn = CCMenuItemSpriteExtra::create(
|
||||
reloadSpr, this, menu_selector(ModsLayer::onRefreshList)
|
||||
);
|
||||
reloadBtn->setID("reload-button");
|
||||
actionsMenu->addChild(reloadBtn);
|
||||
|
||||
auto themeSpr = createGeodeCircleButton(
|
||||
|
@ -325,6 +340,7 @@ bool ModsLayer::init() {
|
|||
auto themeBtn = CCMenuItemSpriteExtra::create(
|
||||
themeSpr, this, menu_selector(ModsLayer::onSettings)
|
||||
);
|
||||
themeBtn->setID("theme-button");
|
||||
actionsMenu->addChild(themeBtn);
|
||||
|
||||
actionsMenu->setLayout(
|
||||
|
@ -334,49 +350,57 @@ bool ModsLayer::init() {
|
|||
this->addChildAtPosition(actionsMenu, Anchor::BottomLeft, ccp(35, 12), false);
|
||||
|
||||
m_frame = CCNode::create();
|
||||
m_frame->setID("mod-list-frame");
|
||||
m_frame->setAnchorPoint({ .5f, .5f });
|
||||
m_frame->setContentSize({ 380, 205 });
|
||||
|
||||
auto frameBG = CCLayerColor::create(ColorProvider::get()->color("mod-list-bg"_spr));
|
||||
frameBG->setID("frame-bg");
|
||||
frameBG->setContentSize(m_frame->getContentSize());
|
||||
frameBG->ignoreAnchorPointForPosition(false);
|
||||
m_frame->addChildAtPosition(frameBG, Anchor::Center);
|
||||
|
||||
auto tabsTop = CCSprite::createWithSpriteFrameName(geodeTheme ? "mods-list-top.png"_spr : "mods-list-top-gd.png"_spr);
|
||||
tabsTop->setID("frame-top-sprite");
|
||||
tabsTop->setAnchorPoint({ .5f, .0f });
|
||||
m_frame->addChildAtPosition(tabsTop, Anchor::Top, ccp(0, -2));
|
||||
|
||||
auto tabsLeft = CCSprite::createWithSpriteFrameName(geodeTheme ? "mods-list-side.png"_spr : "mods-list-side-gd.png"_spr);
|
||||
tabsLeft->setID("frame-left-sprite");
|
||||
tabsLeft->setScaleY(m_frame->getContentHeight() / tabsLeft->getContentHeight());
|
||||
m_frame->addChildAtPosition(tabsLeft, Anchor::Left, ccp(6, 0));
|
||||
|
||||
auto tabsRight = CCSprite::createWithSpriteFrameName(geodeTheme ? "mods-list-side.png"_spr : "mods-list-side-gd.png"_spr);
|
||||
tabsRight->setID("frame-right-sprite");
|
||||
tabsRight->setFlipX(true);
|
||||
tabsRight->setScaleY(m_frame->getContentHeight() / tabsRight->getContentHeight());
|
||||
m_frame->addChildAtPosition(tabsRight, Anchor::Right, ccp(-6, 0));
|
||||
|
||||
auto tabsBottom = CCSprite::createWithSpriteFrameName(geodeTheme ? "mods-list-bottom.png"_spr : "mods-list-bottom-gd.png"_spr);
|
||||
tabsBottom->setID("frame-bottom-sprite");
|
||||
tabsBottom->setAnchorPoint({ .5f, 1.f });
|
||||
m_frame->addChildAtPosition(tabsBottom, Anchor::Bottom, ccp(0, 2));
|
||||
|
||||
this->addChildAtPosition(m_frame, Anchor::Center, ccp(0, -10), false);
|
||||
|
||||
auto mainTabs = CCMenu::create();
|
||||
mainTabs->setID("tabs-menu");
|
||||
mainTabs->setContentWidth(tabsTop->getContentWidth() - 45);
|
||||
mainTabs->setAnchorPoint({ .5f, .0f });
|
||||
mainTabs->setPosition(m_frame->convertToWorldSpace(tabsTop->getPosition() + ccp(0, 8)));
|
||||
|
||||
for (auto item : std::initializer_list<std::tuple<const char*, const char*, ModListSource*>> {
|
||||
{ "download.png"_spr, "Installed", InstalledModListSource::get(InstalledModListType::All) },
|
||||
{ "GJ_starsIcon_001.png", "Recommended", SuggestedModListSource::get() },
|
||||
{ "globe.png"_spr, "Download", ServerModListSource::get(ServerModListType::Download) },
|
||||
{ "GJ_timeIcon_001.png", "Recent", ServerModListSource::get(ServerModListType::Recent) },
|
||||
for (auto item : std::initializer_list<std::tuple<const char*, const char*, ModListSource*, const char*>> {
|
||||
{ "download.png"_spr, "Installed", InstalledModListSource::get(InstalledModListType::All), "installed-button" },
|
||||
{ "GJ_starsIcon_001.png", "Recommended", SuggestedModListSource::get(), "recommended-button" },
|
||||
{ "globe.png"_spr, "Download", ServerModListSource::get(ServerModListType::Download), "download-button" },
|
||||
{ "GJ_timeIcon_001.png", "Recent", ServerModListSource::get(ServerModListType::Recent), "recent-button" },
|
||||
}) {
|
||||
auto btn = CCMenuItemSpriteExtra::create(
|
||||
GeodeTabSprite::create(std::get<0>(item), std::get<1>(item), 120),
|
||||
this, menu_selector(ModsLayer::onTab)
|
||||
);
|
||||
btn->setUserData(std::get<2>(item));
|
||||
btn->setID(std::get<3>(item));
|
||||
mainTabs->addChild(btn);
|
||||
m_tabs.push_back(btn);
|
||||
}
|
||||
|
@ -387,6 +411,7 @@ bool ModsLayer::init() {
|
|||
// Actions
|
||||
|
||||
auto listActionsMenu = CCMenu::create();
|
||||
listActionsMenu->setID("list-actions-menu");
|
||||
listActionsMenu->setContentHeight(100);
|
||||
listActionsMenu->setAnchorPoint({ 1, 0 });
|
||||
listActionsMenu->setScale(.65f);
|
||||
|
@ -395,12 +420,14 @@ bool ModsLayer::init() {
|
|||
GeodeSquareSprite::createWithSpriteFrameName("GJ_smallModeIcon_001.png", &m_bigView),
|
||||
this, menu_selector(ModsLayer::onBigView)
|
||||
);
|
||||
bigSizeBtn->setID("list-size-button");
|
||||
listActionsMenu->addChild(bigSizeBtn);
|
||||
|
||||
auto searchBtn = CCMenuItemSpriteExtra::create(
|
||||
GeodeSquareSprite::createWithSpriteFrameName("search.png"_spr, &m_showSearch),
|
||||
this, menu_selector(ModsLayer::onSearch)
|
||||
);
|
||||
searchBtn->setID("search-button");
|
||||
listActionsMenu->addChild(searchBtn);
|
||||
|
||||
listActionsMenu->setLayout(ColumnLayout::create());
|
||||
|
@ -411,11 +438,13 @@ bool ModsLayer::init() {
|
|||
m_frame->addChildAtPosition(m_statusNode, Anchor::Bottom);
|
||||
|
||||
m_pageMenu = CCMenu::create();
|
||||
m_pageMenu->setID("page-menu");
|
||||
m_pageMenu->setContentWidth(200.f);
|
||||
m_pageMenu->setAnchorPoint({ 1.f, 1.f });
|
||||
m_pageMenu->setScale(.65f);
|
||||
|
||||
m_pageLabel = CCLabelBMFont::create("", "goldFont.fnt");
|
||||
m_pageLabel->setID("page-label");
|
||||
m_pageLabel->setAnchorPoint({ .5f, 1.f });
|
||||
m_pageMenu->addChild(m_pageLabel);
|
||||
|
||||
|
@ -423,6 +452,7 @@ bool ModsLayer::init() {
|
|||
CCSprite::createWithSpriteFrameName("gj_navDotBtn_on_001.png"),
|
||||
this, menu_selector(ModsLayer::onGoToPage)
|
||||
);
|
||||
m_goToPageBtn->setID("go-to-page-button");
|
||||
m_pageMenu->addChild(m_goToPageBtn);
|
||||
|
||||
m_pageMenu->setLayout(
|
||||
|
|
|
@ -4,6 +4,8 @@
|
|||
bool SwelvyBG::init() {
|
||||
if (!CCSpriteBatchNode::initWithTexture(CCTextureCache::get()->textureForKey("SwelveSheet.png"_spr), 20))
|
||||
return false;
|
||||
|
||||
this->setID("SwelvyBG");
|
||||
|
||||
auto winSize = CCDirector::get()->getWinSize();
|
||||
this->setContentSize(winSize);
|
||||
|
|
|
@ -10,8 +10,10 @@ bool ModItem::init(ModSource&& source) {
|
|||
return false;
|
||||
|
||||
m_source = std::move(source);
|
||||
this->setID("ModItem");
|
||||
|
||||
m_bg = CCScale9Sprite::create("square02b_small.png");
|
||||
m_bg->setID("bg");
|
||||
m_bg->setOpacity(0);
|
||||
m_bg->ignoreAnchorPointForPosition(false);
|
||||
m_bg->setAnchorPoint({ .5f, .5f });
|
||||
|
@ -19,9 +21,11 @@ bool ModItem::init(ModSource&& source) {
|
|||
this->addChild(m_bg);
|
||||
|
||||
m_logo = m_source.createModLogo();
|
||||
m_logo->setID("logo-sprite");
|
||||
this->addChild(m_logo);
|
||||
|
||||
m_infoContainer = CCNode::create();
|
||||
m_infoContainer->setID("info-container");
|
||||
m_infoContainer->setScale(.4f);
|
||||
m_infoContainer->setAnchorPoint({ .0f, .5f });
|
||||
m_infoContainer->setLayout(
|
||||
|
@ -34,6 +38,7 @@ bool ModItem::init(ModSource&& source) {
|
|||
m_infoContainer->getLayout()->ignoreInvisibleChildren(true);
|
||||
|
||||
m_titleContainer = CCNode::create();
|
||||
m_titleContainer->setID("title-container");
|
||||
m_titleContainer->setAnchorPoint({ .0f, .5f });
|
||||
m_titleContainer->setLayout(
|
||||
RowLayout::create()
|
||||
|
@ -42,23 +47,28 @@ bool ModItem::init(ModSource&& source) {
|
|||
);
|
||||
|
||||
m_titleLabel = CCLabelBMFont::create(m_source.getMetadata().getName().c_str(), "bigFont.fnt");
|
||||
m_titleLabel->setID("title-label");
|
||||
m_titleContainer->addChild(m_titleLabel);
|
||||
|
||||
m_versionLabel = CCLabelBMFont::create("", "bigFont.fnt");
|
||||
m_versionLabel->setID("version-label");
|
||||
m_versionLabel->setLayoutOptions(AxisLayoutOptions::create()->setMaxScale(.7f));
|
||||
m_titleContainer->addChild(m_versionLabel);
|
||||
|
||||
m_infoContainer->addChild(m_titleContainer);
|
||||
|
||||
m_developers = CCMenu::create();
|
||||
m_developers->setID("developers-menu");
|
||||
m_developers->ignoreAnchorPointForPosition(false);
|
||||
m_developers->setAnchorPoint({ .0f, .5f });
|
||||
|
||||
auto by = "By " + ModMetadata::formatDeveloperDisplayString(m_source.getMetadata().getDevelopers());
|
||||
m_developerLabel = CCLabelBMFont::create(by.c_str(), "goldFont.fnt");
|
||||
m_developerLabel->setID("developers-label");
|
||||
auto developersBtn = CCMenuItemSpriteExtra::create(
|
||||
m_developerLabel, this, menu_selector(ModItem::onDevelopers)
|
||||
);
|
||||
developersBtn->setID("developers-button");
|
||||
m_developers->addChild(developersBtn);
|
||||
|
||||
m_developers->setLayout(
|
||||
|
@ -74,13 +84,16 @@ bool ModItem::init(ModSource&& source) {
|
|||
to3B(ColorProvider::get()->color("mod-list-restart-required-label-bg"_spr))
|
||||
}}
|
||||
);
|
||||
m_restartRequiredLabel->setID("restart-required-label");
|
||||
m_restartRequiredLabel->setLayoutOptions(AxisLayoutOptions::create()->setMaxScale(.75f));
|
||||
m_infoContainer->addChild(m_restartRequiredLabel);
|
||||
|
||||
m_downloadBarContainer = CCNode::create();
|
||||
m_downloadBarContainer->setID("download-bar-container");
|
||||
m_downloadBarContainer->setContentSize({ 320, 30 });
|
||||
|
||||
m_downloadBar = Slider::create(nullptr, nullptr);
|
||||
m_downloadBar->setID("download-bar");
|
||||
m_downloadBar->m_touchLogic->m_thumb->setVisible(false);
|
||||
m_downloadBar->setScale(1.5f);
|
||||
m_downloadBarContainer->addChildAtPosition(m_downloadBar, Anchor::Center, ccp(0, 0), ccp(0, 0));
|
||||
|
@ -88,10 +101,12 @@ bool ModItem::init(ModSource&& source) {
|
|||
m_infoContainer->addChild(m_downloadBarContainer);
|
||||
|
||||
m_downloadWaiting = CCNode::create();
|
||||
m_downloadWaiting->setID("download-waiting-container");
|
||||
m_downloadWaiting->setContentSize({ 225, 30 });
|
||||
|
||||
auto downloadWaitingLabel = CCLabelBMFont::create("Preparing Download...", "bigFont.fnt");
|
||||
downloadWaitingLabel->setScale(.75f);
|
||||
downloadWaitingLabel->setID("download-waiting-label");
|
||||
m_downloadWaiting->addChildAtPosition(
|
||||
downloadWaitingLabel, Anchor::Left,
|
||||
ccp(m_downloadWaiting->getContentHeight(), 0), ccp(0, .5f)
|
||||
|
@ -108,6 +123,7 @@ bool ModItem::init(ModSource&& source) {
|
|||
this->addChild(m_infoContainer);
|
||||
|
||||
m_viewMenu = CCMenu::create();
|
||||
m_viewMenu->setID("view-menu");
|
||||
m_viewMenu->setAnchorPoint({ 1.f, .5f });
|
||||
m_viewMenu->setScale(.55f);
|
||||
|
||||
|
@ -115,6 +131,7 @@ bool ModItem::init(ModSource&& source) {
|
|||
createGeodeButton("View"),
|
||||
this, menu_selector(ModItem::onView)
|
||||
);
|
||||
viewBtn->setID("view-button");
|
||||
m_viewMenu->addChild(viewBtn);
|
||||
|
||||
m_viewMenu->setLayout(
|
||||
|
@ -134,6 +151,7 @@ bool ModItem::init(ModSource&& source) {
|
|||
m_enableToggle = CCMenuItemToggler::createWithStandardSprites(
|
||||
this, menu_selector(ModItem::onEnable), 1.f
|
||||
);
|
||||
m_enableToggle->setID("enable-toggler");
|
||||
// Manually handle toggle state
|
||||
m_enableToggle->m_notClickable = true;
|
||||
m_viewMenu->addChild(m_enableToggle);
|
||||
|
@ -147,6 +165,7 @@ bool ModItem::init(ModSource&& source) {
|
|||
auto viewErrorBtn = CCMenuItemSpriteExtra::create(
|
||||
viewErrorSpr, this, menu_selector(ModItem::onViewError)
|
||||
);
|
||||
viewErrorBtn->setID("view-error-button");
|
||||
m_viewMenu->addChild(viewErrorBtn);
|
||||
}
|
||||
},
|
||||
|
@ -159,6 +178,7 @@ bool ModItem::init(ModSource&& source) {
|
|||
|
||||
auto star = CCSprite::createWithSpriteFrameName("GJ_starsIcon_001.png");
|
||||
starBG->addChildAtPosition(star, Anchor::Center);
|
||||
starBG->setID("star-bg");
|
||||
|
||||
m_titleContainer->addChild(starBG);
|
||||
}
|
||||
|
@ -168,11 +188,13 @@ bool ModItem::init(ModSource&& source) {
|
|||
auto downloadsContainer = CCNode::create();
|
||||
|
||||
auto downloads = CCLabelBMFont::create(numToAbbreviatedString(metadata.downloadCount).c_str(), "bigFont.fnt");
|
||||
downloads->setID("downloads-label");
|
||||
downloads->setColor("mod-list-version-label"_cc3b);
|
||||
downloads->limitLabelWidth(80, .5f, .1f);
|
||||
downloadsContainer->addChildAtPosition(downloads, Anchor::Right, ccp(-0, 0), ccp(1, .5f));
|
||||
|
||||
auto downloadsIcon = CCSprite::createWithSpriteFrameName("GJ_downloadsIcon_001.png");
|
||||
downloadsIcon->setID("downloads-icon-sprite");
|
||||
downloadsIcon->setScale(.75f);
|
||||
downloadsContainer->addChildAtPosition(downloadsIcon, Anchor::Right, ccp(-downloads->getScaledContentWidth() - 10, 0));
|
||||
|
||||
|
@ -185,13 +207,16 @@ bool ModItem::init(ModSource&& source) {
|
|||
},
|
||||
[this](ModSuggestion const& suggestion) {
|
||||
m_recommendedBy = CCNode::create();
|
||||
m_recommendedBy->setID("recommended-container");
|
||||
m_recommendedBy->setContentWidth(225);
|
||||
|
||||
auto byLabel = CCLabelBMFont::create("Recommended by ", "bigFont.fnt");
|
||||
byLabel->setID("recommended-label");
|
||||
byLabel->setColor("mod-list-recommended-by"_cc3b);
|
||||
m_recommendedBy->addChild(byLabel);
|
||||
|
||||
auto nameLabel = CCLabelBMFont::create(suggestion.forMod->getName().c_str(), "bigFont.fnt");
|
||||
nameLabel->setID("recommended-name-label");
|
||||
nameLabel->setColor("mod-list-recommended-by-2"_cc3b);
|
||||
m_recommendedBy->addChild(nameLabel);
|
||||
|
||||
|
@ -211,6 +236,7 @@ bool ModItem::init(ModSource&& source) {
|
|||
m_updateBtn = CCMenuItemSpriteExtra::create(
|
||||
updateSpr, this, menu_selector(ModItem::onInstall)
|
||||
);
|
||||
m_updateBtn->setID("update-button");
|
||||
m_viewMenu->addChild(m_updateBtn);
|
||||
|
||||
if (m_source.asMod()) {
|
||||
|
|
|
@ -11,6 +11,7 @@ bool ModList::init(ModListSource* src, CCSize const& size) {
|
|||
|
||||
this->setContentSize(size);
|
||||
this->setAnchorPoint({ .5f, .5f });
|
||||
this->setID("ModList");
|
||||
|
||||
m_source = src;
|
||||
m_source->reset();
|
||||
|
@ -26,6 +27,7 @@ bool ModList::init(ModListSource* src, CCSize const& size) {
|
|||
this->addChildAtPosition(m_list, Anchor::Bottom, ccp(-m_list->getScaledContentWidth() / 2, 0));
|
||||
|
||||
m_topContainer = CCNode::create();
|
||||
m_topContainer->setID("top-container");
|
||||
m_topContainer->ignoreAnchorPointForPosition(false);
|
||||
m_topContainer->setContentWidth(size.width);
|
||||
m_topContainer->setAnchorPoint({ .5f, 1.f });
|
||||
|
@ -36,6 +38,7 @@ bool ModList::init(ModListSource* src, CCSize const& size) {
|
|||
m_checkUpdatesListener.setFilter(ModsLayer::checkInstalledModsForUpdates());
|
||||
|
||||
m_updateAllContainer = CCNode::create();
|
||||
m_updateAllContainer->setID("update-all-container");
|
||||
m_updateAllContainer->ignoreAnchorPointForPosition(false);
|
||||
m_updateAllContainer->setContentSize({ size.width, 30 });
|
||||
m_updateAllContainer->setVisible(false);
|
||||
|
@ -45,6 +48,7 @@ bool ModList::init(ModListSource* src, CCSize const& size) {
|
|||
"mod-list-updates-available-bg-2"_cc4b,
|
||||
ccp(1, -.5f)
|
||||
);
|
||||
updateAllBG->setID("update-all-bg");
|
||||
updateAllBG->setContentSize(m_updateAllContainer->getContentSize());
|
||||
updateAllBG->ignoreAnchorPointForPosition(false);
|
||||
|
||||
|
@ -60,9 +64,11 @@ bool ModList::init(ModListSource* src, CCSize const& size) {
|
|||
m_updateAllContainer->addChildAtPosition(updateAllBG, Anchor::Center);
|
||||
|
||||
m_updateCountLabel = TextArea::create("", "bigFont.fnt", .35f, size.width / 2 - 30, ccp(0, 1), 12.f, false);
|
||||
m_updateCountLabel->setID("update-count-label");
|
||||
m_updateAllContainer->addChildAtPosition(m_updateCountLabel, Anchor::Left, ccp(10, 0), ccp(0, 0));
|
||||
|
||||
m_updateAllMenu = CCMenu::create();
|
||||
m_updateAllMenu->setID("update-all-menu");
|
||||
m_updateAllMenu->setContentWidth(size.width / 2);
|
||||
m_updateAllMenu->setAnchorPoint({ 1, .5f });
|
||||
|
||||
|
@ -77,6 +83,7 @@ bool ModList::init(ModListSource* src, CCSize const& size) {
|
|||
m_toggleUpdatesOnlyBtn = CCMenuItemToggler::create(
|
||||
showUpdatesSpr, hideUpdatesSpr, this, menu_selector(ModList::onToggleUpdates)
|
||||
);
|
||||
m_toggleUpdatesOnlyBtn->setID("toggle-updates-only-button");
|
||||
m_toggleUpdatesOnlyBtn->m_notClickable = true;
|
||||
m_updateAllMenu->addChild(m_toggleUpdatesOnlyBtn);
|
||||
|
||||
|
@ -87,6 +94,7 @@ bool ModList::init(ModListSource* src, CCSize const& size) {
|
|||
m_updateAllBtn = CCMenuItemSpriteExtra::create(
|
||||
updateAllSpr, this, menu_selector(ModList::onUpdateAll)
|
||||
);
|
||||
m_updateAllBtn->setID("update-all-button");
|
||||
m_updateAllMenu->addChild(m_updateAllBtn);
|
||||
|
||||
m_updateAllLoadingCircle = createLoadingCircle(32);
|
||||
|
@ -104,6 +112,7 @@ bool ModList::init(ModListSource* src, CCSize const& size) {
|
|||
|
||||
if (Loader::get()->getProblems().size()) {
|
||||
m_errorsContainer = CCNode::create();
|
||||
m_errorsContainer->setID("errors-container");
|
||||
m_errorsContainer->ignoreAnchorPointForPosition(false);
|
||||
m_errorsContainer->setContentSize({ size.width, 30 });
|
||||
m_errorsContainer->setVisible(false);
|
||||
|
@ -113,6 +122,7 @@ bool ModList::init(ModListSource* src, CCSize const& size) {
|
|||
"mod-list-errors-found-2"_cc4b,
|
||||
ccp(1, -.5f)
|
||||
);
|
||||
errorsBG->setID("errors-bg");
|
||||
errorsBG->setContentSize(m_errorsContainer->getContentSize());
|
||||
errorsBG->ignoreAnchorPointForPosition(false);
|
||||
|
||||
|
@ -122,9 +132,11 @@ bool ModList::init(ModListSource* src, CCSize const& size) {
|
|||
"There were <cy>errors</c> loading some mods",
|
||||
"bigFont.fnt", .35f, size.width / 2 - 30, ccp(0, 1), 12.f, false
|
||||
);
|
||||
errorsLabel->setID("errors-label");
|
||||
m_errorsContainer->addChildAtPosition(errorsLabel, Anchor::Left, ccp(10, 0), ccp(0, 0));
|
||||
|
||||
auto errorsMenu = CCMenu::create();
|
||||
errorsMenu->setID("errors-menu");
|
||||
errorsMenu->setContentWidth(size.width / 2);
|
||||
errorsMenu->setAnchorPoint({ 1, .5f });
|
||||
|
||||
|
@ -139,6 +151,7 @@ bool ModList::init(ModListSource* src, CCSize const& size) {
|
|||
m_toggleErrorsOnlyBtn = CCMenuItemToggler::create(
|
||||
showErrorsSpr, hideErrorsSpr, this, menu_selector(ModList::onToggleErrors)
|
||||
);
|
||||
m_toggleErrorsOnlyBtn->setID("toggle-errors-only-button");
|
||||
m_toggleErrorsOnlyBtn->m_notClickable = true;
|
||||
errorsMenu->addChild(m_toggleErrorsOnlyBtn);
|
||||
|
||||
|
@ -154,15 +167,18 @@ bool ModList::init(ModListSource* src, CCSize const& size) {
|
|||
}
|
||||
|
||||
m_searchMenu = CCNode::create();
|
||||
m_searchMenu->setID("search-menu");
|
||||
m_searchMenu->ignoreAnchorPointForPosition(false);
|
||||
m_searchMenu->setContentSize({ size.width, 30 });
|
||||
|
||||
auto searchBG = CCLayerColor::create(ColorProvider::get()->color("mod-list-search-bg"_spr));
|
||||
searchBG->setContentSize(m_searchMenu->getContentSize());
|
||||
searchBG->ignoreAnchorPointForPosition(false);
|
||||
searchBG->setID("search-id");
|
||||
m_searchMenu->addChildAtPosition(searchBG, Anchor::Center);
|
||||
|
||||
m_searchInput = TextInput::create(size.width - 5, "Search Mods");
|
||||
m_searchInput->setID("search-input");
|
||||
m_searchInput->setScale(.75f);
|
||||
m_searchInput->setAnchorPoint({ 0, .5f });
|
||||
m_searchInput->setTextAlign(TextInputAlign::Left);
|
||||
|
@ -190,6 +206,7 @@ bool ModList::init(ModListSource* src, CCSize const& size) {
|
|||
m_searchMenu->addChildAtPosition(m_searchInput, Anchor::Left, ccp(7.5f, 0));
|
||||
|
||||
auto searchFiltersMenu = CCMenu::create();
|
||||
searchFiltersMenu->setID("search-filters-menu");
|
||||
searchFiltersMenu->setContentWidth(size.width - m_searchInput->getScaledContentWidth() - 5);
|
||||
searchFiltersMenu->setAnchorPoint({ 1, .5f });
|
||||
searchFiltersMenu->setScale(.75f);
|
||||
|
@ -198,6 +215,7 @@ bool ModList::init(ModListSource* src, CCSize const& size) {
|
|||
auto sortBtn = CCMenuItemSpriteExtra::create(
|
||||
sortSpr, this, menu_selector(ModList::onSort)
|
||||
);
|
||||
sortBtn->setID("sort-button");
|
||||
if (!typeinfo_cast<ServerModListSource*>(m_source)) {
|
||||
sortBtn->setEnabled(false);
|
||||
sortSpr->setColor(ccGRAY);
|
||||
|
@ -211,12 +229,14 @@ bool ModList::init(ModListSource* src, CCSize const& size) {
|
|||
GeodeSquareSprite::createWithSpriteFrameName("GJ_filterIcon_001.png"),
|
||||
this, menu_selector(ModList::onFilters)
|
||||
);
|
||||
m_filtersBtn->setID("filters-button");
|
||||
searchFiltersMenu->addChild(m_filtersBtn);
|
||||
|
||||
m_clearFiltersBtn = CCMenuItemSpriteExtra::create(
|
||||
GeodeSquareSprite::createWithSpriteFrameName("GJ_deleteIcon_001.png"),
|
||||
this, menu_selector(ModList::onClearFilters)
|
||||
);
|
||||
m_clearFiltersBtn->setID("clear-filters-button");
|
||||
searchFiltersMenu->addChild(m_clearFiltersBtn);
|
||||
|
||||
searchFiltersMenu->setLayout(
|
||||
|
@ -240,6 +260,7 @@ bool ModList::init(ModListSource* src, CCSize const& size) {
|
|||
// Paging
|
||||
|
||||
auto pageLeftMenu = CCMenu::create();
|
||||
pageLeftMenu->setID("page-left-menu");
|
||||
pageLeftMenu->setContentWidth(30.f);
|
||||
pageLeftMenu->setAnchorPoint({ 1.f, .5f });
|
||||
|
||||
|
@ -247,6 +268,7 @@ bool ModList::init(ModListSource* src, CCSize const& size) {
|
|||
CCSprite::createWithSpriteFrameName("GJ_arrow_02_001.png"),
|
||||
this, menu_selector(ModList::onPage)
|
||||
);
|
||||
m_pagePrevBtn->setID("page-previous-button");
|
||||
m_pagePrevBtn->setTag(-1);
|
||||
pageLeftMenu->addChild(m_pagePrevBtn);
|
||||
|
||||
|
@ -258,6 +280,7 @@ bool ModList::init(ModListSource* src, CCSize const& size) {
|
|||
this->addChildAtPosition(pageLeftMenu, Anchor::Left, ccp(-5, 0));
|
||||
|
||||
auto pageRightMenu = CCMenu::create();
|
||||
pageRightMenu->setID("page-right-menu");
|
||||
pageRightMenu->setContentWidth(30.f);
|
||||
pageRightMenu->setAnchorPoint({ 0.f, .5f });
|
||||
|
||||
|
@ -267,6 +290,7 @@ bool ModList::init(ModListSource* src, CCSize const& size) {
|
|||
pageNextSpr,
|
||||
this, menu_selector(ModList::onPage)
|
||||
);
|
||||
m_pageNextBtn->setID("page-next-button");
|
||||
m_pageNextBtn->setTag(1);
|
||||
pageRightMenu->addChild(m_pageNextBtn);
|
||||
|
||||
|
@ -279,12 +303,14 @@ bool ModList::init(ModListSource* src, CCSize const& size) {
|
|||
// Status
|
||||
|
||||
m_statusContainer = CCMenu::create();
|
||||
m_statusContainer->setID("status-container");
|
||||
m_statusContainer->setScale(.5f);
|
||||
m_statusContainer->setContentHeight(size.height / m_statusContainer->getScale());
|
||||
m_statusContainer->setAnchorPoint({ .5f, .5f });
|
||||
m_statusContainer->ignoreAnchorPointForPosition(false);
|
||||
|
||||
m_statusTitle = CCLabelBMFont::create("", "bigFont.fnt");
|
||||
m_statusTitle->setID("status-title-label");
|
||||
m_statusTitle->setAlignment(kCCTextAlignmentCenter);
|
||||
m_statusContainer->addChild(m_statusTitle);
|
||||
|
||||
|
@ -292,9 +318,11 @@ bool ModList::init(ModListSource* src, CCSize const& size) {
|
|||
ButtonSprite::create("Details", "bigFont.fnt", "GJ_button_05.png", .75f),
|
||||
this, menu_selector(ModList::onShowStatusDetails)
|
||||
);
|
||||
m_statusDetailsBtn->setID("status-details-button");
|
||||
m_statusContainer->addChild(m_statusDetailsBtn);
|
||||
|
||||
m_statusDetails = SimpleTextArea::create("", "chatFont.fnt", .6f);
|
||||
m_statusDetails->setID("status-details-input");
|
||||
m_statusDetails->setAlignment(kCCTextAlignmentCenter);
|
||||
m_statusContainer->addChild(m_statusDetails);
|
||||
|
||||
|
@ -302,6 +330,7 @@ bool ModList::init(ModListSource* src, CCSize const& size) {
|
|||
m_statusContainer->addChild(m_statusLoadingCircle);
|
||||
|
||||
m_statusLoadingBar = Slider::create(this, nullptr);
|
||||
m_statusLoadingBar->setID("status-loading-bar");
|
||||
m_statusLoadingBar->m_touchLogic->m_thumb->setVisible(false);
|
||||
m_statusLoadingBar->setValue(0);
|
||||
m_statusLoadingBar->updateBar();
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#include "Geode/utils/ColorProvider.hpp"
|
||||
#include <Geode/ui/General.hpp>
|
||||
#include <cocos-ext.h>
|
||||
|
||||
|
@ -7,13 +8,14 @@ CCSprite* geode::createLayerBG() {
|
|||
auto winSize = CCDirector::get()->getWinSize();
|
||||
|
||||
auto bg = CCSprite::create("GJ_gradientBG.png");
|
||||
bg->setID("bg");
|
||||
auto bgSize = bg->getTextureRect().size;
|
||||
|
||||
bg->setAnchorPoint({ 0.0f, 0.0f });
|
||||
bg->setScaleX((winSize.width + 10.0f) / bgSize.width);
|
||||
bg->setScaleY((winSize.height + 10.0f) / bgSize.height);
|
||||
bg->setPosition({ -5.0f, -5.0f });
|
||||
bg->setColor({ 0, 102, 255 }); // todo: let mods customize this
|
||||
bg->setColor(ColorProvider::get()->color3b("mods-layer-gd-bg"_spr)); // todo: let mods customize this
|
||||
|
||||
return bg;
|
||||
}
|
||||
|
@ -30,20 +32,24 @@ void geode::addSideArt(CCNode* to, SideArt sides, SideArtStyle style, bool useAn
|
|||
}
|
||||
if (sides & SideArt::BottomLeft) {
|
||||
auto spr = CCSprite::createWithSpriteFrameName(sprite);
|
||||
spr->setID("side-art-bottom-left");
|
||||
to->addChildAtPosition(spr, Anchor::BottomLeft, ccp(offset, offset), useAnchorLayout);
|
||||
}
|
||||
if (sides & SideArt::BottomRight) {
|
||||
auto spr = CCSprite::createWithSpriteFrameName(sprite);
|
||||
spr->setID("side-art-bottom-right");
|
||||
spr->setFlipX(true);
|
||||
to->addChildAtPosition(spr, Anchor::BottomRight, ccp(-offset, offset), useAnchorLayout);
|
||||
}
|
||||
if (sides & SideArt::TopLeft) {
|
||||
auto spr = CCSprite::createWithSpriteFrameName(sprite);
|
||||
spr->setID("side-art-top-left");
|
||||
spr->setFlipY(true);
|
||||
to->addChildAtPosition(spr, Anchor::TopLeft, ccp(offset, -offset), useAnchorLayout);
|
||||
}
|
||||
if (sides & SideArt::TopRight) {
|
||||
auto spr = CCSprite::createWithSpriteFrameName(sprite);
|
||||
spr->setID("side-art-top-right");
|
||||
spr->setFlipX(true);
|
||||
spr->setFlipY(true);
|
||||
to->addChildAtPosition(spr, Anchor::TopRight, ccp(-offset, -offset), useAnchorLayout);
|
||||
|
|
|
@ -79,9 +79,12 @@ ScrollLayer::ScrollLayer(CCRect const& rect, bool scrollWheelEnabled, bool verti
|
|||
|
||||
m_contentLayer->removeFromParent();
|
||||
m_contentLayer = GenericContentLayer::create(rect.size.width, rect.size.height);
|
||||
m_contentLayer->setID("content-layer");
|
||||
m_contentLayer->setAnchorPoint({ 0, 0 });
|
||||
this->addChild(m_contentLayer);
|
||||
|
||||
this->setID("ScrollLayer");
|
||||
|
||||
this->setMouseEnabled(true);
|
||||
this->setTouchEnabled(true);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue