├── .gitattributes ├── .gitignore ├── License.txt ├── Makefile ├── README.md ├── data ├── action.zss ├── common.air ├── common.cmd ├── common.const ├── common1.cns.zss ├── dizzy.zss ├── guardbreak.zss ├── score.zss ├── system.base.def ├── tag.zss └── training.zss ├── external ├── icons │ ├── IkemenCylia_256.png │ ├── IkemenCylia_48.png │ └── IkemenCylia_96.png ├── mods │ └── .keep ├── script │ ├── default.lua │ ├── global.lua │ ├── json.lua │ ├── main.lua │ ├── menu.lua │ ├── motif.lua │ ├── options.lua │ ├── randomtest.lua │ ├── screenpack.lua │ ├── start.lua │ ├── storyboard.lua │ └── version └── shaders │ ├── HQ2x.frag │ ├── HQ2x.vert │ ├── HQ4x.frag │ ├── HQ4x.vert │ ├── Scanline.frag │ └── Scanline.vert ├── font ├── default-3x5-bold.def ├── default-3x5-bold.sff ├── default-3x5.def └── default-3x5.sff ├── go.mod ├── go.sum ├── src ├── anim.go ├── bgdef.go ├── bytecode.go ├── camera.go ├── char.go ├── common.go ├── compiler.go ├── compiler_functions.go ├── font.go ├── image.go ├── input.go ├── lifebar.go ├── main.go ├── render.go ├── script.go ├── sound.go ├── stage.go ├── stdout_windows.go └── system.go └── windres ├── Icon's image files ├── Cylia │ ├── IkemenCylia.png │ └── ikemen.svg ├── V1 │ ├── 16x16.png │ ├── 24x24.png │ ├── 256x256.png │ ├── 32x32.png │ ├── 48x48.png │ └── 96x96.png └── V2 │ ├── 16x16.png │ ├── 24x24.png │ ├── 256x256.png │ ├── 32x32.png │ ├── 384x384.png │ ├── 4324324322.png │ ├── 48x48.png │ └── 96x96.png ├── Ikemen.ico ├── Ikemen_Cylia.ico ├── Ikemen_Cylia_x64.syso ├── Ikemen_Cylia_x86.syso ├── Ikemen_GO.exe.manifest ├── Ikemen_GO.rc ├── Ikemen_V2.ico ├── Ikemen_V2_x64.syso ├── Ikemen_V2_x86.syso └── What are and how to use these files.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/.gitignore -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/License.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/README.md -------------------------------------------------------------------------------- /data/action.zss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/data/action.zss -------------------------------------------------------------------------------- /data/common.air: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/common.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/data/common.cmd -------------------------------------------------------------------------------- /data/common.const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/data/common.const -------------------------------------------------------------------------------- /data/common1.cns.zss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/data/common1.cns.zss -------------------------------------------------------------------------------- /data/dizzy.zss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/data/dizzy.zss -------------------------------------------------------------------------------- /data/guardbreak.zss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/data/guardbreak.zss -------------------------------------------------------------------------------- /data/score.zss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/data/score.zss -------------------------------------------------------------------------------- /data/system.base.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/data/system.base.def -------------------------------------------------------------------------------- /data/tag.zss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/data/tag.zss -------------------------------------------------------------------------------- /data/training.zss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/data/training.zss -------------------------------------------------------------------------------- /external/icons/IkemenCylia_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/external/icons/IkemenCylia_256.png -------------------------------------------------------------------------------- /external/icons/IkemenCylia_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/external/icons/IkemenCylia_48.png -------------------------------------------------------------------------------- /external/icons/IkemenCylia_96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/external/icons/IkemenCylia_96.png -------------------------------------------------------------------------------- /external/mods/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/script/default.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/external/script/default.lua -------------------------------------------------------------------------------- /external/script/global.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/external/script/global.lua -------------------------------------------------------------------------------- /external/script/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/external/script/json.lua -------------------------------------------------------------------------------- /external/script/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/external/script/main.lua -------------------------------------------------------------------------------- /external/script/menu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/external/script/menu.lua -------------------------------------------------------------------------------- /external/script/motif.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/external/script/motif.lua -------------------------------------------------------------------------------- /external/script/options.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/external/script/options.lua -------------------------------------------------------------------------------- /external/script/randomtest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/external/script/randomtest.lua -------------------------------------------------------------------------------- /external/script/screenpack.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/external/script/screenpack.lua -------------------------------------------------------------------------------- /external/script/start.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/external/script/start.lua -------------------------------------------------------------------------------- /external/script/storyboard.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/external/script/storyboard.lua -------------------------------------------------------------------------------- /external/script/version: -------------------------------------------------------------------------------- 1 | git-ver -------------------------------------------------------------------------------- /external/shaders/HQ2x.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/external/shaders/HQ2x.frag -------------------------------------------------------------------------------- /external/shaders/HQ2x.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/external/shaders/HQ2x.vert -------------------------------------------------------------------------------- /external/shaders/HQ4x.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/external/shaders/HQ4x.frag -------------------------------------------------------------------------------- /external/shaders/HQ4x.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/external/shaders/HQ4x.vert -------------------------------------------------------------------------------- /external/shaders/Scanline.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/external/shaders/Scanline.frag -------------------------------------------------------------------------------- /external/shaders/Scanline.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/external/shaders/Scanline.vert -------------------------------------------------------------------------------- /font/default-3x5-bold.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/font/default-3x5-bold.def -------------------------------------------------------------------------------- /font/default-3x5-bold.sff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/font/default-3x5-bold.sff -------------------------------------------------------------------------------- /font/default-3x5.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/font/default-3x5.def -------------------------------------------------------------------------------- /font/default-3x5.sff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/font/default-3x5.sff -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/go.sum -------------------------------------------------------------------------------- /src/anim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/src/anim.go -------------------------------------------------------------------------------- /src/bgdef.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/src/bgdef.go -------------------------------------------------------------------------------- /src/bytecode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/src/bytecode.go -------------------------------------------------------------------------------- /src/camera.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/src/camera.go -------------------------------------------------------------------------------- /src/char.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/src/char.go -------------------------------------------------------------------------------- /src/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/src/common.go -------------------------------------------------------------------------------- /src/compiler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/src/compiler.go -------------------------------------------------------------------------------- /src/compiler_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/src/compiler_functions.go -------------------------------------------------------------------------------- /src/font.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/src/font.go -------------------------------------------------------------------------------- /src/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/src/image.go -------------------------------------------------------------------------------- /src/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/src/input.go -------------------------------------------------------------------------------- /src/lifebar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/src/lifebar.go -------------------------------------------------------------------------------- /src/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/src/main.go -------------------------------------------------------------------------------- /src/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/src/render.go -------------------------------------------------------------------------------- /src/script.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/src/script.go -------------------------------------------------------------------------------- /src/sound.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/src/sound.go -------------------------------------------------------------------------------- /src/stage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/src/stage.go -------------------------------------------------------------------------------- /src/stdout_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/src/stdout_windows.go -------------------------------------------------------------------------------- /src/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/src/system.go -------------------------------------------------------------------------------- /windres/Icon's image files/Cylia/IkemenCylia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/windres/Icon's image files/Cylia/IkemenCylia.png -------------------------------------------------------------------------------- /windres/Icon's image files/Cylia/ikemen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/windres/Icon's image files/Cylia/ikemen.svg -------------------------------------------------------------------------------- /windres/Icon's image files/V1/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/windres/Icon's image files/V1/16x16.png -------------------------------------------------------------------------------- /windres/Icon's image files/V1/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/windres/Icon's image files/V1/24x24.png -------------------------------------------------------------------------------- /windres/Icon's image files/V1/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/windres/Icon's image files/V1/256x256.png -------------------------------------------------------------------------------- /windres/Icon's image files/V1/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/windres/Icon's image files/V1/32x32.png -------------------------------------------------------------------------------- /windres/Icon's image files/V1/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/windres/Icon's image files/V1/48x48.png -------------------------------------------------------------------------------- /windres/Icon's image files/V1/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/windres/Icon's image files/V1/96x96.png -------------------------------------------------------------------------------- /windres/Icon's image files/V2/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/windres/Icon's image files/V2/16x16.png -------------------------------------------------------------------------------- /windres/Icon's image files/V2/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/windres/Icon's image files/V2/24x24.png -------------------------------------------------------------------------------- /windres/Icon's image files/V2/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/windres/Icon's image files/V2/256x256.png -------------------------------------------------------------------------------- /windres/Icon's image files/V2/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/windres/Icon's image files/V2/32x32.png -------------------------------------------------------------------------------- /windres/Icon's image files/V2/384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/windres/Icon's image files/V2/384x384.png -------------------------------------------------------------------------------- /windres/Icon's image files/V2/4324324322.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/windres/Icon's image files/V2/4324324322.png -------------------------------------------------------------------------------- /windres/Icon's image files/V2/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/windres/Icon's image files/V2/48x48.png -------------------------------------------------------------------------------- /windres/Icon's image files/V2/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/windres/Icon's image files/V2/96x96.png -------------------------------------------------------------------------------- /windres/Ikemen.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/windres/Ikemen.ico -------------------------------------------------------------------------------- /windres/Ikemen_Cylia.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/windres/Ikemen_Cylia.ico -------------------------------------------------------------------------------- /windres/Ikemen_Cylia_x64.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/windres/Ikemen_Cylia_x64.syso -------------------------------------------------------------------------------- /windres/Ikemen_Cylia_x86.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/windres/Ikemen_Cylia_x86.syso -------------------------------------------------------------------------------- /windres/Ikemen_GO.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/windres/Ikemen_GO.exe.manifest -------------------------------------------------------------------------------- /windres/Ikemen_GO.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/windres/Ikemen_GO.rc -------------------------------------------------------------------------------- /windres/Ikemen_V2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/windres/Ikemen_V2.ico -------------------------------------------------------------------------------- /windres/Ikemen_V2_x64.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/windres/Ikemen_V2_x64.syso -------------------------------------------------------------------------------- /windres/Ikemen_V2_x86.syso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/windres/Ikemen_V2_x86.syso -------------------------------------------------------------------------------- /windres/What are and how to use these files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/K4thos/Ikemen_GO/HEAD/windres/What are and how to use these files.txt --------------------------------------------------------------------------------