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
package/src/WzImage.cpp
ADDED
|
@@ -0,0 +1,350 @@
|
|
|
1
|
+
#include "wz/WzImage.h"
|
|
2
|
+
#include <algorithm>
|
|
3
|
+
#include <cctype>
|
|
4
|
+
#include <mutex>
|
|
5
|
+
#include <utility>
|
|
6
|
+
#include "wz/Properties/WzLuaProperty.h"
|
|
7
|
+
#include "wz/Util/WzBinaryReader.h"
|
|
8
|
+
#include "wz/Util/WzBinaryWriter.h"
|
|
9
|
+
#include "wz/Util/WzTool.h"
|
|
10
|
+
#include "wz/WzDirectory.h"
|
|
11
|
+
#include "wz/WzFile.h"
|
|
12
|
+
|
|
13
|
+
namespace wz {
|
|
14
|
+
|
|
15
|
+
namespace {
|
|
16
|
+
|
|
17
|
+
bool IsSingleLuaProperty(WzPropertyCollection* properties) {
|
|
18
|
+
return properties && properties->size() == 1 &&
|
|
19
|
+
(*properties)[0]->PropertyType() == WzPropertyType::Lua;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
std::string ToLower(const std::string& s) {
|
|
23
|
+
std::string r = s;
|
|
24
|
+
std::transform(r.begin(), r.end(), r.begin(), [](unsigned char c) {
|
|
25
|
+
return static_cast<char>(std::tolower(c));
|
|
26
|
+
});
|
|
27
|
+
return r;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
} // namespace
|
|
31
|
+
|
|
32
|
+
WzImage::WzImage() : properties_(this) {}
|
|
33
|
+
WzImage::WzImage(const std::string& name) : properties_(this) {
|
|
34
|
+
SetName(name);
|
|
35
|
+
SetChanged(true);
|
|
36
|
+
}
|
|
37
|
+
WzImage::WzImage(const std::string& name, WzBinaryReader& reader, int checksum)
|
|
38
|
+
: checksum_(checksum), reader_(&reader), properties_(this) {
|
|
39
|
+
SetName(name);
|
|
40
|
+
blockStart_ = static_cast<int>(reader.Position());
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
WzImage::WzImage(const std::string& name,
|
|
44
|
+
WzFileStream&& dataStream,
|
|
45
|
+
WzMapleVersion mapleVersion)
|
|
46
|
+
: dataStream_(std::move(dataStream)), properties_(this) {
|
|
47
|
+
SetName(name);
|
|
48
|
+
auto iv = WzTool::GetIvByMapleVersion(mapleVersion);
|
|
49
|
+
ownedReader_.emplace(std::make_shared<WzFileDataSource>(&dataStream_), iv);
|
|
50
|
+
reader_ = &ownedReader_.value();
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
WzImage::~WzImage() {
|
|
54
|
+
name_.clear();
|
|
55
|
+
properties_.clear();
|
|
56
|
+
ownedReader_.reset();
|
|
57
|
+
reader_ = nullptr;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
WzFile* WzImage::WzFileParent() const {
|
|
61
|
+
return Parent() ? Parent()->WzFileParent() : nullptr;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
WzObjectType WzImage::ObjectType() const {
|
|
65
|
+
return WzObjectType::Image;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
Result<std::unique_ptr<WzObject>> WzImage::Remove() {
|
|
69
|
+
if (!Parent() || Parent()->ObjectType() != WzObjectType::Directory) {
|
|
70
|
+
return std::unexpected(Error::NotFound("WZ image has no parent directory"));
|
|
71
|
+
}
|
|
72
|
+
auto result = static_cast<WzDirectory*>(Parent())->RemoveImage(this);
|
|
73
|
+
if (!result.has_value()) return std::unexpected(result.error());
|
|
74
|
+
return std::unique_ptr<WzObject>(std::move(result.value()));
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
bool WzImage::IsLuaWzImage() const {
|
|
78
|
+
const auto& n = Name();
|
|
79
|
+
return n.size() >= 4 && n.substr(n.size() - 4) == ".lua";
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
WzPropertyCollection* WzImage::WzProperties() {
|
|
83
|
+
auto result = WzPropertiesResult();
|
|
84
|
+
if (!result.has_value()) return nullptr;
|
|
85
|
+
return result.value();
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
Result<WzPropertyCollection*> WzImage::WzPropertiesResult() {
|
|
89
|
+
auto parseResult = EnsureParsed();
|
|
90
|
+
if (!parseResult.has_value()) return std::unexpected(parseResult.error());
|
|
91
|
+
return &properties_;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
Result<void> WzImage::AddProperty(WzImageProperty* prop) {
|
|
95
|
+
if (!prop) {
|
|
96
|
+
return std::unexpected(
|
|
97
|
+
Error::InvalidArgument("Cannot add a null WZ image property"));
|
|
98
|
+
}
|
|
99
|
+
if (prop->Name().empty()) {
|
|
100
|
+
return std::unexpected(
|
|
101
|
+
Error::InvalidArgument("WZ image property name cannot be empty"));
|
|
102
|
+
}
|
|
103
|
+
if (prop->Parent()) {
|
|
104
|
+
return std::unexpected(
|
|
105
|
+
Error::InvalidArgument("WZ image property already has a parent"));
|
|
106
|
+
}
|
|
107
|
+
// Check for duplicate name (case-insensitive) matching C#
|
|
108
|
+
auto existing = GetPropertyByName(prop->Name());
|
|
109
|
+
if (!existing.has_value()) return std::unexpected(existing.error());
|
|
110
|
+
if (existing.value() != nullptr) {
|
|
111
|
+
return std::unexpected(Error::InvalidArgument(
|
|
112
|
+
"Duplicate WZ image property name: " + prop->Name()));
|
|
113
|
+
}
|
|
114
|
+
auto parseResult = EnsureParsed();
|
|
115
|
+
if (!parseResult.has_value()) return std::unexpected(parseResult.error());
|
|
116
|
+
properties_.Add(prop);
|
|
117
|
+
SetChanged(true);
|
|
118
|
+
return {};
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
Result<void> WzImage::AddProperty(std::unique_ptr<WzImageProperty> prop) {
|
|
122
|
+
auto* raw = prop.get();
|
|
123
|
+
auto result = AddProperty(raw);
|
|
124
|
+
if (result.has_value()) {
|
|
125
|
+
(void)prop.release();
|
|
126
|
+
}
|
|
127
|
+
return result;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
Result<std::unique_ptr<WzImageProperty>> WzImage::RemoveProperty(
|
|
131
|
+
const std::string& propertyName) {
|
|
132
|
+
auto parseResult = EnsureParsed();
|
|
133
|
+
if (!parseResult.has_value()) return std::unexpected(parseResult.error());
|
|
134
|
+
std::string lower = ToLower(propertyName);
|
|
135
|
+
for (size_t i = 0; i < properties_.size(); i++) {
|
|
136
|
+
if (ToLower(properties_[i]->Name()) == lower) {
|
|
137
|
+
auto removed = properties_.Remove(properties_[i]);
|
|
138
|
+
SetChanged(true);
|
|
139
|
+
return removed;
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
return std::unique_ptr<WzImageProperty>();
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
Result<std::unique_ptr<WzImageProperty>> WzImage::RemoveProperty(
|
|
146
|
+
WzImageProperty* prop) {
|
|
147
|
+
if (!prop) {
|
|
148
|
+
return std::unexpected(
|
|
149
|
+
Error::InvalidArgument("Cannot remove a null WZ image property"));
|
|
150
|
+
}
|
|
151
|
+
auto parseResult = EnsureParsed();
|
|
152
|
+
if (!parseResult.has_value()) return std::unexpected(parseResult.error());
|
|
153
|
+
auto removed = properties_.Remove(prop);
|
|
154
|
+
if (!removed) {
|
|
155
|
+
return std::unexpected(
|
|
156
|
+
Error::NotFound("WZ image property is not owned by this image"));
|
|
157
|
+
}
|
|
158
|
+
SetChanged(true);
|
|
159
|
+
return removed;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
Result<void> WzImage::ClearProperties() {
|
|
163
|
+
properties_.clear();
|
|
164
|
+
SetChanged(true);
|
|
165
|
+
return {};
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
WzImageProperty* WzImage::GetFromPath(const std::string& path) {
|
|
169
|
+
auto result = GetFromPathResult(path);
|
|
170
|
+
if (!result.has_value()) return nullptr;
|
|
171
|
+
return result.value();
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
Result<WzImageProperty*> WzImage::GetFromPathResult(const std::string& path) {
|
|
175
|
+
auto parseResult = EnsureParsed();
|
|
176
|
+
if (!parseResult.has_value()) return std::unexpected(parseResult.error());
|
|
177
|
+
|
|
178
|
+
// Split by '/', skip empty segments (C# uses
|
|
179
|
+
// StringSplitOptions.RemoveEmptyEntries)
|
|
180
|
+
std::vector<std::string> segments;
|
|
181
|
+
size_t start = 0, end;
|
|
182
|
+
while ((end = path.find('/', start)) != std::string::npos) {
|
|
183
|
+
std::string seg = path.substr(start, end - start);
|
|
184
|
+
if (!seg.empty()) segments.push_back(std::move(seg));
|
|
185
|
+
start = end + 1;
|
|
186
|
+
}
|
|
187
|
+
{
|
|
188
|
+
std::string last = path.substr(start);
|
|
189
|
+
if (!last.empty()) segments.push_back(std::move(last));
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
if (segments.empty() || segments[0] == "..") return nullptr;
|
|
193
|
+
|
|
194
|
+
WzImageProperty* ret = nullptr;
|
|
195
|
+
for (const auto& seg : segments) {
|
|
196
|
+
WzPropertyCollection* wps = ret ? ret->WzProperties() : nullptr;
|
|
197
|
+
if (ret != nullptr && wps == nullptr) return nullptr;
|
|
198
|
+
auto& props = (ret == nullptr ? properties_ : *wps);
|
|
199
|
+
bool found = false;
|
|
200
|
+
for (auto* p : props) {
|
|
201
|
+
if (p && p->Name() == seg) {
|
|
202
|
+
ret = p;
|
|
203
|
+
found = true;
|
|
204
|
+
break;
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
if (!found) return nullptr;
|
|
208
|
+
}
|
|
209
|
+
return ret;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
Result<bool> WzImage::ParseImage(bool forceReadFromData) {
|
|
213
|
+
if (!forceReadFromData) {
|
|
214
|
+
if (Parsed()) return true;
|
|
215
|
+
if (Changed()) {
|
|
216
|
+
SetParsed(true);
|
|
217
|
+
return true;
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
if (!reader_) return false;
|
|
221
|
+
|
|
222
|
+
std::lock_guard<std::recursive_mutex> lock(reader_->Mutex());
|
|
223
|
+
if (!forceReadFromData && Parsed()) return true;
|
|
224
|
+
|
|
225
|
+
// int64_t originalPos = reader_->Position();
|
|
226
|
+
reader_->SetPosition(offset_);
|
|
227
|
+
|
|
228
|
+
uint8_t b = reader_->ReadByte();
|
|
229
|
+
switch (b) {
|
|
230
|
+
case 0x1:
|
|
231
|
+
if (IsLuaWzImage()) {
|
|
232
|
+
int length = reader_->ReadCompressedInt();
|
|
233
|
+
auto rawEncBytes = reader_->ReadBytes(length);
|
|
234
|
+
auto lua = std::make_unique<WzLuaProperty>("Script", rawEncBytes);
|
|
235
|
+
lua->SetParent(this);
|
|
236
|
+
properties_.Add(std::move(lua));
|
|
237
|
+
parsed_ = true;
|
|
238
|
+
return true;
|
|
239
|
+
}
|
|
240
|
+
return false;
|
|
241
|
+
case WzImageHeaderByte_WithoutOffset: {
|
|
242
|
+
std::string prop = reader_->ReadString();
|
|
243
|
+
uint16_t val = reader_->ReadUInt16();
|
|
244
|
+
if (prop != "Property" || val != 0) return false;
|
|
245
|
+
} break;
|
|
246
|
+
default:
|
|
247
|
+
return false;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
auto r = WzImageProperty::ParsePropertyList(offset_, reader_, this, this);
|
|
251
|
+
if (!r.has_value()) return std::unexpected(r.error());
|
|
252
|
+
for (auto& prop : r.value().TakeItems()) {
|
|
253
|
+
properties_.Add(std::move(prop));
|
|
254
|
+
}
|
|
255
|
+
parsed_ = true;
|
|
256
|
+
return true;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
Result<void> WzImage::SaveImage(WzBinaryWriter* writer,
|
|
260
|
+
bool isDefaultUserKey,
|
|
261
|
+
bool forceReadFromData) {
|
|
262
|
+
if (!writer) {
|
|
263
|
+
return std::unexpected(
|
|
264
|
+
Error::InvalidArgument("Cannot save WzImage with a null writer"));
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
if (Changed() || !isDefaultUserKey || forceReadFromData) {
|
|
268
|
+
if (reader_ && !parsed_) {
|
|
269
|
+
SetParseEverything(true);
|
|
270
|
+
auto parseResult = ParseImage(true);
|
|
271
|
+
if (!parseResult.has_value()) {
|
|
272
|
+
return std::unexpected(parseResult.error());
|
|
273
|
+
}
|
|
274
|
+
if (!parseResult.value()) {
|
|
275
|
+
return std::unexpected(
|
|
276
|
+
Error::ParseError("Unable to parse image before saving"));
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
const int64_t startPos = writer->Position();
|
|
281
|
+
if (!IsSingleLuaProperty(&properties_)) {
|
|
282
|
+
writer->WriteStringValue("Property",
|
|
283
|
+
WzImageHeaderByte_WithoutOffset,
|
|
284
|
+
WzImageHeaderByte_WithOffset);
|
|
285
|
+
}
|
|
286
|
+
auto writeResult = WzImageProperty::WritePropertyList(writer, properties_);
|
|
287
|
+
if (!writeResult.has_value()) return writeResult;
|
|
288
|
+
writer->ClearStringCache();
|
|
289
|
+
SetBlockSize(static_cast<int>(writer->Position() - startPos));
|
|
290
|
+
return {};
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
if (!reader_) {
|
|
294
|
+
return std::unexpected(
|
|
295
|
+
Error::InvalidArgument("Cannot copy unchanged WzImage without reader"));
|
|
296
|
+
}
|
|
297
|
+
if (size_ < 0) {
|
|
298
|
+
return std::unexpected(
|
|
299
|
+
Error::DataError("Cannot copy WzImage with negative block size"));
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
std::lock_guard<std::recursive_mutex> lock(reader_->Mutex());
|
|
303
|
+
const int64_t originalPos = reader_->Position();
|
|
304
|
+
reader_->SetPosition(offset_);
|
|
305
|
+
auto bytes = reader_->ReadBytes(static_cast<size_t>(size_));
|
|
306
|
+
if (!writer->BaseStream().Write(bytes.data(), bytes.size())) {
|
|
307
|
+
reader_->SetPosition(originalPos);
|
|
308
|
+
return std::unexpected(Error::IoError("Failed to write unchanged WzImage"));
|
|
309
|
+
}
|
|
310
|
+
reader_->SetPosition(originalPos);
|
|
311
|
+
return {};
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
void WzImage::CalculateAndSetImageChecksum(const std::vector<uint8_t>& bytes) {
|
|
315
|
+
int64_t checksum = 0;
|
|
316
|
+
for (uint8_t byte : bytes) {
|
|
317
|
+
checksum += byte;
|
|
318
|
+
}
|
|
319
|
+
checksum_ = static_cast<int>(checksum);
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
void WzImage::UnparseImage() {
|
|
323
|
+
parsed_ = false;
|
|
324
|
+
properties_.clear();
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
Result<void> WzImage::EnsureParsed() {
|
|
328
|
+
if (!reader_ || parsed_) return {};
|
|
329
|
+
auto parseResult = ParseImage();
|
|
330
|
+
if (!parseResult.has_value()) return std::unexpected(parseResult.error());
|
|
331
|
+
return {};
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
WzImageProperty* WzImage::operator[](const std::string& name) {
|
|
335
|
+
auto result = GetPropertyByName(name);
|
|
336
|
+
if (!result.has_value()) return nullptr;
|
|
337
|
+
return result.value();
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
Result<WzImageProperty*> WzImage::GetPropertyByName(const std::string& name) {
|
|
341
|
+
auto parseResult = EnsureParsed();
|
|
342
|
+
if (!parseResult.has_value()) return std::unexpected(parseResult.error());
|
|
343
|
+
std::string lower = ToLower(name);
|
|
344
|
+
for (auto* prop : properties_) {
|
|
345
|
+
if (ToLower(prop->Name()) == lower) return prop;
|
|
346
|
+
}
|
|
347
|
+
return nullptr;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
} // namespace wz
|