libwz 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +165 -0
- package/binding.gyp +149 -0
- package/deps/tiny-aes/.github/workflows/c-cpp.yml +27 -0
- package/deps/tiny-aes/CMakeLists.txt +17 -0
- package/deps/tiny-aes/Makefile +61 -0
- package/deps/tiny-aes/README.md +83 -0
- package/deps/tiny-aes/aes.c +572 -0
- package/deps/tiny-aes/aes.h +91 -0
- package/deps/tiny-aes/aes.hpp +12 -0
- package/deps/tiny-aes/conanfile.py +73 -0
- package/deps/tiny-aes/library.json +19 -0
- package/deps/tiny-aes/library.properties +11 -0
- package/deps/tiny-aes/test.c +316 -0
- package/deps/tiny-aes/test.cpp +2 -0
- package/deps/tiny-aes/test_package/CMakeLists.txt +11 -0
- package/deps/tiny-aes/test_package/conanfile.py +17 -0
- package/deps/tiny-aes/unlicense.txt +24 -0
- package/deps/zlib/.cmake-format.yaml +245 -0
- package/deps/zlib/.github/workflows/c-std.yml +268 -0
- package/deps/zlib/.github/workflows/cmake.yml +147 -0
- package/deps/zlib/.github/workflows/configure.yml +146 -0
- package/deps/zlib/.github/workflows/contribs.yml +64 -0
- package/deps/zlib/.github/workflows/fuzz.yml +25 -0
- package/deps/zlib/.github/workflows/msys-cygwin.yml +92 -0
- package/deps/zlib/.github/workflows/others.yml +153 -0
- package/deps/zlib/BUILD.bazel +134 -0
- package/deps/zlib/CMakeLists.txt +310 -0
- package/deps/zlib/ChangeLog +1669 -0
- package/deps/zlib/FAQ +371 -0
- package/deps/zlib/INDEX +67 -0
- package/deps/zlib/LICENSE +22 -0
- package/deps/zlib/MODULE.bazel +9 -0
- package/deps/zlib/Makefile.in +426 -0
- package/deps/zlib/README +115 -0
- package/deps/zlib/README-cmake.md +79 -0
- package/deps/zlib/adler32.c +164 -0
- package/deps/zlib/amiga/Makefile.pup +69 -0
- package/deps/zlib/amiga/Makefile.sas +68 -0
- package/deps/zlib/compress.c +99 -0
- package/deps/zlib/configure +1078 -0
- package/deps/zlib/contrib/CMakeLists.txt +61 -0
- package/deps/zlib/contrib/README.contrib +57 -0
- package/deps/zlib/contrib/ada/CMakeLists.txt +217 -0
- package/deps/zlib/contrib/ada/buffer_demo.adb +106 -0
- package/deps/zlib/contrib/ada/cmake/Modules/CMakeADACompiler.cmake.in +23 -0
- package/deps/zlib/contrib/ada/cmake/Modules/CMakeADAInformation.cmake +133 -0
- package/deps/zlib/contrib/ada/cmake/Modules/CMakeDetermineADACompiler.cmake +33 -0
- package/deps/zlib/contrib/ada/cmake/Modules/CMakeTestADACompiler.cmake +46 -0
- package/deps/zlib/contrib/ada/cmake/binder_helper.cmake +47 -0
- package/deps/zlib/contrib/ada/cmake/compile_helper.cmake +32 -0
- package/deps/zlib/contrib/ada/cmake/exe_link_helper.cmake +53 -0
- package/deps/zlib/contrib/ada/cmake/shared_link_helper.cmake +52 -0
- package/deps/zlib/contrib/ada/cmake/static_link_helper.cmake +25 -0
- package/deps/zlib/contrib/ada/mtest.adb +156 -0
- package/deps/zlib/contrib/ada/read.adb +156 -0
- package/deps/zlib/contrib/ada/readme.txt +65 -0
- package/deps/zlib/contrib/ada/test.adb +463 -0
- package/deps/zlib/contrib/ada/zlib-streams.adb +225 -0
- package/deps/zlib/contrib/ada/zlib-streams.ads +114 -0
- package/deps/zlib/contrib/ada/zlib-thin.adb +142 -0
- package/deps/zlib/contrib/ada/zlib-thin.ads +450 -0
- package/deps/zlib/contrib/ada/zlib.adb +701 -0
- package/deps/zlib/contrib/ada/zlib.ads +328 -0
- package/deps/zlib/contrib/ada/zlib.gpr +20 -0
- package/deps/zlib/contrib/blast/CMakeLists.txt +166 -0
- package/deps/zlib/contrib/blast/Makefile +14 -0
- package/deps/zlib/contrib/blast/README +4 -0
- package/deps/zlib/contrib/blast/blast-test.c +42 -0
- package/deps/zlib/contrib/blast/blast.c +422 -0
- package/deps/zlib/contrib/blast/blast.h +84 -0
- package/deps/zlib/contrib/blast/blastConfig.cmake.in +18 -0
- package/deps/zlib/contrib/blast/test/CMakeLists.txt +193 -0
- package/deps/zlib/contrib/blast/test/add_subdirectory_exclude_test.cmake.in +27 -0
- package/deps/zlib/contrib/blast/test/add_subdirectory_test.cmake.in +25 -0
- package/deps/zlib/contrib/blast/test/find_package_no_components_test.cmake.in +24 -0
- package/deps/zlib/contrib/blast/test/find_package_test.cmake.in +24 -0
- package/deps/zlib/contrib/blast/test/find_package_wrong_components_test.cmake.in +24 -0
- package/deps/zlib/contrib/blast/test.pk +0 -0
- package/deps/zlib/contrib/blast/test.txt +1 -0
- package/deps/zlib/contrib/blast/tester.cmake +28 -0
- package/deps/zlib/contrib/crc32vx/CMakeLists.txt +67 -0
- package/deps/zlib/contrib/crc32vx/README +9 -0
- package/deps/zlib/contrib/crc32vx/crc32_vx.c +254 -0
- package/deps/zlib/contrib/crc32vx/crc32_vx_hooks.h +9 -0
- package/deps/zlib/contrib/delphi/ZLib.pas +557 -0
- package/deps/zlib/contrib/delphi/ZLibConst.pas +11 -0
- package/deps/zlib/contrib/delphi/readme.txt +76 -0
- package/deps/zlib/contrib/delphi/zlibd32.mak +99 -0
- package/deps/zlib/contrib/dotzlib/DotZLib/AssemblyInfo.cs +58 -0
- package/deps/zlib/contrib/dotzlib/DotZLib/ChecksumImpl.cs +202 -0
- package/deps/zlib/contrib/dotzlib/DotZLib/CircularBuffer.cs +83 -0
- package/deps/zlib/contrib/dotzlib/DotZLib/CodecBase.cs +198 -0
- package/deps/zlib/contrib/dotzlib/DotZLib/Deflater.cs +106 -0
- package/deps/zlib/contrib/dotzlib/DotZLib/DotZLib.cs +288 -0
- package/deps/zlib/contrib/dotzlib/DotZLib/DotZLib.csproj +141 -0
- package/deps/zlib/contrib/dotzlib/DotZLib/GZipStream.cs +301 -0
- package/deps/zlib/contrib/dotzlib/DotZLib/Inflater.cs +105 -0
- package/deps/zlib/contrib/dotzlib/DotZLib/UnitTests.cs +274 -0
- package/deps/zlib/contrib/dotzlib/DotZLib.build +33 -0
- package/deps/zlib/contrib/dotzlib/DotZLib.chm +0 -0
- package/deps/zlib/contrib/dotzlib/DotZLib.sln +21 -0
- package/deps/zlib/contrib/dotzlib/LICENSE_1_0.txt +23 -0
- package/deps/zlib/contrib/dotzlib/readme.txt +58 -0
- package/deps/zlib/contrib/gcc_gvmat64/CMakeLists.txt +19 -0
- package/deps/zlib/contrib/gcc_gvmat64/gvmat64.S +570 -0
- package/deps/zlib/contrib/infback9/CMakeLists.txt +19 -0
- package/deps/zlib/contrib/infback9/README +1 -0
- package/deps/zlib/contrib/infback9/infback9.c +603 -0
- package/deps/zlib/contrib/infback9/infback9.h +37 -0
- package/deps/zlib/contrib/infback9/inffix9.h +107 -0
- package/deps/zlib/contrib/infback9/inflate9.h +47 -0
- package/deps/zlib/contrib/infback9/inftree9.c +319 -0
- package/deps/zlib/contrib/infback9/inftree9.h +61 -0
- package/deps/zlib/contrib/iostream/test.cpp +24 -0
- package/deps/zlib/contrib/iostream/zfstream.cpp +329 -0
- package/deps/zlib/contrib/iostream/zfstream.h +128 -0
- package/deps/zlib/contrib/iostream2/zstream.h +306 -0
- package/deps/zlib/contrib/iostream2/zstream_test.cpp +25 -0
- package/deps/zlib/contrib/iostream3/CMakeLists.txt +200 -0
- package/deps/zlib/contrib/iostream3/README +35 -0
- package/deps/zlib/contrib/iostream3/TODO +17 -0
- package/deps/zlib/contrib/iostream3/iostream3Config.cmake.in +23 -0
- package/deps/zlib/contrib/iostream3/test/CMakeLists.txt +191 -0
- package/deps/zlib/contrib/iostream3/test/add_subdirectory_exclude_test.cmake.in +27 -0
- package/deps/zlib/contrib/iostream3/test/add_subdirectory_test.cmake.in +25 -0
- package/deps/zlib/contrib/iostream3/test/find_package_no_components_test.cmake.in +24 -0
- package/deps/zlib/contrib/iostream3/test/find_package_test.cmake.in +24 -0
- package/deps/zlib/contrib/iostream3/test/find_package_wrong_components_test.cmake.in +24 -0
- package/deps/zlib/contrib/iostream3/test.cc +50 -0
- package/deps/zlib/contrib/iostream3/zfstream.cc +479 -0
- package/deps/zlib/contrib/iostream3/zfstream.h +466 -0
- package/deps/zlib/contrib/minizip/CMakeLists.txt +387 -0
- package/deps/zlib/contrib/minizip/LICENSE.Info-Zip +58 -0
- package/deps/zlib/contrib/minizip/Makefile +33 -0
- package/deps/zlib/contrib/minizip/Makefile.am +45 -0
- package/deps/zlib/contrib/minizip/MiniZip64_Changes.txt +6 -0
- package/deps/zlib/contrib/minizip/MiniZip64_info.txt +69 -0
- package/deps/zlib/contrib/minizip/configure.ac +32 -0
- package/deps/zlib/contrib/minizip/crypt.h +125 -0
- package/deps/zlib/contrib/minizip/ints.h +57 -0
- package/deps/zlib/contrib/minizip/ioapi.c +231 -0
- package/deps/zlib/contrib/minizip/ioapi.h +183 -0
- package/deps/zlib/contrib/minizip/iowin32.c +447 -0
- package/deps/zlib/contrib/minizip/iowin32.h +27 -0
- package/deps/zlib/contrib/minizip/make_vms.com +25 -0
- package/deps/zlib/contrib/minizip/miniunz.c +647 -0
- package/deps/zlib/contrib/minizip/miniunzip.1 +63 -0
- package/deps/zlib/contrib/minizip/minizip.1 +46 -0
- package/deps/zlib/contrib/minizip/minizip.c +511 -0
- package/deps/zlib/contrib/minizip/minizip.pc.in +13 -0
- package/deps/zlib/contrib/minizip/minizip.pc.txt +13 -0
- package/deps/zlib/contrib/minizip/minizipConfig.cmake.in +27 -0
- package/deps/zlib/contrib/minizip/mztools.c +294 -0
- package/deps/zlib/contrib/minizip/mztools.h +37 -0
- package/deps/zlib/contrib/minizip/skipset.h +366 -0
- package/deps/zlib/contrib/minizip/test/CMakeLists.txt +176 -0
- package/deps/zlib/contrib/minizip/test/add_subdirectory_exclude_test.cmake.in +29 -0
- package/deps/zlib/contrib/minizip/test/add_subdirectory_test.cmake.in +28 -0
- package/deps/zlib/contrib/minizip/test/find_package_no_components_test.cmake.in +26 -0
- package/deps/zlib/contrib/minizip/test/find_package_test.cmake.in +26 -0
- package/deps/zlib/contrib/minizip/test/find_package_wrong_components_test.cmake.in +26 -0
- package/deps/zlib/contrib/minizip/test/test_helper.cm +32 -0
- package/deps/zlib/contrib/minizip/unzip.c +1984 -0
- package/deps/zlib/contrib/minizip/unzip.h +442 -0
- package/deps/zlib/contrib/minizip/zip.c +2246 -0
- package/deps/zlib/contrib/minizip/zip.h +371 -0
- package/deps/zlib/contrib/nuget/nuget.csproj +45 -0
- package/deps/zlib/contrib/nuget/nuget.sln +22 -0
- package/deps/zlib/contrib/pascal/example.pas +599 -0
- package/deps/zlib/contrib/pascal/readme.txt +76 -0
- package/deps/zlib/contrib/pascal/zlibd32.mak +99 -0
- package/deps/zlib/contrib/pascal/zlibpas.pas +276 -0
- package/deps/zlib/contrib/puff/CMakeLists.txt +154 -0
- package/deps/zlib/contrib/puff/Makefile +42 -0
- package/deps/zlib/contrib/puff/README +63 -0
- package/deps/zlib/contrib/puff/bin-writer.c +26 -0
- package/deps/zlib/contrib/puff/puff.c +840 -0
- package/deps/zlib/contrib/puff/puff.h +35 -0
- package/deps/zlib/contrib/puff/puffConfig.cmake.in +18 -0
- package/deps/zlib/contrib/puff/pufftest.c +168 -0
- package/deps/zlib/contrib/puff/test/CMakeLists.txt +262 -0
- package/deps/zlib/contrib/puff/test/add_subdirectory_exclude_test.cmake.in +26 -0
- package/deps/zlib/contrib/puff/test/add_subdirectory_test.cmake.in +25 -0
- package/deps/zlib/contrib/puff/test/find_package_no_components_test.cmake.in +24 -0
- package/deps/zlib/contrib/puff/test/find_package_test.cmake.in +24 -0
- package/deps/zlib/contrib/puff/test/find_package_wrong_components_test.cmake.in +24 -0
- package/deps/zlib/contrib/puff/test/tester-cov.cmake +58 -0
- package/deps/zlib/contrib/puff/test/tester.cmake +16 -0
- package/deps/zlib/contrib/puff/zeros.raw +0 -0
- package/deps/zlib/contrib/testzlib/CMakeLists.txt +44 -0
- package/deps/zlib/contrib/testzlib/testzlib.c +275 -0
- package/deps/zlib/contrib/testzlib/testzlib.txt +10 -0
- package/deps/zlib/contrib/vstudio/readme.txt +22 -0
- package/deps/zlib/contrib/zlib1-dll/CMakeLists.txt +196 -0
- package/deps/zlib/contrib/zlib1-dll/readme.txt +21 -0
- package/deps/zlib/crc32.c +983 -0
- package/deps/zlib/crc32.h +9446 -0
- package/deps/zlib/deflate.c +2185 -0
- package/deps/zlib/deflate.h +383 -0
- package/deps/zlib/doc/algorithm.txt +209 -0
- package/deps/zlib/doc/crc-doc.1.0.pdf +0 -0
- package/deps/zlib/doc/rfc1950.txt +619 -0
- package/deps/zlib/doc/rfc1951.txt +955 -0
- package/deps/zlib/doc/rfc1952.txt +675 -0
- package/deps/zlib/doc/txtvsbin.txt +107 -0
- package/deps/zlib/examples/README.examples +54 -0
- package/deps/zlib/examples/enough.c +597 -0
- package/deps/zlib/examples/fitblk.c +233 -0
- package/deps/zlib/examples/gun.c +702 -0
- package/deps/zlib/examples/gzappend.c +504 -0
- package/deps/zlib/examples/gzjoin.c +449 -0
- package/deps/zlib/examples/gzlog.c +1061 -0
- package/deps/zlib/examples/gzlog.h +91 -0
- package/deps/zlib/examples/gznorm.c +474 -0
- package/deps/zlib/examples/zlib_how.html +550 -0
- package/deps/zlib/examples/zpipe.c +206 -0
- package/deps/zlib/examples/zran.c +546 -0
- package/deps/zlib/examples/zran.h +53 -0
- package/deps/zlib/gzclose.c +23 -0
- package/deps/zlib/gzguts.h +216 -0
- package/deps/zlib/gzlib.c +609 -0
- package/deps/zlib/gzread.c +668 -0
- package/deps/zlib/gzwrite.c +700 -0
- package/deps/zlib/infback.c +581 -0
- package/deps/zlib/inffast.c +321 -0
- package/deps/zlib/inffast.h +11 -0
- package/deps/zlib/inffixed.h +94 -0
- package/deps/zlib/inflate.c +1413 -0
- package/deps/zlib/inflate.h +126 -0
- package/deps/zlib/inftrees.c +424 -0
- package/deps/zlib/inftrees.h +64 -0
- package/deps/zlib/make_vms.com +867 -0
- package/deps/zlib/msdos/Makefile.bor +115 -0
- package/deps/zlib/msdos/Makefile.dj2 +104 -0
- package/deps/zlib/msdos/Makefile.emx +69 -0
- package/deps/zlib/msdos/Makefile.msc +112 -0
- package/deps/zlib/msdos/Makefile.tc +100 -0
- package/deps/zlib/os400/README400 +48 -0
- package/deps/zlib/os400/bndsrc +144 -0
- package/deps/zlib/os400/make.sh +383 -0
- package/deps/zlib/os400/zlibfixed.rpgle +578 -0
- package/deps/zlib/os400/zlibfree.rpgle +634 -0
- package/deps/zlib/qnx/package.qpg +141 -0
- package/deps/zlib/test/CMakeLists.txt +318 -0
- package/deps/zlib/test/add_subdirectory_exclude_test.cmake.in +29 -0
- package/deps/zlib/test/add_subdirectory_test.cmake.in +28 -0
- package/deps/zlib/test/example.c +552 -0
- package/deps/zlib/test/find_package_no_components_test.cmake.in +27 -0
- package/deps/zlib/test/find_package_test.cmake.in +27 -0
- package/deps/zlib/test/find_package_wrong_components_test.cmake.in +27 -0
- package/deps/zlib/test/infcover.c +672 -0
- package/deps/zlib/test/minigzip.c +592 -0
- package/deps/zlib/treebuild.xml +116 -0
- package/deps/zlib/trees.c +1119 -0
- package/deps/zlib/trees.h +128 -0
- package/deps/zlib/uncompr.c +101 -0
- package/deps/zlib/watcom/watcom_f.mak +43 -0
- package/deps/zlib/watcom/watcom_l.mak +43 -0
- package/deps/zlib/win32/DLL_FAQ.txt +381 -0
- package/deps/zlib/win32/Makefile.bor +109 -0
- package/deps/zlib/win32/Makefile.gcc +177 -0
- package/deps/zlib/win32/Makefile.msc +159 -0
- package/deps/zlib/win32/README-WIN32.txt +103 -0
- package/deps/zlib/win32/VisualC.txt +3 -0
- package/deps/zlib/win32/zlib.def +104 -0
- package/deps/zlib/win32/zlib1.rc +37 -0
- package/deps/zlib/zconf.h.in +551 -0
- package/deps/zlib/zlib.3 +149 -0
- package/deps/zlib/zlib.3.pdf +0 -0
- package/deps/zlib/zlib.h +2057 -0
- package/deps/zlib/zlib.map +116 -0
- package/deps/zlib/zlib.pc.cmakein +14 -0
- package/deps/zlib/zlib.pc.in +14 -0
- package/deps/zlib/zlibConfig.cmake.in +18 -0
- package/deps/zlib/zutil.c +313 -0
- package/deps/zlib/zutil.h +331 -0
- package/dist/index.d.ts +266 -0
- package/dist/index.js +1146 -0
- package/dist/libwz.js +5632 -0
- package/dist/libwz.wasm +0 -0
- package/include/wz/CRC32.h +182 -0
- package/include/wz/PngUtility.h +72 -0
- package/include/wz/PortalType.h +124 -0
- package/include/wz/Properties/WzBinaryProperty.h +70 -0
- package/include/wz/Properties/WzCanvasProperty.h +55 -0
- package/include/wz/Properties/WzConvexProperty.h +34 -0
- package/include/wz/Properties/WzDoubleProperty.h +32 -0
- package/include/wz/Properties/WzFloatProperty.h +30 -0
- package/include/wz/Properties/WzIntProperty.h +30 -0
- package/include/wz/Properties/WzLongProperty.h +30 -0
- package/include/wz/Properties/WzLuaProperty.h +31 -0
- package/include/wz/Properties/WzNullProperty.h +15 -0
- package/include/wz/Properties/WzPngProperty.h +53 -0
- package/include/wz/Properties/WzRawDataProperty.h +46 -0
- package/include/wz/Properties/WzShortProperty.h +31 -0
- package/include/wz/Properties/WzStringProperty.h +32 -0
- package/include/wz/Properties/WzSubProperty.h +35 -0
- package/include/wz/Properties/WzUOLProperty.h +44 -0
- package/include/wz/Properties/WzVectorProperty.h +40 -0
- package/include/wz/Properties/WzVideoProperty.h +43 -0
- package/include/wz/Result.h +58 -0
- package/include/wz/Util/Defines.h +16 -0
- package/include/wz/Util/ListFileParser.h +20 -0
- package/include/wz/Util/WzBinaryReader.h +95 -0
- package/include/wz/Util/WzBinaryWriter.h +72 -0
- package/include/wz/Util/WzBlobDataSource.h +30 -0
- package/include/wz/Util/WzDataSource.h +49 -0
- package/include/wz/Util/WzKeyGenerator.h +28 -0
- package/include/wz/Util/WzMutableKey.h +39 -0
- package/include/wz/Util/WzPath.h +37 -0
- package/include/wz/Util/WzStream.h +86 -0
- package/include/wz/Util/WzTool.h +42 -0
- package/include/wz/WzAESConstant.h +17 -0
- package/include/wz/WzDirectory.h +97 -0
- package/include/wz/WzEnums.h +76 -0
- package/include/wz/WzFile.h +99 -0
- package/include/wz/WzHeader.h +47 -0
- package/include/wz/WzImage.h +97 -0
- package/include/wz/WzImageProperty.h +92 -0
- package/include/wz/WzObject.h +55 -0
- package/include/wz/WzPropertyCollection.h +115 -0
- package/include/wz/wz.h +41 -0
- package/include/wz/wz_api.h +432 -0
- package/package.json +93 -0
- package/src/PngUtility.cpp +328 -0
- package/src/Properties/WzBinaryProperty.cpp +183 -0
- package/src/Properties/WzCanvasProperty.cpp +262 -0
- package/src/Properties/WzConvexProperty.cpp +159 -0
- package/src/Properties/WzDoubleProperty.cpp +12 -0
- package/src/Properties/WzFloatProperty.cpp +17 -0
- package/src/Properties/WzIntProperty.cpp +12 -0
- package/src/Properties/WzLongProperty.cpp +12 -0
- package/src/Properties/WzLuaProperty.cpp +37 -0
- package/src/Properties/WzNullProperty.cpp +11 -0
- package/src/Properties/WzPngProperty.cpp +637 -0
- package/src/Properties/WzRawDataProperty.cpp +116 -0
- package/src/Properties/WzShortProperty.cpp +12 -0
- package/src/Properties/WzStringProperty.cpp +44 -0
- package/src/Properties/WzSubProperty.cpp +129 -0
- package/src/Properties/WzUOLProperty.cpp +136 -0
- package/src/Properties/WzVectorProperty.cpp +22 -0
- package/src/Properties/WzVideoProperty.cpp +115 -0
- package/src/Util/ListFileParser.cpp +48 -0
- package/src/Util/WzBinaryReader.cpp +368 -0
- package/src/Util/WzBinaryWriter.cpp +305 -0
- package/src/Util/WzBlobDataSource.cpp +47 -0
- package/src/Util/WzDataSource.cpp +61 -0
- package/src/Util/WzKeyGenerator.cpp +43 -0
- package/src/Util/WzMutableKey.cpp +59 -0
- package/src/Util/WzStream.cpp +196 -0
- package/src/Util/WzTool.cpp +266 -0
- package/src/WzAESConstant.cpp +12 -0
- package/src/WzDirectory.cpp +669 -0
- package/src/WzEnums.cpp +20 -0
- package/src/WzFile.cpp +450 -0
- package/src/WzImage.cpp +350 -0
- package/src/WzImageProperty.cpp +469 -0
- package/src/WzObject.cpp +174 -0
- package/src/WzPropertyCollection.cpp +84 -0
- package/src/capi/wz_api.cpp +1996 -0
- package/src/node/binding.cpp +1776 -0
|
@@ -0,0 +1,262 @@
|
|
|
1
|
+
#include "wz/Properties/WzCanvasProperty.h"
|
|
2
|
+
#include <algorithm>
|
|
3
|
+
#include <cctype>
|
|
4
|
+
#include <regex>
|
|
5
|
+
#include <string>
|
|
6
|
+
#include <vector>
|
|
7
|
+
#include "wz/Properties/WzPngProperty.h"
|
|
8
|
+
#include "wz/Properties/WzStringProperty.h"
|
|
9
|
+
#include "wz/Util/WzBinaryWriter.h"
|
|
10
|
+
#include "wz/WzFile.h"
|
|
11
|
+
#include "wz/WzImage.h"
|
|
12
|
+
|
|
13
|
+
namespace wz {
|
|
14
|
+
|
|
15
|
+
WzCanvasProperty::WzCanvasProperty() : properties_(this) {}
|
|
16
|
+
WzCanvasProperty::WzCanvasProperty(const std::string& name)
|
|
17
|
+
: properties_(this) {
|
|
18
|
+
SetName(name);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
WzCanvasProperty::~WzCanvasProperty() = default;
|
|
22
|
+
|
|
23
|
+
Result<void> WzCanvasProperty::WriteValue(WzBinaryWriter* writer) const {
|
|
24
|
+
if (!imageProp_) {
|
|
25
|
+
return std::unexpected(Error::NotImplemented(
|
|
26
|
+
"Cannot write Canvas property without a PNG property"));
|
|
27
|
+
}
|
|
28
|
+
auto bytes = imageProp_->GetCompressedBytesForExtraction(false);
|
|
29
|
+
if (!bytes.has_value()) return std::unexpected(bytes.error());
|
|
30
|
+
|
|
31
|
+
writer->WriteStringValue("Canvas",
|
|
32
|
+
WzImage::WzImageHeaderByte_WithoutOffset,
|
|
33
|
+
WzImage::WzImageHeaderByte_WithOffset);
|
|
34
|
+
writer->WriteByte(0);
|
|
35
|
+
if (properties_.size() > 0) {
|
|
36
|
+
writer->WriteByte(1);
|
|
37
|
+
auto result = WzImageProperty::WritePropertyList(writer, properties_);
|
|
38
|
+
if (!result.has_value()) return result;
|
|
39
|
+
} else {
|
|
40
|
+
writer->WriteByte(0);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
writer->WriteCompressedInt(imageProp_->Width());
|
|
44
|
+
writer->WriteCompressedInt(imageProp_->Height());
|
|
45
|
+
const int formatValue = static_cast<int>(imageProp_->Format());
|
|
46
|
+
writer->WriteCompressedInt(formatValue & 0xFF);
|
|
47
|
+
writer->WriteCompressedInt(formatValue >> 8);
|
|
48
|
+
writer->WriteInt32(0);
|
|
49
|
+
writer->WriteInt32(static_cast<int32_t>(bytes.value().size()) + 1);
|
|
50
|
+
writer->WriteByte(0);
|
|
51
|
+
if (!writer->BaseStream().Write(bytes.value().data(), bytes.value().size())) {
|
|
52
|
+
return std::unexpected(Error::IoError("Failed to write canvas property"));
|
|
53
|
+
}
|
|
54
|
+
return {};
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
Result<void> WzCanvasProperty::AddProperty(WzImageProperty* prop) {
|
|
58
|
+
return AddProperty(std::unique_ptr<WzImageProperty>(prop));
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
Result<void> WzCanvasProperty::AddProperty(
|
|
62
|
+
std::unique_ptr<WzImageProperty> prop) {
|
|
63
|
+
if (!prop) return {};
|
|
64
|
+
prop->SetParent(this);
|
|
65
|
+
properties_.Add(std::move(prop));
|
|
66
|
+
MarkParentImageChanged();
|
|
67
|
+
return {};
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
Result<std::unique_ptr<WzImageProperty>> WzCanvasProperty::RemoveProperty(
|
|
71
|
+
const std::string& propertyName) {
|
|
72
|
+
for (size_t i = 0; i < properties_.size(); i++) {
|
|
73
|
+
if (properties_[i]->Name() == propertyName) {
|
|
74
|
+
auto removed = properties_.Remove(properties_[i]);
|
|
75
|
+
MarkParentImageChanged();
|
|
76
|
+
return removed;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
return std::unique_ptr<WzImageProperty>();
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
Result<std::unique_ptr<WzImageProperty>> WzCanvasProperty::RemoveProperty(
|
|
83
|
+
WzImageProperty* prop) {
|
|
84
|
+
auto removed = properties_.Remove(prop);
|
|
85
|
+
if (removed) MarkParentImageChanged();
|
|
86
|
+
return removed;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
Result<void> WzCanvasProperty::ClearProperties() {
|
|
90
|
+
if (properties_.size() == 0) return {};
|
|
91
|
+
properties_.clear();
|
|
92
|
+
MarkParentImageChanged();
|
|
93
|
+
return {};
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
bool WzCanvasProperty::ContainsInlinkProperty() const {
|
|
97
|
+
for (auto* p : properties_) {
|
|
98
|
+
if (p->Name() == InlinkPropertyName) return true;
|
|
99
|
+
}
|
|
100
|
+
return false;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
bool WzCanvasProperty::ContainsOutlinkProperty() const {
|
|
104
|
+
for (auto* p : properties_) {
|
|
105
|
+
if (p->Name() == OutlinkPropertyName) return true;
|
|
106
|
+
}
|
|
107
|
+
return false;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
WzImageProperty* WzCanvasProperty::operator[](const std::string& name) {
|
|
111
|
+
if (name == "PNG") return imageProp_.get();
|
|
112
|
+
|
|
113
|
+
std::string lower = name;
|
|
114
|
+
std::transform(
|
|
115
|
+
lower.begin(), lower.end(), lower.begin(), [](unsigned char c) {
|
|
116
|
+
return static_cast<char>(std::tolower(c));
|
|
117
|
+
});
|
|
118
|
+
for (auto* prop : properties_) {
|
|
119
|
+
std::string n = prop->Name();
|
|
120
|
+
std::transform(n.begin(), n.end(), n.begin(), [](unsigned char c) {
|
|
121
|
+
return static_cast<char>(std::tolower(c));
|
|
122
|
+
});
|
|
123
|
+
if (n == lower) return prop;
|
|
124
|
+
}
|
|
125
|
+
return nullptr;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
WzImageProperty* WzCanvasProperty::GetFromPath(const std::string& path) {
|
|
129
|
+
std::vector<std::string> segments;
|
|
130
|
+
size_t start = 0;
|
|
131
|
+
while (true) {
|
|
132
|
+
size_t end = path.find('/', start);
|
|
133
|
+
if (end == std::string::npos) break;
|
|
134
|
+
if (end > start) segments.push_back(path.substr(start, end - start));
|
|
135
|
+
start = end + 1;
|
|
136
|
+
}
|
|
137
|
+
std::string last = path.substr(start);
|
|
138
|
+
if (!last.empty()) segments.push_back(last);
|
|
139
|
+
|
|
140
|
+
if (segments.empty()) return nullptr;
|
|
141
|
+
|
|
142
|
+
if (segments[0] == "..") {
|
|
143
|
+
auto* parent = Parent();
|
|
144
|
+
if (!parent) return nullptr;
|
|
145
|
+
|
|
146
|
+
std::string remaining;
|
|
147
|
+
for (size_t i = 1; i < segments.size(); i++) {
|
|
148
|
+
if (i > 1) remaining += '/';
|
|
149
|
+
remaining += segments[i];
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
auto parentType = parent->ObjectType();
|
|
153
|
+
if (parentType == WzObjectType::Image)
|
|
154
|
+
return static_cast<WzImage*>(parent)->GetFromPath(remaining);
|
|
155
|
+
if (parentType == WzObjectType::Property)
|
|
156
|
+
return static_cast<WzImageProperty*>(parent)->GetFromPath(remaining);
|
|
157
|
+
return nullptr;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
WzImageProperty* ret = this;
|
|
161
|
+
for (const auto& seg : segments) {
|
|
162
|
+
if (seg == "PNG") return imageProp_.get();
|
|
163
|
+
if (!ret || !ret->WzProperties()) return nullptr;
|
|
164
|
+
|
|
165
|
+
WzImageProperty* found = nullptr;
|
|
166
|
+
for (auto* p : *ret->WzProperties()) {
|
|
167
|
+
if (p && p->Name() == seg) {
|
|
168
|
+
found = p;
|
|
169
|
+
break;
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
if (!found) return nullptr;
|
|
173
|
+
ret = found;
|
|
174
|
+
}
|
|
175
|
+
return ret;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
Result<void> WzCanvasProperty::SaveToFile(const std::string& filePath) {
|
|
179
|
+
if (!imageProp_)
|
|
180
|
+
return std::unexpected(Error::DataError("Canvas has no PNG property"));
|
|
181
|
+
return imageProp_->SaveToFile(filePath);
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
Result<WzImageProperty*> WzCanvasProperty::GetLinkedWzImageProperty() {
|
|
185
|
+
auto* inlinkProp = (*this)[InlinkPropertyName];
|
|
186
|
+
std::string inlink =
|
|
187
|
+
(inlinkProp && inlinkProp->PropertyType() == WzPropertyType::String)
|
|
188
|
+
? static_cast<WzStringProperty*>(inlinkProp)->Value()
|
|
189
|
+
: "";
|
|
190
|
+
auto* outlinkProp = (*this)[OutlinkPropertyName];
|
|
191
|
+
std::string outlink =
|
|
192
|
+
(outlinkProp && outlinkProp->PropertyType() == WzPropertyType::String)
|
|
193
|
+
? static_cast<WzStringProperty*>(outlinkProp)->Value()
|
|
194
|
+
: "";
|
|
195
|
+
|
|
196
|
+
if (!inlink.empty()) {
|
|
197
|
+
auto* current = Parent();
|
|
198
|
+
while (current) {
|
|
199
|
+
if (current->ObjectType() == WzObjectType::Image) {
|
|
200
|
+
auto* prop = static_cast<WzImage*>(current)->GetFromPath(inlink);
|
|
201
|
+
if (prop) return prop;
|
|
202
|
+
break;
|
|
203
|
+
}
|
|
204
|
+
current = current->Parent();
|
|
205
|
+
}
|
|
206
|
+
} else if (!outlink.empty()) {
|
|
207
|
+
auto* current = Parent();
|
|
208
|
+
WzFile* wzFileParent = nullptr;
|
|
209
|
+
while (current) {
|
|
210
|
+
if (current->ObjectType() == WzObjectType::Directory) {
|
|
211
|
+
wzFileParent = current->WzFileParent();
|
|
212
|
+
break;
|
|
213
|
+
}
|
|
214
|
+
current = current->Parent();
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
if (wzFileParent) {
|
|
218
|
+
// Regex: match prefix letters before digits in wz file name
|
|
219
|
+
// e.g. "Mob001.wz" → "Mob/"
|
|
220
|
+
std::string fname = wzFileParent->Name();
|
|
221
|
+
std::string prefixWz;
|
|
222
|
+
for (char c : fname) {
|
|
223
|
+
if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'))
|
|
224
|
+
prefixWz += c;
|
|
225
|
+
else
|
|
226
|
+
break;
|
|
227
|
+
}
|
|
228
|
+
prefixWz += "/";
|
|
229
|
+
|
|
230
|
+
WzObject* foundProperty = nullptr;
|
|
231
|
+
if (outlink.size() >= prefixWz.size() &&
|
|
232
|
+
outlink.compare(0, prefixWz.size(), prefixWz) == 0) {
|
|
233
|
+
std::string realpath = outlink.substr(prefixWz.size());
|
|
234
|
+
std::string wzfName = wzFileParent->Name();
|
|
235
|
+
auto dotPos = wzfName.rfind(".wz");
|
|
236
|
+
if (dotPos != std::string::npos) wzfName = wzfName.substr(0, dotPos);
|
|
237
|
+
realpath = wzfName + "/" + realpath;
|
|
238
|
+
foundProperty = wzFileParent->GetObjectFromPath(realpath);
|
|
239
|
+
} else {
|
|
240
|
+
// if (WzFileManager::fileManager &&
|
|
241
|
+
// WzFileManager::fileManager->Is64Bit()) {
|
|
242
|
+
// if (WzFileManager::ContainsCanvasDirectory(outlink)) {
|
|
243
|
+
// std::string canvasFolderBase =
|
|
244
|
+
// WzFileManager::NormaliseWzCanvasDirectory(outlink);
|
|
245
|
+
// auto result = WzFileManager::fileManager->LoadCanvasSection(
|
|
246
|
+
// canvasFolderBase, wzFileParent->MapleVersion());
|
|
247
|
+
// if (!result.has_value()) {
|
|
248
|
+
// return std::unexpected(result.error());
|
|
249
|
+
// }
|
|
250
|
+
// }
|
|
251
|
+
// }
|
|
252
|
+
foundProperty = wzFileParent->GetObjectFromPath(outlink);
|
|
253
|
+
}
|
|
254
|
+
if (foundProperty &&
|
|
255
|
+
foundProperty->ObjectType() == WzObjectType::Property)
|
|
256
|
+
return static_cast<WzImageProperty*>(foundProperty);
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
return this;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
} // namespace wz
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
#include "wz/Properties/WzConvexProperty.h"
|
|
2
|
+
#include <algorithm>
|
|
3
|
+
#include <cctype>
|
|
4
|
+
#include <vector>
|
|
5
|
+
#include "wz/Util/WzBinaryWriter.h"
|
|
6
|
+
#include "wz/WzImage.h"
|
|
7
|
+
|
|
8
|
+
namespace wz {
|
|
9
|
+
|
|
10
|
+
namespace {
|
|
11
|
+
|
|
12
|
+
bool IsConvexChildProperty(const WzImageProperty* prop) {
|
|
13
|
+
if (!prop) return false;
|
|
14
|
+
switch (prop->PropertyType()) {
|
|
15
|
+
case WzPropertyType::SubProperty:
|
|
16
|
+
case WzPropertyType::Canvas:
|
|
17
|
+
case WzPropertyType::Vector:
|
|
18
|
+
case WzPropertyType::Convex:
|
|
19
|
+
case WzPropertyType::Sound:
|
|
20
|
+
case WzPropertyType::UOL:
|
|
21
|
+
return true;
|
|
22
|
+
case WzPropertyType::Raw:
|
|
23
|
+
return prop->IsRawDataProperty() || prop->IsVideoProperty();
|
|
24
|
+
default:
|
|
25
|
+
return false;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
} // namespace
|
|
30
|
+
|
|
31
|
+
WzConvexProperty::WzConvexProperty() : properties_(this) {}
|
|
32
|
+
WzConvexProperty::WzConvexProperty(const std::string& name)
|
|
33
|
+
: properties_(this) {
|
|
34
|
+
SetName(name);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
WzConvexProperty::~WzConvexProperty() = default;
|
|
38
|
+
|
|
39
|
+
Result<void> WzConvexProperty::WriteValue(WzBinaryWriter* writer) const {
|
|
40
|
+
writer->WriteStringValue("Shape2D#Convex2D",
|
|
41
|
+
WzImage::WzImageHeaderByte_WithoutOffset,
|
|
42
|
+
WzImage::WzImageHeaderByte_WithOffset);
|
|
43
|
+
writer->WriteCompressedInt(static_cast<int32_t>(properties_.size()));
|
|
44
|
+
for (auto* prop : properties_) {
|
|
45
|
+
if (!IsConvexChildProperty(prop)) {
|
|
46
|
+
return std::unexpected(Error::DataError(
|
|
47
|
+
"Cannot write Convex property with non-extended child"));
|
|
48
|
+
}
|
|
49
|
+
auto result = prop->WriteValue(writer);
|
|
50
|
+
if (!result.has_value()) return result;
|
|
51
|
+
}
|
|
52
|
+
return {};
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
Result<void> WzConvexProperty::AddProperty(WzImageProperty* prop) {
|
|
56
|
+
return AddProperty(std::unique_ptr<WzImageProperty>(prop));
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
Result<void> WzConvexProperty::AddProperty(
|
|
60
|
+
std::unique_ptr<WzImageProperty> prop) {
|
|
61
|
+
if (!prop) return {};
|
|
62
|
+
prop->SetParent(this);
|
|
63
|
+
properties_.Add(std::move(prop));
|
|
64
|
+
MarkParentImageChanged();
|
|
65
|
+
return {};
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
Result<std::unique_ptr<WzImageProperty>> WzConvexProperty::RemoveProperty(
|
|
69
|
+
const std::string& propertyName) {
|
|
70
|
+
for (size_t i = 0; i < properties_.size(); i++) {
|
|
71
|
+
if (properties_[i]->Name() == propertyName) {
|
|
72
|
+
auto removed = properties_.Remove(properties_[i]);
|
|
73
|
+
MarkParentImageChanged();
|
|
74
|
+
return removed;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
return std::unique_ptr<WzImageProperty>();
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
Result<std::unique_ptr<WzImageProperty>> WzConvexProperty::RemoveProperty(
|
|
81
|
+
WzImageProperty* prop) {
|
|
82
|
+
auto removed = properties_.Remove(prop);
|
|
83
|
+
if (removed) MarkParentImageChanged();
|
|
84
|
+
return removed;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
Result<void> WzConvexProperty::ClearProperties() {
|
|
88
|
+
if (properties_.size() == 0) return {};
|
|
89
|
+
properties_.clear();
|
|
90
|
+
MarkParentImageChanged();
|
|
91
|
+
return {};
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
WzImageProperty* WzConvexProperty::operator[](const std::string& name) {
|
|
95
|
+
std::string lower = name;
|
|
96
|
+
std::transform(
|
|
97
|
+
lower.begin(), lower.end(), lower.begin(), [](unsigned char c) {
|
|
98
|
+
return static_cast<char>(std::tolower(c));
|
|
99
|
+
});
|
|
100
|
+
for (auto* prop : properties_) {
|
|
101
|
+
std::string n = prop->Name();
|
|
102
|
+
std::transform(n.begin(), n.end(), n.begin(), [](unsigned char c) {
|
|
103
|
+
return static_cast<char>(std::tolower(c));
|
|
104
|
+
});
|
|
105
|
+
if (n == lower) return prop;
|
|
106
|
+
}
|
|
107
|
+
return nullptr;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
WzImageProperty* WzConvexProperty::GetFromPath(const std::string& path) {
|
|
111
|
+
std::vector<std::string> segments;
|
|
112
|
+
size_t start = 0;
|
|
113
|
+
while (true) {
|
|
114
|
+
size_t end = path.find('/', start);
|
|
115
|
+
if (end == std::string::npos) break;
|
|
116
|
+
if (end > start) segments.push_back(path.substr(start, end - start));
|
|
117
|
+
start = end + 1;
|
|
118
|
+
}
|
|
119
|
+
std::string last = path.substr(start);
|
|
120
|
+
if (!last.empty()) segments.push_back(last);
|
|
121
|
+
|
|
122
|
+
if (segments.empty()) return nullptr;
|
|
123
|
+
|
|
124
|
+
if (segments[0] == "..") {
|
|
125
|
+
auto* parent = Parent();
|
|
126
|
+
if (!parent) return nullptr;
|
|
127
|
+
|
|
128
|
+
std::string remaining;
|
|
129
|
+
for (size_t i = 1; i < segments.size(); i++) {
|
|
130
|
+
if (i > 1) remaining += '/';
|
|
131
|
+
remaining += segments[i];
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
auto parentType = parent->ObjectType();
|
|
135
|
+
if (parentType == WzObjectType::Image)
|
|
136
|
+
return static_cast<WzImage*>(parent)->GetFromPath(remaining);
|
|
137
|
+
if (parentType == WzObjectType::Property)
|
|
138
|
+
return static_cast<WzImageProperty*>(parent)->GetFromPath(remaining);
|
|
139
|
+
return nullptr;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
WzImageProperty* ret = this;
|
|
143
|
+
for (const auto& seg : segments) {
|
|
144
|
+
if (!ret || !ret->WzProperties()) return nullptr;
|
|
145
|
+
|
|
146
|
+
WzImageProperty* found = nullptr;
|
|
147
|
+
for (auto* p : *ret->WzProperties()) {
|
|
148
|
+
if (p && p->Name() == seg) {
|
|
149
|
+
found = p;
|
|
150
|
+
break;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
if (!found) return nullptr;
|
|
154
|
+
ret = found;
|
|
155
|
+
}
|
|
156
|
+
return ret;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
} // namespace wz
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
#include "wz/Properties/WzDoubleProperty.h"
|
|
2
|
+
#include "wz/Util/WzBinaryWriter.h"
|
|
3
|
+
|
|
4
|
+
namespace wz {
|
|
5
|
+
|
|
6
|
+
Result<void> WzDoubleProperty::WriteValue(WzBinaryWriter* writer) const {
|
|
7
|
+
writer->WriteByte(5);
|
|
8
|
+
writer->WriteDouble(value_);
|
|
9
|
+
return {};
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
} // namespace wz
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#include "wz/Properties/WzFloatProperty.h"
|
|
2
|
+
#include "wz/Util/WzBinaryWriter.h"
|
|
3
|
+
|
|
4
|
+
namespace wz {
|
|
5
|
+
|
|
6
|
+
Result<void> WzFloatProperty::WriteValue(WzBinaryWriter* writer) const {
|
|
7
|
+
writer->WriteByte(4);
|
|
8
|
+
if (value_ == 0.0f) {
|
|
9
|
+
writer->WriteByte(0);
|
|
10
|
+
} else {
|
|
11
|
+
writer->WriteByte(0x80);
|
|
12
|
+
writer->WriteSingle(value_);
|
|
13
|
+
}
|
|
14
|
+
return {};
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
} // namespace wz
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
#include "wz/Properties/WzIntProperty.h"
|
|
2
|
+
#include "wz/Util/WzBinaryWriter.h"
|
|
3
|
+
|
|
4
|
+
namespace wz {
|
|
5
|
+
|
|
6
|
+
Result<void> WzIntProperty::WriteValue(WzBinaryWriter* writer) const {
|
|
7
|
+
writer->WriteByte(3);
|
|
8
|
+
writer->WriteCompressedInt(value_);
|
|
9
|
+
return {};
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
} // namespace wz
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
#include "wz/Properties/WzLongProperty.h"
|
|
2
|
+
#include "wz/Util/WzBinaryWriter.h"
|
|
3
|
+
|
|
4
|
+
namespace wz {
|
|
5
|
+
|
|
6
|
+
Result<void> WzLongProperty::WriteValue(WzBinaryWriter* writer) const {
|
|
7
|
+
writer->WriteByte(20);
|
|
8
|
+
writer->WriteCompressedLong(value_);
|
|
9
|
+
return {};
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
} // namespace wz
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
#include "wz/Properties/WzLuaProperty.h"
|
|
2
|
+
#include "wz/Util/WzBinaryWriter.h"
|
|
3
|
+
#include "wz/Util/WzKeyGenerator.h"
|
|
4
|
+
|
|
5
|
+
namespace wz {
|
|
6
|
+
WzLuaProperty::WzLuaProperty(const std::string& name,
|
|
7
|
+
const std::vector<uint8_t>& encryptedBytes)
|
|
8
|
+
: encryptedBytes_(encryptedBytes),
|
|
9
|
+
wzKey_(WzKeyGenerator::GenerateLuaWzKey()) {
|
|
10
|
+
SetName(name);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
Result<void> WzLuaProperty::WriteValue(WzBinaryWriter* writer) const {
|
|
14
|
+
writer->WriteByte(0x01);
|
|
15
|
+
writer->WriteCompressedInt(static_cast<int32_t>(encryptedBytes_.size()));
|
|
16
|
+
if (!writer->BaseStream().Write(encryptedBytes_.data(),
|
|
17
|
+
encryptedBytes_.size())) {
|
|
18
|
+
return std::unexpected(Error::IoError("Failed to write Lua property"));
|
|
19
|
+
}
|
|
20
|
+
return {};
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
std::string WzLuaProperty::GetString() const {
|
|
24
|
+
auto decoded = EncodeDecode(encryptedBytes_);
|
|
25
|
+
return std::string(decoded.begin(), decoded.end());
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
std::vector<uint8_t> WzLuaProperty::EncodeDecode(
|
|
29
|
+
const std::vector<uint8_t>& input) const {
|
|
30
|
+
std::vector<uint8_t> result(input.size());
|
|
31
|
+
for (size_t i = 0; i < input.size(); i++) {
|
|
32
|
+
result[i] = input[i] ^ wzKey_[i];
|
|
33
|
+
}
|
|
34
|
+
return result;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
} // namespace wz
|