mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-27 01:45:35 -05:00
Compare commits
12 commits
912824705d
...
3fd93a7303
Author | SHA1 | Date | |
---|---|---|---|
|
3fd93a7303 | ||
|
cb8d7571dd | ||
|
227adb0484 | ||
|
9ef6b9eb71 | ||
|
dd95b87353 | ||
|
f90461fbb7 | ||
|
555ebe3eb3 | ||
|
07d92a34ad | ||
|
61b80a0114 | ||
|
7291a9d14e | ||
|
18d7ebeba2 | ||
|
d34b6b16eb |
15 changed files with 108 additions and 40 deletions
|
@ -1,5 +1,10 @@
|
|||
# Geode Changelog
|
||||
|
||||
## v4.0.0
|
||||
* Make chosen display type in mod list be saved between startups (07d92a3)
|
||||
* Fix `Task::all` not returning results in order (227adb0)
|
||||
* Fix bugs with changing display type (555ebe3, f90461f)
|
||||
|
||||
## v4.0.0-beta.2
|
||||
* Add grid view to mod list (7bcf50d, 1ff24f0)
|
||||
* Add safe mode tip to windows crashlog window (38f3385)
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
4.0.0-beta.2
|
||||
4.0.0
|
||||
|
|
16
installer/windows/Language Files/GermanExtra.nsh
Normal file
16
installer/windows/Language Files/GermanExtra.nsh
Normal file
|
@ -0,0 +1,16 @@
|
|||
!insertmacro LANGFILE_EXT German
|
||||
|
||||
!pragma warning disable 6030
|
||||
${LangFileString} MUI_TEXT_WELCOME_INFO_TEXT "Dieses Setup führt Sie durch die Installation von $(^NameDA).$\r$\n$\r$\nBevor Sie die Installation starten, stellen Sie sicher, dass Geometry Dash nicht rennt.$\r$\n$\r$\n$_CLICK"
|
||||
${LangFileString} MUI_UNTEXT_WELCOME_INFO_TEXT "Dieses Setup führt Sie durch die Deinstallation von $(^NameDA).$\r$\n$\r$\nBevor Sie die Deinstallation starten, stellen Sie sicher, dass Geometry Dash nicht rennt.$\r$\n$\r$\n$_CLICK"
|
||||
!pragma warning default 6030
|
||||
|
||||
; installer
|
||||
|
||||
${LangFileString} GEODE_TEXT_GD_MISSING "$\r$\n$\r$\nIn diesem Pfad ist Geometry Dash nicht installiert!"
|
||||
${LangFileString} GEODE_TEXT_GD_OLD "$\r$\n$\r$\nIhre Geometry Dash Version ist zu alt für diese Version von Geode!"
|
||||
${LangFileString} GEODE_TEXT_MOD_LOADER_ALREADY_INSTALLED "In diesem Pfad sind andere Mods installiert!$\r$\nSie werden von Geode überschrieben. (the dll trademark)"
|
||||
|
||||
; uninstaller
|
||||
|
||||
${LangFileString} GEODE_UNTEXT_GEODE_MISSING "In diesem Pfad ist Geode nicht installiert!"
|
|
@ -50,6 +50,7 @@
|
|||
; TODO: add the commented out languages (other available languages are listed here: https://nsis.sourceforge.io/Examples/Modern%20UI/MultiLanguage.nsi)
|
||||
!insertmacro GEODE_LANGUAGE "English"
|
||||
!insertmacro GEODE_LANGUAGE "French"
|
||||
!insertmacro GEODE_LANGUAGE "German"
|
||||
!insertmacro GEODE_LANGUAGE "Spanish"
|
||||
!insertmacro GEODE_LANGUAGE "SpanishInternational"
|
||||
!insertmacro GEODE_LANGUAGE "Swedish"
|
||||
|
|
|
@ -114,7 +114,6 @@
|
|||
namespace geode {
|
||||
class PlatformID {
|
||||
public:
|
||||
// todo in v4: make these flags and add archless Mac and Android as well as Desktop and Mobile and remove Linux
|
||||
enum {
|
||||
Unknown = 0b000000,
|
||||
Windows = 0b000001,
|
||||
|
@ -184,11 +183,11 @@ namespace geode {
|
|||
/**
|
||||
* Returns the list of platforms covered by this string name. For
|
||||
* example, "android" would return both Android32 and Android64
|
||||
* todo in v4: deprecate this as the flagged version deals with this
|
||||
* todo in v5: deprecate this as the flagged version deals with this
|
||||
*/
|
||||
static GEODE_DLL std::vector<PlatformID> getCovered(std::string_view str);
|
||||
|
||||
// todo in v4: this does not need to be constexpr in the header. dllexport it
|
||||
// todo in v5: this does not need to be constexpr in the header. dllexport it
|
||||
static constexpr char const* toString(Type lp) {
|
||||
switch (lp) {
|
||||
case Unknown: return "Unknown";
|
||||
|
@ -203,7 +202,7 @@ namespace geode {
|
|||
return "Undefined";
|
||||
}
|
||||
|
||||
// todo in v4: this does not need to be constexpr in the header. dllexport it
|
||||
// todo in v5: this does not need to be constexpr in the header. dllexport it
|
||||
static constexpr char const* toShortString(Type lp, bool ignoreArch = false) {
|
||||
switch (lp) {
|
||||
case Unknown: return "unknown";
|
||||
|
|
|
@ -13,12 +13,6 @@ namespace geode {
|
|||
virtual void updateColor(cocos2d::ccColor4B const& color) {}
|
||||
};
|
||||
|
||||
// todo in v4: maybe use events over the delegate?
|
||||
// thing with events is that if you just filter via ColorPickPopup* it
|
||||
// won't work unless you automatically detach the filter when closing the
|
||||
// popup (otherwise opening another popup really quickly will just be
|
||||
// allocated into the same memory and now the old filter is catching the
|
||||
// new popup too)
|
||||
class GEODE_DLL ColorPickPopup :
|
||||
public Popup<cocos2d::ccColor4B const&, bool>,
|
||||
public cocos2d::extension::ColorPickerDelegate,
|
||||
|
|
|
@ -539,12 +539,18 @@ namespace geode {
|
|||
}
|
||||
);
|
||||
|
||||
// Make sure the taskResults vector is large enough to fit all the
|
||||
// results. By default, any cancelled Task becomes nullptr.
|
||||
// Order of results must be preserved so when a Task finishes, it
|
||||
// replaces the nullptr in the results vector at its place
|
||||
static_cast<Waiting*>(task.m_handle->m_extraData->ptr)->taskResults.resize(tasks.size());
|
||||
|
||||
// Store the task count in case some tasks finish immediately during the loop
|
||||
static_cast<Waiting*>(task.m_handle->m_extraData->ptr)->taskCount = tasks.size();
|
||||
|
||||
// Make sure to only give a weak pointer to avoid circular references!
|
||||
// (Tasks should NEVER own themselves!!)
|
||||
auto markAsDone = [handle = std::weak_ptr(task.m_handle)](T* result) {
|
||||
auto markAsDone = [handle = std::weak_ptr(task.m_handle)](size_t index, T* result) {
|
||||
auto lock = handle.lock();
|
||||
|
||||
// If this task handle has expired, consider the task cancelled
|
||||
|
@ -556,13 +562,21 @@ namespace geode {
|
|||
// Get the waiting handle from the task handle
|
||||
auto waiting = static_cast<Waiting*>(lock->m_extraData->ptr);
|
||||
|
||||
// Mark the task as done by decrementing amount of tasks left
|
||||
// (making sure not to underflow, even though that should 100%
|
||||
// be impossible and if that happened something has gone
|
||||
// extremely catastrophically wrong)
|
||||
if (waiting->taskCount > 0) {
|
||||
waiting->taskCount -= 1;
|
||||
}
|
||||
|
||||
// SAFETY: The lifetime of result pointer is the same as the task that
|
||||
// produced that pointer, so as long as we have an owning reference to
|
||||
// the tasks through `taskListeners` we can be sure `result` is valid
|
||||
waiting->taskResults.push_back(result);
|
||||
waiting->taskResults[index] = result;
|
||||
|
||||
// If all tasks are done, finish
|
||||
if (waiting->taskResults.size() >= waiting->taskCount) {
|
||||
if (waiting->taskCount == 0) {
|
||||
// SAFETY: The task results' lifetimes are tied to the tasks
|
||||
// which could have their only owner be `waiting->taskListeners`,
|
||||
// but since Waiting is owned by the returned AllTask it should
|
||||
|
@ -572,15 +586,17 @@ namespace geode {
|
|||
};
|
||||
|
||||
// Iterate the tasks & start listening to them using
|
||||
size_t index = 0;
|
||||
for (auto& taskToWait : tasks) {
|
||||
static_cast<Waiting*>(task.m_handle->m_extraData->ptr)->taskListeners.emplace_back(taskToWait.map(
|
||||
[markAsDone](auto* result) {
|
||||
markAsDone(result);
|
||||
[index, markAsDone](auto* result) {
|
||||
markAsDone(index, result);
|
||||
return std::monostate();
|
||||
},
|
||||
[](auto*) { return std::monostate(); },
|
||||
[markAsDone]() { markAsDone(nullptr); }
|
||||
[index, markAsDone]() { markAsDone(index, nullptr); }
|
||||
));
|
||||
index += 1;
|
||||
}
|
||||
return task;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#include "CopyButtonSetting.hpp"
|
||||
#include <Geode/loader/Mod.hpp>
|
||||
#include <Geode/ui/Notification.hpp>
|
||||
|
||||
$on_mod(Loaded) {
|
||||
(void)Mod::get()->registerCustomSettingType("copy-mods", &CopyButtonSetting::parse);
|
||||
|
|
|
@ -172,16 +172,6 @@ ModSettingsManager::ModSettingsManager(ModMetadata const& metadata)
|
|||
auto root = checkJson(json, "setting");
|
||||
root.needs("type").into(setting.type);
|
||||
if (root) {
|
||||
if (setting.type == "custom") {
|
||||
log::warn(
|
||||
"Setting \"{}\" in mod {} has the old \"custom\" type - "
|
||||
"this type has been deprecated and will be removed in Geode v4.0.0. "
|
||||
"Use the new \"custom:type-name-here\" syntax for defining custom "
|
||||
"setting types - see more in "
|
||||
"https://docs.geode-sdk.org/mods/settings/#custom-settings",
|
||||
key, m_impl->modID
|
||||
);
|
||||
}
|
||||
m_impl->settings.emplace(key, setting);
|
||||
}
|
||||
else {
|
||||
|
|
|
@ -19,8 +19,6 @@
|
|||
#include "ui/mods/sources/ModListSource.hpp"
|
||||
#include <loader/LoaderImpl.hpp>
|
||||
|
||||
static ModListDisplay MOD_LIST_DISPLAY = ModListDisplay::SmallList;
|
||||
|
||||
bool ModsStatusNode::init() {
|
||||
if (!CCNode::init())
|
||||
return false;
|
||||
|
@ -354,7 +352,9 @@ bool ModsLayer::init() {
|
|||
addSideArt(this);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
m_modListDisplay = Mod::get()->getSavedValue<ModListDisplay>("mod-list-display-type");
|
||||
|
||||
auto backMenu = CCMenu::create();
|
||||
backMenu->setID("back-menu");
|
||||
backMenu->setContentWidth(100.f);
|
||||
|
@ -651,7 +651,7 @@ void ModsLayer::gotoTab(ModListSource* src) {
|
|||
m_currentSource = src;
|
||||
|
||||
// Update the state of the current list
|
||||
m_lists.at(m_currentSource)->updateDisplay(MOD_LIST_DISPLAY);
|
||||
m_lists.at(m_currentSource)->updateDisplay(m_modListDisplay);
|
||||
m_lists.at(m_currentSource)->activateSearch(m_showSearch);
|
||||
m_lists.at(m_currentSource)->updateState();
|
||||
}
|
||||
|
@ -713,7 +713,7 @@ void ModsLayer::updateState() {
|
|||
// Update display button
|
||||
for (auto btn : m_displayBtns) {
|
||||
static_cast<GeodeSquareSprite*>(btn->getNormalImage())->setState(
|
||||
static_cast<ModListDisplay>(btn->getTag()) == MOD_LIST_DISPLAY
|
||||
static_cast<ModListDisplay>(btn->getTag()) == m_modListDisplay
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -746,10 +746,12 @@ void ModsLayer::onGoToPage(CCObject*) {
|
|||
popup->show();
|
||||
}
|
||||
void ModsLayer::onDisplay(CCObject* sender) {
|
||||
MOD_LIST_DISPLAY = static_cast<ModListDisplay>(sender->getTag());
|
||||
m_modListDisplay = static_cast<ModListDisplay>(sender->getTag());
|
||||
Mod::get()->setSavedValue("mod-list-display-type", m_modListDisplay);
|
||||
|
||||
// Make sure to avoid a crash
|
||||
if (m_currentSource) {
|
||||
m_lists.at(m_currentSource)->updateDisplay(MOD_LIST_DISPLAY);
|
||||
m_lists.at(m_currentSource)->updateDisplay(m_modListDisplay);
|
||||
m_lists.at(m_currentSource)->reloadPage();
|
||||
}
|
||||
this->updateState();
|
||||
|
|
|
@ -67,6 +67,7 @@ protected:
|
|||
EventListener<UpdateModListStateFilter> m_updateStateListener;
|
||||
bool m_showSearch = true;
|
||||
std::vector<CCMenuItemSpriteExtra*> m_displayBtns;
|
||||
ModListDisplay m_modListDisplay;
|
||||
|
||||
bool init();
|
||||
|
||||
|
|
|
@ -18,6 +18,39 @@ enum class ModListDisplay {
|
|||
Grid,
|
||||
};
|
||||
|
||||
// i made it this way just in case someone wanted to add to the enum in the future
|
||||
// mat is allowed to judge
|
||||
template<>
|
||||
struct matjson::Serialize<ModListDisplay> {
|
||||
static Result<ModListDisplay> fromJson(matjson::Value const& value) {
|
||||
auto saved = GEODE_UNWRAP(value.asString());
|
||||
if (saved == "small-list") {
|
||||
return Ok(ModListDisplay::SmallList);
|
||||
} else if (saved == "big-list") {
|
||||
return Ok(ModListDisplay::BigList);
|
||||
} else if (saved == "grid") {
|
||||
return Ok(ModListDisplay::Grid);
|
||||
}
|
||||
|
||||
return Err("unknown display type");
|
||||
}
|
||||
|
||||
static matjson::Value toJson(ModListDisplay const& value) {
|
||||
switch (value) {
|
||||
default:
|
||||
case ModListDisplay::SmallList:
|
||||
return "small-list";
|
||||
break;
|
||||
case ModListDisplay::BigList:
|
||||
return "big-list";
|
||||
break;
|
||||
case ModListDisplay::Grid:
|
||||
return "grid";
|
||||
break;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
class ModItem : public CCNode {
|
||||
protected:
|
||||
ModSource m_source;
|
||||
|
|
|
@ -15,9 +15,9 @@ static size_t getDisplayPageSize(ModListSource* src, ModListDisplay display) {
|
|||
|
||||
$execute {
|
||||
listenForSettingChanges("infinite-local-mods-list", [](bool value) {
|
||||
InstalledModListSource::get(InstalledModListType::All)->reset();
|
||||
InstalledModListSource::get(InstalledModListType::OnlyErrors)->reset();
|
||||
InstalledModListSource::get(InstalledModListType::OnlyOutdated)->reset();
|
||||
InstalledModListSource::get(InstalledModListType::All)->clearCache();
|
||||
InstalledModListSource::get(InstalledModListType::OnlyErrors)->clearCache();
|
||||
InstalledModListSource::get(InstalledModListType::OnlyOutdated)->clearCache();
|
||||
// Updates is technically a server mod list :-) So I left it out here
|
||||
});
|
||||
}
|
||||
|
@ -601,6 +601,16 @@ void ModList::updateDisplay(ModListDisplay display) {
|
|||
);
|
||||
}
|
||||
|
||||
// Make sure list isn't too small
|
||||
// NOTE: Do NOT call `updateLayout` on m_list, it'll undo this!
|
||||
if (m_list->m_contentLayer->getContentHeight() < m_list->getContentHeight()) {
|
||||
auto diff = m_list->getContentHeight() - m_list->m_contentLayer->getContentHeight();
|
||||
m_list->m_contentLayer->setContentHeight(m_list->getContentHeight());
|
||||
for (auto child : CCArrayExt<CCNode*>(m_list->m_contentLayer->getChildren())) {
|
||||
child->setPositionY(child->getPositionY() + diff);
|
||||
}
|
||||
}
|
||||
|
||||
// Preserve relative scroll position
|
||||
m_list->m_contentLayer->setPositionY((
|
||||
m_list->m_contentLayer->getContentHeight() - m_list->getContentHeight()
|
||||
|
|
|
@ -64,7 +64,7 @@ std::optional<size_t> ModListSource::getItemCount() const {
|
|||
void ModListSource::setPageSize(size_t size) {
|
||||
if (m_pageSize != size) {
|
||||
m_pageSize = size;
|
||||
this->reset();
|
||||
this->clearCache();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
using namespace geode::prelude;
|
||||
|
||||
PlatformID PlatformID::from(const char* str) {
|
||||
// todo in v4: this should just be
|
||||
// todo in v5: this should just be
|
||||
// "win" -> Windows
|
||||
// "mac", "mac-intel", "mac-arm" -> Mac
|
||||
// "ios" -> iOS
|
||||
|
@ -38,7 +38,7 @@ PlatformID PlatformID::from(const char* str) {
|
|||
}
|
||||
|
||||
bool PlatformID::coveredBy(const char* str, PlatformID t) {
|
||||
// todo in v4: this is ridiculously inefficient currently - in v4 just use a flag check!
|
||||
// todo in v5: this is ridiculously inefficient currently - in v5 just use a flag check!
|
||||
return ranges::contains(getCovered(str), t);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue