├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── deltalaunch.json ├── romfs ├── Graphics │ ├── BSOD.png │ ├── Folder.png │ ├── Icons │ │ ├── AlbumButton.png │ │ ├── AlbumButton_select.png │ │ ├── HomebrewButton.png │ │ ├── HomebrewButton_select.png │ │ ├── NewsButton.png │ │ ├── NewsButton_select.png │ │ ├── SettingsButton.png │ │ ├── SettingsButton_select.png │ │ ├── ShopButton.png │ │ ├── ShopButton_select.png │ │ ├── SleepButton.png │ │ ├── SleepButton_select.png │ │ ├── WebButton.png │ │ └── WebButton_select.png │ ├── Lock.png │ ├── Menu.png │ ├── Overlay │ │ └── Battery.png │ ├── Popup.png │ ├── Wallpaper.png │ └── reinxnews.png └── Sounds │ ├── bgm.mp3 │ ├── menu_back.mp3 │ ├── menu_confirm.mp3 │ └── menu_select.mp3 └── source ├── Core ├── Audio.cpp ├── Audio.hpp ├── Engine.cpp ├── Engine.hpp ├── Font.cpp ├── Font.hpp ├── Graphics.cpp ├── Graphics.hpp ├── INI.hpp ├── Logger.hpp ├── Memory.hpp ├── ThreadManager.hpp ├── Threads.cpp └── Threads.hpp ├── Services ├── Account.cpp ├── Account.hpp ├── App.cpp ├── App.hpp ├── Hid.cpp ├── Hid.hpp ├── Network.cpp ├── Network.hpp ├── Power.cpp ├── Power.hpp ├── Rnx.cpp ├── Rnx.hpp ├── Settings.cpp ├── Settings.hpp ├── Time.cpp └── Time.hpp ├── UI ├── Dashboard.cpp ├── Dashboard.hpp ├── Forms.hpp ├── Game.cpp ├── Game.hpp ├── GameBase.hpp ├── GameFolder.hpp ├── Menus │ ├── Button.hpp │ ├── Image.hpp │ ├── Menu.hpp │ ├── Option.hpp │ ├── Panel.cpp │ ├── Panel.hpp │ └── UIElement.hpp ├── NewsMenu.cpp ├── NewsMenu.hpp ├── Popup │ └── MessageBox.hpp ├── SettingsMenu.cpp └── SettingsMenu.hpp └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/README.md -------------------------------------------------------------------------------- /deltalaunch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/deltalaunch.json -------------------------------------------------------------------------------- /romfs/Graphics/BSOD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/romfs/Graphics/BSOD.png -------------------------------------------------------------------------------- /romfs/Graphics/Folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/romfs/Graphics/Folder.png -------------------------------------------------------------------------------- /romfs/Graphics/Icons/AlbumButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/romfs/Graphics/Icons/AlbumButton.png -------------------------------------------------------------------------------- /romfs/Graphics/Icons/AlbumButton_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/romfs/Graphics/Icons/AlbumButton_select.png -------------------------------------------------------------------------------- /romfs/Graphics/Icons/HomebrewButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/romfs/Graphics/Icons/HomebrewButton.png -------------------------------------------------------------------------------- /romfs/Graphics/Icons/HomebrewButton_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/romfs/Graphics/Icons/HomebrewButton_select.png -------------------------------------------------------------------------------- /romfs/Graphics/Icons/NewsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/romfs/Graphics/Icons/NewsButton.png -------------------------------------------------------------------------------- /romfs/Graphics/Icons/NewsButton_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/romfs/Graphics/Icons/NewsButton_select.png -------------------------------------------------------------------------------- /romfs/Graphics/Icons/SettingsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/romfs/Graphics/Icons/SettingsButton.png -------------------------------------------------------------------------------- /romfs/Graphics/Icons/SettingsButton_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/romfs/Graphics/Icons/SettingsButton_select.png -------------------------------------------------------------------------------- /romfs/Graphics/Icons/ShopButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/romfs/Graphics/Icons/ShopButton.png -------------------------------------------------------------------------------- /romfs/Graphics/Icons/ShopButton_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/romfs/Graphics/Icons/ShopButton_select.png -------------------------------------------------------------------------------- /romfs/Graphics/Icons/SleepButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/romfs/Graphics/Icons/SleepButton.png -------------------------------------------------------------------------------- /romfs/Graphics/Icons/SleepButton_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/romfs/Graphics/Icons/SleepButton_select.png -------------------------------------------------------------------------------- /romfs/Graphics/Icons/WebButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/romfs/Graphics/Icons/WebButton.png -------------------------------------------------------------------------------- /romfs/Graphics/Icons/WebButton_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/romfs/Graphics/Icons/WebButton_select.png -------------------------------------------------------------------------------- /romfs/Graphics/Lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/romfs/Graphics/Lock.png -------------------------------------------------------------------------------- /romfs/Graphics/Menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/romfs/Graphics/Menu.png -------------------------------------------------------------------------------- /romfs/Graphics/Overlay/Battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/romfs/Graphics/Overlay/Battery.png -------------------------------------------------------------------------------- /romfs/Graphics/Popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/romfs/Graphics/Popup.png -------------------------------------------------------------------------------- /romfs/Graphics/Wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/romfs/Graphics/Wallpaper.png -------------------------------------------------------------------------------- /romfs/Graphics/reinxnews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/romfs/Graphics/reinxnews.png -------------------------------------------------------------------------------- /romfs/Sounds/bgm.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/romfs/Sounds/bgm.mp3 -------------------------------------------------------------------------------- /romfs/Sounds/menu_back.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/romfs/Sounds/menu_back.mp3 -------------------------------------------------------------------------------- /romfs/Sounds/menu_confirm.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/romfs/Sounds/menu_confirm.mp3 -------------------------------------------------------------------------------- /romfs/Sounds/menu_select.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/romfs/Sounds/menu_select.mp3 -------------------------------------------------------------------------------- /source/Core/Audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Core/Audio.cpp -------------------------------------------------------------------------------- /source/Core/Audio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Core/Audio.hpp -------------------------------------------------------------------------------- /source/Core/Engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Core/Engine.cpp -------------------------------------------------------------------------------- /source/Core/Engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Core/Engine.hpp -------------------------------------------------------------------------------- /source/Core/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Core/Font.cpp -------------------------------------------------------------------------------- /source/Core/Font.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Core/Font.hpp -------------------------------------------------------------------------------- /source/Core/Graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Core/Graphics.cpp -------------------------------------------------------------------------------- /source/Core/Graphics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Core/Graphics.hpp -------------------------------------------------------------------------------- /source/Core/INI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Core/INI.hpp -------------------------------------------------------------------------------- /source/Core/Logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Core/Logger.hpp -------------------------------------------------------------------------------- /source/Core/Memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Core/Memory.hpp -------------------------------------------------------------------------------- /source/Core/ThreadManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Core/ThreadManager.hpp -------------------------------------------------------------------------------- /source/Core/Threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Core/Threads.cpp -------------------------------------------------------------------------------- /source/Core/Threads.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Core/Threads.hpp -------------------------------------------------------------------------------- /source/Services/Account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Services/Account.cpp -------------------------------------------------------------------------------- /source/Services/Account.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Services/Account.hpp -------------------------------------------------------------------------------- /source/Services/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Services/App.cpp -------------------------------------------------------------------------------- /source/Services/App.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Services/App.hpp -------------------------------------------------------------------------------- /source/Services/Hid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Services/Hid.cpp -------------------------------------------------------------------------------- /source/Services/Hid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Services/Hid.hpp -------------------------------------------------------------------------------- /source/Services/Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Services/Network.cpp -------------------------------------------------------------------------------- /source/Services/Network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Services/Network.hpp -------------------------------------------------------------------------------- /source/Services/Power.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Services/Power.cpp -------------------------------------------------------------------------------- /source/Services/Power.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Services/Power.hpp -------------------------------------------------------------------------------- /source/Services/Rnx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Services/Rnx.cpp -------------------------------------------------------------------------------- /source/Services/Rnx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Services/Rnx.hpp -------------------------------------------------------------------------------- /source/Services/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Services/Settings.cpp -------------------------------------------------------------------------------- /source/Services/Settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Services/Settings.hpp -------------------------------------------------------------------------------- /source/Services/Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Services/Time.cpp -------------------------------------------------------------------------------- /source/Services/Time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/Services/Time.hpp -------------------------------------------------------------------------------- /source/UI/Dashboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/UI/Dashboard.cpp -------------------------------------------------------------------------------- /source/UI/Dashboard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/UI/Dashboard.hpp -------------------------------------------------------------------------------- /source/UI/Forms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/UI/Forms.hpp -------------------------------------------------------------------------------- /source/UI/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/UI/Game.cpp -------------------------------------------------------------------------------- /source/UI/Game.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/UI/Game.hpp -------------------------------------------------------------------------------- /source/UI/GameBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/UI/GameBase.hpp -------------------------------------------------------------------------------- /source/UI/GameFolder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/UI/GameFolder.hpp -------------------------------------------------------------------------------- /source/UI/Menus/Button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/UI/Menus/Button.hpp -------------------------------------------------------------------------------- /source/UI/Menus/Image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/UI/Menus/Image.hpp -------------------------------------------------------------------------------- /source/UI/Menus/Menu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/UI/Menus/Menu.hpp -------------------------------------------------------------------------------- /source/UI/Menus/Option.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/UI/Menus/Option.hpp -------------------------------------------------------------------------------- /source/UI/Menus/Panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/UI/Menus/Panel.cpp -------------------------------------------------------------------------------- /source/UI/Menus/Panel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/UI/Menus/Panel.hpp -------------------------------------------------------------------------------- /source/UI/Menus/UIElement.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/UI/Menus/UIElement.hpp -------------------------------------------------------------------------------- /source/UI/NewsMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/UI/NewsMenu.cpp -------------------------------------------------------------------------------- /source/UI/NewsMenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/UI/NewsMenu.hpp -------------------------------------------------------------------------------- /source/UI/Popup/MessageBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/UI/Popup/MessageBox.hpp -------------------------------------------------------------------------------- /source/UI/SettingsMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/UI/SettingsMenu.cpp -------------------------------------------------------------------------------- /source/UI/SettingsMenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/UI/SettingsMenu.hpp -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeltaLaunch/deltalaunch/HEAD/source/main.cpp --------------------------------------------------------------------------------