├── .github ├── FUNDING.yml └── workflows │ └── compilation.yml ├── .gitignore ├── .vscode └── settings.json ├── CMakeLists.txt ├── LICENSE ├── NotoSansJP-Regular.ttf ├── NotoSansKR-Regular.ttf ├── NotoSansSC-Regular.ttf ├── README.md ├── companion └── main.cpp ├── icudt59l ├── cnvalias.icu ├── confusables.cfu ├── ibm-5348_P100-1997.cnv ├── ibm-943_P15A-2003.cnv └── unames.icu ├── loader ├── bridge.c ├── bridge.h ├── config.h ├── dialog.c ├── dialog.h ├── elf.h ├── main.c ├── main.h ├── so_util.c ├── so_util.h ├── stb_image.c ├── stb_image.h ├── stb_truetype.c └── stb_truetype.h ├── sce_sys ├── icon0.png └── livearea │ └── contents │ ├── bg0.png │ ├── config.png │ ├── startup.png │ └── template.xml ├── screenshots └── game.png └── shaders ├── 1_Negative_f.cg ├── 1_Negative_v.cg ├── 2_FXAA_f.cg ├── 2_FXAA_v.cg ├── 3_Sepia_f.cg ├── 3_Sepia_v.cg ├── 4_Greyscale_f.cg └── 4_Greyscale_v.cg /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: frangar 2 | -------------------------------------------------------------------------------- /.github/workflows/compilation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/.github/workflows/compilation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/LICENSE -------------------------------------------------------------------------------- /NotoSansJP-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/NotoSansJP-Regular.ttf -------------------------------------------------------------------------------- /NotoSansKR-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/NotoSansKR-Regular.ttf -------------------------------------------------------------------------------- /NotoSansSC-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/NotoSansSC-Regular.ttf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/README.md -------------------------------------------------------------------------------- /companion/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/companion/main.cpp -------------------------------------------------------------------------------- /icudt59l/cnvalias.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/icudt59l/cnvalias.icu -------------------------------------------------------------------------------- /icudt59l/confusables.cfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/icudt59l/confusables.cfu -------------------------------------------------------------------------------- /icudt59l/ibm-5348_P100-1997.cnv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/icudt59l/ibm-5348_P100-1997.cnv -------------------------------------------------------------------------------- /icudt59l/ibm-943_P15A-2003.cnv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/icudt59l/ibm-943_P15A-2003.cnv -------------------------------------------------------------------------------- /icudt59l/unames.icu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/icudt59l/unames.icu -------------------------------------------------------------------------------- /loader/bridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/loader/bridge.c -------------------------------------------------------------------------------- /loader/bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/loader/bridge.h -------------------------------------------------------------------------------- /loader/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/loader/config.h -------------------------------------------------------------------------------- /loader/dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/loader/dialog.c -------------------------------------------------------------------------------- /loader/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/loader/dialog.h -------------------------------------------------------------------------------- /loader/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/loader/elf.h -------------------------------------------------------------------------------- /loader/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/loader/main.c -------------------------------------------------------------------------------- /loader/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/loader/main.h -------------------------------------------------------------------------------- /loader/so_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/loader/so_util.c -------------------------------------------------------------------------------- /loader/so_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/loader/so_util.h -------------------------------------------------------------------------------- /loader/stb_image.c: -------------------------------------------------------------------------------- 1 | #define STB_IMAGE_IMPLEMENTATION 2 | #include "stb_image.h" -------------------------------------------------------------------------------- /loader/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/loader/stb_image.h -------------------------------------------------------------------------------- /loader/stb_truetype.c: -------------------------------------------------------------------------------- 1 | #define STB_TRUETYPE_IMPLEMENTATION 2 | #include "stb_truetype.h" -------------------------------------------------------------------------------- /loader/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/loader/stb_truetype.h -------------------------------------------------------------------------------- /sce_sys/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/sce_sys/icon0.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/bg0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/sce_sys/livearea/contents/bg0.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/sce_sys/livearea/contents/config.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/sce_sys/livearea/contents/startup.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/sce_sys/livearea/contents/template.xml -------------------------------------------------------------------------------- /screenshots/game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/screenshots/game.png -------------------------------------------------------------------------------- /shaders/1_Negative_f.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/shaders/1_Negative_f.cg -------------------------------------------------------------------------------- /shaders/1_Negative_v.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/shaders/1_Negative_v.cg -------------------------------------------------------------------------------- /shaders/2_FXAA_f.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/shaders/2_FXAA_f.cg -------------------------------------------------------------------------------- /shaders/2_FXAA_v.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/shaders/2_FXAA_v.cg -------------------------------------------------------------------------------- /shaders/3_Sepia_f.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/shaders/3_Sepia_f.cg -------------------------------------------------------------------------------- /shaders/3_Sepia_v.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/shaders/3_Sepia_v.cg -------------------------------------------------------------------------------- /shaders/4_Greyscale_f.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/shaders/4_Greyscale_f.cg -------------------------------------------------------------------------------- /shaders/4_Greyscale_v.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frangarcj/ff5_vita/HEAD/shaders/4_Greyscale_v.cg --------------------------------------------------------------------------------