├── .gitignore ├── LICENSE ├── MagikoopaUI ├── Filesystem │ ├── compressedfile.h │ ├── externalfile.cpp │ ├── externalfile.h │ ├── externalfilesystem.cpp │ ├── externalfilesystem.h │ ├── filebase.cpp │ ├── filebase.h │ ├── filecontainer.h │ ├── filesystem.h │ ├── filesystembase.h │ ├── memoryfile.cpp │ ├── memoryfile.h │ ├── plainarchive.cpp │ ├── plainarchive.h │ ├── sarcfilesystem.cpp │ ├── sarcfilesystem.h │ ├── yaz0file.cpp │ └── yaz0file.h ├── Magikoopa.pro ├── exheader.cpp ├── exheader.h ├── hooklinker.cpp ├── hooklinker.h ├── hooks.cpp ├── hooks.h ├── magikoopa_data │ └── icons │ │ ├── error.png │ │ ├── icon.png │ │ └── warning.png ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── patchcompiler.cpp ├── patchcompiler.h ├── patchmaker.cpp ├── patchmaker.h ├── symtable.cpp └── symtable.h ├── PatchTemplate ├── Makefile ├── loader │ ├── Makefile │ └── source │ │ ├── hooks.hks │ │ ├── loader.c │ │ └── svc.s └── source │ └── CUSTOM CODE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/LICENSE -------------------------------------------------------------------------------- /MagikoopaUI/Filesystem/compressedfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/Filesystem/compressedfile.h -------------------------------------------------------------------------------- /MagikoopaUI/Filesystem/externalfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/Filesystem/externalfile.cpp -------------------------------------------------------------------------------- /MagikoopaUI/Filesystem/externalfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/Filesystem/externalfile.h -------------------------------------------------------------------------------- /MagikoopaUI/Filesystem/externalfilesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/Filesystem/externalfilesystem.cpp -------------------------------------------------------------------------------- /MagikoopaUI/Filesystem/externalfilesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/Filesystem/externalfilesystem.h -------------------------------------------------------------------------------- /MagikoopaUI/Filesystem/filebase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/Filesystem/filebase.cpp -------------------------------------------------------------------------------- /MagikoopaUI/Filesystem/filebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/Filesystem/filebase.h -------------------------------------------------------------------------------- /MagikoopaUI/Filesystem/filecontainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/Filesystem/filecontainer.h -------------------------------------------------------------------------------- /MagikoopaUI/Filesystem/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/Filesystem/filesystem.h -------------------------------------------------------------------------------- /MagikoopaUI/Filesystem/filesystembase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/Filesystem/filesystembase.h -------------------------------------------------------------------------------- /MagikoopaUI/Filesystem/memoryfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/Filesystem/memoryfile.cpp -------------------------------------------------------------------------------- /MagikoopaUI/Filesystem/memoryfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/Filesystem/memoryfile.h -------------------------------------------------------------------------------- /MagikoopaUI/Filesystem/plainarchive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/Filesystem/plainarchive.cpp -------------------------------------------------------------------------------- /MagikoopaUI/Filesystem/plainarchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/Filesystem/plainarchive.h -------------------------------------------------------------------------------- /MagikoopaUI/Filesystem/sarcfilesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/Filesystem/sarcfilesystem.cpp -------------------------------------------------------------------------------- /MagikoopaUI/Filesystem/sarcfilesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/Filesystem/sarcfilesystem.h -------------------------------------------------------------------------------- /MagikoopaUI/Filesystem/yaz0file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/Filesystem/yaz0file.cpp -------------------------------------------------------------------------------- /MagikoopaUI/Filesystem/yaz0file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/Filesystem/yaz0file.h -------------------------------------------------------------------------------- /MagikoopaUI/Magikoopa.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/Magikoopa.pro -------------------------------------------------------------------------------- /MagikoopaUI/exheader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/exheader.cpp -------------------------------------------------------------------------------- /MagikoopaUI/exheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/exheader.h -------------------------------------------------------------------------------- /MagikoopaUI/hooklinker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/hooklinker.cpp -------------------------------------------------------------------------------- /MagikoopaUI/hooklinker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/hooklinker.h -------------------------------------------------------------------------------- /MagikoopaUI/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/hooks.cpp -------------------------------------------------------------------------------- /MagikoopaUI/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/hooks.h -------------------------------------------------------------------------------- /MagikoopaUI/magikoopa_data/icons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/magikoopa_data/icons/error.png -------------------------------------------------------------------------------- /MagikoopaUI/magikoopa_data/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/magikoopa_data/icons/icon.png -------------------------------------------------------------------------------- /MagikoopaUI/magikoopa_data/icons/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/magikoopa_data/icons/warning.png -------------------------------------------------------------------------------- /MagikoopaUI/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/main.cpp -------------------------------------------------------------------------------- /MagikoopaUI/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/mainwindow.cpp -------------------------------------------------------------------------------- /MagikoopaUI/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/mainwindow.h -------------------------------------------------------------------------------- /MagikoopaUI/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/mainwindow.ui -------------------------------------------------------------------------------- /MagikoopaUI/patchcompiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/patchcompiler.cpp -------------------------------------------------------------------------------- /MagikoopaUI/patchcompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/patchcompiler.h -------------------------------------------------------------------------------- /MagikoopaUI/patchmaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/patchmaker.cpp -------------------------------------------------------------------------------- /MagikoopaUI/patchmaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/patchmaker.h -------------------------------------------------------------------------------- /MagikoopaUI/symtable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/symtable.cpp -------------------------------------------------------------------------------- /MagikoopaUI/symtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/MagikoopaUI/symtable.h -------------------------------------------------------------------------------- /PatchTemplate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/PatchTemplate/Makefile -------------------------------------------------------------------------------- /PatchTemplate/loader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/PatchTemplate/loader/Makefile -------------------------------------------------------------------------------- /PatchTemplate/loader/source/hooks.hks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/PatchTemplate/loader/source/hooks.hks -------------------------------------------------------------------------------- /PatchTemplate/loader/source/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/PatchTemplate/loader/source/loader.c -------------------------------------------------------------------------------- /PatchTemplate/loader/source/svc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/PatchTemplate/loader/source/svc.s -------------------------------------------------------------------------------- /PatchTemplate/source/CUSTOM CODE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RicBent/Magikoopa/HEAD/README.md --------------------------------------------------------------------------------