├── .github ├── FUNDING.yml └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── Dockerfile ├── LICENSE ├── README.md ├── data └── .gitkeep ├── deps ├── cxxopts.lua └── zlib.lua ├── gen ├── arc │ ├── Makefile │ └── parser.ypp ├── gsc │ ├── Makefile │ └── parser.ypp └── hash │ ├── cmd.txt │ └── iw9_hash.cpp ├── include └── xsk │ ├── arc │ ├── assembler.hpp │ ├── common │ │ ├── assembly.hpp │ │ ├── asset.hpp │ │ ├── ast.hpp │ │ ├── buffer.hpp │ │ ├── define.hpp │ │ ├── directive.hpp │ │ ├── exception.hpp │ │ ├── location.hpp │ │ ├── lookahead.hpp │ │ ├── scope.hpp │ │ ├── space.hpp │ │ ├── token.hpp │ │ └── types.hpp │ ├── compiler.hpp │ ├── context.hpp │ ├── decompiler.hpp │ ├── disassembler.hpp │ ├── engine │ │ ├── jup.hpp │ │ ├── t6.hpp │ │ ├── t6_pc.hpp │ │ ├── t6_ps3.hpp │ │ ├── t6_wiiu.hpp │ │ ├── t6_xb2.hpp │ │ ├── t7.hpp │ │ ├── t8.hpp │ │ └── t9.hpp │ ├── lexer.hpp │ ├── parser.hpp │ ├── preprocessor.hpp │ └── source.hpp │ ├── gsc │ ├── assembler.hpp │ ├── common │ │ ├── assembly.hpp │ │ ├── asset.hpp │ │ ├── ast.hpp │ │ ├── buffer.hpp │ │ ├── define.hpp │ │ ├── directive.hpp │ │ ├── exception.hpp │ │ ├── location.hpp │ │ ├── lookahead.hpp │ │ ├── scope.hpp │ │ ├── space.hpp │ │ ├── token.hpp │ │ └── types.hpp │ ├── compiler.hpp │ ├── context.hpp │ ├── decompiler.hpp │ ├── disassembler.hpp │ ├── engine │ │ ├── h1.hpp │ │ ├── h2.hpp │ │ ├── iw5_pc.hpp │ │ ├── iw5_ps.hpp │ │ ├── iw5_xb.hpp │ │ ├── iw6_pc.hpp │ │ ├── iw6_ps.hpp │ │ ├── iw6_xb.hpp │ │ ├── iw7.hpp │ │ ├── iw8.hpp │ │ ├── iw9.hpp │ │ ├── s1_pc.hpp │ │ ├── s1_ps.hpp │ │ ├── s1_xb.hpp │ │ ├── s2.hpp │ │ ├── s4.hpp │ │ ├── t4.hpp │ │ └── t5.hpp │ ├── lexer.hpp │ ├── parser.hpp │ ├── preprocessor.hpp │ └── source.hpp │ ├── stdinc.hpp │ └── utils │ ├── file.hpp │ ├── reader.hpp │ ├── string.hpp │ ├── writer.hpp │ └── zlib.hpp ├── premake5.lua └── src ├── arc ├── assembler.cpp ├── common │ ├── ast.cpp │ ├── exception.cpp │ ├── lookahead.cpp │ └── token.cpp ├── compiler.cpp ├── context.cpp ├── decompiler.cpp ├── disassembler.cpp ├── engine │ ├── jup.cpp │ ├── jup_code.cpp │ ├── t6_code.cpp │ ├── t6_hash.cpp │ ├── t6_pc.cpp │ ├── t6_ps3.cpp │ ├── t6_wiiu.cpp │ ├── t6_xb2.cpp │ ├── t7.cpp │ ├── t7_code.cpp │ ├── t7_hash.cpp │ ├── t8.cpp │ ├── t8_code.cpp │ ├── t9.cpp │ └── t9_code.cpp ├── lexer.cpp ├── parser.cpp ├── preprocessor.cpp └── source.cpp ├── gsc ├── assembler.cpp ├── common │ ├── asset.cpp │ ├── ast.cpp │ ├── exception.cpp │ ├── lookahead.cpp │ ├── scope.cpp │ └── token.cpp ├── compiler.cpp ├── context.cpp ├── decompiler.cpp ├── disassembler.cpp ├── engine │ ├── h1.cpp │ ├── h1_code.cpp │ ├── h1_func.cpp │ ├── h1_meth.cpp │ ├── h1_token.cpp │ ├── h2.cpp │ ├── h2_code.cpp │ ├── h2_func.cpp │ ├── h2_meth.cpp │ ├── h2_token.cpp │ ├── iw5_pc.cpp │ ├── iw5_pc_code.cpp │ ├── iw5_pc_func.cpp │ ├── iw5_pc_meth.cpp │ ├── iw5_pc_token.cpp │ ├── iw5_ps.cpp │ ├── iw5_ps_code.cpp │ ├── iw5_ps_func.cpp │ ├── iw5_ps_meth.cpp │ ├── iw5_ps_token.cpp │ ├── iw5_xb.cpp │ ├── iw5_xb_code.cpp │ ├── iw5_xb_func.cpp │ ├── iw5_xb_meth.cpp │ ├── iw5_xb_token.cpp │ ├── iw6_pc.cpp │ ├── iw6_pc_code.cpp │ ├── iw6_pc_func.cpp │ ├── iw6_pc_meth.cpp │ ├── iw6_pc_token.cpp │ ├── iw6_ps.cpp │ ├── iw6_ps_code.cpp │ ├── iw6_ps_func.cpp │ ├── iw6_ps_meth.cpp │ ├── iw6_ps_token.cpp │ ├── iw6_xb.cpp │ ├── iw6_xb_code.cpp │ ├── iw6_xb_func.cpp │ ├── iw6_xb_meth.cpp │ ├── iw6_xb_token.cpp │ ├── iw7.cpp │ ├── iw7_code.cpp │ ├── iw7_func.cpp │ ├── iw7_meth.cpp │ ├── iw7_token.cpp │ ├── iw8.cpp │ ├── iw8_code.cpp │ ├── iw8_func.cpp │ ├── iw8_meth.cpp │ ├── iw8_token.cpp │ ├── iw9.cpp │ ├── iw9_code.cpp │ ├── iw9_func.cpp │ ├── iw9_hash.cpp │ ├── iw9_meth.cpp │ ├── iw9_path.cpp │ ├── s1_pc.cpp │ ├── s1_pc_code.cpp │ ├── s1_pc_func.cpp │ ├── s1_pc_meth.cpp │ ├── s1_pc_token.cpp │ ├── s1_ps.cpp │ ├── s1_ps_code.cpp │ ├── s1_ps_func.cpp │ ├── s1_ps_meth.cpp │ ├── s1_ps_token.cpp │ ├── s1_xb.cpp │ ├── s1_xb_code.cpp │ ├── s1_xb_func.cpp │ ├── s1_xb_meth.cpp │ ├── s1_xb_token.cpp │ ├── s2.cpp │ ├── s2_code.cpp │ ├── s2_func.cpp │ ├── s2_meth.cpp │ ├── s2_token.cpp │ ├── s4.cpp │ ├── s4_code.cpp │ ├── s4_func.cpp │ ├── s4_meth.cpp │ └── s4_token.cpp ├── lexer.cpp ├── parser.cpp ├── preprocessor.cpp └── source.cpp ├── tool └── main.cpp └── utils ├── file.cpp ├── reader.cpp ├── string.cpp ├── writer.cpp └── zlib.cpp /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/README.md -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/cxxopts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/deps/cxxopts.lua -------------------------------------------------------------------------------- /deps/zlib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/deps/zlib.lua -------------------------------------------------------------------------------- /gen/arc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/gen/arc/Makefile -------------------------------------------------------------------------------- /gen/arc/parser.ypp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/gen/arc/parser.ypp -------------------------------------------------------------------------------- /gen/gsc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/gen/gsc/Makefile -------------------------------------------------------------------------------- /gen/gsc/parser.ypp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/gen/gsc/parser.ypp -------------------------------------------------------------------------------- /gen/hash/cmd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/gen/hash/cmd.txt -------------------------------------------------------------------------------- /gen/hash/iw9_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/gen/hash/iw9_hash.cpp -------------------------------------------------------------------------------- /include/xsk/arc/assembler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/assembler.hpp -------------------------------------------------------------------------------- /include/xsk/arc/common/assembly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/common/assembly.hpp -------------------------------------------------------------------------------- /include/xsk/arc/common/asset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/common/asset.hpp -------------------------------------------------------------------------------- /include/xsk/arc/common/ast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/common/ast.hpp -------------------------------------------------------------------------------- /include/xsk/arc/common/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/common/buffer.hpp -------------------------------------------------------------------------------- /include/xsk/arc/common/define.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/common/define.hpp -------------------------------------------------------------------------------- /include/xsk/arc/common/directive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/common/directive.hpp -------------------------------------------------------------------------------- /include/xsk/arc/common/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/common/exception.hpp -------------------------------------------------------------------------------- /include/xsk/arc/common/location.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/common/location.hpp -------------------------------------------------------------------------------- /include/xsk/arc/common/lookahead.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/common/lookahead.hpp -------------------------------------------------------------------------------- /include/xsk/arc/common/scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/common/scope.hpp -------------------------------------------------------------------------------- /include/xsk/arc/common/space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/common/space.hpp -------------------------------------------------------------------------------- /include/xsk/arc/common/token.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/common/token.hpp -------------------------------------------------------------------------------- /include/xsk/arc/common/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/common/types.hpp -------------------------------------------------------------------------------- /include/xsk/arc/compiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/compiler.hpp -------------------------------------------------------------------------------- /include/xsk/arc/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/context.hpp -------------------------------------------------------------------------------- /include/xsk/arc/decompiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/decompiler.hpp -------------------------------------------------------------------------------- /include/xsk/arc/disassembler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/disassembler.hpp -------------------------------------------------------------------------------- /include/xsk/arc/engine/jup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/engine/jup.hpp -------------------------------------------------------------------------------- /include/xsk/arc/engine/t6.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/engine/t6.hpp -------------------------------------------------------------------------------- /include/xsk/arc/engine/t6_pc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/engine/t6_pc.hpp -------------------------------------------------------------------------------- /include/xsk/arc/engine/t6_ps3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/engine/t6_ps3.hpp -------------------------------------------------------------------------------- /include/xsk/arc/engine/t6_wiiu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/engine/t6_wiiu.hpp -------------------------------------------------------------------------------- /include/xsk/arc/engine/t6_xb2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/engine/t6_xb2.hpp -------------------------------------------------------------------------------- /include/xsk/arc/engine/t7.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/engine/t7.hpp -------------------------------------------------------------------------------- /include/xsk/arc/engine/t8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/engine/t8.hpp -------------------------------------------------------------------------------- /include/xsk/arc/engine/t9.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/engine/t9.hpp -------------------------------------------------------------------------------- /include/xsk/arc/lexer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/lexer.hpp -------------------------------------------------------------------------------- /include/xsk/arc/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/parser.hpp -------------------------------------------------------------------------------- /include/xsk/arc/preprocessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/preprocessor.hpp -------------------------------------------------------------------------------- /include/xsk/arc/source.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/arc/source.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/assembler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/assembler.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/common/assembly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/common/assembly.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/common/asset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/common/asset.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/common/ast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/common/ast.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/common/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/common/buffer.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/common/define.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/common/define.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/common/directive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/common/directive.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/common/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/common/exception.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/common/location.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/common/location.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/common/lookahead.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/common/lookahead.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/common/scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/common/scope.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/common/space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/common/space.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/common/token.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/common/token.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/common/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/common/types.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/compiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/compiler.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/context.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/decompiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/decompiler.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/disassembler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/disassembler.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/engine/h1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/engine/h1.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/engine/h2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/engine/h2.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/engine/iw5_pc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/engine/iw5_pc.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/engine/iw5_ps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/engine/iw5_ps.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/engine/iw5_xb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/engine/iw5_xb.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/engine/iw6_pc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/engine/iw6_pc.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/engine/iw6_ps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/engine/iw6_ps.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/engine/iw6_xb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/engine/iw6_xb.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/engine/iw7.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/engine/iw7.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/engine/iw8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/engine/iw8.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/engine/iw9.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/engine/iw9.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/engine/s1_pc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/engine/s1_pc.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/engine/s1_ps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/engine/s1_ps.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/engine/s1_xb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/engine/s1_xb.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/engine/s2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/engine/s2.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/engine/s4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/engine/s4.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/engine/t4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/engine/t4.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/engine/t5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/engine/t5.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/lexer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/lexer.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/parser.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/preprocessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/preprocessor.hpp -------------------------------------------------------------------------------- /include/xsk/gsc/source.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/gsc/source.hpp -------------------------------------------------------------------------------- /include/xsk/stdinc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/stdinc.hpp -------------------------------------------------------------------------------- /include/xsk/utils/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/utils/file.hpp -------------------------------------------------------------------------------- /include/xsk/utils/reader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/utils/reader.hpp -------------------------------------------------------------------------------- /include/xsk/utils/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/utils/string.hpp -------------------------------------------------------------------------------- /include/xsk/utils/writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/utils/writer.hpp -------------------------------------------------------------------------------- /include/xsk/utils/zlib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/include/xsk/utils/zlib.hpp -------------------------------------------------------------------------------- /premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/premake5.lua -------------------------------------------------------------------------------- /src/arc/assembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/arc/assembler.cpp -------------------------------------------------------------------------------- /src/arc/common/ast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/arc/common/ast.cpp -------------------------------------------------------------------------------- /src/arc/common/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/arc/common/exception.cpp -------------------------------------------------------------------------------- /src/arc/common/lookahead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/arc/common/lookahead.cpp -------------------------------------------------------------------------------- /src/arc/common/token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/arc/common/token.cpp -------------------------------------------------------------------------------- /src/arc/compiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/arc/compiler.cpp -------------------------------------------------------------------------------- /src/arc/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/arc/context.cpp -------------------------------------------------------------------------------- /src/arc/decompiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/arc/decompiler.cpp -------------------------------------------------------------------------------- /src/arc/disassembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/arc/disassembler.cpp -------------------------------------------------------------------------------- /src/arc/engine/jup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/arc/engine/jup.cpp -------------------------------------------------------------------------------- /src/arc/engine/jup_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/arc/engine/jup_code.cpp -------------------------------------------------------------------------------- /src/arc/engine/t6_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/arc/engine/t6_code.cpp -------------------------------------------------------------------------------- /src/arc/engine/t6_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/arc/engine/t6_hash.cpp -------------------------------------------------------------------------------- /src/arc/engine/t6_pc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/arc/engine/t6_pc.cpp -------------------------------------------------------------------------------- /src/arc/engine/t6_ps3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/arc/engine/t6_ps3.cpp -------------------------------------------------------------------------------- /src/arc/engine/t6_wiiu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/arc/engine/t6_wiiu.cpp -------------------------------------------------------------------------------- /src/arc/engine/t6_xb2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/arc/engine/t6_xb2.cpp -------------------------------------------------------------------------------- /src/arc/engine/t7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/arc/engine/t7.cpp -------------------------------------------------------------------------------- /src/arc/engine/t7_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/arc/engine/t7_code.cpp -------------------------------------------------------------------------------- /src/arc/engine/t7_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/arc/engine/t7_hash.cpp -------------------------------------------------------------------------------- /src/arc/engine/t8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/arc/engine/t8.cpp -------------------------------------------------------------------------------- /src/arc/engine/t8_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/arc/engine/t8_code.cpp -------------------------------------------------------------------------------- /src/arc/engine/t9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/arc/engine/t9.cpp -------------------------------------------------------------------------------- /src/arc/engine/t9_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/arc/engine/t9_code.cpp -------------------------------------------------------------------------------- /src/arc/lexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/arc/lexer.cpp -------------------------------------------------------------------------------- /src/arc/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/arc/parser.cpp -------------------------------------------------------------------------------- /src/arc/preprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/arc/preprocessor.cpp -------------------------------------------------------------------------------- /src/arc/source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/arc/source.cpp -------------------------------------------------------------------------------- /src/gsc/assembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/assembler.cpp -------------------------------------------------------------------------------- /src/gsc/common/asset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/common/asset.cpp -------------------------------------------------------------------------------- /src/gsc/common/ast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/common/ast.cpp -------------------------------------------------------------------------------- /src/gsc/common/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/common/exception.cpp -------------------------------------------------------------------------------- /src/gsc/common/lookahead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/common/lookahead.cpp -------------------------------------------------------------------------------- /src/gsc/common/scope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/common/scope.cpp -------------------------------------------------------------------------------- /src/gsc/common/token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/common/token.cpp -------------------------------------------------------------------------------- /src/gsc/compiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/compiler.cpp -------------------------------------------------------------------------------- /src/gsc/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/context.cpp -------------------------------------------------------------------------------- /src/gsc/decompiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/decompiler.cpp -------------------------------------------------------------------------------- /src/gsc/disassembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/disassembler.cpp -------------------------------------------------------------------------------- /src/gsc/engine/h1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/h1.cpp -------------------------------------------------------------------------------- /src/gsc/engine/h1_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/h1_code.cpp -------------------------------------------------------------------------------- /src/gsc/engine/h1_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/h1_func.cpp -------------------------------------------------------------------------------- /src/gsc/engine/h1_meth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/h1_meth.cpp -------------------------------------------------------------------------------- /src/gsc/engine/h1_token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/h1_token.cpp -------------------------------------------------------------------------------- /src/gsc/engine/h2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/h2.cpp -------------------------------------------------------------------------------- /src/gsc/engine/h2_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/h2_code.cpp -------------------------------------------------------------------------------- /src/gsc/engine/h2_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/h2_func.cpp -------------------------------------------------------------------------------- /src/gsc/engine/h2_meth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/h2_meth.cpp -------------------------------------------------------------------------------- /src/gsc/engine/h2_token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/h2_token.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw5_pc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw5_pc.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw5_pc_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw5_pc_code.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw5_pc_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw5_pc_func.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw5_pc_meth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw5_pc_meth.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw5_pc_token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw5_pc_token.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw5_ps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw5_ps.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw5_ps_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw5_ps_code.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw5_ps_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw5_ps_func.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw5_ps_meth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw5_ps_meth.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw5_ps_token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw5_ps_token.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw5_xb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw5_xb.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw5_xb_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw5_xb_code.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw5_xb_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw5_xb_func.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw5_xb_meth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw5_xb_meth.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw5_xb_token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw5_xb_token.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw6_pc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw6_pc.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw6_pc_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw6_pc_code.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw6_pc_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw6_pc_func.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw6_pc_meth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw6_pc_meth.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw6_pc_token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw6_pc_token.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw6_ps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw6_ps.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw6_ps_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw6_ps_code.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw6_ps_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw6_ps_func.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw6_ps_meth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw6_ps_meth.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw6_ps_token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw6_ps_token.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw6_xb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw6_xb.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw6_xb_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw6_xb_code.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw6_xb_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw6_xb_func.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw6_xb_meth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw6_xb_meth.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw6_xb_token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw6_xb_token.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw7.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw7_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw7_code.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw7_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw7_func.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw7_meth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw7_meth.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw7_token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw7_token.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw8.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw8_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw8_code.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw8_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw8_func.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw8_meth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw8_meth.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw8_token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw8_token.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw9.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw9_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw9_code.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw9_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw9_func.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw9_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw9_hash.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw9_meth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw9_meth.cpp -------------------------------------------------------------------------------- /src/gsc/engine/iw9_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/iw9_path.cpp -------------------------------------------------------------------------------- /src/gsc/engine/s1_pc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/s1_pc.cpp -------------------------------------------------------------------------------- /src/gsc/engine/s1_pc_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/s1_pc_code.cpp -------------------------------------------------------------------------------- /src/gsc/engine/s1_pc_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/s1_pc_func.cpp -------------------------------------------------------------------------------- /src/gsc/engine/s1_pc_meth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/s1_pc_meth.cpp -------------------------------------------------------------------------------- /src/gsc/engine/s1_pc_token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/s1_pc_token.cpp -------------------------------------------------------------------------------- /src/gsc/engine/s1_ps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/s1_ps.cpp -------------------------------------------------------------------------------- /src/gsc/engine/s1_ps_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/s1_ps_code.cpp -------------------------------------------------------------------------------- /src/gsc/engine/s1_ps_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/s1_ps_func.cpp -------------------------------------------------------------------------------- /src/gsc/engine/s1_ps_meth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/s1_ps_meth.cpp -------------------------------------------------------------------------------- /src/gsc/engine/s1_ps_token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/s1_ps_token.cpp -------------------------------------------------------------------------------- /src/gsc/engine/s1_xb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/s1_xb.cpp -------------------------------------------------------------------------------- /src/gsc/engine/s1_xb_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/s1_xb_code.cpp -------------------------------------------------------------------------------- /src/gsc/engine/s1_xb_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/s1_xb_func.cpp -------------------------------------------------------------------------------- /src/gsc/engine/s1_xb_meth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/s1_xb_meth.cpp -------------------------------------------------------------------------------- /src/gsc/engine/s1_xb_token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/s1_xb_token.cpp -------------------------------------------------------------------------------- /src/gsc/engine/s2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/s2.cpp -------------------------------------------------------------------------------- /src/gsc/engine/s2_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/s2_code.cpp -------------------------------------------------------------------------------- /src/gsc/engine/s2_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/s2_func.cpp -------------------------------------------------------------------------------- /src/gsc/engine/s2_meth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/s2_meth.cpp -------------------------------------------------------------------------------- /src/gsc/engine/s2_token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/s2_token.cpp -------------------------------------------------------------------------------- /src/gsc/engine/s4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/s4.cpp -------------------------------------------------------------------------------- /src/gsc/engine/s4_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/s4_code.cpp -------------------------------------------------------------------------------- /src/gsc/engine/s4_func.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/s4_func.cpp -------------------------------------------------------------------------------- /src/gsc/engine/s4_meth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/s4_meth.cpp -------------------------------------------------------------------------------- /src/gsc/engine/s4_token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/engine/s4_token.cpp -------------------------------------------------------------------------------- /src/gsc/lexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/lexer.cpp -------------------------------------------------------------------------------- /src/gsc/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/parser.cpp -------------------------------------------------------------------------------- /src/gsc/preprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/preprocessor.cpp -------------------------------------------------------------------------------- /src/gsc/source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/gsc/source.cpp -------------------------------------------------------------------------------- /src/tool/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/tool/main.cpp -------------------------------------------------------------------------------- /src/utils/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/utils/file.cpp -------------------------------------------------------------------------------- /src/utils/reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/utils/reader.cpp -------------------------------------------------------------------------------- /src/utils/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/utils/string.cpp -------------------------------------------------------------------------------- /src/utils/writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/utils/writer.cpp -------------------------------------------------------------------------------- /src/utils/zlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xensik/gsc-tool/HEAD/src/utils/zlib.cpp --------------------------------------------------------------------------------