/* * -------------------------------------------------------------------------- * "THE BEER-WARE LICENSE" (Revision 42): * , , * wrote this file. As long as you retain this notice you can do whatever you * want with this stuff. If you meet any of us some day, and you think this * stuff is worth it, you can buy us a beer in return. - The sys-clk authors * -------------------------------------------------------------------------- */ #define TESLA_INIT_IMPL #include #include "ui/gui/fatal_gui.h" #include "ui/gui/main_gui.h" #include "rgltr_services.h" // for extern Service g_rgltrSrv, etc. class AppOverlay : public tsl::Overlay { public: AppOverlay() {} ~AppOverlay() {} //virtual void initServices() override { // rgltrInitialize(); //} virtual void exitServices() override { rgltrExit(); sysclkIpcExit(); } virtual std::unique_ptr loadInitialGui() override { uint32_t apiVersion; smInitialize(); tsl::hlp::ScopeGuard smGuard([] { smExit(); }); if(!sysclkIpcRunning()) { return initially( "sys-clk is not running.\n\n" "\n" "Please make sure it is correctly\n\n" "installed and enabled.", "" ); } if(R_FAILED(sysclkIpcInitialize()) || R_FAILED(sysclkIpcGetAPIVersion(&apiVersion))) { return initially( "Could not connect to sys-clk.\n\n" "\n" "Please make sure it is correctly\n\n" "installed and enabled.", "" ); } if(SYSCLK_IPC_API_VERSION != apiVersion) { return initially( "Overlay not compatible with\n\n" "the running sys-clk version.\n\n" "\n" "Please make sure everything is\n\n" "installed and up to date.", "" ); } return initially(); } }; int main(int argc, char **argv) { return tsl::loop(argc, argv); }