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.
Files changed (362) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +165 -0
  3. package/binding.gyp +149 -0
  4. package/deps/tiny-aes/.github/workflows/c-cpp.yml +27 -0
  5. package/deps/tiny-aes/CMakeLists.txt +17 -0
  6. package/deps/tiny-aes/Makefile +61 -0
  7. package/deps/tiny-aes/README.md +83 -0
  8. package/deps/tiny-aes/aes.c +572 -0
  9. package/deps/tiny-aes/aes.h +91 -0
  10. package/deps/tiny-aes/aes.hpp +12 -0
  11. package/deps/tiny-aes/conanfile.py +73 -0
  12. package/deps/tiny-aes/library.json +19 -0
  13. package/deps/tiny-aes/library.properties +11 -0
  14. package/deps/tiny-aes/test.c +316 -0
  15. package/deps/tiny-aes/test.cpp +2 -0
  16. package/deps/tiny-aes/test_package/CMakeLists.txt +11 -0
  17. package/deps/tiny-aes/test_package/conanfile.py +17 -0
  18. package/deps/tiny-aes/unlicense.txt +24 -0
  19. package/deps/zlib/.cmake-format.yaml +245 -0
  20. package/deps/zlib/.github/workflows/c-std.yml +268 -0
  21. package/deps/zlib/.github/workflows/cmake.yml +147 -0
  22. package/deps/zlib/.github/workflows/configure.yml +146 -0
  23. package/deps/zlib/.github/workflows/contribs.yml +64 -0
  24. package/deps/zlib/.github/workflows/fuzz.yml +25 -0
  25. package/deps/zlib/.github/workflows/msys-cygwin.yml +92 -0
  26. package/deps/zlib/.github/workflows/others.yml +153 -0
  27. package/deps/zlib/BUILD.bazel +134 -0
  28. package/deps/zlib/CMakeLists.txt +310 -0
  29. package/deps/zlib/ChangeLog +1669 -0
  30. package/deps/zlib/FAQ +371 -0
  31. package/deps/zlib/INDEX +67 -0
  32. package/deps/zlib/LICENSE +22 -0
  33. package/deps/zlib/MODULE.bazel +9 -0
  34. package/deps/zlib/Makefile.in +426 -0
  35. package/deps/zlib/README +115 -0
  36. package/deps/zlib/README-cmake.md +79 -0
  37. package/deps/zlib/adler32.c +164 -0
  38. package/deps/zlib/amiga/Makefile.pup +69 -0
  39. package/deps/zlib/amiga/Makefile.sas +68 -0
  40. package/deps/zlib/compress.c +99 -0
  41. package/deps/zlib/configure +1078 -0
  42. package/deps/zlib/contrib/CMakeLists.txt +61 -0
  43. package/deps/zlib/contrib/README.contrib +57 -0
  44. package/deps/zlib/contrib/ada/CMakeLists.txt +217 -0
  45. package/deps/zlib/contrib/ada/buffer_demo.adb +106 -0
  46. package/deps/zlib/contrib/ada/cmake/Modules/CMakeADACompiler.cmake.in +23 -0
  47. package/deps/zlib/contrib/ada/cmake/Modules/CMakeADAInformation.cmake +133 -0
  48. package/deps/zlib/contrib/ada/cmake/Modules/CMakeDetermineADACompiler.cmake +33 -0
  49. package/deps/zlib/contrib/ada/cmake/Modules/CMakeTestADACompiler.cmake +46 -0
  50. package/deps/zlib/contrib/ada/cmake/binder_helper.cmake +47 -0
  51. package/deps/zlib/contrib/ada/cmake/compile_helper.cmake +32 -0
  52. package/deps/zlib/contrib/ada/cmake/exe_link_helper.cmake +53 -0
  53. package/deps/zlib/contrib/ada/cmake/shared_link_helper.cmake +52 -0
  54. package/deps/zlib/contrib/ada/cmake/static_link_helper.cmake +25 -0
  55. package/deps/zlib/contrib/ada/mtest.adb +156 -0
  56. package/deps/zlib/contrib/ada/read.adb +156 -0
  57. package/deps/zlib/contrib/ada/readme.txt +65 -0
  58. package/deps/zlib/contrib/ada/test.adb +463 -0
  59. package/deps/zlib/contrib/ada/zlib-streams.adb +225 -0
  60. package/deps/zlib/contrib/ada/zlib-streams.ads +114 -0
  61. package/deps/zlib/contrib/ada/zlib-thin.adb +142 -0
  62. package/deps/zlib/contrib/ada/zlib-thin.ads +450 -0
  63. package/deps/zlib/contrib/ada/zlib.adb +701 -0
  64. package/deps/zlib/contrib/ada/zlib.ads +328 -0
  65. package/deps/zlib/contrib/ada/zlib.gpr +20 -0
  66. package/deps/zlib/contrib/blast/CMakeLists.txt +166 -0
  67. package/deps/zlib/contrib/blast/Makefile +14 -0
  68. package/deps/zlib/contrib/blast/README +4 -0
  69. package/deps/zlib/contrib/blast/blast-test.c +42 -0
  70. package/deps/zlib/contrib/blast/blast.c +422 -0
  71. package/deps/zlib/contrib/blast/blast.h +84 -0
  72. package/deps/zlib/contrib/blast/blastConfig.cmake.in +18 -0
  73. package/deps/zlib/contrib/blast/test/CMakeLists.txt +193 -0
  74. package/deps/zlib/contrib/blast/test/add_subdirectory_exclude_test.cmake.in +27 -0
  75. package/deps/zlib/contrib/blast/test/add_subdirectory_test.cmake.in +25 -0
  76. package/deps/zlib/contrib/blast/test/find_package_no_components_test.cmake.in +24 -0
  77. package/deps/zlib/contrib/blast/test/find_package_test.cmake.in +24 -0
  78. package/deps/zlib/contrib/blast/test/find_package_wrong_components_test.cmake.in +24 -0
  79. package/deps/zlib/contrib/blast/test.pk +0 -0
  80. package/deps/zlib/contrib/blast/test.txt +1 -0
  81. package/deps/zlib/contrib/blast/tester.cmake +28 -0
  82. package/deps/zlib/contrib/crc32vx/CMakeLists.txt +67 -0
  83. package/deps/zlib/contrib/crc32vx/README +9 -0
  84. package/deps/zlib/contrib/crc32vx/crc32_vx.c +254 -0
  85. package/deps/zlib/contrib/crc32vx/crc32_vx_hooks.h +9 -0
  86. package/deps/zlib/contrib/delphi/ZLib.pas +557 -0
  87. package/deps/zlib/contrib/delphi/ZLibConst.pas +11 -0
  88. package/deps/zlib/contrib/delphi/readme.txt +76 -0
  89. package/deps/zlib/contrib/delphi/zlibd32.mak +99 -0
  90. package/deps/zlib/contrib/dotzlib/DotZLib/AssemblyInfo.cs +58 -0
  91. package/deps/zlib/contrib/dotzlib/DotZLib/ChecksumImpl.cs +202 -0
  92. package/deps/zlib/contrib/dotzlib/DotZLib/CircularBuffer.cs +83 -0
  93. package/deps/zlib/contrib/dotzlib/DotZLib/CodecBase.cs +198 -0
  94. package/deps/zlib/contrib/dotzlib/DotZLib/Deflater.cs +106 -0
  95. package/deps/zlib/contrib/dotzlib/DotZLib/DotZLib.cs +288 -0
  96. package/deps/zlib/contrib/dotzlib/DotZLib/DotZLib.csproj +141 -0
  97. package/deps/zlib/contrib/dotzlib/DotZLib/GZipStream.cs +301 -0
  98. package/deps/zlib/contrib/dotzlib/DotZLib/Inflater.cs +105 -0
  99. package/deps/zlib/contrib/dotzlib/DotZLib/UnitTests.cs +274 -0
  100. package/deps/zlib/contrib/dotzlib/DotZLib.build +33 -0
  101. package/deps/zlib/contrib/dotzlib/DotZLib.chm +0 -0
  102. package/deps/zlib/contrib/dotzlib/DotZLib.sln +21 -0
  103. package/deps/zlib/contrib/dotzlib/LICENSE_1_0.txt +23 -0
  104. package/deps/zlib/contrib/dotzlib/readme.txt +58 -0
  105. package/deps/zlib/contrib/gcc_gvmat64/CMakeLists.txt +19 -0
  106. package/deps/zlib/contrib/gcc_gvmat64/gvmat64.S +570 -0
  107. package/deps/zlib/contrib/infback9/CMakeLists.txt +19 -0
  108. package/deps/zlib/contrib/infback9/README +1 -0
  109. package/deps/zlib/contrib/infback9/infback9.c +603 -0
  110. package/deps/zlib/contrib/infback9/infback9.h +37 -0
  111. package/deps/zlib/contrib/infback9/inffix9.h +107 -0
  112. package/deps/zlib/contrib/infback9/inflate9.h +47 -0
  113. package/deps/zlib/contrib/infback9/inftree9.c +319 -0
  114. package/deps/zlib/contrib/infback9/inftree9.h +61 -0
  115. package/deps/zlib/contrib/iostream/test.cpp +24 -0
  116. package/deps/zlib/contrib/iostream/zfstream.cpp +329 -0
  117. package/deps/zlib/contrib/iostream/zfstream.h +128 -0
  118. package/deps/zlib/contrib/iostream2/zstream.h +306 -0
  119. package/deps/zlib/contrib/iostream2/zstream_test.cpp +25 -0
  120. package/deps/zlib/contrib/iostream3/CMakeLists.txt +200 -0
  121. package/deps/zlib/contrib/iostream3/README +35 -0
  122. package/deps/zlib/contrib/iostream3/TODO +17 -0
  123. package/deps/zlib/contrib/iostream3/iostream3Config.cmake.in +23 -0
  124. package/deps/zlib/contrib/iostream3/test/CMakeLists.txt +191 -0
  125. package/deps/zlib/contrib/iostream3/test/add_subdirectory_exclude_test.cmake.in +27 -0
  126. package/deps/zlib/contrib/iostream3/test/add_subdirectory_test.cmake.in +25 -0
  127. package/deps/zlib/contrib/iostream3/test/find_package_no_components_test.cmake.in +24 -0
  128. package/deps/zlib/contrib/iostream3/test/find_package_test.cmake.in +24 -0
  129. package/deps/zlib/contrib/iostream3/test/find_package_wrong_components_test.cmake.in +24 -0
  130. package/deps/zlib/contrib/iostream3/test.cc +50 -0
  131. package/deps/zlib/contrib/iostream3/zfstream.cc +479 -0
  132. package/deps/zlib/contrib/iostream3/zfstream.h +466 -0
  133. package/deps/zlib/contrib/minizip/CMakeLists.txt +387 -0
  134. package/deps/zlib/contrib/minizip/LICENSE.Info-Zip +58 -0
  135. package/deps/zlib/contrib/minizip/Makefile +33 -0
  136. package/deps/zlib/contrib/minizip/Makefile.am +45 -0
  137. package/deps/zlib/contrib/minizip/MiniZip64_Changes.txt +6 -0
  138. package/deps/zlib/contrib/minizip/MiniZip64_info.txt +69 -0
  139. package/deps/zlib/contrib/minizip/configure.ac +32 -0
  140. package/deps/zlib/contrib/minizip/crypt.h +125 -0
  141. package/deps/zlib/contrib/minizip/ints.h +57 -0
  142. package/deps/zlib/contrib/minizip/ioapi.c +231 -0
  143. package/deps/zlib/contrib/minizip/ioapi.h +183 -0
  144. package/deps/zlib/contrib/minizip/iowin32.c +447 -0
  145. package/deps/zlib/contrib/minizip/iowin32.h +27 -0
  146. package/deps/zlib/contrib/minizip/make_vms.com +25 -0
  147. package/deps/zlib/contrib/minizip/miniunz.c +647 -0
  148. package/deps/zlib/contrib/minizip/miniunzip.1 +63 -0
  149. package/deps/zlib/contrib/minizip/minizip.1 +46 -0
  150. package/deps/zlib/contrib/minizip/minizip.c +511 -0
  151. package/deps/zlib/contrib/minizip/minizip.pc.in +13 -0
  152. package/deps/zlib/contrib/minizip/minizip.pc.txt +13 -0
  153. package/deps/zlib/contrib/minizip/minizipConfig.cmake.in +27 -0
  154. package/deps/zlib/contrib/minizip/mztools.c +294 -0
  155. package/deps/zlib/contrib/minizip/mztools.h +37 -0
  156. package/deps/zlib/contrib/minizip/skipset.h +366 -0
  157. package/deps/zlib/contrib/minizip/test/CMakeLists.txt +176 -0
  158. package/deps/zlib/contrib/minizip/test/add_subdirectory_exclude_test.cmake.in +29 -0
  159. package/deps/zlib/contrib/minizip/test/add_subdirectory_test.cmake.in +28 -0
  160. package/deps/zlib/contrib/minizip/test/find_package_no_components_test.cmake.in +26 -0
  161. package/deps/zlib/contrib/minizip/test/find_package_test.cmake.in +26 -0
  162. package/deps/zlib/contrib/minizip/test/find_package_wrong_components_test.cmake.in +26 -0
  163. package/deps/zlib/contrib/minizip/test/test_helper.cm +32 -0
  164. package/deps/zlib/contrib/minizip/unzip.c +1984 -0
  165. package/deps/zlib/contrib/minizip/unzip.h +442 -0
  166. package/deps/zlib/contrib/minizip/zip.c +2246 -0
  167. package/deps/zlib/contrib/minizip/zip.h +371 -0
  168. package/deps/zlib/contrib/nuget/nuget.csproj +45 -0
  169. package/deps/zlib/contrib/nuget/nuget.sln +22 -0
  170. package/deps/zlib/contrib/pascal/example.pas +599 -0
  171. package/deps/zlib/contrib/pascal/readme.txt +76 -0
  172. package/deps/zlib/contrib/pascal/zlibd32.mak +99 -0
  173. package/deps/zlib/contrib/pascal/zlibpas.pas +276 -0
  174. package/deps/zlib/contrib/puff/CMakeLists.txt +154 -0
  175. package/deps/zlib/contrib/puff/Makefile +42 -0
  176. package/deps/zlib/contrib/puff/README +63 -0
  177. package/deps/zlib/contrib/puff/bin-writer.c +26 -0
  178. package/deps/zlib/contrib/puff/puff.c +840 -0
  179. package/deps/zlib/contrib/puff/puff.h +35 -0
  180. package/deps/zlib/contrib/puff/puffConfig.cmake.in +18 -0
  181. package/deps/zlib/contrib/puff/pufftest.c +168 -0
  182. package/deps/zlib/contrib/puff/test/CMakeLists.txt +262 -0
  183. package/deps/zlib/contrib/puff/test/add_subdirectory_exclude_test.cmake.in +26 -0
  184. package/deps/zlib/contrib/puff/test/add_subdirectory_test.cmake.in +25 -0
  185. package/deps/zlib/contrib/puff/test/find_package_no_components_test.cmake.in +24 -0
  186. package/deps/zlib/contrib/puff/test/find_package_test.cmake.in +24 -0
  187. package/deps/zlib/contrib/puff/test/find_package_wrong_components_test.cmake.in +24 -0
  188. package/deps/zlib/contrib/puff/test/tester-cov.cmake +58 -0
  189. package/deps/zlib/contrib/puff/test/tester.cmake +16 -0
  190. package/deps/zlib/contrib/puff/zeros.raw +0 -0
  191. package/deps/zlib/contrib/testzlib/CMakeLists.txt +44 -0
  192. package/deps/zlib/contrib/testzlib/testzlib.c +275 -0
  193. package/deps/zlib/contrib/testzlib/testzlib.txt +10 -0
  194. package/deps/zlib/contrib/vstudio/readme.txt +22 -0
  195. package/deps/zlib/contrib/zlib1-dll/CMakeLists.txt +196 -0
  196. package/deps/zlib/contrib/zlib1-dll/readme.txt +21 -0
  197. package/deps/zlib/crc32.c +983 -0
  198. package/deps/zlib/crc32.h +9446 -0
  199. package/deps/zlib/deflate.c +2185 -0
  200. package/deps/zlib/deflate.h +383 -0
  201. package/deps/zlib/doc/algorithm.txt +209 -0
  202. package/deps/zlib/doc/crc-doc.1.0.pdf +0 -0
  203. package/deps/zlib/doc/rfc1950.txt +619 -0
  204. package/deps/zlib/doc/rfc1951.txt +955 -0
  205. package/deps/zlib/doc/rfc1952.txt +675 -0
  206. package/deps/zlib/doc/txtvsbin.txt +107 -0
  207. package/deps/zlib/examples/README.examples +54 -0
  208. package/deps/zlib/examples/enough.c +597 -0
  209. package/deps/zlib/examples/fitblk.c +233 -0
  210. package/deps/zlib/examples/gun.c +702 -0
  211. package/deps/zlib/examples/gzappend.c +504 -0
  212. package/deps/zlib/examples/gzjoin.c +449 -0
  213. package/deps/zlib/examples/gzlog.c +1061 -0
  214. package/deps/zlib/examples/gzlog.h +91 -0
  215. package/deps/zlib/examples/gznorm.c +474 -0
  216. package/deps/zlib/examples/zlib_how.html +550 -0
  217. package/deps/zlib/examples/zpipe.c +206 -0
  218. package/deps/zlib/examples/zran.c +546 -0
  219. package/deps/zlib/examples/zran.h +53 -0
  220. package/deps/zlib/gzclose.c +23 -0
  221. package/deps/zlib/gzguts.h +216 -0
  222. package/deps/zlib/gzlib.c +609 -0
  223. package/deps/zlib/gzread.c +668 -0
  224. package/deps/zlib/gzwrite.c +700 -0
  225. package/deps/zlib/infback.c +581 -0
  226. package/deps/zlib/inffast.c +321 -0
  227. package/deps/zlib/inffast.h +11 -0
  228. package/deps/zlib/inffixed.h +94 -0
  229. package/deps/zlib/inflate.c +1413 -0
  230. package/deps/zlib/inflate.h +126 -0
  231. package/deps/zlib/inftrees.c +424 -0
  232. package/deps/zlib/inftrees.h +64 -0
  233. package/deps/zlib/make_vms.com +867 -0
  234. package/deps/zlib/msdos/Makefile.bor +115 -0
  235. package/deps/zlib/msdos/Makefile.dj2 +104 -0
  236. package/deps/zlib/msdos/Makefile.emx +69 -0
  237. package/deps/zlib/msdos/Makefile.msc +112 -0
  238. package/deps/zlib/msdos/Makefile.tc +100 -0
  239. package/deps/zlib/os400/README400 +48 -0
  240. package/deps/zlib/os400/bndsrc +144 -0
  241. package/deps/zlib/os400/make.sh +383 -0
  242. package/deps/zlib/os400/zlibfixed.rpgle +578 -0
  243. package/deps/zlib/os400/zlibfree.rpgle +634 -0
  244. package/deps/zlib/qnx/package.qpg +141 -0
  245. package/deps/zlib/test/CMakeLists.txt +318 -0
  246. package/deps/zlib/test/add_subdirectory_exclude_test.cmake.in +29 -0
  247. package/deps/zlib/test/add_subdirectory_test.cmake.in +28 -0
  248. package/deps/zlib/test/example.c +552 -0
  249. package/deps/zlib/test/find_package_no_components_test.cmake.in +27 -0
  250. package/deps/zlib/test/find_package_test.cmake.in +27 -0
  251. package/deps/zlib/test/find_package_wrong_components_test.cmake.in +27 -0
  252. package/deps/zlib/test/infcover.c +672 -0
  253. package/deps/zlib/test/minigzip.c +592 -0
  254. package/deps/zlib/treebuild.xml +116 -0
  255. package/deps/zlib/trees.c +1119 -0
  256. package/deps/zlib/trees.h +128 -0
  257. package/deps/zlib/uncompr.c +101 -0
  258. package/deps/zlib/watcom/watcom_f.mak +43 -0
  259. package/deps/zlib/watcom/watcom_l.mak +43 -0
  260. package/deps/zlib/win32/DLL_FAQ.txt +381 -0
  261. package/deps/zlib/win32/Makefile.bor +109 -0
  262. package/deps/zlib/win32/Makefile.gcc +177 -0
  263. package/deps/zlib/win32/Makefile.msc +159 -0
  264. package/deps/zlib/win32/README-WIN32.txt +103 -0
  265. package/deps/zlib/win32/VisualC.txt +3 -0
  266. package/deps/zlib/win32/zlib.def +104 -0
  267. package/deps/zlib/win32/zlib1.rc +37 -0
  268. package/deps/zlib/zconf.h.in +551 -0
  269. package/deps/zlib/zlib.3 +149 -0
  270. package/deps/zlib/zlib.3.pdf +0 -0
  271. package/deps/zlib/zlib.h +2057 -0
  272. package/deps/zlib/zlib.map +116 -0
  273. package/deps/zlib/zlib.pc.cmakein +14 -0
  274. package/deps/zlib/zlib.pc.in +14 -0
  275. package/deps/zlib/zlibConfig.cmake.in +18 -0
  276. package/deps/zlib/zutil.c +313 -0
  277. package/deps/zlib/zutil.h +331 -0
  278. package/dist/index.d.ts +266 -0
  279. package/dist/index.js +1146 -0
  280. package/dist/libwz.js +5632 -0
  281. package/dist/libwz.wasm +0 -0
  282. package/include/wz/CRC32.h +182 -0
  283. package/include/wz/PngUtility.h +72 -0
  284. package/include/wz/PortalType.h +124 -0
  285. package/include/wz/Properties/WzBinaryProperty.h +70 -0
  286. package/include/wz/Properties/WzCanvasProperty.h +55 -0
  287. package/include/wz/Properties/WzConvexProperty.h +34 -0
  288. package/include/wz/Properties/WzDoubleProperty.h +32 -0
  289. package/include/wz/Properties/WzFloatProperty.h +30 -0
  290. package/include/wz/Properties/WzIntProperty.h +30 -0
  291. package/include/wz/Properties/WzLongProperty.h +30 -0
  292. package/include/wz/Properties/WzLuaProperty.h +31 -0
  293. package/include/wz/Properties/WzNullProperty.h +15 -0
  294. package/include/wz/Properties/WzPngProperty.h +53 -0
  295. package/include/wz/Properties/WzRawDataProperty.h +46 -0
  296. package/include/wz/Properties/WzShortProperty.h +31 -0
  297. package/include/wz/Properties/WzStringProperty.h +32 -0
  298. package/include/wz/Properties/WzSubProperty.h +35 -0
  299. package/include/wz/Properties/WzUOLProperty.h +44 -0
  300. package/include/wz/Properties/WzVectorProperty.h +40 -0
  301. package/include/wz/Properties/WzVideoProperty.h +43 -0
  302. package/include/wz/Result.h +58 -0
  303. package/include/wz/Util/Defines.h +16 -0
  304. package/include/wz/Util/ListFileParser.h +20 -0
  305. package/include/wz/Util/WzBinaryReader.h +95 -0
  306. package/include/wz/Util/WzBinaryWriter.h +72 -0
  307. package/include/wz/Util/WzBlobDataSource.h +30 -0
  308. package/include/wz/Util/WzDataSource.h +49 -0
  309. package/include/wz/Util/WzKeyGenerator.h +28 -0
  310. package/include/wz/Util/WzMutableKey.h +39 -0
  311. package/include/wz/Util/WzPath.h +37 -0
  312. package/include/wz/Util/WzStream.h +86 -0
  313. package/include/wz/Util/WzTool.h +42 -0
  314. package/include/wz/WzAESConstant.h +17 -0
  315. package/include/wz/WzDirectory.h +97 -0
  316. package/include/wz/WzEnums.h +76 -0
  317. package/include/wz/WzFile.h +99 -0
  318. package/include/wz/WzHeader.h +47 -0
  319. package/include/wz/WzImage.h +97 -0
  320. package/include/wz/WzImageProperty.h +92 -0
  321. package/include/wz/WzObject.h +55 -0
  322. package/include/wz/WzPropertyCollection.h +115 -0
  323. package/include/wz/wz.h +41 -0
  324. package/include/wz/wz_api.h +432 -0
  325. package/package.json +93 -0
  326. package/src/PngUtility.cpp +328 -0
  327. package/src/Properties/WzBinaryProperty.cpp +183 -0
  328. package/src/Properties/WzCanvasProperty.cpp +262 -0
  329. package/src/Properties/WzConvexProperty.cpp +159 -0
  330. package/src/Properties/WzDoubleProperty.cpp +12 -0
  331. package/src/Properties/WzFloatProperty.cpp +17 -0
  332. package/src/Properties/WzIntProperty.cpp +12 -0
  333. package/src/Properties/WzLongProperty.cpp +12 -0
  334. package/src/Properties/WzLuaProperty.cpp +37 -0
  335. package/src/Properties/WzNullProperty.cpp +11 -0
  336. package/src/Properties/WzPngProperty.cpp +637 -0
  337. package/src/Properties/WzRawDataProperty.cpp +116 -0
  338. package/src/Properties/WzShortProperty.cpp +12 -0
  339. package/src/Properties/WzStringProperty.cpp +44 -0
  340. package/src/Properties/WzSubProperty.cpp +129 -0
  341. package/src/Properties/WzUOLProperty.cpp +136 -0
  342. package/src/Properties/WzVectorProperty.cpp +22 -0
  343. package/src/Properties/WzVideoProperty.cpp +115 -0
  344. package/src/Util/ListFileParser.cpp +48 -0
  345. package/src/Util/WzBinaryReader.cpp +368 -0
  346. package/src/Util/WzBinaryWriter.cpp +305 -0
  347. package/src/Util/WzBlobDataSource.cpp +47 -0
  348. package/src/Util/WzDataSource.cpp +61 -0
  349. package/src/Util/WzKeyGenerator.cpp +43 -0
  350. package/src/Util/WzMutableKey.cpp +59 -0
  351. package/src/Util/WzStream.cpp +196 -0
  352. package/src/Util/WzTool.cpp +266 -0
  353. package/src/WzAESConstant.cpp +12 -0
  354. package/src/WzDirectory.cpp +669 -0
  355. package/src/WzEnums.cpp +20 -0
  356. package/src/WzFile.cpp +450 -0
  357. package/src/WzImage.cpp +350 -0
  358. package/src/WzImageProperty.cpp +469 -0
  359. package/src/WzObject.cpp +174 -0
  360. package/src/WzPropertyCollection.cpp +84 -0
  361. package/src/capi/wz_api.cpp +1996 -0
  362. package/src/node/binding.cpp +1776 -0
