geode/loader/include/Geode/ui/Popup.hpp

101 lines
3.8 KiB
C++
Raw Normal View History

#pragma once
#include <Geode/binding/CCMenuItemSpriteExtra.hpp>
2022-10-30 14:59:20 -04:00
#include <Geode/binding/FLAlertLayer.hpp>
2022-12-13 02:24:03 -05:00
#include <Geode/utils/MiniFunction.hpp>
namespace geode {
2022-10-30 14:59:20 -04:00
template <typename... InitArgs>
class Popup : public FLAlertLayer {
protected:
cocos2d::CCSize m_size;
cocos2d::extension::CCScale9Sprite* m_bgSprite;
cocos2d::CCLabelBMFont* m_title = nullptr;
CCMenuItemSpriteExtra* m_closeBtn;
bool init(
2022-10-30 14:59:20 -04:00
float width, float height, InitArgs... args, char const* bg = "GJ_square01.png",
cocos2d::CCRect bgRect = { 0, 0, 80, 80 }
) {
auto winSize = cocos2d::CCDirector::sharedDirector()->getWinSize();
m_size = cocos2d::CCSize { width, height };
if (!this->initWithColor({ 0, 0, 0, 105 })) return false;
m_mainLayer = cocos2d::CCLayer::create();
this->addChild(m_mainLayer);
m_bgSprite = cocos2d::extension::CCScale9Sprite::create(bg, bgRect);
m_bgSprite->setContentSize(m_size);
m_bgSprite->setPosition(winSize.width / 2, winSize.height / 2);
m_mainLayer->addChild(m_bgSprite);
m_buttonMenu = cocos2d::CCMenu::create();
2022-09-01 05:46:37 -04:00
m_buttonMenu->setZOrder(100);
m_mainLayer->addChild(m_buttonMenu);
cocos2d::CCDirector::sharedDirector()->getTouchDispatcher()->incrementForcePrio(2);
this->registerWithTouchDispatcher();
auto closeSpr = cocos2d::CCSprite::createWithSpriteFrameName("GJ_closeBtn_001.png");
closeSpr->setScale(.8f);
m_closeBtn = CCMenuItemSpriteExtra::create(
closeSpr, this, (cocos2d::SEL_MenuHandler)(&Popup::onClose)
);
2022-10-30 14:59:20 -04:00
m_closeBtn->setPosition(-m_size.width / 2 + 3.f, m_size.height / 2 - 3.f);
m_buttonMenu->addChild(m_closeBtn);
if (!setup(std::forward<InitArgs>(args)...)) {
return false;
}
this->setKeypadEnabled(true);
this->setTouchEnabled(true);
return true;
}
virtual bool setup(InitArgs... args) = 0;
void keyDown(cocos2d::enumKeyCodes key) {
if (key == cocos2d::enumKeyCodes::KEY_Escape) return this->onClose(nullptr);
if (key == cocos2d::enumKeyCodes::KEY_Space) return;
return FLAlertLayer::keyDown(key);
}
virtual void onClose(cocos2d::CCObject*) {
this->setKeyboardEnabled(false);
this->removeFromParentAndCleanup(true);
}
void setTitle(
2022-10-25 17:50:33 -04:00
std::string const& title,
const char* font = "goldFont.fnt",
float scale = .7f,
float offset = 20.f
) {
if (m_title) {
2022-10-25 17:50:33 -04:00
m_title->setString(title.c_str());
} else {
auto winSize = cocos2d::CCDirector::sharedDirector()->getWinSize();
2022-10-25 17:50:33 -04:00
m_title = cocos2d::CCLabelBMFont::create(title.c_str(), font);
m_title->setPosition(
2022-10-30 14:59:20 -04:00
winSize.width / 2, winSize.height / 2 + m_size.height / 2 - offset
);
m_mainLayer->addChild(m_title, 2);
}
m_title->limitLabelWidth(m_size.width - 20.f, scale, .1f);
}
};
GEODE_DLL FLAlertLayer* createQuickPopup(
2022-10-30 14:59:20 -04:00
char const* title, std::string const& content, char const* btn1, char const* btn2,
2022-12-13 02:24:03 -05:00
utils::MiniFunction<void(FLAlertLayer*, bool)> selected, bool doShow = true
);
GEODE_DLL FLAlertLayer* createQuickPopup(
2022-10-30 14:59:20 -04:00
char const* title, std::string const& content, char const* btn1, char const* btn2,
2022-12-13 02:24:03 -05:00
float width, utils::MiniFunction<void(FLAlertLayer*, bool)> selected, bool doShow = true
);
}