├── .gitignore ├── .gitmodules ├── CMake ├── Packages │ ├── FindEigen3.cmake │ ├── FindFreeImage.cmake │ ├── FindOpenGLES.cmake │ ├── FindSDL2.cmake │ ├── FindVLC.cmake │ └── MacroEnsureVersion.cmake └── Utils │ └── FindPkgMacros.cmake ├── CMakeLists.txt ├── CREDITS.md ├── DEVNOTES.md ├── GAMELISTS.md ├── LICENSE.md ├── README.md ├── SYSTEMS.md ├── THEMES.md ├── data ├── ResourceUtil.cpp ├── Resources.h ├── converted │ ├── arrow_svg.cpp │ ├── busy_0_svg.cpp │ ├── busy_1_svg.cpp │ ├── busy_2_svg.cpp │ ├── busy_3_svg.cpp │ ├── button_filled_png.cpp │ ├── button_png.cpp │ ├── checkbox_checked_svg.cpp │ ├── checkbox_unchecked_svg.cpp │ ├── fav_add_svg.cpp │ ├── fav_remove_svg.cpp │ ├── frame_png.cpp │ ├── help__analog_down_svg.cpp │ ├── help__analog_left_svg.cpp │ ├── help__analog_right_svg.cpp │ ├── help__analog_thumb_svg.cpp │ ├── help__analog_up_svg.cpp │ ├── help__button_a_svg.cpp │ ├── help__button_b_svg.cpp │ ├── help__button_hotkey_svg.cpp │ ├── help__button_l_svg.cpp │ ├── help__button_r_svg.cpp │ ├── help__button_select_svg.cpp │ ├── help__button_start_svg.cpp │ ├── help__button_x_svg.cpp │ ├── help__button_y_svg.cpp │ ├── help__dpad_all_svg.cpp │ ├── help__dpad_down_svg.cpp │ ├── help__dpad_left_svg.cpp │ ├── help__dpad_leftright_svg.cpp │ ├── help__dpad_right_svg.cpp │ ├── help__dpad_up_svg.cpp │ ├── help__dpad_updown_svg.cpp │ ├── off_svg.cpp │ ├── on_svg.cpp │ ├── opensans_hebrew_condensed_light_ttf.cpp │ ├── opensans_hebrew_condensed_regular_ttf.cpp │ ├── option_arrow_svg.cpp │ ├── scroll_gradient_png.cpp │ ├── slider_knob_svg.cpp │ ├── splash_svg.cpp │ ├── star_filled_svg.cpp │ ├── star_unfilled_svg.cpp │ ├── textinput_ninepatch_active_png.cpp │ ├── textinput_ninepatch_png.cpp │ └── window_icon_256_png.cpp ├── es_icon.ico ├── generate.sh └── resources │ ├── arrow.svg │ ├── busy_0.svg │ ├── busy_1.svg │ ├── busy_2.svg │ ├── busy_3.svg │ ├── button.png │ ├── button_filled.png │ ├── checkbox_checked.svg │ ├── checkbox_unchecked.svg │ ├── fav_add.svg │ ├── fav_remove.svg │ ├── frame.png │ ├── help │ ├── analog_down.svg │ ├── analog_left.svg │ ├── analog_right.svg │ ├── analog_thumb.svg │ ├── analog_up.svg │ ├── button_a.svg │ ├── button_b.svg │ ├── button_hotkey.svg │ ├── button_l.svg │ ├── button_r.svg │ ├── button_select.svg │ ├── button_start.svg │ ├── button_x.svg │ ├── button_y.svg │ ├── dpad_all.svg │ ├── dpad_down.svg │ ├── dpad_left.svg │ ├── dpad_leftright.svg │ ├── dpad_right.svg │ ├── dpad_up.svg │ └── dpad_updown.svg │ ├── 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 ├── 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 │ ├── MameNameMap.cpp │ ├── 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 │ ├── 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 │ ├── 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 │ ├── GamesDBScraper.cpp │ ├── GamesDBScraper.h │ ├── Scraper.cpp │ └── Scraper.h │ └── views │ ├── SystemView.cpp │ ├── SystemView.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 │ ├── GuiComponent.cpp │ ├── GuiComponent.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 │ ├── PowerSaver.cpp │ ├── PowerSaver.h │ ├── Renderer.h │ ├── Renderer_draw_gl.cpp │ ├── Renderer_init_sdlgl.cpp │ ├── Settings.cpp │ ├── Settings.h │ ├── Sound.cpp │ ├── Sound.h │ ├── ThemeData.cpp │ ├── ThemeData.h │ ├── Util.cpp │ ├── Util.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 │ ├── 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 │ ├── platform.cpp │ ├── platform.h │ └── resources │ ├── Font.cpp │ ├── Font.h │ ├── ResourceManager.cpp │ ├── ResourceManager.h │ ├── TextureData.cpp │ ├── TextureData.h │ ├── TextureDataManager.cpp │ ├── TextureDataManager.h │ ├── TextureResource.cpp │ └── TextureResource.h ├── external ├── CMakeLists.txt └── nanosvg │ ├── CMakeLists.txt │ ├── nanosvg.h │ ├── nanosvg_license.txt │ ├── nanosvgrast.h │ └── src │ └── nanosvg_impl.cpp └── opensans_license.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMake/Packages/FindEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/CMake/Packages/FindEigen3.cmake -------------------------------------------------------------------------------- /CMake/Packages/FindFreeImage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/CMake/Packages/FindFreeImage.cmake -------------------------------------------------------------------------------- /CMake/Packages/FindOpenGLES.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/CMake/Packages/FindOpenGLES.cmake -------------------------------------------------------------------------------- /CMake/Packages/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/CMake/Packages/FindSDL2.cmake -------------------------------------------------------------------------------- /CMake/Packages/FindVLC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/CMake/Packages/FindVLC.cmake -------------------------------------------------------------------------------- /CMake/Packages/MacroEnsureVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/CMake/Packages/MacroEnsureVersion.cmake -------------------------------------------------------------------------------- /CMake/Utils/FindPkgMacros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/CMake/Utils/FindPkgMacros.cmake -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/CREDITS.md -------------------------------------------------------------------------------- /DEVNOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/DEVNOTES.md -------------------------------------------------------------------------------- /GAMELISTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/GAMELISTS.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/README.md -------------------------------------------------------------------------------- /SYSTEMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/SYSTEMS.md -------------------------------------------------------------------------------- /THEMES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/THEMES.md -------------------------------------------------------------------------------- /data/ResourceUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/ResourceUtil.cpp -------------------------------------------------------------------------------- /data/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/Resources.h -------------------------------------------------------------------------------- /data/converted/arrow_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/arrow_svg.cpp -------------------------------------------------------------------------------- /data/converted/busy_0_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/busy_0_svg.cpp -------------------------------------------------------------------------------- /data/converted/busy_1_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/busy_1_svg.cpp -------------------------------------------------------------------------------- /data/converted/busy_2_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/busy_2_svg.cpp -------------------------------------------------------------------------------- /data/converted/busy_3_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/busy_3_svg.cpp -------------------------------------------------------------------------------- /data/converted/button_filled_png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/button_filled_png.cpp -------------------------------------------------------------------------------- /data/converted/button_png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/button_png.cpp -------------------------------------------------------------------------------- /data/converted/checkbox_checked_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/checkbox_checked_svg.cpp -------------------------------------------------------------------------------- /data/converted/checkbox_unchecked_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/checkbox_unchecked_svg.cpp -------------------------------------------------------------------------------- /data/converted/fav_add_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/fav_add_svg.cpp -------------------------------------------------------------------------------- /data/converted/fav_remove_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/fav_remove_svg.cpp -------------------------------------------------------------------------------- /data/converted/frame_png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/frame_png.cpp -------------------------------------------------------------------------------- /data/converted/help__analog_down_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/help__analog_down_svg.cpp -------------------------------------------------------------------------------- /data/converted/help__analog_left_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/help__analog_left_svg.cpp -------------------------------------------------------------------------------- /data/converted/help__analog_right_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/help__analog_right_svg.cpp -------------------------------------------------------------------------------- /data/converted/help__analog_thumb_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/help__analog_thumb_svg.cpp -------------------------------------------------------------------------------- /data/converted/help__analog_up_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/help__analog_up_svg.cpp -------------------------------------------------------------------------------- /data/converted/help__button_a_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/help__button_a_svg.cpp -------------------------------------------------------------------------------- /data/converted/help__button_b_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/help__button_b_svg.cpp -------------------------------------------------------------------------------- /data/converted/help__button_hotkey_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/help__button_hotkey_svg.cpp -------------------------------------------------------------------------------- /data/converted/help__button_l_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/help__button_l_svg.cpp -------------------------------------------------------------------------------- /data/converted/help__button_r_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/help__button_r_svg.cpp -------------------------------------------------------------------------------- /data/converted/help__button_select_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/help__button_select_svg.cpp -------------------------------------------------------------------------------- /data/converted/help__button_start_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/help__button_start_svg.cpp -------------------------------------------------------------------------------- /data/converted/help__button_x_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/help__button_x_svg.cpp -------------------------------------------------------------------------------- /data/converted/help__button_y_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/help__button_y_svg.cpp -------------------------------------------------------------------------------- /data/converted/help__dpad_all_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/help__dpad_all_svg.cpp -------------------------------------------------------------------------------- /data/converted/help__dpad_down_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/help__dpad_down_svg.cpp -------------------------------------------------------------------------------- /data/converted/help__dpad_left_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/help__dpad_left_svg.cpp -------------------------------------------------------------------------------- /data/converted/help__dpad_leftright_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/help__dpad_leftright_svg.cpp -------------------------------------------------------------------------------- /data/converted/help__dpad_right_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/help__dpad_right_svg.cpp -------------------------------------------------------------------------------- /data/converted/help__dpad_up_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/help__dpad_up_svg.cpp -------------------------------------------------------------------------------- /data/converted/help__dpad_updown_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/help__dpad_updown_svg.cpp -------------------------------------------------------------------------------- /data/converted/off_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/off_svg.cpp -------------------------------------------------------------------------------- /data/converted/on_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/on_svg.cpp -------------------------------------------------------------------------------- /data/converted/opensans_hebrew_condensed_light_ttf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/opensans_hebrew_condensed_light_ttf.cpp -------------------------------------------------------------------------------- /data/converted/opensans_hebrew_condensed_regular_ttf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/opensans_hebrew_condensed_regular_ttf.cpp -------------------------------------------------------------------------------- /data/converted/option_arrow_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/option_arrow_svg.cpp -------------------------------------------------------------------------------- /data/converted/scroll_gradient_png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/scroll_gradient_png.cpp -------------------------------------------------------------------------------- /data/converted/slider_knob_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/slider_knob_svg.cpp -------------------------------------------------------------------------------- /data/converted/splash_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/splash_svg.cpp -------------------------------------------------------------------------------- /data/converted/star_filled_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/star_filled_svg.cpp -------------------------------------------------------------------------------- /data/converted/star_unfilled_svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/star_unfilled_svg.cpp -------------------------------------------------------------------------------- /data/converted/textinput_ninepatch_active_png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/textinput_ninepatch_active_png.cpp -------------------------------------------------------------------------------- /data/converted/textinput_ninepatch_png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/textinput_ninepatch_png.cpp -------------------------------------------------------------------------------- /data/converted/window_icon_256_png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/converted/window_icon_256_png.cpp -------------------------------------------------------------------------------- /data/es_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/es_icon.ico -------------------------------------------------------------------------------- /data/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/generate.sh -------------------------------------------------------------------------------- /data/resources/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/arrow.svg -------------------------------------------------------------------------------- /data/resources/busy_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/busy_0.svg -------------------------------------------------------------------------------- /data/resources/busy_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/busy_1.svg -------------------------------------------------------------------------------- /data/resources/busy_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/busy_2.svg -------------------------------------------------------------------------------- /data/resources/busy_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/busy_3.svg -------------------------------------------------------------------------------- /data/resources/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/button.png -------------------------------------------------------------------------------- /data/resources/button_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/button_filled.png -------------------------------------------------------------------------------- /data/resources/checkbox_checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/checkbox_checked.svg -------------------------------------------------------------------------------- /data/resources/checkbox_unchecked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/checkbox_unchecked.svg -------------------------------------------------------------------------------- /data/resources/fav_add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/fav_add.svg -------------------------------------------------------------------------------- /data/resources/fav_remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/fav_remove.svg -------------------------------------------------------------------------------- /data/resources/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/frame.png -------------------------------------------------------------------------------- /data/resources/help/analog_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/help/analog_down.svg -------------------------------------------------------------------------------- /data/resources/help/analog_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/help/analog_left.svg -------------------------------------------------------------------------------- /data/resources/help/analog_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/help/analog_right.svg -------------------------------------------------------------------------------- /data/resources/help/analog_thumb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/help/analog_thumb.svg -------------------------------------------------------------------------------- /data/resources/help/analog_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/help/analog_up.svg -------------------------------------------------------------------------------- /data/resources/help/button_a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/help/button_a.svg -------------------------------------------------------------------------------- /data/resources/help/button_b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/help/button_b.svg -------------------------------------------------------------------------------- /data/resources/help/button_hotkey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/help/button_hotkey.svg -------------------------------------------------------------------------------- /data/resources/help/button_l.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/help/button_l.svg -------------------------------------------------------------------------------- /data/resources/help/button_r.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/help/button_r.svg -------------------------------------------------------------------------------- /data/resources/help/button_select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/help/button_select.svg -------------------------------------------------------------------------------- /data/resources/help/button_start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/help/button_start.svg -------------------------------------------------------------------------------- /data/resources/help/button_x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/help/button_x.svg -------------------------------------------------------------------------------- /data/resources/help/button_y.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/help/button_y.svg -------------------------------------------------------------------------------- /data/resources/help/dpad_all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/help/dpad_all.svg -------------------------------------------------------------------------------- /data/resources/help/dpad_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/help/dpad_down.svg -------------------------------------------------------------------------------- /data/resources/help/dpad_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/help/dpad_left.svg -------------------------------------------------------------------------------- /data/resources/help/dpad_leftright.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/help/dpad_leftright.svg -------------------------------------------------------------------------------- /data/resources/help/dpad_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/help/dpad_right.svg -------------------------------------------------------------------------------- /data/resources/help/dpad_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/help/dpad_up.svg -------------------------------------------------------------------------------- /data/resources/help/dpad_updown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/help/dpad_updown.svg -------------------------------------------------------------------------------- /data/resources/off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/off.svg -------------------------------------------------------------------------------- /data/resources/on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/on.svg -------------------------------------------------------------------------------- /data/resources/opensans_hebrew_condensed_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/opensans_hebrew_condensed_light.ttf -------------------------------------------------------------------------------- /data/resources/opensans_hebrew_condensed_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/opensans_hebrew_condensed_regular.ttf -------------------------------------------------------------------------------- /data/resources/option_arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/option_arrow.svg -------------------------------------------------------------------------------- /data/resources/scroll_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/scroll_gradient.png -------------------------------------------------------------------------------- /data/resources/slider_knob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/slider_knob.svg -------------------------------------------------------------------------------- /data/resources/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/splash.svg -------------------------------------------------------------------------------- /data/resources/star_filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/star_filled.svg -------------------------------------------------------------------------------- /data/resources/star_unfilled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/star_unfilled.svg -------------------------------------------------------------------------------- /data/resources/textinput_ninepatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/textinput_ninepatch.png -------------------------------------------------------------------------------- /data/resources/textinput_ninepatch_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/textinput_ninepatch_active.png -------------------------------------------------------------------------------- /data/resources/window_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/data/resources/window_icon_256.png -------------------------------------------------------------------------------- /emulationstation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/emulationstation.sh -------------------------------------------------------------------------------- /es-app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/CMakeLists.txt -------------------------------------------------------------------------------- /es-app/src/CollectionSystemManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/CollectionSystemManager.cpp -------------------------------------------------------------------------------- /es-app/src/CollectionSystemManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/CollectionSystemManager.h -------------------------------------------------------------------------------- /es-app/src/EmulationStation.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/EmulationStation.aps -------------------------------------------------------------------------------- /es-app/src/EmulationStation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/EmulationStation.h -------------------------------------------------------------------------------- /es-app/src/EmulationStation.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/EmulationStation.rc -------------------------------------------------------------------------------- /es-app/src/FileData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/FileData.cpp -------------------------------------------------------------------------------- /es-app/src/FileData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/FileData.h -------------------------------------------------------------------------------- /es-app/src/FileFilterIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/FileFilterIndex.cpp -------------------------------------------------------------------------------- /es-app/src/FileFilterIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/FileFilterIndex.h -------------------------------------------------------------------------------- /es-app/src/FileSorts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/FileSorts.cpp -------------------------------------------------------------------------------- /es-app/src/FileSorts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/FileSorts.h -------------------------------------------------------------------------------- /es-app/src/Gamelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/Gamelist.cpp -------------------------------------------------------------------------------- /es-app/src/Gamelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/Gamelist.h -------------------------------------------------------------------------------- /es-app/src/MameNameMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/MameNameMap.cpp -------------------------------------------------------------------------------- /es-app/src/MetaData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/MetaData.cpp -------------------------------------------------------------------------------- /es-app/src/MetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/MetaData.h -------------------------------------------------------------------------------- /es-app/src/PlatformId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/PlatformId.cpp -------------------------------------------------------------------------------- /es-app/src/PlatformId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/PlatformId.h -------------------------------------------------------------------------------- /es-app/src/ScraperCmdLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/ScraperCmdLine.cpp -------------------------------------------------------------------------------- /es-app/src/ScraperCmdLine.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | int run_scraper_cmdline(); 4 | -------------------------------------------------------------------------------- /es-app/src/SystemData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/SystemData.cpp -------------------------------------------------------------------------------- /es-app/src/SystemData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/SystemData.h -------------------------------------------------------------------------------- /es-app/src/SystemScreenSaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/SystemScreenSaver.cpp -------------------------------------------------------------------------------- /es-app/src/SystemScreenSaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/SystemScreenSaver.h -------------------------------------------------------------------------------- /es-app/src/VolumeControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/VolumeControl.cpp -------------------------------------------------------------------------------- /es-app/src/VolumeControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/VolumeControl.h -------------------------------------------------------------------------------- /es-app/src/animations/LaunchAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/animations/LaunchAnimation.h -------------------------------------------------------------------------------- /es-app/src/animations/MoveCameraAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/animations/MoveCameraAnimation.h -------------------------------------------------------------------------------- /es-app/src/components/AsyncReqComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/components/AsyncReqComponent.cpp -------------------------------------------------------------------------------- /es-app/src/components/AsyncReqComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/components/AsyncReqComponent.h -------------------------------------------------------------------------------- /es-app/src/components/RatingComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/components/RatingComponent.cpp -------------------------------------------------------------------------------- /es-app/src/components/RatingComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/components/RatingComponent.h -------------------------------------------------------------------------------- /es-app/src/components/ScraperSearchComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/components/ScraperSearchComponent.cpp -------------------------------------------------------------------------------- /es-app/src/components/ScraperSearchComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/components/ScraperSearchComponent.h -------------------------------------------------------------------------------- /es-app/src/components/TextListComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/components/TextListComponent.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiCollectionSystemsOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiCollectionSystemsOptions.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiCollectionSystemsOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiCollectionSystemsOptions.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiFastSelect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiFastSelect.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiFastSelect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiFastSelect.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiGameScraper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiGameScraper.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiGameScraper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiGameScraper.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiGamelistFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiGamelistFilter.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiGamelistFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiGamelistFilter.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiGamelistOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiGamelistOptions.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiGamelistOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiGamelistOptions.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiGeneralScreensaverOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiGeneralScreensaverOptions.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiGeneralScreensaverOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiGeneralScreensaverOptions.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiInfoPopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiInfoPopup.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiInfoPopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiInfoPopup.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiMenu.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiMenu.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiMetaDataEd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiMetaDataEd.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiMetaDataEd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiMetaDataEd.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiScraperMulti.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiScraperMulti.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiScraperMulti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiScraperMulti.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiScraperStart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiScraperStart.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiScraperStart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiScraperStart.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiScreensaverOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiScreensaverOptions.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiScreensaverOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiScreensaverOptions.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiSettings.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiSettings.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiSlideshowScreensaverOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiSlideshowScreensaverOptions.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiSlideshowScreensaverOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiSlideshowScreensaverOptions.h -------------------------------------------------------------------------------- /es-app/src/guis/GuiVideoScreensaverOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiVideoScreensaverOptions.cpp -------------------------------------------------------------------------------- /es-app/src/guis/GuiVideoScreensaverOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/guis/GuiVideoScreensaverOptions.h -------------------------------------------------------------------------------- /es-app/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/main.cpp -------------------------------------------------------------------------------- /es-app/src/scrapers/GamesDBScraper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/scrapers/GamesDBScraper.cpp -------------------------------------------------------------------------------- /es-app/src/scrapers/GamesDBScraper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/scrapers/GamesDBScraper.h -------------------------------------------------------------------------------- /es-app/src/scrapers/Scraper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/scrapers/Scraper.cpp -------------------------------------------------------------------------------- /es-app/src/scrapers/Scraper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/scrapers/Scraper.h -------------------------------------------------------------------------------- /es-app/src/views/SystemView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/views/SystemView.cpp -------------------------------------------------------------------------------- /es-app/src/views/SystemView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/views/SystemView.h -------------------------------------------------------------------------------- /es-app/src/views/ViewController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/views/ViewController.cpp -------------------------------------------------------------------------------- /es-app/src/views/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/views/ViewController.h -------------------------------------------------------------------------------- /es-app/src/views/gamelist/BasicGameListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/views/gamelist/BasicGameListView.cpp -------------------------------------------------------------------------------- /es-app/src/views/gamelist/BasicGameListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/views/gamelist/BasicGameListView.h -------------------------------------------------------------------------------- /es-app/src/views/gamelist/DetailedGameListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/views/gamelist/DetailedGameListView.cpp -------------------------------------------------------------------------------- /es-app/src/views/gamelist/DetailedGameListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/views/gamelist/DetailedGameListView.h -------------------------------------------------------------------------------- /es-app/src/views/gamelist/GridGameListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/views/gamelist/GridGameListView.cpp -------------------------------------------------------------------------------- /es-app/src/views/gamelist/GridGameListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/views/gamelist/GridGameListView.h -------------------------------------------------------------------------------- /es-app/src/views/gamelist/IGameListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/views/gamelist/IGameListView.cpp -------------------------------------------------------------------------------- /es-app/src/views/gamelist/IGameListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/views/gamelist/IGameListView.h -------------------------------------------------------------------------------- /es-app/src/views/gamelist/ISimpleGameListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/views/gamelist/ISimpleGameListView.cpp -------------------------------------------------------------------------------- /es-app/src/views/gamelist/ISimpleGameListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/views/gamelist/ISimpleGameListView.h -------------------------------------------------------------------------------- /es-app/src/views/gamelist/VideoGameListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/views/gamelist/VideoGameListView.cpp -------------------------------------------------------------------------------- /es-app/src/views/gamelist/VideoGameListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-app/src/views/gamelist/VideoGameListView.h -------------------------------------------------------------------------------- /es-core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/CMakeLists.txt -------------------------------------------------------------------------------- /es-core/src/AsyncHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/AsyncHandle.h -------------------------------------------------------------------------------- /es-core/src/AudioManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/AudioManager.cpp -------------------------------------------------------------------------------- /es-core/src/AudioManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/AudioManager.h -------------------------------------------------------------------------------- /es-core/src/GuiComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/GuiComponent.cpp -------------------------------------------------------------------------------- /es-core/src/GuiComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/GuiComponent.h -------------------------------------------------------------------------------- /es-core/src/HelpStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/HelpStyle.cpp -------------------------------------------------------------------------------- /es-core/src/HelpStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/HelpStyle.h -------------------------------------------------------------------------------- /es-core/src/HttpReq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/HttpReq.cpp -------------------------------------------------------------------------------- /es-core/src/HttpReq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/HttpReq.h -------------------------------------------------------------------------------- /es-core/src/ImageIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/ImageIO.cpp -------------------------------------------------------------------------------- /es-core/src/ImageIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/ImageIO.h -------------------------------------------------------------------------------- /es-core/src/InputConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/InputConfig.cpp -------------------------------------------------------------------------------- /es-core/src/InputConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/InputConfig.h -------------------------------------------------------------------------------- /es-core/src/InputManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/InputManager.cpp -------------------------------------------------------------------------------- /es-core/src/InputManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/InputManager.h -------------------------------------------------------------------------------- /es-core/src/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/Log.cpp -------------------------------------------------------------------------------- /es-core/src/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/Log.h -------------------------------------------------------------------------------- /es-core/src/PowerSaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/PowerSaver.cpp -------------------------------------------------------------------------------- /es-core/src/PowerSaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/PowerSaver.h -------------------------------------------------------------------------------- /es-core/src/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/Renderer.h -------------------------------------------------------------------------------- /es-core/src/Renderer_draw_gl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/Renderer_draw_gl.cpp -------------------------------------------------------------------------------- /es-core/src/Renderer_init_sdlgl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/Renderer_init_sdlgl.cpp -------------------------------------------------------------------------------- /es-core/src/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/Settings.cpp -------------------------------------------------------------------------------- /es-core/src/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/Settings.h -------------------------------------------------------------------------------- /es-core/src/Sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/Sound.cpp -------------------------------------------------------------------------------- /es-core/src/Sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/Sound.h -------------------------------------------------------------------------------- /es-core/src/ThemeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/ThemeData.cpp -------------------------------------------------------------------------------- /es-core/src/ThemeData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/ThemeData.h -------------------------------------------------------------------------------- /es-core/src/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/Util.cpp -------------------------------------------------------------------------------- /es-core/src/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/Util.h -------------------------------------------------------------------------------- /es-core/src/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/Window.cpp -------------------------------------------------------------------------------- /es-core/src/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/Window.h -------------------------------------------------------------------------------- /es-core/src/animations/Animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/animations/Animation.h -------------------------------------------------------------------------------- /es-core/src/animations/AnimationController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/animations/AnimationController.cpp -------------------------------------------------------------------------------- /es-core/src/animations/AnimationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/animations/AnimationController.h -------------------------------------------------------------------------------- /es-core/src/animations/LambdaAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/animations/LambdaAnimation.h -------------------------------------------------------------------------------- /es-core/src/components/AnimatedImageComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/AnimatedImageComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/AnimatedImageComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/AnimatedImageComponent.h -------------------------------------------------------------------------------- /es-core/src/components/BusyComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/BusyComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/BusyComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/BusyComponent.h -------------------------------------------------------------------------------- /es-core/src/components/ButtonComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/ButtonComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/ButtonComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/ButtonComponent.h -------------------------------------------------------------------------------- /es-core/src/components/ComponentGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/ComponentGrid.cpp -------------------------------------------------------------------------------- /es-core/src/components/ComponentGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/ComponentGrid.h -------------------------------------------------------------------------------- /es-core/src/components/ComponentList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/ComponentList.cpp -------------------------------------------------------------------------------- /es-core/src/components/ComponentList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/ComponentList.h -------------------------------------------------------------------------------- /es-core/src/components/DateTimeComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/DateTimeComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/DateTimeComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/DateTimeComponent.h -------------------------------------------------------------------------------- /es-core/src/components/HelpComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/HelpComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/HelpComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/HelpComponent.h -------------------------------------------------------------------------------- /es-core/src/components/IList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/IList.h -------------------------------------------------------------------------------- /es-core/src/components/ImageComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/ImageComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/ImageComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/ImageComponent.h -------------------------------------------------------------------------------- /es-core/src/components/ImageGridComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/ImageGridComponent.h -------------------------------------------------------------------------------- /es-core/src/components/MenuComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/MenuComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/MenuComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/MenuComponent.h -------------------------------------------------------------------------------- /es-core/src/components/NinePatchComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/NinePatchComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/NinePatchComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/NinePatchComponent.h -------------------------------------------------------------------------------- /es-core/src/components/OptionListComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/OptionListComponent.h -------------------------------------------------------------------------------- /es-core/src/components/ScrollableContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/ScrollableContainer.cpp -------------------------------------------------------------------------------- /es-core/src/components/ScrollableContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/ScrollableContainer.h -------------------------------------------------------------------------------- /es-core/src/components/SliderComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/SliderComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/SliderComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/SliderComponent.h -------------------------------------------------------------------------------- /es-core/src/components/SwitchComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/SwitchComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/SwitchComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/SwitchComponent.h -------------------------------------------------------------------------------- /es-core/src/components/TextComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/TextComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/TextComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/TextComponent.h -------------------------------------------------------------------------------- /es-core/src/components/TextEditComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/TextEditComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/TextEditComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/TextEditComponent.h -------------------------------------------------------------------------------- /es-core/src/components/VideoComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/VideoComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/VideoComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/VideoComponent.h -------------------------------------------------------------------------------- /es-core/src/components/VideoPlayerComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/VideoPlayerComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/VideoPlayerComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/VideoPlayerComponent.h -------------------------------------------------------------------------------- /es-core/src/components/VideoVlcComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/VideoVlcComponent.cpp -------------------------------------------------------------------------------- /es-core/src/components/VideoVlcComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/components/VideoVlcComponent.h -------------------------------------------------------------------------------- /es-core/src/guis/GuiDetectDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/guis/GuiDetectDevice.cpp -------------------------------------------------------------------------------- /es-core/src/guis/GuiDetectDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/guis/GuiDetectDevice.h -------------------------------------------------------------------------------- /es-core/src/guis/GuiInputConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/guis/GuiInputConfig.cpp -------------------------------------------------------------------------------- /es-core/src/guis/GuiInputConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/guis/GuiInputConfig.h -------------------------------------------------------------------------------- /es-core/src/guis/GuiMsgBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/guis/GuiMsgBox.cpp -------------------------------------------------------------------------------- /es-core/src/guis/GuiMsgBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/guis/GuiMsgBox.h -------------------------------------------------------------------------------- /es-core/src/guis/GuiTextEditPopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/guis/GuiTextEditPopup.cpp -------------------------------------------------------------------------------- /es-core/src/guis/GuiTextEditPopup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/guis/GuiTextEditPopup.h -------------------------------------------------------------------------------- /es-core/src/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/platform.cpp -------------------------------------------------------------------------------- /es-core/src/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/platform.h -------------------------------------------------------------------------------- /es-core/src/resources/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/resources/Font.cpp -------------------------------------------------------------------------------- /es-core/src/resources/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/resources/Font.h -------------------------------------------------------------------------------- /es-core/src/resources/ResourceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/resources/ResourceManager.cpp -------------------------------------------------------------------------------- /es-core/src/resources/ResourceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/resources/ResourceManager.h -------------------------------------------------------------------------------- /es-core/src/resources/TextureData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/resources/TextureData.cpp -------------------------------------------------------------------------------- /es-core/src/resources/TextureData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/resources/TextureData.h -------------------------------------------------------------------------------- /es-core/src/resources/TextureDataManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/resources/TextureDataManager.cpp -------------------------------------------------------------------------------- /es-core/src/resources/TextureDataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/resources/TextureDataManager.h -------------------------------------------------------------------------------- /es-core/src/resources/TextureResource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/resources/TextureResource.cpp -------------------------------------------------------------------------------- /es-core/src/resources/TextureResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/es-core/src/resources/TextureResource.h -------------------------------------------------------------------------------- /external/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/external/CMakeLists.txt -------------------------------------------------------------------------------- /external/nanosvg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/external/nanosvg/CMakeLists.txt -------------------------------------------------------------------------------- /external/nanosvg/nanosvg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/external/nanosvg/nanosvg.h -------------------------------------------------------------------------------- /external/nanosvg/nanosvg_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/external/nanosvg/nanosvg_license.txt -------------------------------------------------------------------------------- /external/nanosvg/nanosvgrast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/external/nanosvg/nanosvgrast.h -------------------------------------------------------------------------------- /external/nanosvg/src/nanosvg_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/external/nanosvg/src/nanosvg_impl.cpp -------------------------------------------------------------------------------- /opensans_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zigurana/EmulationStation/HEAD/opensans_license.txt --------------------------------------------------------------------------------