@@ -0,0 +1,116 @@
1
+ #include "wz/Properties/WzRawDataProperty.h"
2
+ #include <algorithm>
3
+ #include <mutex>
4
+ #include "wz/Util/WzBinaryReader.h"
5
+ #include "wz/Util/WzBinaryWriter.h"
6
+ #include "wz/WzImage.h"
7
+
8
+ namespace wz {
9
+
10
+ WzRawDataProperty::WzRawDataProperty(const std::string& name,
11
+ WzBinaryReader* reader,
12
+ uint8_t type)
13
+ : wzReader_(reader), type_(type), properties_(this) {
14
+ SetName(name);
15
+ }
16
+
17
+ WzRawDataProperty::~WzRawDataProperty() = default;
18
+
19
+ Result<void> WzRawDataProperty::WriteValue(WzBinaryWriter* writer) const {
20
+ auto* self = const_cast<WzRawDataProperty*>(this);
21
+ auto data = self->GetBytes(false);
22
+ if (!data.has_value()) return std::unexpected(data.error());
23
+
24
+ writer->WriteStringValue(RAW_DATA_HEADER,
25
+ WzImage::WzImageHeaderByte_WithoutOffset,
26
+ WzImage::WzImageHeaderByte_WithOffset);
27
+ writer->WriteByte(type_);
28
+ if (type_ == 1) {
29
+ if (properties_.size() > 0) {
30
+ writer->WriteByte(1);
31
+ auto result = WzImageProperty::WritePropertyList(writer, properties_);
32
+ if (!result.has_value()) return result;
33
+ } else {
34
+ writer->WriteByte(0);
35
+ }
36
+ }
37
+ writer->WriteCompressedInt(static_cast<int32_t>(data.value().size()));
38
+ if (!writer->BaseStream().Write(data.value().data(), data.value().size())) {
39
+ return std::unexpected(Error::IoError("Failed to write raw data property"));
40
+ }
41
+ return {};
42
+ }
43
+
44
+ Result<void> WzRawDataProperty::AddProperty(WzImageProperty* prop) {
45
+ return AddProperty(std::unique_ptr<WzImageProperty>(prop));
46
+ }
47
+
48
+ Result<void> WzRawDataProperty::AddProperty(
49
+ std::unique_ptr<WzImageProperty> prop) {
50
+ if (!prop) return {};
51
+ prop->SetParent(this);
52
+ properties_.Add(std::move(prop));
53
+ MarkParentImageChanged();
54
+ return {};
55
+ }
56
+
57
+ Result<std::unique_ptr<WzImageProperty>> WzRawDataProperty::RemoveProperty(
58
+ const std::string& propertyName) {
59
+ for (size_t i = 0; i < properties_.size(); i++) {
60
+ if (properties_[i]->Name() == propertyName) {
61
+ auto removed = properties_.Remove(properties_[i]);
62
+ MarkParentImageChanged();
63
+ return removed;
64
+ }
65
+ }
66
+ return std::unique_ptr<WzImageProperty>();
67
+ }
68
+
69
+ Result<std::unique_ptr<WzImageProperty>> WzRawDataProperty::RemoveProperty(
70
+ WzImageProperty* prop) {
71
+ auto removed = properties_.Remove(prop);
72
+ if (removed) MarkParentImageChanged();
73
+ return removed;
74
+ }
75
+
76
+ Result<void> WzRawDataProperty::ClearProperties() {
77
+ if (properties_.size() == 0) return {};
78
+ properties_.clear();
79
+ MarkParentImageChanged();
80
+ return {};
81
+ }
82
+
83
+ void WzRawDataProperty::Parse(bool parseNow) {
84
+ length_ = wzReader_->ReadCompressedInt();
85
+ rawDataOffset_ = wzReader_->Position();
86
+ if (parseNow)
87
+ (void)GetBytes(true);
88
+ else
89
+ wzReader_->SetPosition(rawDataOffset_ + length_);
90
+ }
91
+
92
+ Result<std::vector<uint8_t>> WzRawDataProperty::GetBytes() {
93
+ return GetBytes(false);
94
+ }
95
+
96
+ Result<std::vector<uint8_t>> WzRawDataProperty::GetBytes(bool saveInMemory) {
97
+ std::unique_lock<std::recursive_mutex> lock;
98
+ if (wzReader_) {
99
+ lock = std::unique_lock<std::recursive_mutex>(wzReader_->Mutex());
100
+ }
101
+ if (!bytes_.empty()) return bytes_;
102
+ if (!wzReader_)
103
+ return std::unexpected(Error::DataError("No reader for raw data property"));
104
+
105
+ auto currentPos = wzReader_->Position();
106
+ wzReader_->SetPosition(rawDataOffset_);
107
+ bytes_ = wzReader_->ReadBytes(length_);
108
+ wzReader_->SetPosition(currentPos);
109
+
110
+ if (saveInMemory) return bytes_;
111
+ auto result = bytes_;
112
+ bytes_.clear();
113
+ return result;
114
+ }
115
+
116
+ } // namespace wz
@@ -0,0 +1,12 @@
1
+ #include "wz/Properties/WzShortProperty.h"
2
+ #include "wz/Util/WzBinaryWriter.h"
3
+
4
+ namespace wz {
5
+
6
+ Result<void> WzShortProperty::WriteValue(WzBinaryWriter* writer) const {
7
+ writer->WriteByte(2);
8
+ writer->WriteInt16(value_);
9
+ return {};
10
+ }
11
+
12
+ } // namespace wz
@@ -0,0 +1,44 @@
1
+ #include "wz/Properties/WzStringProperty.h"
2
+ #include <cerrno>
3
+ #include <cstdint>
4
+ #include <cstdlib>
5
+ #include <limits>
6
+ #include "wz/Util/WzBinaryWriter.h"
7
+
8
+ namespace wz {
9
+
10
+ Result<void> WzStringProperty::WriteValue(WzBinaryWriter* writer) const {
11
+ writer->WriteByte(8);
12
+ writer->WriteStringValue(value_, 0x00, 0x01);
13
+ return {};
14
+ }
15
+
16
+ static int64_t safeParseInt64(const std::string& s) {
17
+ char* end = nullptr;
18
+ errno = 0;
19
+ auto v = std::strtoll(s.c_str(), &end, 10);
20
+ if (errno != 0 || end == s.c_str() || *end != '\0') return 0;
21
+ return static_cast<int64_t>(v);
22
+ }
23
+
24
+ template <typename T>
25
+ static T safeParseInteger(const std::string& s) {
26
+ int64_t value = safeParseInt64(s);
27
+ if (value < std::numeric_limits<T>::min() ||
28
+ value > std::numeric_limits<T>::max()) {
29
+ return 0;
30
+ }
31
+ return static_cast<T>(value);
32
+ }
33
+
34
+ int32_t WzStringProperty::GetInt() const {
35
+ return safeParseInteger<int32_t>(value_);
36
+ }
37
+ int16_t WzStringProperty::GetShort() const {
38
+ return safeParseInteger<int16_t>(value_);
39
+ }
40
+ int64_t WzStringProperty::GetLong() const {
41
+ return safeParseInt64(value_);
42
+ }
43
+
44
+ } // namespace wz
@@ -0,0 +1,129 @@
1
+ #include "wz/Properties/WzSubProperty.h"
2
+ #include <algorithm>
3
+ #include <cctype>
4
+ #include "wz/Util/WzBinaryWriter.h"
5
+ #include "wz/WzImage.h"
6
+
7
+ namespace wz {
8
+
9
+ WzSubProperty::WzSubProperty() : properties_(this) {}
10
+ WzSubProperty::WzSubProperty(const std::string& name) : properties_(this) {
11
+ SetName(name);
12
+ }
13
+
14
+ WzSubProperty::~WzSubProperty() = default;
15
+
16
+ Result<void> WzSubProperty::WriteValue(WzBinaryWriter* writer) const {
17
+ const bool isLuaProperty =
18
+ properties_.size() == 1 &&
19
+ properties_[0]->PropertyType() == WzPropertyType::Lua;
20
+ if (!isLuaProperty) {
21
+ writer->WriteStringValue("Property",
22
+ WzImage::WzImageHeaderByte_WithoutOffset,
23
+ WzImage::WzImageHeaderByte_WithOffset);
24
+ }
25
+ return WzImageProperty::WritePropertyList(writer, properties_);
26
+ }
27
+
28
+ Result<void> WzSubProperty::AddProperty(WzImageProperty* prop) {
29
+ return AddProperty(std::unique_ptr<WzImageProperty>(prop));
30
+ }
31
+
32
+ Result<void> WzSubProperty::AddProperty(std::unique_ptr<WzImageProperty> prop) {
33
+ if (!prop) return {};
34
+ prop->SetParent(this);
35
+ properties_.Add(std::move(prop));
36
+ MarkParentImageChanged();
37
+ return {};
38
+ }
39
+
40
+ Result<std::unique_ptr<WzImageProperty>> WzSubProperty::RemoveProperty(
41
+ const std::string& propertyName) {
42
+ for (size_t i = 0; i < properties_.size(); i++) {
43
+ if (properties_[i]->Name() == propertyName) {
44
+ auto removed = properties_.Remove(properties_[i]);
45
+ MarkParentImageChanged();
46
+ return removed;
47
+ }
48
+ }
49
+ return std::unique_ptr<WzImageProperty>();
50
+ }
51
+
52
+ Result<std::unique_ptr<WzImageProperty>> WzSubProperty::RemoveProperty(
53
+ WzImageProperty* prop) {
54
+ auto removed = properties_.Remove(prop);
55
+ if (removed) MarkParentImageChanged();
56
+ return removed;
57
+ }
58
+
59
+ Result<void> WzSubProperty::ClearProperties() {
60
+ if (properties_.size() == 0) return {};
61
+ properties_.clear();
62
+ MarkParentImageChanged();
63
+ return {};
64
+ }
65
+
66
+ WzImageProperty* WzSubProperty::operator[](const std::string& name) {
67
+ std::string lower = name;
68
+ std::transform(
69
+ lower.begin(), lower.end(), lower.begin(), [](unsigned char c) {
70
+ return static_cast<char>(std::tolower(c));
71
+ });
72
+ for (auto* prop : properties_) {
73
+ std::string n = prop->Name();
74
+ std::transform(n.begin(), n.end(), n.begin(), [](unsigned char c) {
75
+ return static_cast<char>(std::tolower(c));
76
+ });
77
+ if (n == lower) return prop;
78
+ }
79
+ return nullptr;
80
+ }
81
+
82
+ WzImageProperty* WzSubProperty::GetFromPath(const std::string& path) {
83
+ std::vector<std::string> segments;
84
+ size_t start = 0;
85
+ while (true) {
86
+ size_t end = path.find('/', start);
87
+ if (end == std::string::npos) break;
88
+ if (end > start) segments.push_back(path.substr(start, end - start));
89
+ start = end + 1;
90
+ }
91
+ segments.push_back(path.substr(start));
92
+
93
+ if (segments.empty()) return nullptr;
94
+
95
+ if (segments[0] == "..") {
96
+ auto* parent = Parent();
97
+ if (!parent) return nullptr;
98
+
99
+ std::string remaining;
100
+ for (size_t i = 1; i < segments.size(); i++) {
101
+ if (i > 1) remaining += '/';
102
+ remaining += segments[i];
103
+ }
104
+
105
+ auto parentType = parent->ObjectType();
106
+ if (parentType == WzObjectType::Image)
107
+ return static_cast<WzImage*>(parent)->GetFromPath(remaining);
108
+ if (parentType == WzObjectType::Property)
109
+ return static_cast<WzImageProperty*>(parent)->GetFromPath(remaining);
110
+ return nullptr;
111
+ }
112
+
113
+ WzImageProperty* ret = this;
114
+ for (const auto& seg : segments) {
115
+ if (!ret || !ret->WzProperties()) return nullptr;
116
+ WzImageProperty* found = nullptr;
117
+ for (auto* p : *ret->WzProperties()) {
118
+ if (p && p->Name() == seg) {
119
+ found = p;
120
+ break;
121
+ }
122
+ }
123
+ if (!found) return nullptr;
124
+ ret = found;
125
+ }
126
+ return ret;
127
+ }
128
+
129
+ } // namespace wz
@@ -0,0 +1,136 @@
1
+ #include "wz/Properties/WzUOLProperty.h"
2
+ #include <algorithm>
3
+ #include "wz/Util/WzBinaryWriter.h"
4
+ #include "wz/WzDirectory.h"
5
+ #include "wz/WzFile.h"
6
+ #include "wz/WzImage.h"
7
+
8
+ namespace wz {
9
+ WzUOLProperty::WzUOLProperty(const std::string& name, const std::string& value)
10
+ : val_(value) {
11
+ SetName(name);
12
+ }
13
+
14
+ Result<void> WzUOLProperty::WriteValue(WzBinaryWriter* writer) const {
15
+ writer->WriteStringValue("UOL",
16
+ WzImage::WzImageHeaderByte_WithoutOffset,
17
+ WzImage::WzImageHeaderByte_WithOffset);
18
+ writer->WriteByte(0);
19
+ writer->WriteStringValue(val_, 0x00, 0x01);
20
+ return {};
21
+ }
22
+
23
+ WzObject* WzUOLProperty::LinkValue() const {
24
+ if (linkVal_) return linkVal_;
25
+
26
+ auto* self = const_cast<WzUOLProperty*>(this);
27
+
28
+ std::vector<std::string> paths;
29
+ size_t start = 0, end;
30
+ while ((end = val_.find('/', start)) != std::string::npos) {
31
+ paths.push_back(val_.substr(start, end - start));
32
+ start = end + 1;
33
+ }
34
+ paths.push_back(val_.substr(start));
35
+ if (paths.empty()) return nullptr;
36
+
37
+ WzObject* linkVal;
38
+ size_t i = 0;
39
+ if (paths[0] != "..") {
40
+ linkVal = self->GetTopMostWzImage();
41
+ } else {
42
+ linkVal = self->Parent();
43
+ }
44
+
45
+ for (; i < paths.size() && linkVal; i++) {
46
+ const std::string& path = paths[i];
47
+ if (path == "..") {
48
+ linkVal = linkVal->Parent();
49
+ continue;
50
+ }
51
+
52
+ if (linkVal->ObjectType() == WzObjectType::Property) {
53
+ auto* prop = static_cast<WzImageProperty*>(linkVal);
54
+ linkVal = (*prop)[path];
55
+ } else if (linkVal->ObjectType() == WzObjectType::Image) {
56
+ auto* img = static_cast<WzImage*>(linkVal);
57
+ linkVal = (*img)[path];
58
+ } else if (linkVal->ObjectType() == WzObjectType::Directory) {
59
+ auto* dir = static_cast<WzDirectory*>(linkVal);
60
+ if (path.size() >= 4 &&
61
+ std::equal(path.end() - 4, path.end(), ".img", [](char a, char b) {
62
+ return std::tolower(a) == b;
63
+ })) {
64
+ linkVal = (*dir)[path];
65
+ } else {
66
+ linkVal = (*dir)[path + ".img"];
67
+ }
68
+ }
69
+ }
70
+ linkVal_ = linkVal;
71
+ return linkVal;
72
+ }
73
+
74
+ WzPropertyCollection* WzUOLProperty::WzProperties() {
75
+ WzObject* lv = LinkValue();
76
+ if (lv && lv->ObjectType() == WzObjectType::Property)
77
+ return static_cast<WzImageProperty*>(lv)->WzProperties();
78
+ return nullptr;
79
+ }
80
+
81
+ WzImageProperty* WzUOLProperty::operator[](const std::string& name) {
82
+ WzObject* lv = LinkValue();
83
+ if (!lv) return nullptr;
84
+ if (lv->ObjectType() == WzObjectType::Property)
85
+ return (*static_cast<WzImageProperty*>(lv))[name];
86
+ if (lv->ObjectType() == WzObjectType::Image)
87
+ return (*static_cast<WzImage*>(lv))[name];
88
+ return nullptr;
89
+ }
90
+
91
+ WzImageProperty* WzUOLProperty::GetFromPath(const std::string& path) {
92
+ WzObject* lv = LinkValue();
93
+ if (!lv) return nullptr;
94
+ if (lv->ObjectType() == WzObjectType::Property)
95
+ return static_cast<WzImageProperty*>(lv)->GetFromPath(path);
96
+ if (lv->ObjectType() == WzObjectType::Image)
97
+ return static_cast<WzImage*>(lv)->GetFromPath(path);
98
+ return nullptr;
99
+ }
100
+
101
+ int32_t WzUOLProperty::GetInt() const {
102
+ WzObject* lv = LinkValue();
103
+ return lv ? lv->GetInt() : 0;
104
+ }
105
+
106
+ int16_t WzUOLProperty::GetShort() const {
107
+ WzObject* lv = LinkValue();
108
+ return lv ? lv->GetShort() : 0;
109
+ }
110
+
111
+ int64_t WzUOLProperty::GetLong() const {
112
+ WzObject* lv = LinkValue();
113
+ return lv ? lv->GetLong() : 0;
114
+ }
115
+
116
+ float WzUOLProperty::GetFloat() const {
117
+ WzObject* lv = LinkValue();
118
+ return lv ? lv->GetFloat() : 0.0f;
119
+ }
120
+
121
+ double WzUOLProperty::GetDouble() const {
122
+ WzObject* lv = LinkValue();
123
+ return lv ? lv->GetDouble() : 0.0;
124
+ }
125
+
126
+ std::string WzUOLProperty::GetString() const {
127
+ WzObject* lv = LinkValue();
128
+ return lv ? lv->GetString() : val_;
129
+ }
130
+
131
+ Result<std::vector<uint8_t>> WzUOLProperty::GetBytes() {
132
+ WzObject* lv = LinkValue();
133
+ if (lv) return lv->GetBytes();
134
+ return std::unexpected(Error::DataError("UOL link resolution failed"));
135
+ }
136
+ } // namespace wz
@@ -0,0 +1,22 @@
1
+ #include "wz/Properties/WzVectorProperty.h"
2
+ #include "wz/Util/WzBinaryWriter.h"
3
+ #include "wz/WzImage.h"
4
+
5
+ namespace wz {
6
+
7
+ WzVectorProperty::~WzVectorProperty() = default;
8
+
9
+ Result<void> WzVectorProperty::WriteValue(WzBinaryWriter* writer) const {
10
+ if (!X || !Y) {
11
+ return std::unexpected(
12
+ Error::DataError("Cannot write Vector property without X and Y"));
13
+ }
14
+ writer->WriteStringValue("Shape2D#Vector2D",
15
+ WzImage::WzImageHeaderByte_WithoutOffset,
16
+ WzImage::WzImageHeaderByte_WithOffset);
17
+ writer->WriteCompressedInt(X->Value());
18
+ writer->WriteCompressedInt(Y->Value());
19
+ return {};
20
+ }
21
+
22
+ } // namespace wz
@@ -0,0 +1,115 @@
1
+ #include "wz/Properties/WzVideoProperty.h"
2
+ #include <algorithm>
3
+ #include <mutex>
4
+ #include "wz/Util/WzBinaryReader.h"
5
+ #include "wz/Util/WzBinaryWriter.h"
6
+ #include "wz/WzImage.h"
7
+
8
+ namespace wz {
9
+
10
+ WzVideoProperty::WzVideoProperty(const std::string& name,
11
+ WzBinaryReader* reader)
12
+ : wzReader_(reader), properties_(this) {
13
+ SetName(name);
14
+ }
15
+
16
+ WzVideoProperty::~WzVideoProperty() = default;
17
+
18
+ Result<void> WzVideoProperty::WriteValue(WzBinaryWriter* writer) const {
19
+ auto* self = const_cast<WzVideoProperty*>(this);
20
+ auto data = self->GetBytes(false);
21
+ if (!data.has_value()) return std::unexpected(data.error());
22
+
23
+ writer->WriteStringValue(CANVAS_VIDEO_HEADER,
24
+ WzImage::WzImageHeaderByte_WithoutOffset,
25
+ WzImage::WzImageHeaderByte_WithOffset);
26
+ writer->WriteByte(0);
27
+ if (properties_.size() > 0) {
28
+ writer->WriteByte(1);
29
+ auto result = WzImageProperty::WritePropertyList(writer, properties_);
30
+ if (!result.has_value()) return result;
31
+ } else {
32
+ writer->WriteByte(0);
33
+ }
34
+ writer->WriteByte(static_cast<uint8_t>(type_));
35
+ writer->WriteCompressedInt(static_cast<int32_t>(data.value().size()));
36
+ if (!writer->BaseStream().Write(data.value().data(), data.value().size())) {
37
+ return std::unexpected(Error::IoError("Failed to write video property"));
38
+ }
39
+ return {};
40
+ }
41
+
42
+ Result<void> WzVideoProperty::AddProperty(WzImageProperty* prop) {
43
+ return AddProperty(std::unique_ptr<WzImageProperty>(prop));
44
+ }
45
+
46
+ Result<void> WzVideoProperty::AddProperty(
47
+ std::unique_ptr<WzImageProperty> prop) {
48
+ if (!prop) return {};
49
+ prop->SetParent(this);
50
+ properties_.Add(std::move(prop));
51
+ MarkParentImageChanged();
52
+ return {};
53
+ }
54
+
55
+ Result<std::unique_ptr<WzImageProperty>> WzVideoProperty::RemoveProperty(
56
+ const std::string& propertyName) {
57
+ for (size_t i = 0; i < properties_.size(); i++) {
58
+ if (properties_[i]->Name() == propertyName) {
59
+ auto removed = properties_.Remove(properties_[i]);
60
+ MarkParentImageChanged();
61
+ return removed;
62
+ }
63
+ }
64
+ return std::unique_ptr<WzImageProperty>();
65
+ }
66
+
67
+ Result<std::unique_ptr<WzImageProperty>> WzVideoProperty::RemoveProperty(
68
+ WzImageProperty* prop) {
69
+ auto removed = properties_.Remove(prop);
70
+ if (removed) MarkParentImageChanged();
71
+ return removed;
72
+ }
73
+
74
+ Result<void> WzVideoProperty::ClearProperties() {
75
+ if (properties_.size() == 0) return {};
76
+ properties_.clear();
77
+ MarkParentImageChanged();
78
+ return {};
79
+ }
80
+
81
+ void WzVideoProperty::Parse(bool parseNow) {
82
+ type_ = wzReader_->ReadByte();
83
+ length_ = wzReader_->ReadCompressedInt();
84
+ offset_ = wzReader_->Position();
85
+ if (parseNow)
86
+ (void)GetBytes(true);
87
+ else
88
+ wzReader_->SetPosition(offset_ + length_);
89
+ }
90
+
91
+ Result<std::vector<uint8_t>> WzVideoProperty::GetBytes() {
92
+ return GetBytes(false);
93
+ }
94
+
95
+ Result<std::vector<uint8_t>> WzVideoProperty::GetBytes(bool saveInMemory) {
96
+ std::unique_lock<std::recursive_mutex> lock;
97
+ if (wzReader_) {
98
+ lock = std::unique_lock<std::recursive_mutex>(wzReader_->Mutex());
99
+ }
100
+ if (!bytes_.empty()) return bytes_;
101
+ if (!wzReader_)
102
+ return std::unexpected(Error::DataError("No reader for video property"));
103
+
104
+ auto currentPos = wzReader_->Position();
105
+ wzReader_->SetPosition(offset_);
106
+ bytes_ = wzReader_->ReadBytes(length_);
107
+ wzReader_->SetPosition(currentPos);
108
+
109
+ if (saveInMemory) return bytes_;
110
+ auto result = bytes_;
111
+ bytes_.clear();
112
+ return result;
113
+ }
114
+
115
+ } // namespace wz
@@ -0,0 +1,48 @@
1
+ #include "wz/Util/ListFileParser.h"
2
+ #include <limits>
3
+ #include <memory>
4
+ #include "wz/Util/WzBinaryReader.h"
5
+ #include "wz/Util/WzPath.h"
6
+ #include "wz/Util/WzStream.h"
7
+ #include "wz/Util/WzTool.h"
8
+
9
+ namespace wz {
10
+
11
+ std::vector<std::string> ListFileParser::ParseListFile(
12
+ const std::string& filePath, WzMapleVersion version) {
13
+ return ParseListFile(filePath, WzTool::GetIvByMapleVersion(version));
14
+ }
15
+
16
+ std::vector<std::string> ListFileParser::ParseListFile(
17
+ const std::string& filePath, const std::array<uint8_t, 4>& WzIv) {
18
+ std::vector<std::string> listEntries;
19
+
20
+ WzFileStream fs;
21
+ if (!fs.Open(wz::to_path(filePath), "rb")) return listEntries;
22
+
23
+ WzBinaryReader reader(std::make_shared<WzFileDataSource>(&fs), WzIv);
24
+
25
+ while (reader.Available() > 0) {
26
+ int32_t len = reader.ReadInt32();
27
+ if (len < 0 || len > 100000) break;
28
+
29
+ std::u16string chars(static_cast<size_t>(len), u'\0');
30
+ for (int32_t i = 0; i < len; i++) {
31
+ chars[static_cast<size_t>(i)] = static_cast<char16_t>(reader.ReadInt16());
32
+ }
33
+ reader.ReadUInt16();
34
+
35
+ listEntries.push_back(reader.DecryptString(chars));
36
+ }
37
+
38
+ if (!listEntries.empty()) {
39
+ auto& lastEntry = listEntries.back();
40
+ if (!lastEntry.empty()) {
41
+ lastEntry.back() = 'g';
42
+ }
43
+ }
44
+
45
+ return listEntries;
46
+ }
47
+
48
+ } // namespace wz