├── .clang-format ├── .gitignore ├── .vscode ├── c_cpp_properties.json └── settings.json ├── LICENSE ├── Makefile ├── README.md ├── assets ├── audio │ ├── click.wav │ └── hint.wav ├── backgrounds │ ├── test_image_0.png │ ├── test_image_1.png │ ├── test_image_2.png │ ├── test_image_3.png │ ├── test_image_4.png │ ├── test_image_5.png │ ├── test_image_6.png │ └── test_image_7.png ├── fonts │ └── RobotoMono-Regular.ttf └── images │ ├── arrow.png │ ├── bar_selected.png │ ├── bar_unselected.png │ ├── box_highlight.png │ ├── box_selected.png │ ├── box_unselected.png │ ├── screen0_background.png │ ├── screen1_background.png │ ├── screen2_background.png │ ├── screen3_background.png │ ├── screen4_background.png │ └── video_adjust.png ├── screenshots └── main_menu.png └── source ├── common.cpp ├── common.h ├── console.cpp ├── console.h ├── crc32.cpp ├── crc32.h ├── i2c_map.h ├── main.cpp ├── scene.cpp ├── scene.h ├── scene0.cpp ├── scene0.h ├── scene1.cpp ├── scene1.h ├── scene2.cpp ├── scene2.h ├── scene3.cpp ├── scene3.h ├── scene4.cpp └── scene4.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/README.md -------------------------------------------------------------------------------- /assets/audio/click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/assets/audio/click.wav -------------------------------------------------------------------------------- /assets/audio/hint.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/assets/audio/hint.wav -------------------------------------------------------------------------------- /assets/backgrounds/test_image_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/assets/backgrounds/test_image_0.png -------------------------------------------------------------------------------- /assets/backgrounds/test_image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/assets/backgrounds/test_image_1.png -------------------------------------------------------------------------------- /assets/backgrounds/test_image_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/assets/backgrounds/test_image_2.png -------------------------------------------------------------------------------- /assets/backgrounds/test_image_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/assets/backgrounds/test_image_3.png -------------------------------------------------------------------------------- /assets/backgrounds/test_image_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/assets/backgrounds/test_image_4.png -------------------------------------------------------------------------------- /assets/backgrounds/test_image_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/assets/backgrounds/test_image_5.png -------------------------------------------------------------------------------- /assets/backgrounds/test_image_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/assets/backgrounds/test_image_6.png -------------------------------------------------------------------------------- /assets/backgrounds/test_image_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/assets/backgrounds/test_image_7.png -------------------------------------------------------------------------------- /assets/fonts/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/assets/fonts/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /assets/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/assets/images/arrow.png -------------------------------------------------------------------------------- /assets/images/bar_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/assets/images/bar_selected.png -------------------------------------------------------------------------------- /assets/images/bar_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/assets/images/bar_unselected.png -------------------------------------------------------------------------------- /assets/images/box_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/assets/images/box_highlight.png -------------------------------------------------------------------------------- /assets/images/box_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/assets/images/box_selected.png -------------------------------------------------------------------------------- /assets/images/box_unselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/assets/images/box_unselected.png -------------------------------------------------------------------------------- /assets/images/screen0_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/assets/images/screen0_background.png -------------------------------------------------------------------------------- /assets/images/screen1_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/assets/images/screen1_background.png -------------------------------------------------------------------------------- /assets/images/screen2_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/assets/images/screen2_background.png -------------------------------------------------------------------------------- /assets/images/screen3_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/assets/images/screen3_background.png -------------------------------------------------------------------------------- /assets/images/screen4_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/assets/images/screen4_background.png -------------------------------------------------------------------------------- /assets/images/video_adjust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/assets/images/video_adjust.png -------------------------------------------------------------------------------- /screenshots/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/screenshots/main_menu.png -------------------------------------------------------------------------------- /source/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/source/common.cpp -------------------------------------------------------------------------------- /source/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/source/common.h -------------------------------------------------------------------------------- /source/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/source/console.cpp -------------------------------------------------------------------------------- /source/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/source/console.h -------------------------------------------------------------------------------- /source/crc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/source/crc32.cpp -------------------------------------------------------------------------------- /source/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/source/crc32.h -------------------------------------------------------------------------------- /source/i2c_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/source/i2c_map.h -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/source/main.cpp -------------------------------------------------------------------------------- /source/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/source/scene.cpp -------------------------------------------------------------------------------- /source/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/source/scene.h -------------------------------------------------------------------------------- /source/scene0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/source/scene0.cpp -------------------------------------------------------------------------------- /source/scene0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/source/scene0.h -------------------------------------------------------------------------------- /source/scene1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/source/scene1.cpp -------------------------------------------------------------------------------- /source/scene1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/source/scene1.h -------------------------------------------------------------------------------- /source/scene2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/source/scene2.cpp -------------------------------------------------------------------------------- /source/scene2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/source/scene2.h -------------------------------------------------------------------------------- /source/scene3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/source/scene3.cpp -------------------------------------------------------------------------------- /source/scene3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/source/scene3.h -------------------------------------------------------------------------------- /source/scene4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/source/scene4.cpp -------------------------------------------------------------------------------- /source/scene4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MakeMHz/xbox-hdmi-app/HEAD/source/scene4.h --------------------------------------------------------------------------------