├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── gamefiles ├── Common │ └── Shaders │ │ ├── blurcomposition.fsh │ │ ├── blurcomposition.vsh │ │ ├── font.fsh │ │ ├── font.vsh │ │ ├── gaussblur.fsh │ │ ├── gaussblur.vsh │ │ ├── glowsource.fsh │ │ ├── glowsource.vsh │ │ ├── graph.fsh │ │ ├── graph.vsh │ │ ├── light.fsh │ │ ├── light.vsh │ │ ├── meshoutlines.fsh │ │ ├── meshoutlines.vsh │ │ ├── mobileitdroundprogress.fsh │ │ ├── mobileitdroundprogress.vsh │ │ ├── mobilemeshsolid.fsh │ │ ├── mobilemeshsolid.vsh │ │ ├── mobilemeshtranslucent.fsh │ │ ├── mobilemeshtranslucent.vsh │ │ ├── mobilepostprocesskosovo.fsh │ │ ├── mobilepostprocesskosovo.vsh │ │ ├── mobilepostprocessoutlines.fsh │ │ ├── mobilepostprocessoutlines.vsh │ │ ├── particle.fsh │ │ ├── particle.vsh │ │ ├── postfseupscale.fsh │ │ ├── postfseupscale.vsh │ │ ├── sfxquad.fsh │ │ ├── sfxquad.vsh │ │ ├── simpleshader.fsh │ │ ├── simpleshader.vsh │ │ ├── ui.fsh │ │ ├── ui.vsh │ │ ├── video.fsh │ │ └── video.vsh └── settings.cfg ├── livearea ├── bg.png ├── frame1.png ├── frame2.png ├── icon0.png └── template.xml ├── loader ├── config.h ├── dialog.c ├── dialog.h ├── elf.h ├── main.c ├── main.h ├── sha1.c ├── sha1.h ├── so_util.c └── so_util.h └── screenshots └── game.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/README.md -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/blurcomposition.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/blurcomposition.fsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/blurcomposition.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/blurcomposition.vsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/font.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/font.fsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/font.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/font.vsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/gaussblur.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/gaussblur.fsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/gaussblur.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/gaussblur.vsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/glowsource.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/glowsource.fsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/glowsource.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/glowsource.vsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/graph.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/graph.fsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/graph.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/graph.vsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/light.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/light.fsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/light.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/light.vsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/meshoutlines.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/meshoutlines.fsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/meshoutlines.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/meshoutlines.vsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/mobileitdroundprogress.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/mobileitdroundprogress.fsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/mobileitdroundprogress.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/mobileitdroundprogress.vsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/mobilemeshsolid.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/mobilemeshsolid.fsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/mobilemeshsolid.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/mobilemeshsolid.vsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/mobilemeshtranslucent.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/mobilemeshtranslucent.fsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/mobilemeshtranslucent.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/mobilemeshtranslucent.vsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/mobilepostprocesskosovo.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/mobilepostprocesskosovo.fsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/mobilepostprocesskosovo.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/mobilepostprocesskosovo.vsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/mobilepostprocessoutlines.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/mobilepostprocessoutlines.fsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/mobilepostprocessoutlines.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/mobilepostprocessoutlines.vsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/particle.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/particle.fsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/particle.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/particle.vsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/postfseupscale.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/postfseupscale.fsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/postfseupscale.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/postfseupscale.vsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/sfxquad.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/sfxquad.fsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/sfxquad.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/sfxquad.vsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/simpleshader.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/simpleshader.fsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/simpleshader.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/simpleshader.vsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/ui.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/ui.fsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/ui.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/ui.vsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/video.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/video.fsh -------------------------------------------------------------------------------- /gamefiles/Common/Shaders/video.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/gamefiles/Common/Shaders/video.vsh -------------------------------------------------------------------------------- /gamefiles/settings.cfg: -------------------------------------------------------------------------------- 1 | enable_dlcs=0 2 | -------------------------------------------------------------------------------- /livearea/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/livearea/bg.png -------------------------------------------------------------------------------- /livearea/frame1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/livearea/frame1.png -------------------------------------------------------------------------------- /livearea/frame2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/livearea/frame2.png -------------------------------------------------------------------------------- /livearea/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/livearea/icon0.png -------------------------------------------------------------------------------- /livearea/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/livearea/template.xml -------------------------------------------------------------------------------- /loader/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/loader/config.h -------------------------------------------------------------------------------- /loader/dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/loader/dialog.c -------------------------------------------------------------------------------- /loader/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/loader/dialog.h -------------------------------------------------------------------------------- /loader/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/loader/elf.h -------------------------------------------------------------------------------- /loader/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/loader/main.c -------------------------------------------------------------------------------- /loader/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/loader/main.h -------------------------------------------------------------------------------- /loader/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/loader/sha1.c -------------------------------------------------------------------------------- /loader/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/loader/sha1.h -------------------------------------------------------------------------------- /loader/so_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/loader/so_util.c -------------------------------------------------------------------------------- /loader/so_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/loader/so_util.h -------------------------------------------------------------------------------- /screenshots/game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/twom_vita/HEAD/screenshots/game.png --------------------------------------------------------------------------------