├── AVIWrapper.cpp ├── AVIWrapper.h ├── AnimationInfo.cpp ├── AnimationInfo.h ├── BaseReader.h ├── ButtonLink.h ├── COPYING ├── DirectReader.cpp ├── DirectReader.h ├── DirtyRect.cpp ├── DirtyRect.h ├── FontInfo.cpp ├── FontInfo.h ├── LUAHandler.cpp ├── LUAHandler.h ├── Makefile.ARMLinux ├── Makefile.GP2X ├── Makefile.Linux ├── Makefile.MacOSX ├── Makefile.PSP ├── Makefile.Pandora ├── Makefile.Win ├── Makefile.WinCE ├── Makefile.iPhone ├── Makefile.iPodLinux ├── Makefile.onscripter ├── NsaReader.cpp ├── NsaReader.h ├── ONScripter.cpp ├── ONScripter.h ├── ONScripter_animation.cpp ├── ONScripter_command.cpp ├── ONScripter_directdraw.cpp ├── ONScripter_effect.cpp ├── ONScripter_effect_breakup.cpp ├── ONScripter_event.cpp ├── ONScripter_file.cpp ├── ONScripter_file2.cpp ├── ONScripter_image.cpp ├── ONScripter_lut.cpp ├── ONScripter_rmenu.cpp ├── ONScripter_sound.cpp ├── ONScripter_text.cpp ├── Parallel.h ├── README.md ├── SarReader.cpp ├── SarReader.h ├── ScriptHandler.cpp ├── ScriptHandler.h ├── ScriptParser.cpp ├── ScriptParser.h ├── ScriptParser_command.cpp ├── Utils.h ├── builtin_dll ├── ONScripter_effect_cascade.cpp ├── ONScripter_effect_trig.cpp ├── layer_oldmovie.cpp └── layer_snow.cpp ├── builtin_layer.h ├── coding2utf16.cpp ├── coding2utf16.h ├── conv_shared.cpp ├── direct_draw.h ├── gbk2utf16.cpp ├── gbk2utf16.h ├── nsaconv.cpp ├── nsadec.cpp ├── nscriptdecode.cpp ├── onscripter_main.cpp ├── resize_image.cpp ├── resize_image.h ├── sarconv.cpp ├── sardec.cpp ├── simd ├── int16x4.h ├── int16x4.inl ├── int16x8.h ├── int16x8.inl ├── int32x2.h ├── int32x2.inl ├── int32x4.h ├── int32x4.inl ├── int8x16.h ├── int8x16.inl ├── int8x4.h ├── int8x4.inl ├── int8x8.h ├── int8x8.inl ├── simd.h ├── vec128.h └── vec128.inl ├── simple_aviplay.cpp ├── sjis2utf16.cpp ├── sjis2utf16.h └── version.h /AVIWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/AVIWrapper.cpp -------------------------------------------------------------------------------- /AVIWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/AVIWrapper.h -------------------------------------------------------------------------------- /AnimationInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/AnimationInfo.cpp -------------------------------------------------------------------------------- /AnimationInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/AnimationInfo.h -------------------------------------------------------------------------------- /BaseReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/BaseReader.h -------------------------------------------------------------------------------- /ButtonLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/ButtonLink.h -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/COPYING -------------------------------------------------------------------------------- /DirectReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/DirectReader.cpp -------------------------------------------------------------------------------- /DirectReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/DirectReader.h -------------------------------------------------------------------------------- /DirtyRect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/DirtyRect.cpp -------------------------------------------------------------------------------- /DirtyRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/DirtyRect.h -------------------------------------------------------------------------------- /FontInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/FontInfo.cpp -------------------------------------------------------------------------------- /FontInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/FontInfo.h -------------------------------------------------------------------------------- /LUAHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/LUAHandler.cpp -------------------------------------------------------------------------------- /LUAHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/LUAHandler.h -------------------------------------------------------------------------------- /Makefile.ARMLinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/Makefile.ARMLinux -------------------------------------------------------------------------------- /Makefile.GP2X: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/Makefile.GP2X -------------------------------------------------------------------------------- /Makefile.Linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/Makefile.Linux -------------------------------------------------------------------------------- /Makefile.MacOSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/Makefile.MacOSX -------------------------------------------------------------------------------- /Makefile.PSP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/Makefile.PSP -------------------------------------------------------------------------------- /Makefile.Pandora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/Makefile.Pandora -------------------------------------------------------------------------------- /Makefile.Win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/Makefile.Win -------------------------------------------------------------------------------- /Makefile.WinCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/Makefile.WinCE -------------------------------------------------------------------------------- /Makefile.iPhone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/Makefile.iPhone -------------------------------------------------------------------------------- /Makefile.iPodLinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/Makefile.iPodLinux -------------------------------------------------------------------------------- /Makefile.onscripter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/Makefile.onscripter -------------------------------------------------------------------------------- /NsaReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/NsaReader.cpp -------------------------------------------------------------------------------- /NsaReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/NsaReader.h -------------------------------------------------------------------------------- /ONScripter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/ONScripter.cpp -------------------------------------------------------------------------------- /ONScripter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/ONScripter.h -------------------------------------------------------------------------------- /ONScripter_animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/ONScripter_animation.cpp -------------------------------------------------------------------------------- /ONScripter_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/ONScripter_command.cpp -------------------------------------------------------------------------------- /ONScripter_directdraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/ONScripter_directdraw.cpp -------------------------------------------------------------------------------- /ONScripter_effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/ONScripter_effect.cpp -------------------------------------------------------------------------------- /ONScripter_effect_breakup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/ONScripter_effect_breakup.cpp -------------------------------------------------------------------------------- /ONScripter_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/ONScripter_event.cpp -------------------------------------------------------------------------------- /ONScripter_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/ONScripter_file.cpp -------------------------------------------------------------------------------- /ONScripter_file2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/ONScripter_file2.cpp -------------------------------------------------------------------------------- /ONScripter_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/ONScripter_image.cpp -------------------------------------------------------------------------------- /ONScripter_lut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/ONScripter_lut.cpp -------------------------------------------------------------------------------- /ONScripter_rmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/ONScripter_rmenu.cpp -------------------------------------------------------------------------------- /ONScripter_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/ONScripter_sound.cpp -------------------------------------------------------------------------------- /ONScripter_text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/ONScripter_text.cpp -------------------------------------------------------------------------------- /Parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/Parallel.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/README.md -------------------------------------------------------------------------------- /SarReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/SarReader.cpp -------------------------------------------------------------------------------- /SarReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/SarReader.h -------------------------------------------------------------------------------- /ScriptHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/ScriptHandler.cpp -------------------------------------------------------------------------------- /ScriptHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/ScriptHandler.h -------------------------------------------------------------------------------- /ScriptParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/ScriptParser.cpp -------------------------------------------------------------------------------- /ScriptParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/ScriptParser.h -------------------------------------------------------------------------------- /ScriptParser_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/ScriptParser_command.cpp -------------------------------------------------------------------------------- /Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/Utils.h -------------------------------------------------------------------------------- /builtin_dll/ONScripter_effect_cascade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/builtin_dll/ONScripter_effect_cascade.cpp -------------------------------------------------------------------------------- /builtin_dll/ONScripter_effect_trig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/builtin_dll/ONScripter_effect_trig.cpp -------------------------------------------------------------------------------- /builtin_dll/layer_oldmovie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/builtin_dll/layer_oldmovie.cpp -------------------------------------------------------------------------------- /builtin_dll/layer_snow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/builtin_dll/layer_snow.cpp -------------------------------------------------------------------------------- /builtin_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/builtin_layer.h -------------------------------------------------------------------------------- /coding2utf16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/coding2utf16.cpp -------------------------------------------------------------------------------- /coding2utf16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/coding2utf16.h -------------------------------------------------------------------------------- /conv_shared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/conv_shared.cpp -------------------------------------------------------------------------------- /direct_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/direct_draw.h -------------------------------------------------------------------------------- /gbk2utf16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/gbk2utf16.cpp -------------------------------------------------------------------------------- /gbk2utf16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/gbk2utf16.h -------------------------------------------------------------------------------- /nsaconv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/nsaconv.cpp -------------------------------------------------------------------------------- /nsadec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/nsadec.cpp -------------------------------------------------------------------------------- /nscriptdecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/nscriptdecode.cpp -------------------------------------------------------------------------------- /onscripter_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/onscripter_main.cpp -------------------------------------------------------------------------------- /resize_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/resize_image.cpp -------------------------------------------------------------------------------- /resize_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/resize_image.h -------------------------------------------------------------------------------- /sarconv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/sarconv.cpp -------------------------------------------------------------------------------- /sardec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/sardec.cpp -------------------------------------------------------------------------------- /simd/int16x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/simd/int16x4.h -------------------------------------------------------------------------------- /simd/int16x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/simd/int16x4.inl -------------------------------------------------------------------------------- /simd/int16x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/simd/int16x8.h -------------------------------------------------------------------------------- /simd/int16x8.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/simd/int16x8.inl -------------------------------------------------------------------------------- /simd/int32x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/simd/int32x2.h -------------------------------------------------------------------------------- /simd/int32x2.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simd/int32x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/simd/int32x4.h -------------------------------------------------------------------------------- /simd/int32x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/simd/int32x4.inl -------------------------------------------------------------------------------- /simd/int8x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/simd/int8x16.h -------------------------------------------------------------------------------- /simd/int8x16.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/simd/int8x16.inl -------------------------------------------------------------------------------- /simd/int8x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/simd/int8x4.h -------------------------------------------------------------------------------- /simd/int8x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/simd/int8x4.inl -------------------------------------------------------------------------------- /simd/int8x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/simd/int8x8.h -------------------------------------------------------------------------------- /simd/int8x8.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/simd/int8x8.inl -------------------------------------------------------------------------------- /simd/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/simd/simd.h -------------------------------------------------------------------------------- /simd/vec128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/simd/vec128.h -------------------------------------------------------------------------------- /simd/vec128.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple_aviplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/simple_aviplay.cpp -------------------------------------------------------------------------------- /sjis2utf16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/sjis2utf16.cpp -------------------------------------------------------------------------------- /sjis2utf16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/sjis2utf16.h -------------------------------------------------------------------------------- /version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fybmain/ONScripter-Jh/HEAD/version.h --------------------------------------------------------------------------------