├── .clang-tidy ├── .dir-locals.el ├── .gitignore ├── .gitmodules ├── COPYING ├── COPYING.THIRD_PARTY ├── README.md ├── VERSION ├── doc └── formats │ ├── cl3.md │ ├── gbin.md │ └── stcm.md ├── gen_binding.sh ├── src ├── dumpable.binding.hpp ├── dumpable.cpp ├── dumpable.hpp ├── dynamic_struct.hpp ├── dynamic_struct.lua.hpp ├── endian.binding.hpp ├── endian.cpp ├── endian.hpp ├── factory.hpp ├── format │ ├── builder.lua │ ├── cl3.binding.hpp │ ├── cl3.cpp │ ├── cl3.hpp │ ├── context.binding.hpp │ ├── context.cpp │ ├── context.hpp │ ├── cstring_item.binding.hpp │ ├── cstring_item.cpp │ ├── cstring_item.hpp │ ├── eof_item.binding.hpp │ ├── eof_item.cpp │ ├── eof_item.hpp │ ├── gbnl.binding.hpp │ ├── gbnl.cpp │ ├── gbnl.hpp │ ├── gbnl_lua.hpp │ ├── item.binding.hpp │ ├── item.cpp │ ├── item.hpp │ ├── item_base.hpp │ ├── primitive_item.binding.hpp │ ├── primitive_item.cpp │ ├── primitive_item.hpp │ ├── raw_item.binding.hpp │ ├── raw_item.cpp │ ├── raw_item.hpp │ ├── stcm │ │ ├── collection_link.binding.hpp │ │ ├── collection_link.cpp │ │ ├── collection_link.hpp │ │ ├── data.binding.hpp │ │ ├── data.cpp │ │ ├── data.hpp │ │ ├── expansion.binding.hpp │ │ ├── expansion.cpp │ │ ├── expansion.hpp │ │ ├── exports.binding.hpp │ │ ├── exports.cpp │ │ ├── exports.hpp │ │ ├── file.binding.hpp │ │ ├── file.cpp │ │ ├── file.hpp │ │ ├── gbnl.binding.hpp │ │ ├── gbnl.cpp │ │ ├── gbnl.hpp │ │ ├── header.binding.hpp │ │ ├── header.cpp │ │ ├── header.hpp │ │ ├── instruction.binding.hpp │ │ ├── instruction.cpp │ │ ├── instruction.hpp │ │ ├── string_data.binding.hpp │ │ ├── string_data.cpp │ │ └── string_data.hpp │ └── stsc │ │ ├── file.binding.hpp │ │ ├── file.cpp │ │ ├── file.hpp │ │ ├── header.binding.hpp │ │ ├── header.cpp │ │ ├── header.hpp │ │ ├── instruction.binding.hpp │ │ ├── instruction.cpp │ │ └── instruction.hpp ├── open.binding.hpp ├── open.cpp ├── open.hpp ├── pattern.cpp ├── pattern.hpp ├── pattern_parse.hpp ├── programs │ ├── icon.ico │ ├── icon.png │ ├── launcher.c │ ├── launcher.rc │ ├── stcm-editor.cpp │ └── stcm-editor.rc ├── sink.binding.hpp ├── sink.cpp ├── sink.hpp ├── source.binding.hpp ├── source.cpp ├── source.hpp ├── txt_serializable.binding.hpp ├── txt_serializable.cpp ├── txt_serializable.hpp ├── utils.cpp ├── utils.hpp ├── version.hpp.in ├── vita_plugin │ ├── cpk.cpp │ ├── cpk.hpp │ ├── plugin.cpp │ ├── plugin.yml │ └── taihen_cpp.hpp └── windows_server │ ├── cpk.cpp │ ├── cpk.hpp │ ├── hook.cpp │ ├── hook.hpp │ ├── server.cpp │ ├── server.def │ └── server.rc ├── test ├── pattern.cpp └── pattern_fail.cpp ├── tools ├── README.md ├── ci.sh ├── ci_conf.clang-msvc.sh ├── ci_conf.clang-msvc64.sh ├── ci_conf.clang.sh ├── ci_conf.default.sh ├── ci_conf.gcc.sh ├── ci_conf_linuxcommon.sh ├── ci_conf_wincommon.sh ├── qemu.patch ├── qemu_vdso_fix_linux_amd64.c ├── qmp ├── qmp.py ├── valgrind.supp └── vmrun.sh ├── waf ├── wscript └── wscript_user_sample.py /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.dir-locals.el: -------------------------------------------------------------------------------- 1 | libshit/.dir-locals.el -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/.gitmodules -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.THIRD_PARTY: -------------------------------------------------------------------------------- 1 | libshit/COPYING.THIRD_PARTY -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.4.0-pre 2 | -------------------------------------------------------------------------------- /doc/formats/cl3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/doc/formats/cl3.md -------------------------------------------------------------------------------- /doc/formats/gbin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/doc/formats/gbin.md -------------------------------------------------------------------------------- /doc/formats/stcm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/doc/formats/stcm.md -------------------------------------------------------------------------------- /gen_binding.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/gen_binding.sh -------------------------------------------------------------------------------- /src/dumpable.binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/dumpable.binding.hpp -------------------------------------------------------------------------------- /src/dumpable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/dumpable.cpp -------------------------------------------------------------------------------- /src/dumpable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/dumpable.hpp -------------------------------------------------------------------------------- /src/dynamic_struct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/dynamic_struct.hpp -------------------------------------------------------------------------------- /src/dynamic_struct.lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/dynamic_struct.lua.hpp -------------------------------------------------------------------------------- /src/endian.binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/endian.binding.hpp -------------------------------------------------------------------------------- /src/endian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/endian.cpp -------------------------------------------------------------------------------- /src/endian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/endian.hpp -------------------------------------------------------------------------------- /src/factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/factory.hpp -------------------------------------------------------------------------------- /src/format/builder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/builder.lua -------------------------------------------------------------------------------- /src/format/cl3.binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/cl3.binding.hpp -------------------------------------------------------------------------------- /src/format/cl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/cl3.cpp -------------------------------------------------------------------------------- /src/format/cl3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/cl3.hpp -------------------------------------------------------------------------------- /src/format/context.binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/context.binding.hpp -------------------------------------------------------------------------------- /src/format/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/context.cpp -------------------------------------------------------------------------------- /src/format/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/context.hpp -------------------------------------------------------------------------------- /src/format/cstring_item.binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/cstring_item.binding.hpp -------------------------------------------------------------------------------- /src/format/cstring_item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/cstring_item.cpp -------------------------------------------------------------------------------- /src/format/cstring_item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/cstring_item.hpp -------------------------------------------------------------------------------- /src/format/eof_item.binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/eof_item.binding.hpp -------------------------------------------------------------------------------- /src/format/eof_item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/eof_item.cpp -------------------------------------------------------------------------------- /src/format/eof_item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/eof_item.hpp -------------------------------------------------------------------------------- /src/format/gbnl.binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/gbnl.binding.hpp -------------------------------------------------------------------------------- /src/format/gbnl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/gbnl.cpp -------------------------------------------------------------------------------- /src/format/gbnl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/gbnl.hpp -------------------------------------------------------------------------------- /src/format/gbnl_lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/gbnl_lua.hpp -------------------------------------------------------------------------------- /src/format/item.binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/item.binding.hpp -------------------------------------------------------------------------------- /src/format/item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/item.cpp -------------------------------------------------------------------------------- /src/format/item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/item.hpp -------------------------------------------------------------------------------- /src/format/item_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/item_base.hpp -------------------------------------------------------------------------------- /src/format/primitive_item.binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/primitive_item.binding.hpp -------------------------------------------------------------------------------- /src/format/primitive_item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/primitive_item.cpp -------------------------------------------------------------------------------- /src/format/primitive_item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/primitive_item.hpp -------------------------------------------------------------------------------- /src/format/raw_item.binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/raw_item.binding.hpp -------------------------------------------------------------------------------- /src/format/raw_item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/raw_item.cpp -------------------------------------------------------------------------------- /src/format/raw_item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/raw_item.hpp -------------------------------------------------------------------------------- /src/format/stcm/collection_link.binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stcm/collection_link.binding.hpp -------------------------------------------------------------------------------- /src/format/stcm/collection_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stcm/collection_link.cpp -------------------------------------------------------------------------------- /src/format/stcm/collection_link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stcm/collection_link.hpp -------------------------------------------------------------------------------- /src/format/stcm/data.binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stcm/data.binding.hpp -------------------------------------------------------------------------------- /src/format/stcm/data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stcm/data.cpp -------------------------------------------------------------------------------- /src/format/stcm/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stcm/data.hpp -------------------------------------------------------------------------------- /src/format/stcm/expansion.binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stcm/expansion.binding.hpp -------------------------------------------------------------------------------- /src/format/stcm/expansion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stcm/expansion.cpp -------------------------------------------------------------------------------- /src/format/stcm/expansion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stcm/expansion.hpp -------------------------------------------------------------------------------- /src/format/stcm/exports.binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stcm/exports.binding.hpp -------------------------------------------------------------------------------- /src/format/stcm/exports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stcm/exports.cpp -------------------------------------------------------------------------------- /src/format/stcm/exports.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stcm/exports.hpp -------------------------------------------------------------------------------- /src/format/stcm/file.binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stcm/file.binding.hpp -------------------------------------------------------------------------------- /src/format/stcm/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stcm/file.cpp -------------------------------------------------------------------------------- /src/format/stcm/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stcm/file.hpp -------------------------------------------------------------------------------- /src/format/stcm/gbnl.binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stcm/gbnl.binding.hpp -------------------------------------------------------------------------------- /src/format/stcm/gbnl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stcm/gbnl.cpp -------------------------------------------------------------------------------- /src/format/stcm/gbnl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stcm/gbnl.hpp -------------------------------------------------------------------------------- /src/format/stcm/header.binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stcm/header.binding.hpp -------------------------------------------------------------------------------- /src/format/stcm/header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stcm/header.cpp -------------------------------------------------------------------------------- /src/format/stcm/header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stcm/header.hpp -------------------------------------------------------------------------------- /src/format/stcm/instruction.binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stcm/instruction.binding.hpp -------------------------------------------------------------------------------- /src/format/stcm/instruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stcm/instruction.cpp -------------------------------------------------------------------------------- /src/format/stcm/instruction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stcm/instruction.hpp -------------------------------------------------------------------------------- /src/format/stcm/string_data.binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stcm/string_data.binding.hpp -------------------------------------------------------------------------------- /src/format/stcm/string_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stcm/string_data.cpp -------------------------------------------------------------------------------- /src/format/stcm/string_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stcm/string_data.hpp -------------------------------------------------------------------------------- /src/format/stsc/file.binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stsc/file.binding.hpp -------------------------------------------------------------------------------- /src/format/stsc/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stsc/file.cpp -------------------------------------------------------------------------------- /src/format/stsc/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stsc/file.hpp -------------------------------------------------------------------------------- /src/format/stsc/header.binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stsc/header.binding.hpp -------------------------------------------------------------------------------- /src/format/stsc/header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stsc/header.cpp -------------------------------------------------------------------------------- /src/format/stsc/header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stsc/header.hpp -------------------------------------------------------------------------------- /src/format/stsc/instruction.binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stsc/instruction.binding.hpp -------------------------------------------------------------------------------- /src/format/stsc/instruction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stsc/instruction.cpp -------------------------------------------------------------------------------- /src/format/stsc/instruction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/format/stsc/instruction.hpp -------------------------------------------------------------------------------- /src/open.binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/open.binding.hpp -------------------------------------------------------------------------------- /src/open.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/open.cpp -------------------------------------------------------------------------------- /src/open.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/open.hpp -------------------------------------------------------------------------------- /src/pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/pattern.cpp -------------------------------------------------------------------------------- /src/pattern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/pattern.hpp -------------------------------------------------------------------------------- /src/pattern_parse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/pattern_parse.hpp -------------------------------------------------------------------------------- /src/programs/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/programs/icon.ico -------------------------------------------------------------------------------- /src/programs/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/programs/icon.png -------------------------------------------------------------------------------- /src/programs/launcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/programs/launcher.c -------------------------------------------------------------------------------- /src/programs/launcher.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/programs/launcher.rc -------------------------------------------------------------------------------- /src/programs/stcm-editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/programs/stcm-editor.cpp -------------------------------------------------------------------------------- /src/programs/stcm-editor.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/programs/stcm-editor.rc -------------------------------------------------------------------------------- /src/sink.binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/sink.binding.hpp -------------------------------------------------------------------------------- /src/sink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/sink.cpp -------------------------------------------------------------------------------- /src/sink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/sink.hpp -------------------------------------------------------------------------------- /src/source.binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/source.binding.hpp -------------------------------------------------------------------------------- /src/source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/source.cpp -------------------------------------------------------------------------------- /src/source.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/source.hpp -------------------------------------------------------------------------------- /src/txt_serializable.binding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/txt_serializable.binding.hpp -------------------------------------------------------------------------------- /src/txt_serializable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/txt_serializable.cpp -------------------------------------------------------------------------------- /src/txt_serializable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/txt_serializable.hpp -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /src/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/utils.hpp -------------------------------------------------------------------------------- /src/version.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/version.hpp.in -------------------------------------------------------------------------------- /src/vita_plugin/cpk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/vita_plugin/cpk.cpp -------------------------------------------------------------------------------- /src/vita_plugin/cpk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/vita_plugin/cpk.hpp -------------------------------------------------------------------------------- /src/vita_plugin/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/vita_plugin/plugin.cpp -------------------------------------------------------------------------------- /src/vita_plugin/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/vita_plugin/plugin.yml -------------------------------------------------------------------------------- /src/vita_plugin/taihen_cpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/vita_plugin/taihen_cpp.hpp -------------------------------------------------------------------------------- /src/windows_server/cpk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/windows_server/cpk.cpp -------------------------------------------------------------------------------- /src/windows_server/cpk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/windows_server/cpk.hpp -------------------------------------------------------------------------------- /src/windows_server/hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/windows_server/hook.cpp -------------------------------------------------------------------------------- /src/windows_server/hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/windows_server/hook.hpp -------------------------------------------------------------------------------- /src/windows_server/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/windows_server/server.cpp -------------------------------------------------------------------------------- /src/windows_server/server.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/windows_server/server.def -------------------------------------------------------------------------------- /src/windows_server/server.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/src/windows_server/server.rc -------------------------------------------------------------------------------- /test/pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/test/pattern.cpp -------------------------------------------------------------------------------- /test/pattern_fail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/test/pattern_fail.cpp -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/tools/ci.sh -------------------------------------------------------------------------------- /tools/ci_conf.clang-msvc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/tools/ci_conf.clang-msvc.sh -------------------------------------------------------------------------------- /tools/ci_conf.clang-msvc64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/tools/ci_conf.clang-msvc64.sh -------------------------------------------------------------------------------- /tools/ci_conf.clang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/tools/ci_conf.clang.sh -------------------------------------------------------------------------------- /tools/ci_conf.default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/tools/ci_conf.default.sh -------------------------------------------------------------------------------- /tools/ci_conf.gcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/tools/ci_conf.gcc.sh -------------------------------------------------------------------------------- /tools/ci_conf_linuxcommon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/tools/ci_conf_linuxcommon.sh -------------------------------------------------------------------------------- /tools/ci_conf_wincommon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/tools/ci_conf_wincommon.sh -------------------------------------------------------------------------------- /tools/qemu.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/tools/qemu.patch -------------------------------------------------------------------------------- /tools/qemu_vdso_fix_linux_amd64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/tools/qemu_vdso_fix_linux_amd64.c -------------------------------------------------------------------------------- /tools/qmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/tools/qmp -------------------------------------------------------------------------------- /tools/qmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/tools/qmp.py -------------------------------------------------------------------------------- /tools/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/tools/valgrind.supp -------------------------------------------------------------------------------- /tools/vmrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/tools/vmrun.sh -------------------------------------------------------------------------------- /waf: -------------------------------------------------------------------------------- 1 | libshit/waf -------------------------------------------------------------------------------- /wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/wscript -------------------------------------------------------------------------------- /wscript_user_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/u3shit/neptools/HEAD/wscript_user_sample.py --------------------------------------------------------------------------------