├── .github ├── ISSUE_TEMPLATE.md └── workflows │ ├── ccpp.yml │ └── win32.yml ├── .gitignore ├── .gitmodules ├── CMake ├── Packages │ ├── FindFreeImage.cmake │ ├── FindOpenGLES.cmake │ ├── FindOpenGLES2.cmake │ ├── FindRapidJSON.cmake │ ├── FindSDL2.cmake │ ├── FindVLC.cmake │ ├── FindlibCEC.cmake │ └── MacroEnsureVersion.cmake └── Utils │ └── FindPkgMacros.cmake ├── CMakeLists.txt ├── CREDITS.md ├── DEVNOTES.md ├── GAMELISTS.md ├── LICENSE.md ├── README.md ├── SYSTEMS.md ├── THEMES.md ├── emulationstation.sh ├── es-app ├── CMakeLists.txt └── src │ ├── CollectionSystemManager.cpp │ ├── CollectionSystemManager.h │ ├── EmulationStation.aps │ ├── EmulationStation.h │ ├── EmulationStation.rc │ ├── FileData.cpp │ ├── FileData.h │ ├── FileFilterIndex.cpp │ ├── FileFilterIndex.h │ ├── FileSorts.cpp │ ├── FileSorts.h │ ├── Gamelist.cpp │ ├── Gamelist.h │ ├── MetaData.cpp │ ├── MetaData.h │ ├── PlatformId.cpp │ ├── PlatformId.h │ ├── ScraperCmdLine.cpp │ ├── ScraperCmdLine.h │ ├── SystemData.cpp │ ├── SystemData.h │ ├── SystemScreenSaver.cpp │ ├── SystemScreenSaver.h │ ├── VolumeControl.cpp │ ├── VolumeControl.h │ ├── animations │ ├── LaunchAnimation.h │ └── MoveCameraAnimation.h │ ├── components │ ├── AsyncReqComponent.cpp │ ├── AsyncReqComponent.h │ ├── RatingComponent.cpp │ ├── RatingComponent.h │ ├── ScraperSearchComponent.cpp │ ├── ScraperSearchComponent.h │ └── TextListComponent.h │ ├── es_icon.ico │ ├── guis │ ├── GuiCollectionSystemsOptions.cpp │ ├── GuiCollectionSystemsOptions.h │ ├── GuiFastSelect.cpp │ ├── GuiFastSelect.h │ ├── GuiGameScraper.cpp │ ├── GuiGameScraper.h │ ├── GuiGamelistFilter.cpp │ ├── GuiGamelistFilter.h │ ├── GuiGamelistOptions.cpp │ ├── GuiGamelistOptions.h │ ├── GuiGeneralScreensaverOptions.cpp │ ├── GuiGeneralScreensaverOptions.h │ ├── GuiInfoPopup.cpp │ ├── GuiInfoPopup.h │ ├── GuiMenu.cpp │ ├── GuiMenu.h │ ├── GuiMetaDataEd.cpp │ ├── GuiMetaDataEd.h │ ├── GuiRandomCollectionOptions.cpp │ ├── GuiRandomCollectionOptions.h │ ├── GuiScraperMulti.cpp │ ├── GuiScraperMulti.h │ ├── GuiScraperStart.cpp │ ├── GuiScraperStart.h │ ├── GuiScreensaverOptions.cpp │ ├── GuiScreensaverOptions.h │ ├── GuiSettings.cpp │ ├── GuiSettings.h │ ├── GuiSlideshowScreensaverOptions.cpp │ ├── GuiSlideshowScreensaverOptions.h │ ├── GuiVideoScreensaverOptions.cpp │ └── GuiVideoScreensaverOptions.h │ ├── main.cpp │ ├── scrapers │ ├── GamesDBJSONScraper.cpp │ ├── GamesDBJSONScraper.h │ ├── GamesDBJSONScraperResources.cpp │ ├── GamesDBJSONScraperResources.h │ ├── Scraper.cpp │ ├── Scraper.h │ ├── ScreenScraper.cpp │ └── ScreenScraper.h │ └── views │ ├── SystemView.cpp │ ├── SystemView.h │ ├── UIModeController.cpp │ ├── UIModeController.h │ ├── ViewController.cpp │ ├── ViewController.h │ └── gamelist │ ├── BasicGameListView.cpp │ ├── BasicGameListView.h │ ├── DetailedGameListView.cpp │ ├── DetailedGameListView.h │ ├── GridGameListView.cpp │ ├── GridGameListView.h │ ├── IGameListView.cpp │ ├── IGameListView.h │ ├── ISimpleGameListView.cpp │ ├── ISimpleGameListView.h │ ├── VideoGameListView.cpp │ └── VideoGameListView.h ├── es-core ├── CMakeLists.txt └── src │ ├── AsyncHandle.h │ ├── AudioManager.cpp │ ├── AudioManager.h │ ├── CECInput.cpp │ ├── CECInput.h │ ├── GuiComponent.cpp │ ├── GuiComponent.h │ ├── HelpPrompt.h │ ├── HelpStyle.cpp │ ├── HelpStyle.h │ ├── HttpReq.cpp │ ├── HttpReq.h │ ├── ImageIO.cpp │ ├── ImageIO.h │ ├── InputConfig.cpp │ ├── InputConfig.h │ ├── InputManager.cpp │ ├── InputManager.h │ ├── Log.cpp │ ├── Log.h │ ├── MameNames.cpp │ ├── MameNames.h │ ├── PowerSaver.cpp │ ├── PowerSaver.h │ ├── Scripting.cpp │ ├── Scripting.h │ ├── Settings.cpp │ ├── Settings.h │ ├── Sound.cpp │ ├── Sound.h │ ├── ThemeData.cpp │ ├── ThemeData.h │ ├── Window.cpp │ ├── Window.h │ ├── animations │ ├── Animation.h │ ├── AnimationController.cpp │ ├── AnimationController.h │ └── LambdaAnimation.h │ ├── components │ ├── AnimatedImageComponent.cpp │ ├── AnimatedImageComponent.h │ ├── BusyComponent.cpp │ ├── BusyComponent.h │ ├── ButtonComponent.cpp │ ├── ButtonComponent.h │ ├── ComponentGrid.cpp │ ├── ComponentGrid.h │ ├── ComponentList.cpp │ ├── ComponentList.h │ ├── DateTimeComponent.cpp │ ├── DateTimeComponent.h │ ├── DateTimeEditComponent.cpp │ ├── DateTimeEditComponent.h │ ├── GridTileComponent.cpp │ ├── GridTileComponent.h │ ├── HelpComponent.cpp │ ├── HelpComponent.h │ ├── IList.h │ ├── ImageComponent.cpp │ ├── ImageComponent.h │ ├── ImageGridComponent.h │ ├── MenuComponent.cpp │ ├── MenuComponent.h │ ├── NinePatchComponent.cpp │ ├── NinePatchComponent.h │ ├── OptionListComponent.h │ ├── ScrollableContainer.cpp │ ├── ScrollableContainer.h │ ├── SliderComponent.cpp │ ├── SliderComponent.h │ ├── SwitchComponent.cpp │ ├── SwitchComponent.h │ ├── TextComponent.cpp │ ├── TextComponent.h │ ├── TextEditComponent.cpp │ ├── TextEditComponent.h │ ├── VideoComponent.cpp │ ├── VideoComponent.h │ ├── VideoPlayerComponent.cpp │ ├── VideoPlayerComponent.h │ ├── VideoVlcComponent.cpp │ └── VideoVlcComponent.h │ ├── guis │ ├── GuiDetectDevice.cpp │ ├── GuiDetectDevice.h │ ├── GuiInputConfig.cpp │ ├── GuiInputConfig.h │ ├── GuiMsgBox.cpp │ ├── GuiMsgBox.h │ ├── GuiTextEditPopup.cpp │ └── GuiTextEditPopup.h │ ├── math │ ├── Misc.cpp │ ├── Misc.h │ ├── Transform4x4f.cpp │ ├── Transform4x4f.h │ ├── Vector2f.cpp │ ├── Vector2f.h │ ├── Vector2i.cpp │ ├── Vector2i.h │ ├── Vector3f.cpp │ ├── Vector3f.h │ ├── Vector4f.cpp │ └── Vector4f.h │ ├── platform.cpp │ ├── platform.h │ ├── renderers │ ├── Renderer.cpp │ ├── Renderer.h │ ├── Renderer_GL14.cpp │ ├── Renderer_GL21.cpp │ ├── Renderer_GLES10.cpp │ └── Renderer_GLES20.cpp │ ├── resources │ ├── Font.cpp │ ├── Font.h │ ├── ResourceManager.cpp │ ├── ResourceManager.h │ ├── TextureData.cpp │ ├── TextureData.h │ ├── TextureDataManager.cpp │ ├── TextureDataManager.h │ ├── TextureResource.cpp │ └── TextureResource.h │ └── utils │ ├── FileSystemUtil.cpp │ ├── FileSystemUtil.h │ ├── ProfilingUtil.cpp │ ├── ProfilingUtil.h │ ├── StringUtil.cpp │ ├── StringUtil.h │ ├── ThreadPool.cpp │ ├── ThreadPool.h │ ├── TimeUtil.cpp │ └── TimeUtil.h ├── external ├── CMakeLists.txt └── nanosvg │ ├── CMakeLists.txt │ ├── nanosvg.h │ ├── nanosvg_license.txt │ ├── nanosvgrast.h │ └── src │ └── nanosvg_impl.cpp ├── opensans_license.txt └── resources ├── arrow.svg ├── busy_0.svg ├── busy_1.svg ├── busy_2.svg ├── busy_3.svg ├── button.png ├── button_filled.png ├── cartridge.svg ├── checkbox_checked.svg ├── checkbox_unchecked.svg ├── fav_add.svg ├── fav_remove.svg ├── folder.svg ├── frame.png ├── help ├── analog_down.svg ├── analog_left.svg ├── analog_right.svg ├── analog_stick.svg ├── analog_thumb.svg ├── analog_up.svg ├── button_1.svg ├── button_2.svg ├── button_3.svg ├── button_4.svg ├── button_a.svg ├── button_b.svg ├── button_circle.svg ├── button_cross.svg ├── button_hotkey.svg ├── button_l.svg ├── button_lr.svg ├── button_lt.svg ├── button_r.svg ├── button_rt.svg ├── button_select.svg ├── button_square.svg ├── button_start.svg ├── button_triangle.svg ├── button_x.svg ├── button_y.svg ├── buttons_east.svg ├── buttons_north.svg ├── buttons_south.svg ├── buttons_west.svg ├── dpad_all.svg ├── dpad_down.svg ├── dpad_left.svg ├── dpad_leftright.svg ├── dpad_right.svg ├── dpad_up.svg └── dpad_updown.svg ├── mamebioses.xml ├── mamedevices.xml ├── mamenames.xml ├── mameres.py ├── off.svg ├── on.svg ├── opensans_hebrew_condensed_light.ttf ├── opensans_hebrew_condensed_regular.ttf ├── option_arrow.svg ├── scroll_gradient.png ├── slider_knob.svg ├── splash.svg ├── star_filled.svg ├── star_unfilled.svg ├── textinput_ninepatch.png ├── textinput_ninepatch_active.png └── window_icon_256.png /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ccpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/.github/workflows/ccpp.yml -------------------------------------------------------------------------------- /.github/workflows/win32.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/.github/workflows/win32.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMake/Packages/FindFreeImage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/CMake/Packages/FindFreeImage.cmake -------------------------------------------------------------------------------- /CMake/Packages/FindOpenGLES.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/CMake/Packages/FindOpenGLES.cmake -------------------------------------------------------------------------------- /CMake/Packages/FindOpenGLES2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/CMake/Packages/FindOpenGLES2.cmake -------------------------------------------------------------------------------- /CMake/Packages/FindRapidJSON.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/CMake/Packages/FindRapidJSON.cmake -------------------------------------------------------------------------------- /CMake/Packages/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/CMake/Packages/FindSDL2.cmake -------------------------------------------------------------------------------- /CMake/Packages/FindVLC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/CMake/Packages/FindVLC.cmake -------------------------------------------------------------------------------- /CMake/Packages/FindlibCEC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/CMake/Packages/FindlibCEC.cmake -------------------------------------------------------------------------------- /CMake/Packages/MacroEnsureVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/CMake/Packages/MacroEnsureVersion.cmake -------------------------------------------------------------------------------- /CMake/Utils/FindPkgMacros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/CMake/Utils/FindPkgMacros.cmake -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/CREDITS.md -------------------------------------------------------------------------------- /DEVNOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/DEVNOTES.md -------------------------------------------------------------------------------- /GAMELISTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/GAMELISTS.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/README.md -------------------------------------------------------------------------------- /SYSTEMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/SYSTEMS.md -------------------------------------------------------------------------------- /THEMES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/THEMES.md -------------------------------------------------------------------------------- /emulationstation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/emulationstation.sh -------------------------------------------------------------------------------- /es-app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/CMakeLists.txt -------------------------------------------------------------------------------- /es-app/src/CollectionSystemManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/CollectionSystemManager.cpp -------------------------------------------------------------------------------- /es-app/src/CollectionSystemManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/CollectionSystemManager.h -------------------------------------------------------------------------------- /es-app/src/EmulationStation.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/EmulationStation.aps -------------------------------------------------------------------------------- /es-app/src/EmulationStation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/EmulationStation.h -------------------------------------------------------------------------------- /es-app/src/EmulationStation.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/EmulationStation.rc -------------------------------------------------------------------------------- /es-app/src/FileData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/FileData.cpp -------------------------------------------------------------------------------- /es-app/src/FileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/FileData.h -------------------------------------------------------------------------------- /es-app/src/FileFilterIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/FileFilterIndex.cpp -------------------------------------------------------------------------------- /es-app/src/FileFilterIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/FileFilterIndex.h -------------------------------------------------------------------------------- /es-app/src/FileSorts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/FileSorts.cpp -------------------------------------------------------------------------------- /es-app/src/FileSorts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/FileSorts.h -------------------------------------------------------------------------------- /es-app/src/Gamelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/Gamelist.cpp -------------------------------------------------------------------------------- /es-app/src/Gamelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/Gamelist.h -------------------------------------------------------------------------------- /es-app/src/MetaData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/MetaData.cpp -------------------------------------------------------------------------------- /es-app/src/MetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/MetaData.h -------------------------------------------------------------------------------- /es-app/src/PlatformId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/PlatformId.cpp -------------------------------------------------------------------------------- /es-app/src/PlatformId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/PlatformId.h -------------------------------------------------------------------------------- /es-app/src/ScraperCmdLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/ScraperCmdLine.cpp -------------------------------------------------------------------------------- /es-app/src/ScraperCmdLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/ScraperCmdLine.h -------------------------------------------------------------------------------- /es-app/src/SystemData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/SystemData.cpp -------------------------------------------------------------------------------- /es-app/src/SystemData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/SystemData.h -------------------------------------------------------------------------------- /es-app/src/SystemScreenSaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/SystemScreenSaver.cpp -------------------------------------------------------------------------------- /es-app/src/SystemScreenSaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/SystemScreenSaver.h -------------------------------------------------------------------------------- /es-app/src/VolumeControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/VolumeControl.cpp -------------------------------------------------------------------------------- /es-app/src/VolumeControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/VolumeControl.h -------------------------------------------------------------------------------- /es-app/src/animations/LaunchAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/animations/LaunchAnimation.h -------------------------------------------------------------------------------- /es-app/src/animations/MoveCameraAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/animations/MoveCameraAnimation.h -------------------------------------------------------------------------------- /es-app/src/components/AsyncReqComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/components/AsyncReqComponent.cpp -------------------------------------------------------------------------------- /es-app/src/components/AsyncReqComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/components/AsyncReqComponent.h -------------------------------------------------------------------------------- /es-app/src/components/RatingComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/components/RatingComponent.cpp -------------------------------------------------------------------------------- /es-app/src/components/RatingComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/components/RatingComponent.h -------------------------------------------------------------------------------- /es-app/src/components/ScraperSearchComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/components/ScraperSearchComponent.cpp -------------------------------------------------------------------------------- /es-app/src/components/ScraperSearchComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/components/ScraperSearchComponent.h -------------------------------------------------------------------------------- /es-app/src/components/TextListComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/components/TextListComponent.h -------------------------------------------------------------------------------- /es-app/src/es_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/es_icon.ico -------------------------------------------------------------------------------- /es-app/src/guis/GuiCollectionSystemsOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiCollectionSystemsOptions.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiCollectionSystemsOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiCollectionSystemsOptions.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiFastSelect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiFastSelect.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiFastSelect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiFastSelect.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiGameScraper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiGameScraper.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiGameScraper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiGameScraper.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiGamelistFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiGamelistFilter.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiGamelistFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiGamelistFilter.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiGamelistOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiGamelistOptions.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiGamelistOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiGamelistOptions.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiGeneralScreensaverOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiGeneralScreensaverOptions.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiGeneralScreensaverOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiGeneralScreensaverOptions.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiInfoPopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiInfoPopup.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiInfoPopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiInfoPopup.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiMenu.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiMenu.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiMetaDataEd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiMetaDataEd.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiMetaDataEd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiMetaDataEd.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiRandomCollectionOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiRandomCollectionOptions.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiRandomCollectionOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiRandomCollectionOptions.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiScraperMulti.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiScraperMulti.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiScraperMulti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiScraperMulti.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiScraperStart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiScraperStart.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiScraperStart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiScraperStart.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiScreensaverOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiScreensaverOptions.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiScreensaverOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiScreensaverOptions.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiSettings.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiSettings.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiSlideshowScreensaverOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiSlideshowScreensaverOptions.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiSlideshowScreensaverOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiSlideshowScreensaverOptions.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiVideoScreensaverOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiVideoScreensaverOptions.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiVideoScreensaverOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/guis/GuiVideoScreensaverOptions.h -------------------------------------------------------------------------------- /es-app/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/main.cpp -------------------------------------------------------------------------------- /es-app/src/scrapers/GamesDBJSONScraper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/scrapers/GamesDBJSONScraper.cpp -------------------------------------------------------------------------------- /es-app/src/scrapers/GamesDBJSONScraper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/scrapers/GamesDBJSONScraper.h -------------------------------------------------------------------------------- /es-app/src/scrapers/GamesDBJSONScraperResources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/scrapers/GamesDBJSONScraperResources.cpp -------------------------------------------------------------------------------- /es-app/src/scrapers/GamesDBJSONScraperResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/scrapers/GamesDBJSONScraperResources.h -------------------------------------------------------------------------------- /es-app/src/scrapers/Scraper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/scrapers/Scraper.cpp -------------------------------------------------------------------------------- /es-app/src/scrapers/Scraper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/scrapers/Scraper.h -------------------------------------------------------------------------------- /es-app/src/scrapers/ScreenScraper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/scrapers/ScreenScraper.cpp -------------------------------------------------------------------------------- /es-app/src/scrapers/ScreenScraper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/scrapers/ScreenScraper.h -------------------------------------------------------------------------------- /es-app/src/views/SystemView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/views/SystemView.cpp -------------------------------------------------------------------------------- /es-app/src/views/SystemView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/views/SystemView.h -------------------------------------------------------------------------------- /es-app/src/views/UIModeController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/views/UIModeController.cpp -------------------------------------------------------------------------------- /es-app/src/views/UIModeController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/views/UIModeController.h -------------------------------------------------------------------------------- /es-app/src/views/ViewController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/views/ViewController.cpp -------------------------------------------------------------------------------- /es-app/src/views/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/views/ViewController.h -------------------------------------------------------------------------------- /es-app/src/views/gamelist/BasicGameListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/views/gamelist/BasicGameListView.cpp -------------------------------------------------------------------------------- /es-app/src/views/gamelist/BasicGameListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/views/gamelist/BasicGameListView.h -------------------------------------------------------------------------------- /es-app/src/views/gamelist/DetailedGameListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/views/gamelist/DetailedGameListView.cpp -------------------------------------------------------------------------------- /es-app/src/views/gamelist/DetailedGameListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/views/gamelist/DetailedGameListView.h -------------------------------------------------------------------------------- /es-app/src/views/gamelist/GridGameListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/views/gamelist/GridGameListView.cpp -------------------------------------------------------------------------------- /es-app/src/views/gamelist/GridGameListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/views/gamelist/GridGameListView.h -------------------------------------------------------------------------------- /es-app/src/views/gamelist/IGameListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/views/gamelist/IGameListView.cpp -------------------------------------------------------------------------------- /es-app/src/views/gamelist/IGameListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/views/gamelist/IGameListView.h -------------------------------------------------------------------------------- /es-app/src/views/gamelist/ISimpleGameListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/views/gamelist/ISimpleGameListView.cpp -------------------------------------------------------------------------------- /es-app/src/views/gamelist/ISimpleGameListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/views/gamelist/ISimpleGameListView.h -------------------------------------------------------------------------------- /es-app/src/views/gamelist/VideoGameListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/views/gamelist/VideoGameListView.cpp -------------------------------------------------------------------------------- /es-app/src/views/gamelist/VideoGameListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-app/src/views/gamelist/VideoGameListView.h -------------------------------------------------------------------------------- /es-core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/CMakeLists.txt -------------------------------------------------------------------------------- /es-core/src/AsyncHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/AsyncHandle.h -------------------------------------------------------------------------------- /es-core/src/AudioManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/AudioManager.cpp -------------------------------------------------------------------------------- /es-core/src/AudioManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/AudioManager.h -------------------------------------------------------------------------------- /es-core/src/CECInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/CECInput.cpp -------------------------------------------------------------------------------- /es-core/src/CECInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/CECInput.h -------------------------------------------------------------------------------- /es-core/src/GuiComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/GuiComponent.cpp -------------------------------------------------------------------------------- /es-core/src/GuiComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/GuiComponent.h -------------------------------------------------------------------------------- /es-core/src/HelpPrompt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/HelpPrompt.h -------------------------------------------------------------------------------- /es-core/src/HelpStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/HelpStyle.cpp -------------------------------------------------------------------------------- /es-core/src/HelpStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/HelpStyle.h -------------------------------------------------------------------------------- /es-core/src/HttpReq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/HttpReq.cpp -------------------------------------------------------------------------------- /es-core/src/HttpReq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/HttpReq.h -------------------------------------------------------------------------------- /es-core/src/ImageIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/ImageIO.cpp -------------------------------------------------------------------------------- /es-core/src/ImageIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/ImageIO.h -------------------------------------------------------------------------------- /es-core/src/InputConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/InputConfig.cpp -------------------------------------------------------------------------------- /es-core/src/InputConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/InputConfig.h -------------------------------------------------------------------------------- /es-core/src/InputManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/InputManager.cpp -------------------------------------------------------------------------------- /es-core/src/InputManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/InputManager.h -------------------------------------------------------------------------------- /es-core/src/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/Log.cpp -------------------------------------------------------------------------------- /es-core/src/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/Log.h -------------------------------------------------------------------------------- /es-core/src/MameNames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/MameNames.cpp -------------------------------------------------------------------------------- /es-core/src/MameNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/MameNames.h -------------------------------------------------------------------------------- /es-core/src/PowerSaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/PowerSaver.cpp -------------------------------------------------------------------------------- /es-core/src/PowerSaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/PowerSaver.h -------------------------------------------------------------------------------- /es-core/src/Scripting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/Scripting.cpp -------------------------------------------------------------------------------- /es-core/src/Scripting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/Scripting.h -------------------------------------------------------------------------------- /es-core/src/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/Settings.cpp -------------------------------------------------------------------------------- /es-core/src/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/Settings.h -------------------------------------------------------------------------------- /es-core/src/Sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/Sound.cpp -------------------------------------------------------------------------------- /es-core/src/Sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/Sound.h -------------------------------------------------------------------------------- /es-core/src/ThemeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/ThemeData.cpp -------------------------------------------------------------------------------- /es-core/src/ThemeData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/ThemeData.h -------------------------------------------------------------------------------- /es-core/src/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/Window.cpp -------------------------------------------------------------------------------- /es-core/src/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/Window.h -------------------------------------------------------------------------------- /es-core/src/animations/Animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/animations/Animation.h -------------------------------------------------------------------------------- /es-core/src/animations/AnimationController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/animations/AnimationController.cpp -------------------------------------------------------------------------------- /es-core/src/animations/AnimationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/animations/AnimationController.h -------------------------------------------------------------------------------- /es-core/src/animations/LambdaAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/animations/LambdaAnimation.h -------------------------------------------------------------------------------- /es-core/src/components/AnimatedImageComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/AnimatedImageComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/AnimatedImageComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/AnimatedImageComponent.h -------------------------------------------------------------------------------- /es-core/src/components/BusyComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/BusyComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/BusyComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/BusyComponent.h -------------------------------------------------------------------------------- /es-core/src/components/ButtonComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/ButtonComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/ButtonComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/ButtonComponent.h -------------------------------------------------------------------------------- /es-core/src/components/ComponentGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/ComponentGrid.cpp -------------------------------------------------------------------------------- /es-core/src/components/ComponentGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/ComponentGrid.h -------------------------------------------------------------------------------- /es-core/src/components/ComponentList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/ComponentList.cpp -------------------------------------------------------------------------------- /es-core/src/components/ComponentList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/ComponentList.h -------------------------------------------------------------------------------- /es-core/src/components/DateTimeComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/DateTimeComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/DateTimeComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/DateTimeComponent.h -------------------------------------------------------------------------------- /es-core/src/components/DateTimeEditComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/DateTimeEditComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/DateTimeEditComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/DateTimeEditComponent.h -------------------------------------------------------------------------------- /es-core/src/components/GridTileComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/GridTileComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/GridTileComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/GridTileComponent.h -------------------------------------------------------------------------------- /es-core/src/components/HelpComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/HelpComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/HelpComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/HelpComponent.h -------------------------------------------------------------------------------- /es-core/src/components/IList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/IList.h -------------------------------------------------------------------------------- /es-core/src/components/ImageComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/ImageComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/ImageComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/ImageComponent.h -------------------------------------------------------------------------------- /es-core/src/components/ImageGridComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/ImageGridComponent.h -------------------------------------------------------------------------------- /es-core/src/components/MenuComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/MenuComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/MenuComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/MenuComponent.h -------------------------------------------------------------------------------- /es-core/src/components/NinePatchComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/NinePatchComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/NinePatchComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/NinePatchComponent.h -------------------------------------------------------------------------------- /es-core/src/components/OptionListComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/OptionListComponent.h -------------------------------------------------------------------------------- /es-core/src/components/ScrollableContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/ScrollableContainer.cpp -------------------------------------------------------------------------------- /es-core/src/components/ScrollableContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/ScrollableContainer.h -------------------------------------------------------------------------------- /es-core/src/components/SliderComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/SliderComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/SliderComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/SliderComponent.h -------------------------------------------------------------------------------- /es-core/src/components/SwitchComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/SwitchComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/SwitchComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/SwitchComponent.h -------------------------------------------------------------------------------- /es-core/src/components/TextComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/TextComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/TextComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/TextComponent.h -------------------------------------------------------------------------------- /es-core/src/components/TextEditComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/TextEditComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/TextEditComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/TextEditComponent.h -------------------------------------------------------------------------------- /es-core/src/components/VideoComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/VideoComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/VideoComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/VideoComponent.h -------------------------------------------------------------------------------- /es-core/src/components/VideoPlayerComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/VideoPlayerComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/VideoPlayerComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/VideoPlayerComponent.h -------------------------------------------------------------------------------- /es-core/src/components/VideoVlcComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/VideoVlcComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/VideoVlcComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/components/VideoVlcComponent.h -------------------------------------------------------------------------------- /es-core/src/guis/GuiDetectDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/guis/GuiDetectDevice.cpp -------------------------------------------------------------------------------- /es-core/src/guis/GuiDetectDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/guis/GuiDetectDevice.h -------------------------------------------------------------------------------- /es-core/src/guis/GuiInputConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/guis/GuiInputConfig.cpp -------------------------------------------------------------------------------- /es-core/src/guis/GuiInputConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/guis/GuiInputConfig.h -------------------------------------------------------------------------------- /es-core/src/guis/GuiMsgBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/guis/GuiMsgBox.cpp -------------------------------------------------------------------------------- /es-core/src/guis/GuiMsgBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/guis/GuiMsgBox.h -------------------------------------------------------------------------------- /es-core/src/guis/GuiTextEditPopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/guis/GuiTextEditPopup.cpp -------------------------------------------------------------------------------- /es-core/src/guis/GuiTextEditPopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/guis/GuiTextEditPopup.h -------------------------------------------------------------------------------- /es-core/src/math/Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/math/Misc.cpp -------------------------------------------------------------------------------- /es-core/src/math/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/math/Misc.h -------------------------------------------------------------------------------- /es-core/src/math/Transform4x4f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/math/Transform4x4f.cpp -------------------------------------------------------------------------------- /es-core/src/math/Transform4x4f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/math/Transform4x4f.h -------------------------------------------------------------------------------- /es-core/src/math/Vector2f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/math/Vector2f.cpp -------------------------------------------------------------------------------- /es-core/src/math/Vector2f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/math/Vector2f.h -------------------------------------------------------------------------------- /es-core/src/math/Vector2i.cpp: -------------------------------------------------------------------------------- 1 | #include "math/Vector2i.h" 2 | -------------------------------------------------------------------------------- /es-core/src/math/Vector2i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/math/Vector2i.h -------------------------------------------------------------------------------- /es-core/src/math/Vector3f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/math/Vector3f.cpp -------------------------------------------------------------------------------- /es-core/src/math/Vector3f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/math/Vector3f.h -------------------------------------------------------------------------------- /es-core/src/math/Vector4f.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/math/Vector4f.cpp -------------------------------------------------------------------------------- /es-core/src/math/Vector4f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/math/Vector4f.h -------------------------------------------------------------------------------- /es-core/src/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/platform.cpp -------------------------------------------------------------------------------- /es-core/src/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/platform.h -------------------------------------------------------------------------------- /es-core/src/renderers/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/renderers/Renderer.cpp -------------------------------------------------------------------------------- /es-core/src/renderers/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/renderers/Renderer.h -------------------------------------------------------------------------------- /es-core/src/renderers/Renderer_GL14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/renderers/Renderer_GL14.cpp -------------------------------------------------------------------------------- /es-core/src/renderers/Renderer_GL21.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/renderers/Renderer_GL21.cpp -------------------------------------------------------------------------------- /es-core/src/renderers/Renderer_GLES10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/renderers/Renderer_GLES10.cpp -------------------------------------------------------------------------------- /es-core/src/renderers/Renderer_GLES20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/renderers/Renderer_GLES20.cpp -------------------------------------------------------------------------------- /es-core/src/resources/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/resources/Font.cpp -------------------------------------------------------------------------------- /es-core/src/resources/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/resources/Font.h -------------------------------------------------------------------------------- /es-core/src/resources/ResourceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/resources/ResourceManager.cpp -------------------------------------------------------------------------------- /es-core/src/resources/ResourceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/resources/ResourceManager.h -------------------------------------------------------------------------------- /es-core/src/resources/TextureData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/resources/TextureData.cpp -------------------------------------------------------------------------------- /es-core/src/resources/TextureData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/resources/TextureData.h -------------------------------------------------------------------------------- /es-core/src/resources/TextureDataManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/resources/TextureDataManager.cpp -------------------------------------------------------------------------------- /es-core/src/resources/TextureDataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/resources/TextureDataManager.h -------------------------------------------------------------------------------- /es-core/src/resources/TextureResource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/resources/TextureResource.cpp -------------------------------------------------------------------------------- /es-core/src/resources/TextureResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/resources/TextureResource.h -------------------------------------------------------------------------------- /es-core/src/utils/FileSystemUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/utils/FileSystemUtil.cpp -------------------------------------------------------------------------------- /es-core/src/utils/FileSystemUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/utils/FileSystemUtil.h -------------------------------------------------------------------------------- /es-core/src/utils/ProfilingUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/utils/ProfilingUtil.cpp -------------------------------------------------------------------------------- /es-core/src/utils/ProfilingUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/utils/ProfilingUtil.h -------------------------------------------------------------------------------- /es-core/src/utils/StringUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/utils/StringUtil.cpp -------------------------------------------------------------------------------- /es-core/src/utils/StringUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/utils/StringUtil.h -------------------------------------------------------------------------------- /es-core/src/utils/ThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/utils/ThreadPool.cpp -------------------------------------------------------------------------------- /es-core/src/utils/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/utils/ThreadPool.h -------------------------------------------------------------------------------- /es-core/src/utils/TimeUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/utils/TimeUtil.cpp -------------------------------------------------------------------------------- /es-core/src/utils/TimeUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/es-core/src/utils/TimeUtil.h -------------------------------------------------------------------------------- /external/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/external/CMakeLists.txt -------------------------------------------------------------------------------- /external/nanosvg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/external/nanosvg/CMakeLists.txt -------------------------------------------------------------------------------- /external/nanosvg/nanosvg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/external/nanosvg/nanosvg.h -------------------------------------------------------------------------------- /external/nanosvg/nanosvg_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/external/nanosvg/nanosvg_license.txt -------------------------------------------------------------------------------- /external/nanosvg/nanosvgrast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/external/nanosvg/nanosvgrast.h -------------------------------------------------------------------------------- /external/nanosvg/src/nanosvg_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/external/nanosvg/src/nanosvg_impl.cpp -------------------------------------------------------------------------------- /opensans_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/opensans_license.txt -------------------------------------------------------------------------------- /resources/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/arrow.svg -------------------------------------------------------------------------------- /resources/busy_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/busy_0.svg -------------------------------------------------------------------------------- /resources/busy_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/busy_1.svg -------------------------------------------------------------------------------- /resources/busy_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/busy_2.svg -------------------------------------------------------------------------------- /resources/busy_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/busy_3.svg -------------------------------------------------------------------------------- /resources/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/button.png -------------------------------------------------------------------------------- /resources/button_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/button_filled.png -------------------------------------------------------------------------------- /resources/cartridge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/cartridge.svg -------------------------------------------------------------------------------- /resources/checkbox_checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/checkbox_checked.svg -------------------------------------------------------------------------------- /resources/checkbox_unchecked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/checkbox_unchecked.svg -------------------------------------------------------------------------------- /resources/fav_add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/fav_add.svg -------------------------------------------------------------------------------- /resources/fav_remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/fav_remove.svg -------------------------------------------------------------------------------- /resources/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/folder.svg -------------------------------------------------------------------------------- /resources/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/frame.png -------------------------------------------------------------------------------- /resources/help/analog_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/analog_down.svg -------------------------------------------------------------------------------- /resources/help/analog_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/analog_left.svg -------------------------------------------------------------------------------- /resources/help/analog_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/analog_right.svg -------------------------------------------------------------------------------- /resources/help/analog_stick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/analog_stick.svg -------------------------------------------------------------------------------- /resources/help/analog_thumb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/analog_thumb.svg -------------------------------------------------------------------------------- /resources/help/analog_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/analog_up.svg -------------------------------------------------------------------------------- /resources/help/button_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/button_1.svg -------------------------------------------------------------------------------- /resources/help/button_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/button_2.svg -------------------------------------------------------------------------------- /resources/help/button_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/button_3.svg -------------------------------------------------------------------------------- /resources/help/button_4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/button_4.svg -------------------------------------------------------------------------------- /resources/help/button_a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/button_a.svg -------------------------------------------------------------------------------- /resources/help/button_b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/button_b.svg -------------------------------------------------------------------------------- /resources/help/button_circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/button_circle.svg -------------------------------------------------------------------------------- /resources/help/button_cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/button_cross.svg -------------------------------------------------------------------------------- /resources/help/button_hotkey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/button_hotkey.svg -------------------------------------------------------------------------------- /resources/help/button_l.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/button_l.svg -------------------------------------------------------------------------------- /resources/help/button_lr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/button_lr.svg -------------------------------------------------------------------------------- /resources/help/button_lt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/button_lt.svg -------------------------------------------------------------------------------- /resources/help/button_r.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/button_r.svg -------------------------------------------------------------------------------- /resources/help/button_rt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/button_rt.svg -------------------------------------------------------------------------------- /resources/help/button_select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/button_select.svg -------------------------------------------------------------------------------- /resources/help/button_square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/button_square.svg -------------------------------------------------------------------------------- /resources/help/button_start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/button_start.svg -------------------------------------------------------------------------------- /resources/help/button_triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/button_triangle.svg -------------------------------------------------------------------------------- /resources/help/button_x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/button_x.svg -------------------------------------------------------------------------------- /resources/help/button_y.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/button_y.svg -------------------------------------------------------------------------------- /resources/help/buttons_east.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/buttons_east.svg -------------------------------------------------------------------------------- /resources/help/buttons_north.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/buttons_north.svg -------------------------------------------------------------------------------- /resources/help/buttons_south.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/buttons_south.svg -------------------------------------------------------------------------------- /resources/help/buttons_west.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/buttons_west.svg -------------------------------------------------------------------------------- /resources/help/dpad_all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/dpad_all.svg -------------------------------------------------------------------------------- /resources/help/dpad_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/dpad_down.svg -------------------------------------------------------------------------------- /resources/help/dpad_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/dpad_left.svg -------------------------------------------------------------------------------- /resources/help/dpad_leftright.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/dpad_leftright.svg -------------------------------------------------------------------------------- /resources/help/dpad_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/dpad_right.svg -------------------------------------------------------------------------------- /resources/help/dpad_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/dpad_up.svg -------------------------------------------------------------------------------- /resources/help/dpad_updown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/help/dpad_updown.svg -------------------------------------------------------------------------------- /resources/mamebioses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/mamebioses.xml -------------------------------------------------------------------------------- /resources/mamedevices.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/mamedevices.xml -------------------------------------------------------------------------------- /resources/mamenames.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/mamenames.xml -------------------------------------------------------------------------------- /resources/mameres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/mameres.py -------------------------------------------------------------------------------- /resources/off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/off.svg -------------------------------------------------------------------------------- /resources/on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/on.svg -------------------------------------------------------------------------------- /resources/opensans_hebrew_condensed_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/opensans_hebrew_condensed_light.ttf -------------------------------------------------------------------------------- /resources/opensans_hebrew_condensed_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/opensans_hebrew_condensed_regular.ttf -------------------------------------------------------------------------------- /resources/option_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/option_arrow.svg -------------------------------------------------------------------------------- /resources/scroll_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/scroll_gradient.png -------------------------------------------------------------------------------- /resources/slider_knob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/slider_knob.svg -------------------------------------------------------------------------------- /resources/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/splash.svg -------------------------------------------------------------------------------- /resources/star_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/star_filled.svg -------------------------------------------------------------------------------- /resources/star_unfilled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/star_unfilled.svg -------------------------------------------------------------------------------- /resources/textinput_ninepatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/textinput_ninepatch.png -------------------------------------------------------------------------------- /resources/textinput_ninepatch_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/textinput_ninepatch_active.png -------------------------------------------------------------------------------- /resources/window_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrassa/EmulationStation/HEAD/resources/window_icon_256.png --------------------------------------------------------------------------------