mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-14 19:15:05 -05:00
Compare commits
21 commits
1565790d04
...
653da7380b
Author | SHA1 | Date | |
---|---|---|---|
|
653da7380b | ||
|
d68e358bdd | ||
|
a68a631a4d | ||
|
95d750606a | ||
|
a4bd588d4a | ||
|
0597416d48 | ||
|
93e463bf19 | ||
|
b5b845ebb1 | ||
|
c6c9af6867 | ||
|
f79da023cf | ||
|
3222c12e90 | ||
|
f45b8b7128 | ||
|
0da9cef29f | ||
|
9a46231420 | ||
|
cded0523a5 | ||
|
2e039a9cea | ||
|
ae24abbcec | ||
|
9c9c75d46b | ||
|
d117d50fb0 | ||
|
b80efe0517 | ||
|
7d40c8188f |
4 changed files with 126 additions and 1 deletions
|
@ -971,7 +971,8 @@ namespace std {
|
||||||
template <typename T>
|
template <typename T>
|
||||||
struct std::hash<geode::WeakRef<T>> {
|
struct std::hash<geode::WeakRef<T>> {
|
||||||
size_t operator()(geode::WeakRef<T> const& ref) const {
|
size_t operator()(geode::WeakRef<T> const& ref) const {
|
||||||
return hash{}(ref.m_controller);
|
// the explicit template argument is needed here because it would otherwise cast to WeakRef and recurse
|
||||||
|
return hash<std::shared_ptr<geode::WeakRefController>>{}(ref.m_controller);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -85,6 +85,10 @@
|
||||||
"name": "Enable Geode-Themed Colors",
|
"name": "Enable Geode-Themed Colors",
|
||||||
"description": "When enabled, the Geode menu has a <ca>Geode-themed color scheme</c>. <cy>This does not affect any other menus!</c>"
|
"description": "When enabled, the Geode menu has a <ca>Geode-themed color scheme</c>. <cy>This does not affect any other menus!</c>"
|
||||||
},
|
},
|
||||||
|
"copy-mods": {
|
||||||
|
"type": "custom:copy-mods",
|
||||||
|
"name": ""
|
||||||
|
},
|
||||||
"developer-title": {
|
"developer-title": {
|
||||||
"type": "title",
|
"type": "title",
|
||||||
"name": "Developer Settings"
|
"name": "Developer Settings"
|
||||||
|
|
44
loader/src/loader/CopyButtonSetting.cpp
Normal file
44
loader/src/loader/CopyButtonSetting.cpp
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
#include "CopyButtonSetting.hpp"
|
||||||
|
#include <Geode/loader/Mod.hpp>
|
||||||
|
|
||||||
|
$on_mod(Loaded) {
|
||||||
|
(void)Mod::get()->registerCustomSettingType("copy-mods", &CopyButtonSetting::parse);
|
||||||
|
}
|
||||||
|
|
||||||
|
SettingNodeV3* CopyButtonSetting::createNode(float width) {
|
||||||
|
return CopyButtonSettingNode::create(std::static_pointer_cast<CopyButtonSetting>(shared_from_this()), width);
|
||||||
|
}
|
||||||
|
|
||||||
|
void CopyButtonSettingNode::onCopy(CCObject*) {
|
||||||
|
auto mods = Loader::get()->getAllMods();
|
||||||
|
if (mods.empty()) {
|
||||||
|
Notification::create("No mods installed", NotificationIcon::Info, 0.5f)->show();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::sort(mods.begin(), mods.end(), [](Mod* a, Mod* b) {
|
||||||
|
auto const s1 = a->getID();
|
||||||
|
auto const s2 = b->getID();
|
||||||
|
return std::lexicographical_compare(s1.begin(), s1.end(), s2.begin(), s2.end(), [](auto a, auto b) {
|
||||||
|
return std::tolower(a) < std::tolower(b);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
std::stringstream ss;
|
||||||
|
using namespace std::string_view_literals;
|
||||||
|
for (int i = 0; i < mods.size(); i++) {
|
||||||
|
auto& mod = mods[i];
|
||||||
|
ss << fmt::format("{} | [{}] {}",
|
||||||
|
mod->isEnabled() ? "x"sv :
|
||||||
|
mod->hasProblems() ? "!"sv :
|
||||||
|
" "sv,
|
||||||
|
mod->getVersion().toVString(), mod->getID()
|
||||||
|
);
|
||||||
|
if (i != mods.size() - 1) {
|
||||||
|
ss << "\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
clipboard::write(ss.str());
|
||||||
|
|
||||||
|
Notification::create("Mods list copied to clipboard", NotificationIcon::Info, 0.5f)->show();
|
||||||
|
}
|
76
loader/src/loader/CopyButtonSetting.hpp
Normal file
76
loader/src/loader/CopyButtonSetting.hpp
Normal file
|
@ -0,0 +1,76 @@
|
||||||
|
#include <Geode/loader/SettingV3.hpp>
|
||||||
|
#include <ui/mods/GeodeStyle.hpp>
|
||||||
|
|
||||||
|
using namespace geode::prelude;
|
||||||
|
|
||||||
|
class CopyButtonSetting : public SettingV3 {
|
||||||
|
public:
|
||||||
|
static Result<std::shared_ptr<CopyButtonSetting>> parse(std::string const& key, std::string const& modID, matjson::Value const& json) {
|
||||||
|
auto res = std::make_shared<CopyButtonSetting>();
|
||||||
|
auto root = checkJson(json, "CopyButtonSetting");
|
||||||
|
|
||||||
|
res->init(key, modID, root);
|
||||||
|
res->parseNameAndDescription(root);
|
||||||
|
|
||||||
|
return root.ok(res);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool load(matjson::Value const& json) override {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
bool save(matjson::Value& json) const override {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool isDefaultValue() const override {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
void reset() override {}
|
||||||
|
|
||||||
|
SettingNodeV3* createNode(float width) override;
|
||||||
|
};
|
||||||
|
|
||||||
|
class CopyButtonSettingNode : public SettingNodeV3 {
|
||||||
|
protected:
|
||||||
|
bool init(std::shared_ptr<CopyButtonSetting> setting, float width) {
|
||||||
|
if (!SettingNodeV3::init(setting, width))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
auto buttonSprite = createGeodeButton("Copy Mods");
|
||||||
|
buttonSprite->setScale(.5f);
|
||||||
|
auto button = CCMenuItemSpriteExtra::create(
|
||||||
|
buttonSprite, this, menu_selector(CopyButtonSettingNode::onCopy)
|
||||||
|
);
|
||||||
|
this->getButtonMenu()->addChildAtPosition(button, Anchor::Center);
|
||||||
|
this->getButtonMenu()->setPosition(getContentSize() / 2);
|
||||||
|
this->getButtonMenu()->setAnchorPoint({ .5f, .5f });
|
||||||
|
this->getButtonMenu()->updateLayout();
|
||||||
|
|
||||||
|
this->updateState(nullptr);
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void onCopy(CCObject*);
|
||||||
|
|
||||||
|
void onCommit() override {}
|
||||||
|
void onResetToDefault() override {}
|
||||||
|
|
||||||
|
public:
|
||||||
|
static CopyButtonSettingNode* create(std::shared_ptr<CopyButtonSetting> setting, float width) {
|
||||||
|
auto ret = new CopyButtonSettingNode();
|
||||||
|
if (ret && ret->init(setting, width)) {
|
||||||
|
ret->autorelease();
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
CC_SAFE_DELETE(ret);
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool hasUncommittedChanges() const override {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
bool hasNonDefaultValue() const override {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
};
|
Loading…
Reference in a new issue