2022-10-08 05:41:36 -04:00
|
|
|
#include "../../../filesystem/fs/filesystem.hpp"
|
|
|
|
#include <mach-o/dyld.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <dlfcn.h>
|
|
|
|
#include <array>
|
2022-10-08 06:21:57 -04:00
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
void loadGeode() {
|
|
|
|
auto dylib = dlopen("Geode.dylib", RTLD_LAZY);
|
|
|
|
if (dylib) return;
|
|
|
|
|
|
|
|
std::cout << "Couldn't open Geode: " << dlerror() << std::endl;
|
|
|
|
return;
|
|
|
|
}
|
2022-10-08 05:41:36 -04:00
|
|
|
|
|
|
|
__attribute__((constructor)) void _entry() {
|
|
|
|
std::array<char, PATH_MAX> gddir;
|
|
|
|
|
|
|
|
uint32_t out = PATH_MAX;
|
|
|
|
_NSGetExecutablePath(gddir.data(), &out);
|
|
|
|
|
|
|
|
ghc::filesystem::path gdpath = gddir.data();
|
|
|
|
auto workingDir = gdpath.parent_path().parent_path();
|
|
|
|
|
|
|
|
auto updatesDir = workingDir / "geode" / "update";
|
2022-10-08 06:21:57 -04:00
|
|
|
auto libDir = workingDir / "Frameworks";
|
2022-10-08 05:41:36 -04:00
|
|
|
auto resourcesDir = workingDir / "geode" / "resources";
|
|
|
|
|
|
|
|
auto error = std::error_code();
|
|
|
|
|
|
|
|
if (ghc::filesystem::exists(updatesDir / "Geode.dylib", error) && !error) {
|
|
|
|
ghc::filesystem::rename(
|
|
|
|
updatesDir / "Geode.dylib",
|
|
|
|
workingDir / "Geode.dylib", error
|
|
|
|
);
|
2022-10-08 06:21:57 -04:00
|
|
|
if (error) {
|
|
|
|
std::cout << "Couldn't update Geode: " << error.message() << std::endl;
|
|
|
|
return loadGeode();
|
|
|
|
}
|
2022-10-08 05:41:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (ghc::filesystem::exists(updatesDir / "resources", error) && !error) {
|
2022-10-08 06:23:48 -04:00
|
|
|
ghc::filesystem::remove_all(resourcesDir / "geode.loader", error);
|
2022-10-08 06:21:57 -04:00
|
|
|
|
|
|
|
if (error) {
|
|
|
|
std::cout << "Couldn't update Geode resources: " << error.message() << std::endl;
|
|
|
|
return loadGeode();
|
|
|
|
}
|
|
|
|
|
2022-10-08 05:41:36 -04:00
|
|
|
ghc::filesystem::rename(
|
|
|
|
updatesDir / "resources",
|
|
|
|
resourcesDir / "geode.loader", error
|
|
|
|
);
|
2022-10-08 06:21:57 -04:00
|
|
|
|
|
|
|
if (error) {
|
|
|
|
std::cout << "Couldn't update Geode resources: " << error.message() << std::endl;
|
|
|
|
return loadGeode();
|
|
|
|
}
|
|
|
|
}
|
2022-10-08 05:41:36 -04:00
|
|
|
|
2022-10-08 06:21:57 -04:00
|
|
|
return loadGeode();
|
2022-10-08 05:41:36 -04:00
|
|
|
}
|