├── .gitignore ├── AGAWide-Background.iff ├── AGAWide-Empty.iff ├── AGS2.conf ├── AGS2.e ├── AGS2Background.iff ├── AGS2Helper.e ├── AGS2Menu.e ├── Empty.iff ├── Makefile ├── Old ├── ArcadeGameSelector.e ├── agsimgloader.e └── chunkbuffer.e ├── README.markdown ├── Startup-Sequence ├── Test ├── lowlevel.e ├── test.e ├── testconf.e ├── testimgloader.e └── testnav.e ├── WB13-Background.iff ├── WB13-Empty.iff ├── agsconf.e ├── agsdefs.e ├── agsil.e ├── agsmenupos.e ├── agsnav.e ├── benchmark.e ├── ilbmloader.e ├── imgtoiff.py ├── palfade.e ├── rgbcolor.e └── sorting_table ├── make_sorting_table.py └── sorting_table /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/.gitignore -------------------------------------------------------------------------------- /AGAWide-Background.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/AGAWide-Background.iff -------------------------------------------------------------------------------- /AGAWide-Empty.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/AGAWide-Empty.iff -------------------------------------------------------------------------------- /AGS2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/AGS2.conf -------------------------------------------------------------------------------- /AGS2.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/AGS2.e -------------------------------------------------------------------------------- /AGS2Background.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/AGS2Background.iff -------------------------------------------------------------------------------- /AGS2Helper.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/AGS2Helper.e -------------------------------------------------------------------------------- /AGS2Menu.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/AGS2Menu.e -------------------------------------------------------------------------------- /Empty.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/Empty.iff -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/Makefile -------------------------------------------------------------------------------- /Old/ArcadeGameSelector.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/Old/ArcadeGameSelector.e -------------------------------------------------------------------------------- /Old/agsimgloader.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/Old/agsimgloader.e -------------------------------------------------------------------------------- /Old/chunkbuffer.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/Old/chunkbuffer.e -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/README.markdown -------------------------------------------------------------------------------- /Startup-Sequence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/Startup-Sequence -------------------------------------------------------------------------------- /Test/lowlevel.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/Test/lowlevel.e -------------------------------------------------------------------------------- /Test/test.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/Test/test.e -------------------------------------------------------------------------------- /Test/testconf.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/Test/testconf.e -------------------------------------------------------------------------------- /Test/testimgloader.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/Test/testimgloader.e -------------------------------------------------------------------------------- /Test/testnav.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/Test/testnav.e -------------------------------------------------------------------------------- /WB13-Background.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/WB13-Background.iff -------------------------------------------------------------------------------- /WB13-Empty.iff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/WB13-Empty.iff -------------------------------------------------------------------------------- /agsconf.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/agsconf.e -------------------------------------------------------------------------------- /agsdefs.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/agsdefs.e -------------------------------------------------------------------------------- /agsil.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/agsil.e -------------------------------------------------------------------------------- /agsmenupos.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/agsmenupos.e -------------------------------------------------------------------------------- /agsnav.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/agsnav.e -------------------------------------------------------------------------------- /benchmark.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/benchmark.e -------------------------------------------------------------------------------- /ilbmloader.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/ilbmloader.e -------------------------------------------------------------------------------- /imgtoiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/imgtoiff.py -------------------------------------------------------------------------------- /palfade.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/palfade.e -------------------------------------------------------------------------------- /rgbcolor.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/rgbcolor.e -------------------------------------------------------------------------------- /sorting_table/make_sorting_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/sorting_table/make_sorting_table.py -------------------------------------------------------------------------------- /sorting_table/sorting_table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagerValp/ArcadeGameSelector/HEAD/sorting_table/sorting_table --------------------------------------------------------------------------------