├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake ├── .cmakedir ├── FindCURL.cmake ├── FindOpenSSL.cmake └── FindZLIB.cmake ├── doc ├── payday2_vtables └── vtable_tool │ ├── Makefile │ ├── README │ ├── dump_vtables.c │ ├── scrape_vtables.sh │ └── symlist ├── include ├── blt │ ├── assets.hh │ ├── error.hh │ ├── event.hh │ ├── fs.hh │ ├── hook.hh │ ├── http.hh │ ├── lapi.hh │ ├── lapi_systemfs.hh │ ├── lapi_version.hh │ ├── lapi_vm.hh │ ├── log.hh │ └── zip.hh ├── dsl │ ├── Archive.hh │ ├── DB.hh │ ├── FileSystem.hh │ ├── LuaInterface.hh │ ├── Transport.hh │ └── idstring.hh └── lua.hh ├── install.sh ├── installer ├── enable_blt_wrapper.py ├── framework.sh └── keyvalues.py ├── lua └── mods ├── packaging ├── README_BLT4L ├── dist_install.sh ├── dist_pk.fish └── package.sh └── src ├── assets.cc ├── blt_main.cc ├── error.cc ├── event.cc ├── fs.cc ├── hook.cc ├── http.cc ├── lapi.cc ├── lapi_http.cc ├── lapi_systemfs.cc ├── lapi_version.cc ├── lapi_vm.cc ├── log.cc └── zip.cc /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/README.md -------------------------------------------------------------------------------- /cmake/.cmakedir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmake/FindCURL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/cmake/FindCURL.cmake -------------------------------------------------------------------------------- /cmake/FindOpenSSL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/cmake/FindOpenSSL.cmake -------------------------------------------------------------------------------- /cmake/FindZLIB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/cmake/FindZLIB.cmake -------------------------------------------------------------------------------- /doc/payday2_vtables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/doc/payday2_vtables -------------------------------------------------------------------------------- /doc/vtable_tool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/doc/vtable_tool/Makefile -------------------------------------------------------------------------------- /doc/vtable_tool/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/doc/vtable_tool/README -------------------------------------------------------------------------------- /doc/vtable_tool/dump_vtables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/doc/vtable_tool/dump_vtables.c -------------------------------------------------------------------------------- /doc/vtable_tool/scrape_vtables.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | nm "$@" | grep '_ZT' | cut -d' ' -f3 4 | -------------------------------------------------------------------------------- /doc/vtable_tool/symlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/doc/vtable_tool/symlist -------------------------------------------------------------------------------- /include/blt/assets.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/include/blt/assets.hh -------------------------------------------------------------------------------- /include/blt/error.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/include/blt/error.hh -------------------------------------------------------------------------------- /include/blt/event.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/include/blt/event.hh -------------------------------------------------------------------------------- /include/blt/fs.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/include/blt/fs.hh -------------------------------------------------------------------------------- /include/blt/hook.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/include/blt/hook.hh -------------------------------------------------------------------------------- /include/blt/http.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/include/blt/http.hh -------------------------------------------------------------------------------- /include/blt/lapi.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/include/blt/lapi.hh -------------------------------------------------------------------------------- /include/blt/lapi_systemfs.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/include/blt/lapi_systemfs.hh -------------------------------------------------------------------------------- /include/blt/lapi_version.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/include/blt/lapi_version.hh -------------------------------------------------------------------------------- /include/blt/lapi_vm.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/include/blt/lapi_vm.hh -------------------------------------------------------------------------------- /include/blt/log.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/include/blt/log.hh -------------------------------------------------------------------------------- /include/blt/zip.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/include/blt/zip.hh -------------------------------------------------------------------------------- /include/dsl/Archive.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/include/dsl/Archive.hh -------------------------------------------------------------------------------- /include/dsl/DB.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/include/dsl/DB.hh -------------------------------------------------------------------------------- /include/dsl/FileSystem.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/include/dsl/FileSystem.hh -------------------------------------------------------------------------------- /include/dsl/LuaInterface.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/include/dsl/LuaInterface.hh -------------------------------------------------------------------------------- /include/dsl/Transport.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/include/dsl/Transport.hh -------------------------------------------------------------------------------- /include/dsl/idstring.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/include/dsl/idstring.hh -------------------------------------------------------------------------------- /include/lua.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/include/lua.hh -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/install.sh -------------------------------------------------------------------------------- /installer/enable_blt_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/installer/enable_blt_wrapper.py -------------------------------------------------------------------------------- /installer/framework.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/installer/framework.sh -------------------------------------------------------------------------------- /installer/keyvalues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/installer/keyvalues.py -------------------------------------------------------------------------------- /lua/mods: -------------------------------------------------------------------------------- 1 | Payday-2-BLT-Lua/mods -------------------------------------------------------------------------------- /packaging/README_BLT4L: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/packaging/README_BLT4L -------------------------------------------------------------------------------- /packaging/dist_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/packaging/dist_install.sh -------------------------------------------------------------------------------- /packaging/dist_pk.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/packaging/dist_pk.fish -------------------------------------------------------------------------------- /packaging/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/packaging/package.sh -------------------------------------------------------------------------------- /src/assets.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/src/assets.cc -------------------------------------------------------------------------------- /src/blt_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/src/blt_main.cc -------------------------------------------------------------------------------- /src/error.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/src/error.cc -------------------------------------------------------------------------------- /src/event.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/src/event.cc -------------------------------------------------------------------------------- /src/fs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/src/fs.cc -------------------------------------------------------------------------------- /src/hook.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/src/hook.cc -------------------------------------------------------------------------------- /src/http.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/src/http.cc -------------------------------------------------------------------------------- /src/lapi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/src/lapi.cc -------------------------------------------------------------------------------- /src/lapi_http.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/src/lapi_http.cc -------------------------------------------------------------------------------- /src/lapi_systemfs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/src/lapi_systemfs.cc -------------------------------------------------------------------------------- /src/lapi_version.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/src/lapi_version.cc -------------------------------------------------------------------------------- /src/lapi_vm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/src/lapi_vm.cc -------------------------------------------------------------------------------- /src/log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/src/log.cc -------------------------------------------------------------------------------- /src/zip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blt4linux/blt4l/HEAD/src/zip.cc --------------------------------------------------------------------------------