@etothepii/satisfactory-file-parser 3.3.1 → 4.0.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 (383) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/GUIDE.md +11 -7
  3. package/README.md +4 -4
  4. package/build/index.d.ts +112 -102
  5. package/build/index.d.ts.map +1 -1
  6. package/build/index.js +42 -40
  7. package/build/index.js.map +1 -1
  8. package/build/parser/byte/binary-readable.interface.d.ts +1 -0
  9. package/build/parser/byte/binary-readable.interface.d.ts.map +1 -1
  10. package/build/parser/byte/binary-readable.interface.js.map +1 -1
  11. package/build/parser/byte/byte-reader.class.d.ts +1 -0
  12. package/build/parser/byte/byte-reader.class.d.ts.map +1 -1
  13. package/build/parser/byte/byte-reader.class.js +6 -2
  14. package/build/parser/byte/byte-reader.class.js.map +1 -1
  15. package/build/parser/byte/byte-writer.class.d.ts +1 -0
  16. package/build/parser/byte/byte-writer.class.d.ts.map +1 -1
  17. package/build/parser/byte/byte-writer.class.js +6 -0
  18. package/build/parser/byte/byte-writer.class.js.map +1 -1
  19. package/build/parser/context/context-reader.d.ts +1 -1
  20. package/build/parser/context/context-reader.d.ts.map +1 -1
  21. package/build/parser/context/context-reader.js.map +1 -1
  22. package/build/parser/context/context-writer.d.ts +1 -1
  23. package/build/parser/context/context-writer.d.ts.map +1 -1
  24. package/build/parser/context/context-writer.js.map +1 -1
  25. package/build/parser/context/hierarchical-version-context.d.ts +11 -0
  26. package/build/parser/context/hierarchical-version-context.d.ts.map +1 -0
  27. package/build/parser/context/hierarchical-version-context.js +24 -0
  28. package/build/parser/context/hierarchical-version-context.js.map +1 -0
  29. package/build/parser/context/{context.d.ts → reader-writer-context.d.ts} +5 -3
  30. package/build/parser/context/reader-writer-context.d.ts.map +1 -0
  31. package/build/parser/context/{context.js → reader-writer-context.js} +1 -1
  32. package/build/parser/context/reader-writer-context.js.map +1 -0
  33. package/build/parser/parser.d.ts.map +1 -1
  34. package/build/parser/parser.js +29 -15
  35. package/build/parser/parser.js.map +1 -1
  36. package/build/parser/satisfactory/blueprint/blueprint-config-version.d.ts +4 -2
  37. package/build/parser/satisfactory/blueprint/blueprint-config-version.d.ts.map +1 -1
  38. package/build/parser/satisfactory/blueprint/blueprint-config-version.js +4 -2
  39. package/build/parser/satisfactory/blueprint/blueprint-config-version.js.map +1 -1
  40. package/build/parser/satisfactory/blueprint/blueprint-config.d.ts +4 -5
  41. package/build/parser/satisfactory/blueprint/blueprint-config.d.ts.map +1 -1
  42. package/build/parser/satisfactory/blueprint/blueprint-config.js +16 -14
  43. package/build/parser/satisfactory/blueprint/blueprint-config.js.map +1 -1
  44. package/build/parser/satisfactory/blueprint/blueprint-header.d.ts +2 -0
  45. package/build/parser/satisfactory/blueprint/blueprint-header.d.ts.map +1 -1
  46. package/build/parser/satisfactory/blueprint/blueprint-header.js +18 -2
  47. package/build/parser/satisfactory/blueprint/blueprint-header.js.map +1 -1
  48. package/build/parser/satisfactory/blueprint/blueprint-reader.d.ts.map +1 -1
  49. package/build/parser/satisfactory/blueprint/blueprint-reader.js +6 -2
  50. package/build/parser/satisfactory/blueprint/blueprint-reader.js.map +1 -1
  51. package/build/parser/satisfactory/blueprint/blueprint-writer.d.ts.map +1 -1
  52. package/build/parser/satisfactory/blueprint/blueprint-writer.js +5 -2
  53. package/build/parser/satisfactory/blueprint/blueprint-writer.js.map +1 -1
  54. package/build/parser/satisfactory/save/data-blob.d.ts +17 -0
  55. package/build/parser/satisfactory/save/data-blob.d.ts.map +1 -0
  56. package/build/parser/satisfactory/save/data-blob.js +137 -0
  57. package/build/parser/satisfactory/save/data-blob.js.map +1 -0
  58. package/build/parser/satisfactory/save/level.d.ts +5 -10
  59. package/build/parser/satisfactory/save/level.d.ts.map +1 -1
  60. package/build/parser/satisfactory/save/level.js +52 -180
  61. package/build/parser/satisfactory/save/level.js.map +1 -1
  62. package/build/parser/satisfactory/save/satisfactory-save-header.d.ts.map +1 -1
  63. package/build/parser/satisfactory/save/satisfactory-save-header.js +5 -3
  64. package/build/parser/satisfactory/save/satisfactory-save-header.js.map +1 -1
  65. package/build/parser/satisfactory/save/satisfactory-save.d.ts +3 -1
  66. package/build/parser/satisfactory/save/satisfactory-save.d.ts.map +1 -1
  67. package/build/parser/satisfactory/save/satisfactory-save.js.map +1 -1
  68. package/build/parser/satisfactory/save/save-body-chunks.js +2 -2
  69. package/build/parser/satisfactory/save/save-body-chunks.js.map +1 -1
  70. package/build/parser/satisfactory/save/save-custom-version.d.ts +8 -2
  71. package/build/parser/satisfactory/save/save-custom-version.d.ts.map +1 -1
  72. package/build/parser/satisfactory/save/save-custom-version.js +8 -2
  73. package/build/parser/satisfactory/save/save-custom-version.js.map +1 -1
  74. package/build/parser/satisfactory/save/save-reader.d.ts +2 -2
  75. package/build/parser/satisfactory/save/save-reader.d.ts.map +1 -1
  76. package/build/parser/satisfactory/save/save-reader.js +16 -13
  77. package/build/parser/satisfactory/save/save-reader.js.map +1 -1
  78. package/build/parser/satisfactory/save/save-writer.d.ts.map +1 -1
  79. package/build/parser/satisfactory/save/save-writer.js +4 -1
  80. package/build/parser/satisfactory/save/save-writer.js.map +1 -1
  81. package/build/parser/satisfactory/save/save.types.d.ts +1 -1
  82. package/build/parser/satisfactory/save/save.types.d.ts.map +1 -1
  83. package/build/parser/satisfactory/save/save.types.js.map +1 -1
  84. package/build/parser/satisfactory/save/toc-blob.d.ts +18 -0
  85. package/build/parser/satisfactory/save/toc-blob.d.ts.map +1 -0
  86. package/build/parser/satisfactory/save/toc-blob.js +97 -0
  87. package/build/parser/satisfactory/save/toc-blob.js.map +1 -0
  88. package/build/parser/satisfactory/types/objects/SaveObject.d.ts +4 -0
  89. package/build/parser/satisfactory/types/objects/SaveObject.d.ts.map +1 -1
  90. package/build/parser/satisfactory/types/objects/SaveObject.js +19 -5
  91. package/build/parser/satisfactory/types/objects/SaveObject.js.map +1 -1
  92. package/build/parser/satisfactory/types/property/PropertiesList.d.ts +4 -4
  93. package/build/parser/satisfactory/types/property/PropertiesList.d.ts.map +1 -1
  94. package/build/parser/satisfactory/types/property/PropertiesList.js +73 -114
  95. package/build/parser/satisfactory/types/property/PropertiesList.js.map +1 -1
  96. package/build/parser/satisfactory/types/property/generic/AbstractBaseProperty.d.ts +9 -12
  97. package/build/parser/satisfactory/types/property/generic/AbstractBaseProperty.d.ts.map +1 -1
  98. package/build/parser/satisfactory/types/property/generic/AbstractBaseProperty.js +12 -7
  99. package/build/parser/satisfactory/types/property/generic/AbstractBaseProperty.js.map +1 -1
  100. package/build/parser/satisfactory/types/property/generic/BoolProperty.d.ts +10 -5
  101. package/build/parser/satisfactory/types/property/generic/BoolProperty.d.ts.map +1 -1
  102. package/build/parser/satisfactory/types/property/generic/BoolProperty.js +20 -23
  103. package/build/parser/satisfactory/types/property/generic/BoolProperty.js.map +1 -1
  104. package/build/parser/satisfactory/types/property/generic/ByteProperty.d.ts +12 -7
  105. package/build/parser/satisfactory/types/property/generic/ByteProperty.d.ts.map +1 -1
  106. package/build/parser/satisfactory/types/property/generic/ByteProperty.js +37 -34
  107. package/build/parser/satisfactory/types/property/generic/ByteProperty.js.map +1 -1
  108. package/build/parser/satisfactory/types/property/generic/DoubleProperty.d.ts +9 -5
  109. package/build/parser/satisfactory/types/property/generic/DoubleProperty.d.ts.map +1 -1
  110. package/build/parser/satisfactory/types/property/generic/DoubleProperty.js +15 -23
  111. package/build/parser/satisfactory/types/property/generic/DoubleProperty.js.map +1 -1
  112. package/build/parser/satisfactory/types/property/generic/EnumProperty.d.ts +10 -5
  113. package/build/parser/satisfactory/types/property/generic/EnumProperty.d.ts.map +1 -1
  114. package/build/parser/satisfactory/types/property/generic/EnumProperty.js +17 -23
  115. package/build/parser/satisfactory/types/property/generic/EnumProperty.js.map +1 -1
  116. package/build/parser/satisfactory/types/property/generic/FloatProperty.d.ts +9 -5
  117. package/build/parser/satisfactory/types/property/generic/FloatProperty.d.ts.map +1 -1
  118. package/build/parser/satisfactory/types/property/generic/FloatProperty.js +15 -23
  119. package/build/parser/satisfactory/types/property/generic/FloatProperty.js.map +1 -1
  120. package/build/parser/satisfactory/types/property/generic/Int64Property.d.ts +9 -5
  121. package/build/parser/satisfactory/types/property/generic/Int64Property.d.ts.map +1 -1
  122. package/build/parser/satisfactory/types/property/generic/Int64Property.js +15 -23
  123. package/build/parser/satisfactory/types/property/generic/Int64Property.js.map +1 -1
  124. package/build/parser/satisfactory/types/property/generic/Int8Property.d.ts +8 -4
  125. package/build/parser/satisfactory/types/property/generic/Int8Property.d.ts.map +1 -1
  126. package/build/parser/satisfactory/types/property/generic/Int8Property.js +11 -20
  127. package/build/parser/satisfactory/types/property/generic/Int8Property.js.map +1 -1
  128. package/build/parser/satisfactory/types/property/generic/IntProperty.d.ts +20 -0
  129. package/build/parser/satisfactory/types/property/generic/IntProperty.d.ts.map +1 -0
  130. package/build/parser/satisfactory/types/property/generic/IntProperty.js +25 -0
  131. package/build/parser/satisfactory/types/property/generic/IntProperty.js.map +1 -0
  132. package/build/parser/satisfactory/types/property/generic/InterfaceProperty.d.ts +21 -0
  133. package/build/parser/satisfactory/types/property/generic/InterfaceProperty.d.ts.map +1 -0
  134. package/build/parser/satisfactory/types/property/generic/InterfaceProperty.js +26 -0
  135. package/build/parser/satisfactory/types/property/generic/InterfaceProperty.js.map +1 -0
  136. package/build/parser/satisfactory/types/property/generic/NameProperty.d.ts +20 -0
  137. package/build/parser/satisfactory/types/property/generic/NameProperty.d.ts.map +1 -0
  138. package/build/parser/satisfactory/types/property/generic/NameProperty.js +25 -0
  139. package/build/parser/satisfactory/types/property/generic/NameProperty.js.map +1 -0
  140. package/build/parser/satisfactory/types/property/generic/ObjectProperty.d.ts +9 -5
  141. package/build/parser/satisfactory/types/property/generic/ObjectProperty.d.ts.map +1 -1
  142. package/build/parser/satisfactory/types/property/generic/ObjectProperty.js +15 -23
  143. package/build/parser/satisfactory/types/property/generic/ObjectProperty.js.map +1 -1
  144. package/build/parser/satisfactory/types/property/generic/SingleProperty.d.ts +20 -0
  145. package/build/parser/satisfactory/types/property/generic/SingleProperty.d.ts.map +1 -0
  146. package/build/parser/satisfactory/types/property/generic/SingleProperty.js +25 -0
  147. package/build/parser/satisfactory/types/property/generic/SingleProperty.js.map +1 -0
  148. package/build/parser/satisfactory/types/property/generic/SoftObjectProperty.d.ts +9 -5
  149. package/build/parser/satisfactory/types/property/generic/SoftObjectProperty.d.ts.map +1 -1
  150. package/build/parser/satisfactory/types/property/generic/SoftObjectProperty.js +15 -23
  151. package/build/parser/satisfactory/types/property/generic/SoftObjectProperty.js.map +1 -1
  152. package/build/parser/satisfactory/types/property/generic/StrProperty.d.ts +9 -5
  153. package/build/parser/satisfactory/types/property/generic/StrProperty.d.ts.map +1 -1
  154. package/build/parser/satisfactory/types/property/generic/StrProperty.js +15 -23
  155. package/build/parser/satisfactory/types/property/generic/StrProperty.js.map +1 -1
  156. package/build/parser/satisfactory/types/property/generic/TextProperty.d.ts +9 -5
  157. package/build/parser/satisfactory/types/property/generic/TextProperty.d.ts.map +1 -1
  158. package/build/parser/satisfactory/types/property/generic/TextProperty.js +38 -45
  159. package/build/parser/satisfactory/types/property/generic/TextProperty.js.map +1 -1
  160. package/build/parser/satisfactory/types/property/generic/Uint32Property.d.ts +9 -5
  161. package/build/parser/satisfactory/types/property/generic/Uint32Property.d.ts.map +1 -1
  162. package/build/parser/satisfactory/types/property/generic/Uint32Property.js +15 -23
  163. package/build/parser/satisfactory/types/property/generic/Uint32Property.js.map +1 -1
  164. package/build/parser/satisfactory/types/property/generic/Uint64Property.d.ts +9 -5
  165. package/build/parser/satisfactory/types/property/generic/Uint64Property.d.ts.map +1 -1
  166. package/build/parser/satisfactory/types/property/generic/Uint64Property.js +14 -22
  167. package/build/parser/satisfactory/types/property/generic/Uint64Property.js.map +1 -1
  168. package/build/parser/satisfactory/types/property/generic/Uint8Property.d.ts +9 -5
  169. package/build/parser/satisfactory/types/property/generic/Uint8Property.d.ts.map +1 -1
  170. package/build/parser/satisfactory/types/property/generic/Uint8Property.js +14 -22
  171. package/build/parser/satisfactory/types/property/generic/Uint8Property.js.map +1 -1
  172. package/build/parser/satisfactory/types/property/generic/containers/ArrayProperty.d.ts +15 -0
  173. package/build/parser/satisfactory/types/property/generic/containers/ArrayProperty.d.ts.map +1 -0
  174. package/build/parser/satisfactory/types/property/generic/containers/ArrayProperty.js +129 -0
  175. package/build/parser/satisfactory/types/property/generic/containers/ArrayProperty.js.map +1 -0
  176. package/build/parser/satisfactory/types/property/generic/containers/ArrayPropertySpecificTypes.d.ts +55 -0
  177. package/build/parser/satisfactory/types/property/generic/containers/ArrayPropertySpecificTypes.d.ts.map +1 -0
  178. package/build/parser/satisfactory/types/property/generic/containers/ArrayPropertySpecificTypes.js +24 -0
  179. package/build/parser/satisfactory/types/property/generic/containers/ArrayPropertySpecificTypes.js.map +1 -0
  180. package/build/parser/satisfactory/types/property/generic/containers/MapProperty.d.ts +20 -0
  181. package/build/parser/satisfactory/types/property/generic/containers/MapProperty.d.ts.map +1 -0
  182. package/build/parser/satisfactory/types/property/generic/{MapProperty.js → containers/MapProperty.js} +52 -61
  183. package/build/parser/satisfactory/types/property/generic/containers/MapProperty.js.map +1 -0
  184. package/build/parser/satisfactory/types/property/generic/containers/SetProperty.d.ts +14 -0
  185. package/build/parser/satisfactory/types/property/generic/containers/SetProperty.d.ts.map +1 -0
  186. package/build/parser/satisfactory/types/property/generic/containers/SetProperty.js +90 -0
  187. package/build/parser/satisfactory/types/property/generic/containers/SetProperty.js.map +1 -0
  188. package/build/parser/satisfactory/types/property/generic/containers/SetPropertySpecificTypes.d.ts +34 -0
  189. package/build/parser/satisfactory/types/property/generic/containers/SetPropertySpecificTypes.d.ts.map +1 -0
  190. package/build/parser/satisfactory/types/property/generic/containers/SetPropertySpecificTypes.js +17 -0
  191. package/build/parser/satisfactory/types/property/generic/containers/SetPropertySpecificTypes.js.map +1 -0
  192. package/build/parser/satisfactory/types/property/generic/containers/StructProperty.d.ts +59 -0
  193. package/build/parser/satisfactory/types/property/generic/containers/StructProperty.d.ts.map +1 -0
  194. package/build/parser/satisfactory/types/property/generic/{StructProperty.js → containers/StructProperty.js} +61 -84
  195. package/build/parser/satisfactory/types/property/generic/containers/StructProperty.js.map +1 -0
  196. package/build/parser/satisfactory/types/property/special/BuildableSubsystemSpecialProperties.d.ts +2 -0
  197. package/build/parser/satisfactory/types/property/special/BuildableSubsystemSpecialProperties.d.ts.map +1 -1
  198. package/build/parser/satisfactory/types/property/special/BuildableSubsystemSpecialProperties.js +14 -5
  199. package/build/parser/satisfactory/types/property/special/BuildableSubsystemSpecialProperties.js.map +1 -1
  200. package/build/parser/satisfactory/types/property/special/PlayerSpecialProperties.d.ts.map +1 -1
  201. package/build/parser/satisfactory/types/property/special/PlayerSpecialProperties.js.map +1 -1
  202. package/build/parser/satisfactory/types/property/special/PowerLineSpecialProperties.js +2 -2
  203. package/build/parser/satisfactory/types/property/special/PowerLineSpecialProperties.js.map +1 -1
  204. package/build/parser/satisfactory/types/property/special/runtime-buildable-instance-data-version.d.ts +4 -2
  205. package/build/parser/satisfactory/types/property/special/runtime-buildable-instance-data-version.d.ts.map +1 -1
  206. package/build/parser/satisfactory/types/property/special/runtime-buildable-instance-data-version.js +4 -2
  207. package/build/parser/satisfactory/types/property/special/runtime-buildable-instance-data-version.js.map +1 -1
  208. package/build/parser/satisfactory/types/structs/GUIDInfo.d.ts +4 -4
  209. package/build/parser/satisfactory/types/structs/GUIDInfo.d.ts.map +1 -1
  210. package/build/parser/satisfactory/types/structs/GUIDInfo.js +6 -6
  211. package/build/parser/satisfactory/types/structs/GUIDInfo.js.map +1 -1
  212. package/build/parser/satisfactory/types/structs/SaveBodyValidation.d.ts.map +1 -1
  213. package/build/parser/satisfactory/types/structs/SaveBodyValidation.js +0 -2
  214. package/build/parser/satisfactory/types/structs/SaveBodyValidation.js.map +1 -1
  215. package/build/parser/satisfactory/types/structs/SoftObjectReference.d.ts +1 -1
  216. package/build/parser/satisfactory/types/structs/SoftObjectReference.d.ts.map +1 -1
  217. package/build/parser/satisfactory/types/structs/SoftObjectReference.js +2 -2
  218. package/build/parser/satisfactory/types/structs/SoftObjectReference.js.map +1 -1
  219. package/build/parser/satisfactory/types/structs/binary/FCustomVersion.d.ts +12 -0
  220. package/build/parser/satisfactory/types/structs/binary/FCustomVersion.d.ts.map +1 -0
  221. package/build/parser/satisfactory/types/structs/binary/FCustomVersion.js +21 -0
  222. package/build/parser/satisfactory/types/structs/binary/FCustomVersion.js.map +1 -0
  223. package/build/parser/satisfactory/types/structs/binary/FCustomVersionContainer.d.ts +11 -0
  224. package/build/parser/satisfactory/types/structs/binary/FCustomVersionContainer.d.ts.map +1 -0
  225. package/build/parser/satisfactory/types/structs/binary/FCustomVersionContainer.js +22 -0
  226. package/build/parser/satisfactory/types/structs/binary/FCustomVersionContainer.js.map +1 -0
  227. package/build/parser/satisfactory/types/structs/binary/FEngineVersion.d.ts +14 -0
  228. package/build/parser/satisfactory/types/structs/binary/FEngineVersion.d.ts.map +1 -0
  229. package/build/parser/satisfactory/types/structs/binary/FEngineVersion.js +24 -0
  230. package/build/parser/satisfactory/types/structs/binary/FEngineVersion.js.map +1 -0
  231. package/build/parser/satisfactory/types/structs/binary/FLocalUserNetIdBundle.d.ts +12 -0
  232. package/build/parser/satisfactory/types/structs/binary/FLocalUserNetIdBundle.d.ts.map +1 -0
  233. package/build/parser/satisfactory/types/structs/binary/FLocalUserNetIdBundle.js +22 -0
  234. package/build/parser/satisfactory/types/structs/binary/FLocalUserNetIdBundle.js.map +1 -0
  235. package/build/parser/satisfactory/types/structs/binary/FPackageFileVersion.d.ts +11 -0
  236. package/build/parser/satisfactory/types/structs/binary/FPackageFileVersion.d.ts.map +1 -0
  237. package/build/parser/satisfactory/types/structs/binary/FPackageFileVersion.js +18 -0
  238. package/build/parser/satisfactory/types/structs/binary/FPackageFileVersion.js.map +1 -0
  239. package/build/parser/satisfactory/types/structs/binary/FPlayerInfoHandle.d.ts +11 -0
  240. package/build/parser/satisfactory/types/structs/binary/FPlayerInfoHandle.d.ts.map +1 -0
  241. package/build/parser/satisfactory/types/structs/binary/FPlayerInfoHandle.js +38 -0
  242. package/build/parser/satisfactory/types/structs/binary/FPlayerInfoHandle.js.map +1 -0
  243. package/build/parser/satisfactory/types/structs/binary/FPropertyTag.d.ts +30 -0
  244. package/build/parser/satisfactory/types/structs/binary/FPropertyTag.d.ts.map +1 -0
  245. package/build/parser/satisfactory/types/structs/binary/FPropertyTag.js +182 -0
  246. package/build/parser/satisfactory/types/structs/binary/FPropertyTag.js.map +1 -0
  247. package/build/parser/satisfactory/types/structs/binary/FPropertyTagNode.d.ts +11 -0
  248. package/build/parser/satisfactory/types/structs/binary/FPropertyTagNode.d.ts.map +1 -0
  249. package/build/parser/satisfactory/types/structs/binary/FPropertyTagNode.js +26 -0
  250. package/build/parser/satisfactory/types/structs/binary/FPropertyTagNode.js.map +1 -0
  251. package/build/parser/satisfactory/types/structs/binary/FSaveObjectVersionData.d.ts +17 -0
  252. package/build/parser/satisfactory/types/structs/binary/FSaveObjectVersionData.d.ts.map +1 -0
  253. package/build/parser/satisfactory/types/structs/binary/FSaveObjectVersionData.js +27 -0
  254. package/build/parser/satisfactory/types/structs/binary/FSaveObjectVersionData.js.map +1 -0
  255. package/build/parser/satisfactory/types/structs/binary/FUniqueNetIdRepl.d.ts +11 -0
  256. package/build/parser/satisfactory/types/structs/binary/FUniqueNetIdRepl.d.ts.map +1 -0
  257. package/build/parser/satisfactory/types/structs/binary/FUniqueNetIdRepl.js +21 -0
  258. package/build/parser/satisfactory/types/structs/binary/FUniqueNetIdRepl.js.map +1 -0
  259. package/build/parser/satisfactory/types/structs/binary/LBBalancerIndexing.d.ts +12 -0
  260. package/build/parser/satisfactory/types/structs/binary/LBBalancerIndexing.d.ts.map +1 -0
  261. package/build/parser/satisfactory/types/structs/binary/LBBalancerIndexing.js +22 -0
  262. package/build/parser/satisfactory/types/structs/binary/LBBalancerIndexing.js.map +1 -0
  263. package/build/parser/stream/reworked/readable-stream-parser.d.ts +2 -3
  264. package/build/parser/stream/reworked/readable-stream-parser.d.ts.map +1 -1
  265. package/build/parser/stream/reworked/readable-stream-parser.js +82 -44
  266. package/build/parser/stream/reworked/readable-stream-parser.js.map +1 -1
  267. package/build/parser/unreal-engine/ETextHistoryType.d.ts +17 -0
  268. package/build/parser/unreal-engine/ETextHistoryType.d.ts.map +1 -0
  269. package/build/parser/unreal-engine/ETextHistoryType.js +21 -0
  270. package/build/parser/unreal-engine/ETextHistoryType.js.map +1 -0
  271. package/build/parser/unreal-engine/EUnrealEngineObjectUE5Version.d.ts +24 -0
  272. package/build/parser/unreal-engine/EUnrealEngineObjectUE5Version.d.ts.map +1 -0
  273. package/build/parser/unreal-engine/EUnrealEngineObjectUE5Version.js +29 -0
  274. package/build/parser/unreal-engine/EUnrealEngineObjectUE5Version.js.map +1 -0
  275. package/package.json +3 -3
  276. package/build/parser/context/context.d.ts.map +0 -1
  277. package/build/parser/context/context.js.map +0 -1
  278. package/build/parser/file.types.d.ts +0 -14
  279. package/build/parser/file.types.d.ts.map +0 -1
  280. package/build/parser/file.types.js +0 -8
  281. package/build/parser/file.types.js.map +0 -1
  282. package/build/parser/satisfactory/save/level.class.d.ts +0 -29
  283. package/build/parser/satisfactory/save/level.class.d.ts.map +0 -1
  284. package/build/parser/satisfactory/save/level.class.js +0 -204
  285. package/build/parser/satisfactory/save/level.class.js.map +0 -1
  286. package/build/parser/satisfactory/types/property/generic/ArrayProperty/ArrayProperty.d.ts +0 -22
  287. package/build/parser/satisfactory/types/property/generic/ArrayProperty/ArrayProperty.d.ts.map +0 -1
  288. package/build/parser/satisfactory/types/property/generic/ArrayProperty/ArrayProperty.js +0 -127
  289. package/build/parser/satisfactory/types/property/generic/ArrayProperty/ArrayProperty.js.map +0 -1
  290. package/build/parser/satisfactory/types/property/generic/ArrayProperty/BoolArrayProperty.d.ts +0 -14
  291. package/build/parser/satisfactory/types/property/generic/ArrayProperty/BoolArrayProperty.d.ts.map +0 -1
  292. package/build/parser/satisfactory/types/property/generic/ArrayProperty/BoolArrayProperty.js +0 -23
  293. package/build/parser/satisfactory/types/property/generic/ArrayProperty/BoolArrayProperty.js.map +0 -1
  294. package/build/parser/satisfactory/types/property/generic/ArrayProperty/ByteArrayProperty.d.ts +0 -14
  295. package/build/parser/satisfactory/types/property/generic/ArrayProperty/ByteArrayProperty.d.ts.map +0 -1
  296. package/build/parser/satisfactory/types/property/generic/ArrayProperty/ByteArrayProperty.js +0 -23
  297. package/build/parser/satisfactory/types/property/generic/ArrayProperty/ByteArrayProperty.js.map +0 -1
  298. package/build/parser/satisfactory/types/property/generic/ArrayProperty/DoubleArrayProperty.d.ts +0 -14
  299. package/build/parser/satisfactory/types/property/generic/ArrayProperty/DoubleArrayProperty.d.ts.map +0 -1
  300. package/build/parser/satisfactory/types/property/generic/ArrayProperty/DoubleArrayProperty.js +0 -23
  301. package/build/parser/satisfactory/types/property/generic/ArrayProperty/DoubleArrayProperty.js.map +0 -1
  302. package/build/parser/satisfactory/types/property/generic/ArrayProperty/EnumArrayProperty.d.ts +0 -14
  303. package/build/parser/satisfactory/types/property/generic/ArrayProperty/EnumArrayProperty.d.ts.map +0 -1
  304. package/build/parser/satisfactory/types/property/generic/ArrayProperty/EnumArrayProperty.js +0 -23
  305. package/build/parser/satisfactory/types/property/generic/ArrayProperty/EnumArrayProperty.js.map +0 -1
  306. package/build/parser/satisfactory/types/property/generic/ArrayProperty/FloatArrayProperty.d.ts +0 -14
  307. package/build/parser/satisfactory/types/property/generic/ArrayProperty/FloatArrayProperty.d.ts.map +0 -1
  308. package/build/parser/satisfactory/types/property/generic/ArrayProperty/FloatArrayProperty.js +0 -23
  309. package/build/parser/satisfactory/types/property/generic/ArrayProperty/FloatArrayProperty.js.map +0 -1
  310. package/build/parser/satisfactory/types/property/generic/ArrayProperty/Int32ArrayProperty.d.ts +0 -14
  311. package/build/parser/satisfactory/types/property/generic/ArrayProperty/Int32ArrayProperty.d.ts.map +0 -1
  312. package/build/parser/satisfactory/types/property/generic/ArrayProperty/Int32ArrayProperty.js +0 -23
  313. package/build/parser/satisfactory/types/property/generic/ArrayProperty/Int32ArrayProperty.js.map +0 -1
  314. package/build/parser/satisfactory/types/property/generic/ArrayProperty/Int64ArrayProperty.d.ts +0 -14
  315. package/build/parser/satisfactory/types/property/generic/ArrayProperty/Int64ArrayProperty.d.ts.map +0 -1
  316. package/build/parser/satisfactory/types/property/generic/ArrayProperty/Int64ArrayProperty.js +0 -23
  317. package/build/parser/satisfactory/types/property/generic/ArrayProperty/Int64ArrayProperty.js.map +0 -1
  318. package/build/parser/satisfactory/types/property/generic/ArrayProperty/ObjectArrayProperty.d.ts +0 -15
  319. package/build/parser/satisfactory/types/property/generic/ArrayProperty/ObjectArrayProperty.d.ts.map +0 -1
  320. package/build/parser/satisfactory/types/property/generic/ArrayProperty/ObjectArrayProperty.js +0 -23
  321. package/build/parser/satisfactory/types/property/generic/ArrayProperty/ObjectArrayProperty.js.map +0 -1
  322. package/build/parser/satisfactory/types/property/generic/ArrayProperty/SoftObjectArrayProperty.d.ts +0 -15
  323. package/build/parser/satisfactory/types/property/generic/ArrayProperty/SoftObjectArrayProperty.d.ts.map +0 -1
  324. package/build/parser/satisfactory/types/property/generic/ArrayProperty/SoftObjectArrayProperty.js +0 -23
  325. package/build/parser/satisfactory/types/property/generic/ArrayProperty/SoftObjectArrayProperty.js.map +0 -1
  326. package/build/parser/satisfactory/types/property/generic/ArrayProperty/StrArrayProperty.d.ts +0 -14
  327. package/build/parser/satisfactory/types/property/generic/ArrayProperty/StrArrayProperty.d.ts.map +0 -1
  328. package/build/parser/satisfactory/types/property/generic/ArrayProperty/StrArrayProperty.js +0 -23
  329. package/build/parser/satisfactory/types/property/generic/ArrayProperty/StrArrayProperty.js.map +0 -1
  330. package/build/parser/satisfactory/types/property/generic/ArrayProperty/StructArrayProperty.d.ts +0 -26
  331. package/build/parser/satisfactory/types/property/generic/ArrayProperty/StructArrayProperty.d.ts.map +0 -1
  332. package/build/parser/satisfactory/types/property/generic/ArrayProperty/StructArrayProperty.js +0 -75
  333. package/build/parser/satisfactory/types/property/generic/ArrayProperty/StructArrayProperty.js.map +0 -1
  334. package/build/parser/satisfactory/types/property/generic/ArrayProperty/TextArrayProperty.d.ts +0 -15
  335. package/build/parser/satisfactory/types/property/generic/ArrayProperty/TextArrayProperty.d.ts.map +0 -1
  336. package/build/parser/satisfactory/types/property/generic/ArrayProperty/TextArrayProperty.js +0 -23
  337. package/build/parser/satisfactory/types/property/generic/ArrayProperty/TextArrayProperty.js.map +0 -1
  338. package/build/parser/satisfactory/types/property/generic/Int32Property.d.ts +0 -16
  339. package/build/parser/satisfactory/types/property/generic/Int32Property.d.ts.map +0 -1
  340. package/build/parser/satisfactory/types/property/generic/Int32Property.js +0 -33
  341. package/build/parser/satisfactory/types/property/generic/Int32Property.js.map +0 -1
  342. package/build/parser/satisfactory/types/property/generic/MapProperty.d.ts +0 -25
  343. package/build/parser/satisfactory/types/property/generic/MapProperty.d.ts.map +0 -1
  344. package/build/parser/satisfactory/types/property/generic/MapProperty.js.map +0 -1
  345. package/build/parser/satisfactory/types/property/generic/SetProperty/Int32SetProperty.d.ts +0 -14
  346. package/build/parser/satisfactory/types/property/generic/SetProperty/Int32SetProperty.d.ts.map +0 -1
  347. package/build/parser/satisfactory/types/property/generic/SetProperty/Int32SetProperty.js +0 -23
  348. package/build/parser/satisfactory/types/property/generic/SetProperty/Int32SetProperty.js.map +0 -1
  349. package/build/parser/satisfactory/types/property/generic/SetProperty/ObjectSetProperty.d.ts +0 -15
  350. package/build/parser/satisfactory/types/property/generic/SetProperty/ObjectSetProperty.d.ts.map +0 -1
  351. package/build/parser/satisfactory/types/property/generic/SetProperty/ObjectSetProperty.js +0 -23
  352. package/build/parser/satisfactory/types/property/generic/SetProperty/ObjectSetProperty.js.map +0 -1
  353. package/build/parser/satisfactory/types/property/generic/SetProperty/SetProperty.d.ts +0 -15
  354. package/build/parser/satisfactory/types/property/generic/SetProperty/SetProperty.d.ts.map +0 -1
  355. package/build/parser/satisfactory/types/property/generic/SetProperty/SetProperty.js +0 -75
  356. package/build/parser/satisfactory/types/property/generic/SetProperty/SetProperty.js.map +0 -1
  357. package/build/parser/satisfactory/types/property/generic/SetProperty/StrSetProperty.d.ts +0 -14
  358. package/build/parser/satisfactory/types/property/generic/SetProperty/StrSetProperty.d.ts.map +0 -1
  359. package/build/parser/satisfactory/types/property/generic/SetProperty/StrSetProperty.js +0 -23
  360. package/build/parser/satisfactory/types/property/generic/SetProperty/StrSetProperty.js.map +0 -1
  361. package/build/parser/satisfactory/types/property/generic/SetProperty/StructSetProperty.d.ts +0 -14
  362. package/build/parser/satisfactory/types/property/generic/SetProperty/StructSetProperty.d.ts.map +0 -1
  363. package/build/parser/satisfactory/types/property/generic/SetProperty/StructSetProperty.js +0 -42
  364. package/build/parser/satisfactory/types/property/generic/SetProperty/StructSetProperty.js.map +0 -1
  365. package/build/parser/satisfactory/types/property/generic/SetProperty/Uint32SetProperty.d.ts +0 -14
  366. package/build/parser/satisfactory/types/property/generic/SetProperty/Uint32SetProperty.d.ts.map +0 -1
  367. package/build/parser/satisfactory/types/property/generic/SetProperty/Uint32SetProperty.js +0 -23
  368. package/build/parser/satisfactory/types/property/generic/SetProperty/Uint32SetProperty.js.map +0 -1
  369. package/build/parser/satisfactory/types/property/generic/StructProperty.d.ts +0 -60
  370. package/build/parser/satisfactory/types/property/generic/StructProperty.d.ts.map +0 -1
  371. package/build/parser/satisfactory/types/property/generic/StructProperty.js.map +0 -1
  372. package/build/parser/satisfactory/types/structs/GUID.d.ts +0 -8
  373. package/build/parser/satisfactory/types/structs/GUID.d.ts.map +0 -1
  374. package/build/parser/satisfactory/types/structs/GUID.js +0 -22
  375. package/build/parser/satisfactory/types/structs/GUID.js.map +0 -1
  376. package/build/parser/stream/reworked/save-stream-json-stringifier.d.ts +0 -6
  377. package/build/parser/stream/reworked/save-stream-json-stringifier.d.ts.map +0 -1
  378. package/build/parser/stream/reworked/save-stream-json-stringifier.js +0 -35
  379. package/build/parser/stream/reworked/save-stream-json-stringifier.js.map +0 -1
  380. package/build/parser/stream/reworked/save-stream-writer.class.d.ts +0 -28
  381. package/build/parser/stream/reworked/save-stream-writer.class.d.ts.map +0 -1
  382. package/build/parser/stream/reworked/save-stream-writer.class.js +0 -84
  383. package/build/parser/stream/reworked/save-stream-writer.class.js.map +0 -1
package/CHANGELOG.md CHANGED
@@ -1,6 +1,31 @@
1
1
  # Changelog
2
2
  Make sure to use the same version for parsing and serializing saves, if possible.
3
3
 
4
+ ### [4.0.0] (2026-04-18)
5
+ ## 1.2 Support, Breaking Changes
6
+ * Supporting 1.2 Saves and Blueprints. Usage from parsing did not change, but properties quite a bit. Taking the chance to trim some fat. Reach out if you still find bugs or have other ideas.
7
+ ### Types
8
+ * Properties no longer have a `subtype`. instead check a property's `propertyTagType`. it more accurately describes nested subtypes. And would only be doubled with a `subtype` field. Technically the `propertyTagType` only exists in saves from late 1.1 on, but the parser constructs it artificially for older saves.
9
+ * Properties no longer have a `ueType`, since it now maps 1:1 on to the parsers `type` and the `propertyTagType`.
10
+ * ArrayProperties will have a `type=ArrayProperty`, no matter the subtype. So no longer `StrArrayProperty`. I keep type definitions and type guards for e.g. `StrArrayProperty, isStrArrayProperty(property)`, but they just evaluate on the `propertyTagType` anyway.
11
+ ### ArrayProperties of StructProperties
12
+ * Their `structValueFields` moved over to -> `structTag`. But those are only present for saves 1.1 or lower.
13
+ * And the values of that ArrayProperty are now actual values of structproperties, no longer `StructProperty[]` as a whole. Which was inconsistent with other properties to be fair and a bug.
14
+ #### Parsed Output
15
+ * Shortened the resulting JSON. fields like `index`, `flag`, `propertyGuid` of a property are only included if they are not entirely 0.
16
+ ### Blueprints
17
+ * `lastEditedBy` is called `lastEditedByLegacy` in blueprints from <= 1.1 saves. since its structure changes there.
18
+ #### Smaller Bugfixes & Renamings
19
+ * `ArrayProperty/SetProperty .AvailablePropertyTypes` -> is handled by `ArrayProperty/SetProperty`. check for type guards if you need them like `isStrArrayProperty()` or `isStrSetProperty()`
20
+ * fixed confusing `flags` with `guid` of a property. which was a bug.
21
+ * Rename `SoftObjectReference`'s `unk` -> `subPathString`.
22
+ * Rename `Int32Property` -> `IntProperty`to reflect the accuracte type.
23
+ * Some new fields and smaller internal renamings.
24
+ * the parsers internal context like `saveVersion` extended.
25
+ * `SaveReader.GetRoughSaveVersion` -> `SaveReader.GetApproximateSaveVersion`
26
+ * Removed deprecated `SaveStreamJsonStringifier` and `EDIT`.
27
+ * Keeping The ReadableStreamParser for now, but has lower priority.
28
+
4
29
  ### [3.3.1] (2026-02-08)
5
30
  #### Quick Bugfixes
6
31
  * Fix parsing a bit more of Mod FicsItNetworks.
package/GUIDE.md CHANGED
@@ -33,9 +33,9 @@ SaveObject {
33
33
  instanceName: string;
34
34
  properties: PropertiesMap;
35
35
  specialProperties: SpecialProperties.AvailableSpecialPropertiesTypes;
36
- trailingData: number[] = [];
37
- objectVersion: number;
38
- unknownType2: number;
36
+ trailingData: number[];
37
+ saveCustomVersion: number;
38
+ objectVersionData: FSaveObjectVersionData;
39
39
  }
40
40
 
41
41
  SaveComponent = SaveObject & {
@@ -57,12 +57,16 @@ All generic properties inherit from [AbstractBaseProperty](https://github.com/et
57
57
  For a given name, an object has property of type `AbstractBaseProperty | AbstractBaseProperty[]`. Which just means, that the game on rare occasions serializes multiple properties with the same name, just different `index` as number. Often this `index` is just not relevant, but as mentioned on rare occasions, the game tries to represent an array (Not to be confused with ArrayProperty).
58
58
  Other properties such as `FloatProperty` inherit from the `AbstractBAseProperty`.
59
59
  ```js
60
- type AbstractBaseProperty = {
60
+ export type AbstractBaseProperty = {
61
+ [key: string]: any;
61
62
  type: string;
62
- ueType: string;
63
- name?: string;
64
- guidInfo?: GUIDInfo;
63
+ name: string;
64
+ propertyTagType: FPropertyTagNode;
65
65
  index?: number;
66
+ flags?: number;
67
+ propertyGuid?: GUID;
68
+ structGuid?: GUID;
69
+ rawBytes?: number[];
66
70
  };
67
71
 
68
72
  type FloatProperty = AbstractBaseProperty & {
package/README.md CHANGED
@@ -28,7 +28,7 @@ Game Version Files of U5 and below are NOT supported.
28
28
  | U8 | ✅ compatible |
29
29
  | U1.0 | ✅ compatible |
30
30
  | U1.1 | ✅ compatible |
31
-
31
+ | U1.2 | ✅ compatible |
32
32
 
33
33
 
34
34
  # Version Migration
@@ -45,7 +45,7 @@ If you parse a U8 save/blueprint, the parser will also serialize it back to a U8
45
45
  You can always raise an issue on the linked [github project](https://github.com/etothepii4/satisfactory-file-parser) or hit me up in discord [`etothepii`](https://discordapp.com/users/268751901212803074).
46
46
  Every mistake that i know of makes the parser more robust. It wouldnt be where it is now, without the help of a lot of people!
47
47
 
48
- # Mod Support ✅
48
+ # Mod Support <= 1.1
49
49
  By Default, most Mods just reuse Properties and Structs of the base game.
50
50
  If however a Mod should not be working or have just objects with a lot of trailing unparseable data, Raise an issue or contact me.
51
51
 
@@ -245,11 +245,11 @@ const firstStack = inventoryStacks.values[0];
245
245
 
246
246
  // Items within ItemStacks are quite nested. And StructProperties can basically be anything.
247
247
  // overwrite first item stack with 5 Rotors.
248
- (((firstStack.value as DynamicStructPropertyValue).properties.Item as StructProperty).value as InventoryItemStructPropertyValue).itemReference = {
248
+ ((firstStack as DynamicStructPropertyValue).properties.Item as InventoryItemStructPropertyValue).itemReference = {
249
249
  levelName: '',
250
250
  pathName: '/Game/FactoryGame/Resource/Parts/Rotor/Desc_Rotor.Desc_Rotor_C'
251
251
  };
252
- ((firstStack.value as DynamicStructPropertyValue).properties.NumItems as Int32Property).value = 5;
252
+ ((firstStack as DynamicStructPropertyValue).properties.NumItems as IntProperty).value = 5;
253
253
 
254
254
  // modify original save object
255
255
  modifyObjects(inventory);
package/build/index.d.ts CHANGED
@@ -1,103 +1,113 @@
1
- export * from './parser/byte/alignment.enum';
2
- export * from './parser/context/context';
3
- export * from './parser/context/context-reader';
4
- export * from './parser/context/context-writer';
5
- export * from './parser/satisfactory/blueprint/blueprint-config';
6
- export * from './parser/satisfactory/blueprint/blueprint-config-version';
7
- export * from './parser/satisfactory/blueprint/blueprint-header';
8
- export * from './parser/satisfactory/blueprint/blueprint-header-version';
9
- export * from './parser/satisfactory/blueprint/blueprint.types';
10
- export * from './parser/satisfactory/save/factory-game-custom-version';
11
- export * from './parser/satisfactory/save/level';
12
- export * from './parser/satisfactory/save/level-to-destroyed-actors-map';
13
- export * from './parser/satisfactory/save/satisfactory-save';
14
- export * from './parser/satisfactory/save/satisfactory-save-header';
15
- export * from './parser/satisfactory/save/save-body-chunks';
16
- export * from './parser/satisfactory/save/save-custom-version';
17
- export * from './parser/satisfactory/save/save-header-type';
18
- export * from './parser/satisfactory/save/save.types';
19
- export * from './parser/satisfactory/types/objects/SaveComponent';
20
- export * from './parser/satisfactory/types/objects/SaveEntity';
21
- export * from './parser/satisfactory/types/objects/SaveObject';
22
- export * from './parser/satisfactory/types/property/generic/AbstractBaseProperty';
23
- export * from './parser/satisfactory/types/property/generic/ArrayProperty/ArrayProperty';
24
- export * from './parser/satisfactory/types/property/generic/ArrayProperty/BoolArrayProperty';
25
- export * from './parser/satisfactory/types/property/generic/ArrayProperty/ByteArrayProperty';
26
- export * from './parser/satisfactory/types/property/generic/ArrayProperty/DoubleArrayProperty';
27
- export * from './parser/satisfactory/types/property/generic/ArrayProperty/EnumArrayProperty';
28
- export * from './parser/satisfactory/types/property/generic/ArrayProperty/FloatArrayProperty';
29
- export * from './parser/satisfactory/types/property/generic/ArrayProperty/Int32ArrayProperty';
30
- export * from './parser/satisfactory/types/property/generic/ArrayProperty/Int64ArrayProperty';
31
- export * from './parser/satisfactory/types/property/generic/ArrayProperty/ObjectArrayProperty';
32
- export * from './parser/satisfactory/types/property/generic/ArrayProperty/SoftObjectArrayProperty';
33
- export * from './parser/satisfactory/types/property/generic/ArrayProperty/StrArrayProperty';
34
- export * from './parser/satisfactory/types/property/generic/ArrayProperty/StructArrayProperty';
35
- export * from './parser/satisfactory/types/property/generic/ArrayProperty/TextArrayProperty';
36
- export * from './parser/satisfactory/types/property/generic/BoolProperty';
37
- export * from './parser/satisfactory/types/property/generic/ByteProperty';
38
- export * from './parser/satisfactory/types/property/generic/DoubleProperty';
39
- export * from './parser/satisfactory/types/property/generic/EnumProperty';
40
- export * from './parser/satisfactory/types/property/generic/FloatProperty';
41
- export * from './parser/satisfactory/types/property/generic/Int32Property';
42
- export * from './parser/satisfactory/types/property/generic/Int64Property';
43
- export * from './parser/satisfactory/types/property/generic/Int8Property';
44
- export * from './parser/satisfactory/types/property/generic/MapProperty';
45
- export * from './parser/satisfactory/types/property/generic/ObjectProperty';
46
- export * from './parser/satisfactory/types/property/generic/SetProperty/Int32SetProperty';
47
- export * from './parser/satisfactory/types/property/generic/SetProperty/ObjectSetProperty';
48
- export * from './parser/satisfactory/types/property/generic/SetProperty/SetProperty';
49
- export * from './parser/satisfactory/types/property/generic/SetProperty/StrSetProperty';
50
- export * from './parser/satisfactory/types/property/generic/SetProperty/StructSetProperty';
51
- export * from './parser/satisfactory/types/property/generic/SetProperty/Uint32SetProperty';
52
- export * from './parser/satisfactory/types/property/generic/SoftObjectProperty';
53
- export * from './parser/satisfactory/types/property/generic/StrProperty';
54
- export * from './parser/satisfactory/types/property/generic/StructProperty';
55
- export * from './parser/satisfactory/types/property/generic/TextProperty';
56
- export * from './parser/satisfactory/types/property/generic/Uint32Property';
57
- export * from './parser/satisfactory/types/property/generic/Uint64Property';
58
- export * from './parser/satisfactory/types/property/generic/Uint8Property';
59
- export * from './parser/satisfactory/types/property/PropertiesList';
60
- export * from './parser/satisfactory/types/property/special/BuildableSubsystemSpecialProperties';
61
- export * from './parser/satisfactory/types/property/special/CircuitSpecialProperties';
62
- export * from './parser/satisfactory/types/property/special/ConveyorChainActorSpecialProperties';
63
- export * from './parser/satisfactory/types/property/special/ConveyorSpecialProperties';
64
- export * from './parser/satisfactory/types/property/special/EmptySpecialProperties';
65
- export * from './parser/satisfactory/types/property/special/ObjectsListSpecialProperties';
66
- export * from './parser/satisfactory/types/property/special/PlayerSpecialProperties';
67
- export * from './parser/satisfactory/types/property/special/PowerLineSpecialProperties';
68
- export * from './parser/satisfactory/types/property/special/runtime-buildable-instance-data-version';
69
- export * from './parser/satisfactory/types/property/special/SpecialDroneActionProperties';
70
- export * from './parser/satisfactory/types/property/special/SpecialProperties';
71
- export * from './parser/satisfactory/types/property/special/VehicleSpecialProperties';
72
- export * from './parser/satisfactory/types/structs/binary/FClientIdentityInfo';
73
- export * from './parser/satisfactory/types/structs/binary/FColor';
74
- export * from './parser/satisfactory/types/structs/binary/FLinearColor';
75
- export * from './parser/satisfactory/types/structs/binary/GUID';
76
- export * from './parser/satisfactory/types/structs/col4';
77
- export * from './parser/satisfactory/types/structs/DynamicStructPropertyValue';
78
- export * from './parser/satisfactory/types/structs/FGDynamicStruct';
79
- export * from './parser/satisfactory/types/structs/GUIDInfo';
80
- export * from './parser/satisfactory/types/structs/MD5Hash';
81
- export * from './parser/satisfactory/types/structs/mods/FicsItCam/FICFrameRange';
82
- export * from './parser/satisfactory/types/structs/mods/FicsItNetworks/FINGPUT1BufferPixel';
83
- export * from './parser/satisfactory/types/structs/mods/FicsItNetworks/FINItemStateFileSystem';
84
- export * from './parser/satisfactory/types/structs/mods/FicsItNetworks/FINNetworkTrace';
85
- export * from './parser/satisfactory/types/structs/mods/ModularLoadBalancers/FLBBalancerIndexing';
86
- export * from './parser/satisfactory/types/structs/ObjectReference';
87
- export * from './parser/satisfactory/types/structs/SaveBodyValidation';
88
- export * from './parser/satisfactory/types/structs/SoftObjectReference';
89
- export * from './parser/satisfactory/types/structs/Transform';
90
- export * from './parser/satisfactory/types/structs/vec2';
91
- export * from './parser/satisfactory/types/structs/vec3';
92
- export * from './parser/satisfactory/types/structs/vec4';
93
- export * from './parser/satisfactory/types/structs/VehiclePhysicsData';
94
- export { BlueprintConfigReader, BlueprintReader } from './parser/satisfactory/blueprint/blueprint-reader';
95
- export * from './parser/satisfactory/save/save-reader';
96
- export { SaveWriter } from './parser/satisfactory/save/save-writer';
97
- export { SaveStreamJsonStringifier } from './parser/stream/reworked/save-stream-json-stringifier';
98
- export { SaveStreamWriter } from './parser/stream/reworked/save-stream-writer.class';
99
- export * from './parser/error/parser.error';
100
- export { Parser } from './parser/parser';
101
- export { ReadableStreamParser } from './parser/stream/reworked/readable-stream-parser';
102
- export * from './parser/satisfactory/edit/edit-constants';
1
+ export * from "./parser/byte/alignment.enum";
2
+ export * from "./parser/byte/binary-operable.interface";
3
+ export * from "./parser/byte/binary-readable.interface";
4
+ export * from "./parser/byte/binary-writable.interface";
5
+ export * from "./parser/byte/byte-reader.class";
6
+ export * from "./parser/byte/byte-writer.class";
7
+ export * from "./parser/context/context-reader";
8
+ export * from "./parser/context/context-writer";
9
+ export * from "./parser/context/hierarchical-version-context";
10
+ export * from "./parser/context/reader-writer-context";
11
+ export * from "./parser/error/parser.error";
12
+ export * from "./parser/parser";
13
+ export * from "./parser/satisfactory/blueprint/blueprint-config";
14
+ export * from "./parser/satisfactory/blueprint/blueprint-config-version";
15
+ export * from "./parser/satisfactory/blueprint/blueprint-header";
16
+ export * from "./parser/satisfactory/blueprint/blueprint-header-version";
17
+ export * from "./parser/satisfactory/blueprint/blueprint-reader";
18
+ export * from "./parser/satisfactory/blueprint/blueprint-writer";
19
+ export * from "./parser/satisfactory/blueprint/blueprint.types";
20
+ export * from "./parser/satisfactory/edit/edit-constants";
21
+ export * from "./parser/satisfactory/save/data-blob";
22
+ export * from "./parser/satisfactory/save/factory-game-custom-version";
23
+ export * from "./parser/satisfactory/save/level";
24
+ export * from "./parser/satisfactory/save/level-to-destroyed-actors-map";
25
+ export * from "./parser/satisfactory/save/object-references-list";
26
+ export * from "./parser/satisfactory/save/satisfactory-save";
27
+ export * from "./parser/satisfactory/save/satisfactory-save-header";
28
+ export * from "./parser/satisfactory/save/save-body-chunks";
29
+ export * from "./parser/satisfactory/save/save-custom-version";
30
+ export * from "./parser/satisfactory/save/save-header-type";
31
+ export * from "./parser/satisfactory/save/save-reader";
32
+ export * from "./parser/satisfactory/save/save-writer";
33
+ export * from "./parser/satisfactory/save/save.types";
34
+ export * from "./parser/satisfactory/save/toc-blob";
35
+ export * from "./parser/satisfactory/types/objects/SaveComponent";
36
+ export * from "./parser/satisfactory/types/objects/SaveEntity";
37
+ export * from "./parser/satisfactory/types/objects/SaveObject";
38
+ export * from "./parser/satisfactory/types/property/generic/AbstractBaseProperty";
39
+ export * from "./parser/satisfactory/types/property/generic/BoolProperty";
40
+ export * from "./parser/satisfactory/types/property/generic/ByteProperty";
41
+ export * from "./parser/satisfactory/types/property/generic/containers/ArrayProperty";
42
+ export * from "./parser/satisfactory/types/property/generic/containers/ArrayPropertySpecificTypes";
43
+ export * from "./parser/satisfactory/types/property/generic/containers/MapProperty";
44
+ export * from "./parser/satisfactory/types/property/generic/containers/SetProperty";
45
+ export * from "./parser/satisfactory/types/property/generic/containers/SetPropertySpecificTypes";
46
+ export * from "./parser/satisfactory/types/property/generic/containers/StructProperty";
47
+ export * from "./parser/satisfactory/types/property/generic/DoubleProperty";
48
+ export * from "./parser/satisfactory/types/property/generic/EnumProperty";
49
+ export * from "./parser/satisfactory/types/property/generic/FloatProperty";
50
+ export * from "./parser/satisfactory/types/property/generic/Int64Property";
51
+ export * from "./parser/satisfactory/types/property/generic/Int8Property";
52
+ export * from "./parser/satisfactory/types/property/generic/InterfaceProperty";
53
+ export * from "./parser/satisfactory/types/property/generic/IntProperty";
54
+ export * from "./parser/satisfactory/types/property/generic/NameProperty";
55
+ export * from "./parser/satisfactory/types/property/generic/ObjectProperty";
56
+ export * from "./parser/satisfactory/types/property/generic/SingleProperty";
57
+ export * from "./parser/satisfactory/types/property/generic/SoftObjectProperty";
58
+ export * from "./parser/satisfactory/types/property/generic/StrProperty";
59
+ export * from "./parser/satisfactory/types/property/generic/TextProperty";
60
+ export * from "./parser/satisfactory/types/property/generic/Uint32Property";
61
+ export * from "./parser/satisfactory/types/property/generic/Uint64Property";
62
+ export * from "./parser/satisfactory/types/property/generic/Uint8Property";
63
+ export * from "./parser/satisfactory/types/property/PropertiesList";
64
+ export * from "./parser/satisfactory/types/property/special/BuildableSubsystemSpecialProperties";
65
+ export * from "./parser/satisfactory/types/property/special/CircuitSpecialProperties";
66
+ export * from "./parser/satisfactory/types/property/special/ConveyorChainActorSpecialProperties";
67
+ export * from "./parser/satisfactory/types/property/special/ConveyorSpecialProperties";
68
+ export * from "./parser/satisfactory/types/property/special/EmptySpecialProperties";
69
+ export * from "./parser/satisfactory/types/property/special/ObjectsListSpecialProperties";
70
+ export * from "./parser/satisfactory/types/property/special/PlayerSpecialProperties";
71
+ export * from "./parser/satisfactory/types/property/special/PowerLineSpecialProperties";
72
+ export * from "./parser/satisfactory/types/property/special/runtime-buildable-instance-data-version";
73
+ export * from "./parser/satisfactory/types/property/special/SpecialDroneActionProperties";
74
+ export * from "./parser/satisfactory/types/property/special/SpecialProperties";
75
+ export * from "./parser/satisfactory/types/property/special/VehicleSpecialProperties";
76
+ export * from "./parser/satisfactory/types/structs/binary/FClientIdentityInfo";
77
+ export * from "./parser/satisfactory/types/structs/binary/FColor";
78
+ export * from "./parser/satisfactory/types/structs/binary/FCustomVersion";
79
+ export * from "./parser/satisfactory/types/structs/binary/FCustomVersionContainer";
80
+ export * from "./parser/satisfactory/types/structs/binary/FEngineVersion";
81
+ export * from "./parser/satisfactory/types/structs/binary/FLinearColor";
82
+ export * from "./parser/satisfactory/types/structs/binary/FLocalUserNetIdBundle";
83
+ export * from "./parser/satisfactory/types/structs/binary/FPackageFileVersion";
84
+ export * from "./parser/satisfactory/types/structs/binary/FPlayerInfoHandle";
85
+ export * from "./parser/satisfactory/types/structs/binary/FPropertyTag";
86
+ export * from "./parser/satisfactory/types/structs/binary/FPropertyTagNode";
87
+ export * from "./parser/satisfactory/types/structs/binary/FSaveObjectVersionData";
88
+ export * from "./parser/satisfactory/types/structs/binary/FUniqueNetIdRepl";
89
+ export * from "./parser/satisfactory/types/structs/binary/GUID";
90
+ export * from "./parser/satisfactory/types/structs/binary/LBBalancerIndexing";
91
+ export * from "./parser/satisfactory/types/structs/col4";
92
+ export * from "./parser/satisfactory/types/structs/DynamicStructPropertyValue";
93
+ export * from "./parser/satisfactory/types/structs/FGDynamicStruct";
94
+ export * from "./parser/satisfactory/types/structs/GUIDInfo";
95
+ export * from "./parser/satisfactory/types/structs/MD5Hash";
96
+ export * from "./parser/satisfactory/types/structs/mods/FicsItCam/FICFrameRange";
97
+ export * from "./parser/satisfactory/types/structs/mods/FicsItNetworks/FINGPUT1BufferPixel";
98
+ export * from "./parser/satisfactory/types/structs/mods/FicsItNetworks/FINItemStateFileSystem";
99
+ export * from "./parser/satisfactory/types/structs/mods/FicsItNetworks/FINLuaRuntimePersistenceState";
100
+ export * from "./parser/satisfactory/types/structs/mods/FicsItNetworks/FINNetworkTrace";
101
+ export * from "./parser/satisfactory/types/structs/mods/ModularLoadBalancers/FLBBalancerIndexing";
102
+ export * from "./parser/satisfactory/types/structs/ObjectReference";
103
+ export * from "./parser/satisfactory/types/structs/SaveBodyValidation";
104
+ export * from "./parser/satisfactory/types/structs/SoftObjectReference";
105
+ export * from "./parser/satisfactory/types/structs/Transform";
106
+ export * from "./parser/satisfactory/types/structs/vec2";
107
+ export * from "./parser/satisfactory/types/structs/vec3";
108
+ export * from "./parser/satisfactory/types/structs/vec4";
109
+ export * from "./parser/satisfactory/types/structs/VehiclePhysicsData";
110
+ export * from "./parser/stream/reworked/readable-stream-parser";
111
+ export * from "./parser/unreal-engine/ETextHistoryType";
112
+ export * from "./parser/unreal-engine/EUnrealEngineObjectUE5Version";
103
113
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAIA,cAAc,8BAA8B,CAAC;AAC7C,cAAc,yCAAyC,CAAC;AACxD,cAAc,yCAAyC,CAAC;AACxD,cAAc,yCAAyC,CAAC;AACxD,cAAc,iCAAiC,CAAC;AAChD,cAAc,iCAAiC,CAAC;AAChD,cAAc,iCAAiC,CAAC;AAChD,cAAc,iCAAiC,CAAC;AAChD,cAAc,+CAA+C,CAAC;AAC9D,cAAc,wCAAwC,CAAC;AACvD,cAAc,6BAA6B,CAAC;AAC5C,cAAc,iBAAiB,CAAC;AAChC,cAAc,kDAAkD,CAAC;AACjE,cAAc,0DAA0D,CAAC;AACzE,cAAc,kDAAkD,CAAC;AACjE,cAAc,0DAA0D,CAAC;AACzE,cAAc,kDAAkD,CAAC;AACjE,cAAc,kDAAkD,CAAC;AACjE,cAAc,iDAAiD,CAAC;AAChE,cAAc,2CAA2C,CAAC;AAC1D,cAAc,sCAAsC,CAAC;AACrD,cAAc,wDAAwD,CAAC;AACvE,cAAc,kCAAkC,CAAC;AACjD,cAAc,0DAA0D,CAAC;AACzE,cAAc,mDAAmD,CAAC;AAClE,cAAc,8CAA8C,CAAC;AAC7D,cAAc,qDAAqD,CAAC;AACpE,cAAc,6CAA6C,CAAC;AAC5D,cAAc,gDAAgD,CAAC;AAC/D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,wCAAwC,CAAC;AACvD,cAAc,wCAAwC,CAAC;AACvD,cAAc,uCAAuC,CAAC;AACtD,cAAc,qCAAqC,CAAC;AACpD,cAAc,mDAAmD,CAAC;AAClE,cAAc,gDAAgD,CAAC;AAC/D,cAAc,gDAAgD,CAAC;AAC/D,cAAc,mEAAmE,CAAC;AAClF,cAAc,2DAA2D,CAAC;AAC1E,cAAc,2DAA2D,CAAC;AAC1E,cAAc,uEAAuE,CAAC;AACtF,cAAc,oFAAoF,CAAC;AACnG,cAAc,qEAAqE,CAAC;AACpF,cAAc,qEAAqE,CAAC;AACpF,cAAc,kFAAkF,CAAC;AACjG,cAAc,wEAAwE,CAAC;AACvF,cAAc,6DAA6D,CAAC;AAC5E,cAAc,2DAA2D,CAAC;AAC1E,cAAc,4DAA4D,CAAC;AAC3E,cAAc,4DAA4D,CAAC;AAC3E,cAAc,2DAA2D,CAAC;AAC1E,cAAc,gEAAgE,CAAC;AAC/E,cAAc,0DAA0D,CAAC;AACzE,cAAc,2DAA2D,CAAC;AAC1E,cAAc,6DAA6D,CAAC;AAC5E,cAAc,6DAA6D,CAAC;AAC5E,cAAc,iEAAiE,CAAC;AAChF,cAAc,0DAA0D,CAAC;AACzE,cAAc,2DAA2D,CAAC;AAC1E,cAAc,6DAA6D,CAAC;AAC5E,cAAc,6DAA6D,CAAC;AAC5E,cAAc,4DAA4D,CAAC;AAC3E,cAAc,qDAAqD,CAAC;AACpE,cAAc,kFAAkF,CAAC;AACjG,cAAc,uEAAuE,CAAC;AACtF,cAAc,kFAAkF,CAAC;AACjG,cAAc,wEAAwE,CAAC;AACvF,cAAc,qEAAqE,CAAC;AACpF,cAAc,2EAA2E,CAAC;AAC1F,cAAc,sEAAsE,CAAC;AACrF,cAAc,yEAAyE,CAAC;AACxF,cAAc,sFAAsF,CAAC;AACrG,cAAc,2EAA2E,CAAC;AAC1F,cAAc,gEAAgE,CAAC;AAC/E,cAAc,uEAAuE,CAAC;AACtF,cAAc,gEAAgE,CAAC;AAC/E,cAAc,mDAAmD,CAAC;AAClE,cAAc,2DAA2D,CAAC;AAC1E,cAAc,oEAAoE,CAAC;AACnF,cAAc,2DAA2D,CAAC;AAC1E,cAAc,yDAAyD,CAAC;AACxE,cAAc,kEAAkE,CAAC;AACjF,cAAc,gEAAgE,CAAC;AAC/E,cAAc,8DAA8D,CAAC;AAC7E,cAAc,yDAAyD,CAAC;AACxE,cAAc,6DAA6D,CAAC;AAC5E,cAAc,mEAAmE,CAAC;AAClF,cAAc,6DAA6D,CAAC;AAC5E,cAAc,iDAAiD,CAAC;AAChE,cAAc,+DAA+D,CAAC;AAC9E,cAAc,0CAA0C,CAAC;AACzD,cAAc,gEAAgE,CAAC;AAC/E,cAAc,qDAAqD,CAAC;AACpE,cAAc,8CAA8C,CAAC;AAC7D,cAAc,6CAA6C,CAAC;AAC5D,cAAc,kEAAkE,CAAC;AACjF,cAAc,6EAA6E,CAAC;AAC5F,cAAc,gFAAgF,CAAC;AAC/F,cAAc,uFAAuF,CAAC;AACtG,cAAc,yEAAyE,CAAC;AACxF,cAAc,mFAAmF,CAAC;AAClG,cAAc,qDAAqD,CAAC;AACpE,cAAc,wDAAwD,CAAC;AACvE,cAAc,yDAAyD,CAAC;AACxE,cAAc,+CAA+C,CAAC;AAC9D,cAAc,0CAA0C,CAAC;AACzD,cAAc,0CAA0C,CAAC;AACzD,cAAc,0CAA0C,CAAC;AACzD,cAAc,wDAAwD,CAAC;AACvE,cAAc,iDAAiD,CAAC;AAChE,cAAc,yCAAyC,CAAC;AACxD,cAAc,sDAAsD,CAAC"}
package/build/index.js CHANGED
@@ -14,61 +14,64 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- exports.ReadableStreamParser = exports.Parser = exports.SaveStreamWriter = exports.SaveStreamJsonStringifier = exports.SaveWriter = exports.BlueprintReader = exports.BlueprintConfigReader = void 0;
18
17
  __exportStar(require("./parser/byte/alignment.enum"), exports);
19
- __exportStar(require("./parser/context/context"), exports);
18
+ __exportStar(require("./parser/byte/binary-operable.interface"), exports);
19
+ __exportStar(require("./parser/byte/binary-readable.interface"), exports);
20
+ __exportStar(require("./parser/byte/binary-writable.interface"), exports);
21
+ __exportStar(require("./parser/byte/byte-reader.class"), exports);
22
+ __exportStar(require("./parser/byte/byte-writer.class"), exports);
20
23
  __exportStar(require("./parser/context/context-reader"), exports);
21
24
  __exportStar(require("./parser/context/context-writer"), exports);
25
+ __exportStar(require("./parser/context/hierarchical-version-context"), exports);
26
+ __exportStar(require("./parser/context/reader-writer-context"), exports);
27
+ __exportStar(require("./parser/error/parser.error"), exports);
28
+ __exportStar(require("./parser/parser"), exports);
22
29
  __exportStar(require("./parser/satisfactory/blueprint/blueprint-config"), exports);
23
30
  __exportStar(require("./parser/satisfactory/blueprint/blueprint-config-version"), exports);
24
31
  __exportStar(require("./parser/satisfactory/blueprint/blueprint-header"), exports);
25
32
  __exportStar(require("./parser/satisfactory/blueprint/blueprint-header-version"), exports);
33
+ __exportStar(require("./parser/satisfactory/blueprint/blueprint-reader"), exports);
34
+ __exportStar(require("./parser/satisfactory/blueprint/blueprint-writer"), exports);
26
35
  __exportStar(require("./parser/satisfactory/blueprint/blueprint.types"), exports);
36
+ __exportStar(require("./parser/satisfactory/edit/edit-constants"), exports);
37
+ __exportStar(require("./parser/satisfactory/save/data-blob"), exports);
27
38
  __exportStar(require("./parser/satisfactory/save/factory-game-custom-version"), exports);
28
39
  __exportStar(require("./parser/satisfactory/save/level"), exports);
29
40
  __exportStar(require("./parser/satisfactory/save/level-to-destroyed-actors-map"), exports);
41
+ __exportStar(require("./parser/satisfactory/save/object-references-list"), exports);
30
42
  __exportStar(require("./parser/satisfactory/save/satisfactory-save"), exports);
31
43
  __exportStar(require("./parser/satisfactory/save/satisfactory-save-header"), exports);
32
44
  __exportStar(require("./parser/satisfactory/save/save-body-chunks"), exports);
33
45
  __exportStar(require("./parser/satisfactory/save/save-custom-version"), exports);
34
46
  __exportStar(require("./parser/satisfactory/save/save-header-type"), exports);
47
+ __exportStar(require("./parser/satisfactory/save/save-reader"), exports);
48
+ __exportStar(require("./parser/satisfactory/save/save-writer"), exports);
35
49
  __exportStar(require("./parser/satisfactory/save/save.types"), exports);
50
+ __exportStar(require("./parser/satisfactory/save/toc-blob"), exports);
36
51
  __exportStar(require("./parser/satisfactory/types/objects/SaveComponent"), exports);
37
52
  __exportStar(require("./parser/satisfactory/types/objects/SaveEntity"), exports);
38
53
  __exportStar(require("./parser/satisfactory/types/objects/SaveObject"), exports);
39
54
  __exportStar(require("./parser/satisfactory/types/property/generic/AbstractBaseProperty"), exports);
40
- __exportStar(require("./parser/satisfactory/types/property/generic/ArrayProperty/ArrayProperty"), exports);
41
- __exportStar(require("./parser/satisfactory/types/property/generic/ArrayProperty/BoolArrayProperty"), exports);
42
- __exportStar(require("./parser/satisfactory/types/property/generic/ArrayProperty/ByteArrayProperty"), exports);
43
- __exportStar(require("./parser/satisfactory/types/property/generic/ArrayProperty/DoubleArrayProperty"), exports);
44
- __exportStar(require("./parser/satisfactory/types/property/generic/ArrayProperty/EnumArrayProperty"), exports);
45
- __exportStar(require("./parser/satisfactory/types/property/generic/ArrayProperty/FloatArrayProperty"), exports);
46
- __exportStar(require("./parser/satisfactory/types/property/generic/ArrayProperty/Int32ArrayProperty"), exports);
47
- __exportStar(require("./parser/satisfactory/types/property/generic/ArrayProperty/Int64ArrayProperty"), exports);
48
- __exportStar(require("./parser/satisfactory/types/property/generic/ArrayProperty/ObjectArrayProperty"), exports);
49
- __exportStar(require("./parser/satisfactory/types/property/generic/ArrayProperty/SoftObjectArrayProperty"), exports);
50
- __exportStar(require("./parser/satisfactory/types/property/generic/ArrayProperty/StrArrayProperty"), exports);
51
- __exportStar(require("./parser/satisfactory/types/property/generic/ArrayProperty/StructArrayProperty"), exports);
52
- __exportStar(require("./parser/satisfactory/types/property/generic/ArrayProperty/TextArrayProperty"), exports);
53
55
  __exportStar(require("./parser/satisfactory/types/property/generic/BoolProperty"), exports);
54
56
  __exportStar(require("./parser/satisfactory/types/property/generic/ByteProperty"), exports);
57
+ __exportStar(require("./parser/satisfactory/types/property/generic/containers/ArrayProperty"), exports);
58
+ __exportStar(require("./parser/satisfactory/types/property/generic/containers/ArrayPropertySpecificTypes"), exports);
59
+ __exportStar(require("./parser/satisfactory/types/property/generic/containers/MapProperty"), exports);
60
+ __exportStar(require("./parser/satisfactory/types/property/generic/containers/SetProperty"), exports);
61
+ __exportStar(require("./parser/satisfactory/types/property/generic/containers/SetPropertySpecificTypes"), exports);
62
+ __exportStar(require("./parser/satisfactory/types/property/generic/containers/StructProperty"), exports);
55
63
  __exportStar(require("./parser/satisfactory/types/property/generic/DoubleProperty"), exports);
56
64
  __exportStar(require("./parser/satisfactory/types/property/generic/EnumProperty"), exports);
57
65
  __exportStar(require("./parser/satisfactory/types/property/generic/FloatProperty"), exports);
58
- __exportStar(require("./parser/satisfactory/types/property/generic/Int32Property"), exports);
59
66
  __exportStar(require("./parser/satisfactory/types/property/generic/Int64Property"), exports);
60
67
  __exportStar(require("./parser/satisfactory/types/property/generic/Int8Property"), exports);
61
- __exportStar(require("./parser/satisfactory/types/property/generic/MapProperty"), exports);
68
+ __exportStar(require("./parser/satisfactory/types/property/generic/InterfaceProperty"), exports);
69
+ __exportStar(require("./parser/satisfactory/types/property/generic/IntProperty"), exports);
70
+ __exportStar(require("./parser/satisfactory/types/property/generic/NameProperty"), exports);
62
71
  __exportStar(require("./parser/satisfactory/types/property/generic/ObjectProperty"), exports);
63
- __exportStar(require("./parser/satisfactory/types/property/generic/SetProperty/Int32SetProperty"), exports);
64
- __exportStar(require("./parser/satisfactory/types/property/generic/SetProperty/ObjectSetProperty"), exports);
65
- __exportStar(require("./parser/satisfactory/types/property/generic/SetProperty/SetProperty"), exports);
66
- __exportStar(require("./parser/satisfactory/types/property/generic/SetProperty/StrSetProperty"), exports);
67
- __exportStar(require("./parser/satisfactory/types/property/generic/SetProperty/StructSetProperty"), exports);
68
- __exportStar(require("./parser/satisfactory/types/property/generic/SetProperty/Uint32SetProperty"), exports);
72
+ __exportStar(require("./parser/satisfactory/types/property/generic/SingleProperty"), exports);
69
73
  __exportStar(require("./parser/satisfactory/types/property/generic/SoftObjectProperty"), exports);
70
74
  __exportStar(require("./parser/satisfactory/types/property/generic/StrProperty"), exports);
71
- __exportStar(require("./parser/satisfactory/types/property/generic/StructProperty"), exports);
72
75
  __exportStar(require("./parser/satisfactory/types/property/generic/TextProperty"), exports);
73
76
  __exportStar(require("./parser/satisfactory/types/property/generic/Uint32Property"), exports);
74
77
  __exportStar(require("./parser/satisfactory/types/property/generic/Uint64Property"), exports);
@@ -88,8 +91,19 @@ __exportStar(require("./parser/satisfactory/types/property/special/SpecialProper
88
91
  __exportStar(require("./parser/satisfactory/types/property/special/VehicleSpecialProperties"), exports);
89
92
  __exportStar(require("./parser/satisfactory/types/structs/binary/FClientIdentityInfo"), exports);
90
93
  __exportStar(require("./parser/satisfactory/types/structs/binary/FColor"), exports);
94
+ __exportStar(require("./parser/satisfactory/types/structs/binary/FCustomVersion"), exports);
95
+ __exportStar(require("./parser/satisfactory/types/structs/binary/FCustomVersionContainer"), exports);
96
+ __exportStar(require("./parser/satisfactory/types/structs/binary/FEngineVersion"), exports);
91
97
  __exportStar(require("./parser/satisfactory/types/structs/binary/FLinearColor"), exports);
98
+ __exportStar(require("./parser/satisfactory/types/structs/binary/FLocalUserNetIdBundle"), exports);
99
+ __exportStar(require("./parser/satisfactory/types/structs/binary/FPackageFileVersion"), exports);
100
+ __exportStar(require("./parser/satisfactory/types/structs/binary/FPlayerInfoHandle"), exports);
101
+ __exportStar(require("./parser/satisfactory/types/structs/binary/FPropertyTag"), exports);
102
+ __exportStar(require("./parser/satisfactory/types/structs/binary/FPropertyTagNode"), exports);
103
+ __exportStar(require("./parser/satisfactory/types/structs/binary/FSaveObjectVersionData"), exports);
104
+ __exportStar(require("./parser/satisfactory/types/structs/binary/FUniqueNetIdRepl"), exports);
92
105
  __exportStar(require("./parser/satisfactory/types/structs/binary/GUID"), exports);
106
+ __exportStar(require("./parser/satisfactory/types/structs/binary/LBBalancerIndexing"), exports);
93
107
  __exportStar(require("./parser/satisfactory/types/structs/col4"), exports);
94
108
  __exportStar(require("./parser/satisfactory/types/structs/DynamicStructPropertyValue"), exports);
95
109
  __exportStar(require("./parser/satisfactory/types/structs/FGDynamicStruct"), exports);
@@ -98,6 +112,7 @@ __exportStar(require("./parser/satisfactory/types/structs/MD5Hash"), exports);
98
112
  __exportStar(require("./parser/satisfactory/types/structs/mods/FicsItCam/FICFrameRange"), exports);
99
113
  __exportStar(require("./parser/satisfactory/types/structs/mods/FicsItNetworks/FINGPUT1BufferPixel"), exports);
100
114
  __exportStar(require("./parser/satisfactory/types/structs/mods/FicsItNetworks/FINItemStateFileSystem"), exports);
115
+ __exportStar(require("./parser/satisfactory/types/structs/mods/FicsItNetworks/FINLuaRuntimePersistenceState"), exports);
101
116
  __exportStar(require("./parser/satisfactory/types/structs/mods/FicsItNetworks/FINNetworkTrace"), exports);
102
117
  __exportStar(require("./parser/satisfactory/types/structs/mods/ModularLoadBalancers/FLBBalancerIndexing"), exports);
103
118
  __exportStar(require("./parser/satisfactory/types/structs/ObjectReference"), exports);
@@ -108,20 +123,7 @@ __exportStar(require("./parser/satisfactory/types/structs/vec2"), exports);
108
123
  __exportStar(require("./parser/satisfactory/types/structs/vec3"), exports);
109
124
  __exportStar(require("./parser/satisfactory/types/structs/vec4"), exports);
110
125
  __exportStar(require("./parser/satisfactory/types/structs/VehiclePhysicsData"), exports);
111
- var blueprint_reader_1 = require("./parser/satisfactory/blueprint/blueprint-reader");
112
- Object.defineProperty(exports, "BlueprintConfigReader", { enumerable: true, get: function () { return blueprint_reader_1.BlueprintConfigReader; } });
113
- Object.defineProperty(exports, "BlueprintReader", { enumerable: true, get: function () { return blueprint_reader_1.BlueprintReader; } });
114
- __exportStar(require("./parser/satisfactory/save/save-reader"), exports);
115
- var save_writer_1 = require("./parser/satisfactory/save/save-writer");
116
- Object.defineProperty(exports, "SaveWriter", { enumerable: true, get: function () { return save_writer_1.SaveWriter; } });
117
- var save_stream_json_stringifier_1 = require("./parser/stream/reworked/save-stream-json-stringifier");
118
- Object.defineProperty(exports, "SaveStreamJsonStringifier", { enumerable: true, get: function () { return save_stream_json_stringifier_1.SaveStreamJsonStringifier; } });
119
- var save_stream_writer_class_1 = require("./parser/stream/reworked/save-stream-writer.class");
120
- Object.defineProperty(exports, "SaveStreamWriter", { enumerable: true, get: function () { return save_stream_writer_class_1.SaveStreamWriter; } });
121
- __exportStar(require("./parser/error/parser.error"), exports);
122
- var parser_1 = require("./parser/parser");
123
- Object.defineProperty(exports, "Parser", { enumerable: true, get: function () { return parser_1.Parser; } });
124
- var readable_stream_parser_1 = require("./parser/stream/reworked/readable-stream-parser");
125
- Object.defineProperty(exports, "ReadableStreamParser", { enumerable: true, get: function () { return readable_stream_parser_1.ReadableStreamParser; } });
126
- __exportStar(require("./parser/satisfactory/edit/edit-constants"), exports);
126
+ __exportStar(require("./parser/stream/reworked/readable-stream-parser"), exports);
127
+ __exportStar(require("./parser/unreal-engine/ETextHistoryType"), exports);
128
+ __exportStar(require("./parser/unreal-engine/EUnrealEngineObjectUE5Version"), exports);
127
129
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AACA,+DAA6C;AAC7C,2DAAyC;AACzC,kEAAgD;AAChD,kEAAgD;AAChD,mFAAiE;AACjE,2FAAyE;AACzE,mFAAiE;AACjE,2FAAyE;AACzE,kFAAgE;AAChE,yFAAuE;AACvE,mEAAiD;AACjD,2FAAyE;AACzE,+EAA6D;AAC7D,sFAAoE;AACpE,8EAA4D;AAC5D,iFAA+D;AAC/D,8EAA4D;AAC5D,wEAAsD;AACtD,oFAAkE;AAClE,iFAA+D;AAC/D,iFAA+D;AAC/D,oGAAkF;AAClF,2GAAyF;AACzF,+GAA6F;AAC7F,+GAA6F;AAC7F,iHAA+F;AAC/F,+GAA6F;AAC7F,gHAA8F;AAC9F,gHAA8F;AAC9F,gHAA8F;AAC9F,iHAA+F;AAC/F,qHAAmG;AACnG,8GAA4F;AAC5F,iHAA+F;AAC/F,+GAA6F;AAC7F,4FAA0E;AAC1E,4FAA0E;AAC1E,8FAA4E;AAC5E,4FAA0E;AAC1E,6FAA2E;AAC3E,6FAA2E;AAC3E,6FAA2E;AAC3E,4FAA0E;AAC1E,2FAAyE;AACzE,8FAA4E;AAC5E,4GAA0F;AAC1F,6GAA2F;AAC3F,uGAAqF;AACrF,0GAAwF;AACxF,6GAA2F;AAC3F,6GAA2F;AAC3F,kGAAgF;AAChF,2FAAyE;AACzE,8FAA4E;AAC5E,4FAA0E;AAC1E,8FAA4E;AAC5E,8FAA4E;AAC5E,6FAA2E;AAC3E,sFAAoE;AACpE,mHAAiG;AACjG,wGAAsF;AACtF,mHAAiG;AACjG,yGAAuF;AACvF,sGAAoF;AACpF,4GAA0F;AAC1F,uGAAqF;AACrF,0GAAwF;AACxF,uHAAqG;AACrG,4GAA0F;AAC1F,iGAA+E;AAC/E,wGAAsF;AACtF,iGAA+E;AAC/E,oFAAkE;AAClE,0FAAwE;AACxE,kFAAgE;AAChE,2EAAyD;AACzD,iGAA+E;AAC/E,sFAAoE;AACpE,+EAA6D;AAC7D,8EAA4D;AAC5D,mGAAiF;AACjF,8GAA4F;AAC5F,iHAA+F;AAC/F,0GAAwF;AACxF,oHAAkG;AAClG,sFAAoE;AACpE,yFAAuE;AACvE,0FAAwE;AACxE,gFAA8D;AAC9D,2EAAyD;AACzD,2EAAyD;AACzD,2EAAyD;AACzD,yFAAuE;AAGvE,qFAA0G;AAAjG,yHAAA,qBAAqB,OAAA;AAAE,mHAAA,eAAe,OAAA;AAC/C,yEAAuD;AACvD,sEAAoE;AAA3D,yGAAA,UAAU,OAAA;AACnB,sGAAkG;AAAzF,yIAAA,yBAAyB,OAAA;AAClC,8FAAqF;AAA5E,4HAAA,gBAAgB,OAAA;AAGzB,8DAA4C;AAG5C,0CAAyC;AAAhC,gGAAA,MAAM,OAAA;AACf,0FAAuF;AAA9E,8HAAA,oBAAoB,OAAA;AAG7B,4EAA0D","sourcesContent":["// types & classes for convenience\nexport * from './parser/byte/alignment.enum';\nexport * from './parser/context/context';\nexport * from './parser/context/context-reader';\nexport * from './parser/context/context-writer';\nexport * from './parser/satisfactory/blueprint/blueprint-config';\nexport * from './parser/satisfactory/blueprint/blueprint-config-version';\nexport * from './parser/satisfactory/blueprint/blueprint-header';\nexport * from './parser/satisfactory/blueprint/blueprint-header-version';\nexport * from './parser/satisfactory/blueprint/blueprint.types';\nexport * from './parser/satisfactory/save/factory-game-custom-version';\nexport * from './parser/satisfactory/save/level';\nexport * from './parser/satisfactory/save/level-to-destroyed-actors-map';\nexport * from './parser/satisfactory/save/satisfactory-save';\nexport * from './parser/satisfactory/save/satisfactory-save-header';\nexport * from './parser/satisfactory/save/save-body-chunks';\nexport * from './parser/satisfactory/save/save-custom-version';\nexport * from './parser/satisfactory/save/save-header-type';\nexport * from './parser/satisfactory/save/save.types';\nexport * from './parser/satisfactory/types/objects/SaveComponent';\nexport * from './parser/satisfactory/types/objects/SaveEntity';\nexport * from './parser/satisfactory/types/objects/SaveObject';\nexport * from './parser/satisfactory/types/property/generic/AbstractBaseProperty';\nexport * from './parser/satisfactory/types/property/generic/ArrayProperty/ArrayProperty';\nexport * from './parser/satisfactory/types/property/generic/ArrayProperty/BoolArrayProperty';\nexport * from './parser/satisfactory/types/property/generic/ArrayProperty/ByteArrayProperty';\nexport * from './parser/satisfactory/types/property/generic/ArrayProperty/DoubleArrayProperty';\nexport * from './parser/satisfactory/types/property/generic/ArrayProperty/EnumArrayProperty';\nexport * from './parser/satisfactory/types/property/generic/ArrayProperty/FloatArrayProperty';\nexport * from './parser/satisfactory/types/property/generic/ArrayProperty/Int32ArrayProperty';\nexport * from './parser/satisfactory/types/property/generic/ArrayProperty/Int64ArrayProperty';\nexport * from './parser/satisfactory/types/property/generic/ArrayProperty/ObjectArrayProperty';\nexport * from './parser/satisfactory/types/property/generic/ArrayProperty/SoftObjectArrayProperty';\nexport * from './parser/satisfactory/types/property/generic/ArrayProperty/StrArrayProperty';\nexport * from './parser/satisfactory/types/property/generic/ArrayProperty/StructArrayProperty';\nexport * from './parser/satisfactory/types/property/generic/ArrayProperty/TextArrayProperty';\nexport * from './parser/satisfactory/types/property/generic/BoolProperty';\nexport * from './parser/satisfactory/types/property/generic/ByteProperty';\nexport * from './parser/satisfactory/types/property/generic/DoubleProperty';\nexport * from './parser/satisfactory/types/property/generic/EnumProperty';\nexport * from './parser/satisfactory/types/property/generic/FloatProperty';\nexport * from './parser/satisfactory/types/property/generic/Int32Property';\nexport * from './parser/satisfactory/types/property/generic/Int64Property';\nexport * from './parser/satisfactory/types/property/generic/Int8Property';\nexport * from './parser/satisfactory/types/property/generic/MapProperty';\nexport * from './parser/satisfactory/types/property/generic/ObjectProperty';\nexport * from './parser/satisfactory/types/property/generic/SetProperty/Int32SetProperty';\nexport * from './parser/satisfactory/types/property/generic/SetProperty/ObjectSetProperty';\nexport * from './parser/satisfactory/types/property/generic/SetProperty/SetProperty';\nexport * from './parser/satisfactory/types/property/generic/SetProperty/StrSetProperty';\nexport * from './parser/satisfactory/types/property/generic/SetProperty/StructSetProperty';\nexport * from './parser/satisfactory/types/property/generic/SetProperty/Uint32SetProperty';\nexport * from './parser/satisfactory/types/property/generic/SoftObjectProperty';\nexport * from './parser/satisfactory/types/property/generic/StrProperty';\nexport * from './parser/satisfactory/types/property/generic/StructProperty';\nexport * from './parser/satisfactory/types/property/generic/TextProperty';\nexport * from './parser/satisfactory/types/property/generic/Uint32Property';\nexport * from './parser/satisfactory/types/property/generic/Uint64Property';\nexport * from './parser/satisfactory/types/property/generic/Uint8Property';\nexport * from './parser/satisfactory/types/property/PropertiesList';\nexport * from './parser/satisfactory/types/property/special/BuildableSubsystemSpecialProperties';\nexport * from './parser/satisfactory/types/property/special/CircuitSpecialProperties';\nexport * from './parser/satisfactory/types/property/special/ConveyorChainActorSpecialProperties';\nexport * from './parser/satisfactory/types/property/special/ConveyorSpecialProperties';\nexport * from './parser/satisfactory/types/property/special/EmptySpecialProperties';\nexport * from './parser/satisfactory/types/property/special/ObjectsListSpecialProperties';\nexport * from './parser/satisfactory/types/property/special/PlayerSpecialProperties';\nexport * from './parser/satisfactory/types/property/special/PowerLineSpecialProperties';\nexport * from './parser/satisfactory/types/property/special/runtime-buildable-instance-data-version';\nexport * from './parser/satisfactory/types/property/special/SpecialDroneActionProperties';\nexport * from './parser/satisfactory/types/property/special/SpecialProperties';\nexport * from './parser/satisfactory/types/property/special/VehicleSpecialProperties';\nexport * from './parser/satisfactory/types/structs/binary/FClientIdentityInfo';\nexport * from './parser/satisfactory/types/structs/binary/FColor';\nexport * from './parser/satisfactory/types/structs/binary/FLinearColor';\nexport * from './parser/satisfactory/types/structs/binary/GUID';\nexport * from './parser/satisfactory/types/structs/col4';\nexport * from './parser/satisfactory/types/structs/DynamicStructPropertyValue';\nexport * from './parser/satisfactory/types/structs/FGDynamicStruct';\nexport * from './parser/satisfactory/types/structs/GUIDInfo';\nexport * from './parser/satisfactory/types/structs/MD5Hash';\nexport * from './parser/satisfactory/types/structs/mods/FicsItCam/FICFrameRange';\nexport * from './parser/satisfactory/types/structs/mods/FicsItNetworks/FINGPUT1BufferPixel';\nexport * from './parser/satisfactory/types/structs/mods/FicsItNetworks/FINItemStateFileSystem';\nexport * from './parser/satisfactory/types/structs/mods/FicsItNetworks/FINNetworkTrace';\nexport * from './parser/satisfactory/types/structs/mods/ModularLoadBalancers/FLBBalancerIndexing';\nexport * from './parser/satisfactory/types/structs/ObjectReference';\nexport * from './parser/satisfactory/types/structs/SaveBodyValidation';\nexport * from './parser/satisfactory/types/structs/SoftObjectReference';\nexport * from './parser/satisfactory/types/structs/Transform';\nexport * from './parser/satisfactory/types/structs/vec2';\nexport * from './parser/satisfactory/types/structs/vec3';\nexport * from './parser/satisfactory/types/structs/vec4';\nexport * from './parser/satisfactory/types/structs/VehiclePhysicsData';\n\n// should better be removed in a future update to prevent shenanigans.\nexport { BlueprintConfigReader, BlueprintReader } from './parser/satisfactory/blueprint/blueprint-reader';\nexport * from './parser/satisfactory/save/save-reader';\nexport { SaveWriter } from './parser/satisfactory/save/save-writer';\nexport { SaveStreamJsonStringifier } from './parser/stream/reworked/save-stream-json-stringifier';\nexport { SaveStreamWriter } from './parser/stream/reworked/save-stream-writer.class';\n\n// errors\nexport * from './parser/error/parser.error';\n\n// facade\nexport { Parser } from './parser/parser';\nexport { ReadableStreamParser } from './parser/stream/reworked/readable-stream-parser';\n\n// edit\nexport * from './parser/satisfactory/edit/edit-constants';\n\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAIA,+DAA6C;AAC7C,0EAAwD;AACxD,0EAAwD;AACxD,0EAAwD;AACxD,kEAAgD;AAChD,kEAAgD;AAChD,kEAAgD;AAChD,kEAAgD;AAChD,gFAA8D;AAC9D,yEAAuD;AACvD,8DAA4C;AAC5C,kDAAgC;AAChC,mFAAiE;AACjE,2FAAyE;AACzE,mFAAiE;AACjE,2FAAyE;AACzE,mFAAiE;AACjE,mFAAiE;AACjE,kFAAgE;AAChE,4EAA0D;AAC1D,uEAAqD;AACrD,yFAAuE;AACvE,mEAAiD;AACjD,2FAAyE;AACzE,oFAAkE;AAClE,+EAA6D;AAC7D,sFAAoE;AACpE,8EAA4D;AAC5D,iFAA+D;AAC/D,8EAA4D;AAC5D,yEAAuD;AACvD,yEAAuD;AACvD,wEAAsD;AACtD,sEAAoD;AACpD,oFAAkE;AAClE,iFAA+D;AAC/D,iFAA+D;AAC/D,oGAAkF;AAClF,4FAA0E;AAC1E,4FAA0E;AAC1E,wGAAsF;AACtF,qHAAmG;AACnG,sGAAoF;AACpF,sGAAoF;AACpF,mHAAiG;AACjG,yGAAuF;AACvF,8FAA4E;AAC5E,4FAA0E;AAC1E,6FAA2E;AAC3E,6FAA2E;AAC3E,4FAA0E;AAC1E,iGAA+E;AAC/E,2FAAyE;AACzE,4FAA0E;AAC1E,8FAA4E;AAC5E,8FAA4E;AAC5E,kGAAgF;AAChF,2FAAyE;AACzE,4FAA0E;AAC1E,8FAA4E;AAC5E,8FAA4E;AAC5E,6FAA2E;AAC3E,sFAAoE;AACpE,mHAAiG;AACjG,wGAAsF;AACtF,mHAAiG;AACjG,yGAAuF;AACvF,sGAAoF;AACpF,4GAA0F;AAC1F,uGAAqF;AACrF,0GAAwF;AACxF,uHAAqG;AACrG,4GAA0F;AAC1F,iGAA+E;AAC/E,wGAAsF;AACtF,iGAA+E;AAC/E,oFAAkE;AAClE,4FAA0E;AAC1E,qGAAmF;AACnF,4FAA0E;AAC1E,0FAAwE;AACxE,mGAAiF;AACjF,iGAA+E;AAC/E,+FAA6E;AAC7E,0FAAwE;AACxE,8FAA4E;AAC5E,oGAAkF;AAClF,8FAA4E;AAC5E,kFAAgE;AAChE,gGAA8E;AAC9E,2EAAyD;AACzD,iGAA+E;AAC/E,sFAAoE;AACpE,+EAA6D;AAC7D,8EAA4D;AAC5D,mGAAiF;AACjF,8GAA4F;AAC5F,iHAA+F;AAC/F,wHAAsG;AACtG,0GAAwF;AACxF,oHAAkG;AAClG,sFAAoE;AACpE,yFAAuE;AACvE,0FAAwE;AACxE,gFAA8D;AAC9D,2EAAyD;AACzD,2EAAyD;AACzD,2EAAyD;AACzD,yFAAuE;AACvE,kFAAgE;AAChE,0EAAwD;AACxD,uFAAqE","sourcesContent":["/**\n * @file Automatically generated by barrelsby.\n */\n\nexport * from \"./parser/byte/alignment.enum\";\nexport * from \"./parser/byte/binary-operable.interface\";\nexport * from \"./parser/byte/binary-readable.interface\";\nexport * from \"./parser/byte/binary-writable.interface\";\nexport * from \"./parser/byte/byte-reader.class\";\nexport * from \"./parser/byte/byte-writer.class\";\nexport * from \"./parser/context/context-reader\";\nexport * from \"./parser/context/context-writer\";\nexport * from \"./parser/context/hierarchical-version-context\";\nexport * from \"./parser/context/reader-writer-context\";\nexport * from \"./parser/error/parser.error\";\nexport * from \"./parser/parser\";\nexport * from \"./parser/satisfactory/blueprint/blueprint-config\";\nexport * from \"./parser/satisfactory/blueprint/blueprint-config-version\";\nexport * from \"./parser/satisfactory/blueprint/blueprint-header\";\nexport * from \"./parser/satisfactory/blueprint/blueprint-header-version\";\nexport * from \"./parser/satisfactory/blueprint/blueprint-reader\";\nexport * from \"./parser/satisfactory/blueprint/blueprint-writer\";\nexport * from \"./parser/satisfactory/blueprint/blueprint.types\";\nexport * from \"./parser/satisfactory/edit/edit-constants\";\nexport * from \"./parser/satisfactory/save/data-blob\";\nexport * from \"./parser/satisfactory/save/factory-game-custom-version\";\nexport * from \"./parser/satisfactory/save/level\";\nexport * from \"./parser/satisfactory/save/level-to-destroyed-actors-map\";\nexport * from \"./parser/satisfactory/save/object-references-list\";\nexport * from \"./parser/satisfactory/save/satisfactory-save\";\nexport * from \"./parser/satisfactory/save/satisfactory-save-header\";\nexport * from \"./parser/satisfactory/save/save-body-chunks\";\nexport * from \"./parser/satisfactory/save/save-custom-version\";\nexport * from \"./parser/satisfactory/save/save-header-type\";\nexport * from \"./parser/satisfactory/save/save-reader\";\nexport * from \"./parser/satisfactory/save/save-writer\";\nexport * from \"./parser/satisfactory/save/save.types\";\nexport * from \"./parser/satisfactory/save/toc-blob\";\nexport * from \"./parser/satisfactory/types/objects/SaveComponent\";\nexport * from \"./parser/satisfactory/types/objects/SaveEntity\";\nexport * from \"./parser/satisfactory/types/objects/SaveObject\";\nexport * from \"./parser/satisfactory/types/property/generic/AbstractBaseProperty\";\nexport * from \"./parser/satisfactory/types/property/generic/BoolProperty\";\nexport * from \"./parser/satisfactory/types/property/generic/ByteProperty\";\nexport * from \"./parser/satisfactory/types/property/generic/containers/ArrayProperty\";\nexport * from \"./parser/satisfactory/types/property/generic/containers/ArrayPropertySpecificTypes\";\nexport * from \"./parser/satisfactory/types/property/generic/containers/MapProperty\";\nexport * from \"./parser/satisfactory/types/property/generic/containers/SetProperty\";\nexport * from \"./parser/satisfactory/types/property/generic/containers/SetPropertySpecificTypes\";\nexport * from \"./parser/satisfactory/types/property/generic/containers/StructProperty\";\nexport * from \"./parser/satisfactory/types/property/generic/DoubleProperty\";\nexport * from \"./parser/satisfactory/types/property/generic/EnumProperty\";\nexport * from \"./parser/satisfactory/types/property/generic/FloatProperty\";\nexport * from \"./parser/satisfactory/types/property/generic/Int64Property\";\nexport * from \"./parser/satisfactory/types/property/generic/Int8Property\";\nexport * from \"./parser/satisfactory/types/property/generic/InterfaceProperty\";\nexport * from \"./parser/satisfactory/types/property/generic/IntProperty\";\nexport * from \"./parser/satisfactory/types/property/generic/NameProperty\";\nexport * from \"./parser/satisfactory/types/property/generic/ObjectProperty\";\nexport * from \"./parser/satisfactory/types/property/generic/SingleProperty\";\nexport * from \"./parser/satisfactory/types/property/generic/SoftObjectProperty\";\nexport * from \"./parser/satisfactory/types/property/generic/StrProperty\";\nexport * from \"./parser/satisfactory/types/property/generic/TextProperty\";\nexport * from \"./parser/satisfactory/types/property/generic/Uint32Property\";\nexport * from \"./parser/satisfactory/types/property/generic/Uint64Property\";\nexport * from \"./parser/satisfactory/types/property/generic/Uint8Property\";\nexport * from \"./parser/satisfactory/types/property/PropertiesList\";\nexport * from \"./parser/satisfactory/types/property/special/BuildableSubsystemSpecialProperties\";\nexport * from \"./parser/satisfactory/types/property/special/CircuitSpecialProperties\";\nexport * from \"./parser/satisfactory/types/property/special/ConveyorChainActorSpecialProperties\";\nexport * from \"./parser/satisfactory/types/property/special/ConveyorSpecialProperties\";\nexport * from \"./parser/satisfactory/types/property/special/EmptySpecialProperties\";\nexport * from \"./parser/satisfactory/types/property/special/ObjectsListSpecialProperties\";\nexport * from \"./parser/satisfactory/types/property/special/PlayerSpecialProperties\";\nexport * from \"./parser/satisfactory/types/property/special/PowerLineSpecialProperties\";\nexport * from \"./parser/satisfactory/types/property/special/runtime-buildable-instance-data-version\";\nexport * from \"./parser/satisfactory/types/property/special/SpecialDroneActionProperties\";\nexport * from \"./parser/satisfactory/types/property/special/SpecialProperties\";\nexport * from \"./parser/satisfactory/types/property/special/VehicleSpecialProperties\";\nexport * from \"./parser/satisfactory/types/structs/binary/FClientIdentityInfo\";\nexport * from \"./parser/satisfactory/types/structs/binary/FColor\";\nexport * from \"./parser/satisfactory/types/structs/binary/FCustomVersion\";\nexport * from \"./parser/satisfactory/types/structs/binary/FCustomVersionContainer\";\nexport * from \"./parser/satisfactory/types/structs/binary/FEngineVersion\";\nexport * from \"./parser/satisfactory/types/structs/binary/FLinearColor\";\nexport * from \"./parser/satisfactory/types/structs/binary/FLocalUserNetIdBundle\";\nexport * from \"./parser/satisfactory/types/structs/binary/FPackageFileVersion\";\nexport * from \"./parser/satisfactory/types/structs/binary/FPlayerInfoHandle\";\nexport * from \"./parser/satisfactory/types/structs/binary/FPropertyTag\";\nexport * from \"./parser/satisfactory/types/structs/binary/FPropertyTagNode\";\nexport * from \"./parser/satisfactory/types/structs/binary/FSaveObjectVersionData\";\nexport * from \"./parser/satisfactory/types/structs/binary/FUniqueNetIdRepl\";\nexport * from \"./parser/satisfactory/types/structs/binary/GUID\";\nexport * from \"./parser/satisfactory/types/structs/binary/LBBalancerIndexing\";\nexport * from \"./parser/satisfactory/types/structs/col4\";\nexport * from \"./parser/satisfactory/types/structs/DynamicStructPropertyValue\";\nexport * from \"./parser/satisfactory/types/structs/FGDynamicStruct\";\nexport * from \"./parser/satisfactory/types/structs/GUIDInfo\";\nexport * from \"./parser/satisfactory/types/structs/MD5Hash\";\nexport * from \"./parser/satisfactory/types/structs/mods/FicsItCam/FICFrameRange\";\nexport * from \"./parser/satisfactory/types/structs/mods/FicsItNetworks/FINGPUT1BufferPixel\";\nexport * from \"./parser/satisfactory/types/structs/mods/FicsItNetworks/FINItemStateFileSystem\";\nexport * from \"./parser/satisfactory/types/structs/mods/FicsItNetworks/FINLuaRuntimePersistenceState\";\nexport * from \"./parser/satisfactory/types/structs/mods/FicsItNetworks/FINNetworkTrace\";\nexport * from \"./parser/satisfactory/types/structs/mods/ModularLoadBalancers/FLBBalancerIndexing\";\nexport * from \"./parser/satisfactory/types/structs/ObjectReference\";\nexport * from \"./parser/satisfactory/types/structs/SaveBodyValidation\";\nexport * from \"./parser/satisfactory/types/structs/SoftObjectReference\";\nexport * from \"./parser/satisfactory/types/structs/Transform\";\nexport * from \"./parser/satisfactory/types/structs/vec2\";\nexport * from \"./parser/satisfactory/types/structs/vec3\";\nexport * from \"./parser/satisfactory/types/structs/vec4\";\nexport * from \"./parser/satisfactory/types/structs/VehiclePhysicsData\";\nexport * from \"./parser/stream/reworked/readable-stream-parser\";\nexport * from \"./parser/unreal-engine/ETextHistoryType\";\nexport * from \"./parser/unreal-engine/EUnrealEngineObjectUE5Version\";\n\n"]}
@@ -1,6 +1,7 @@
1
1
  import { BinaryOperable } from "./binary-operable.interface";
2
2
  export interface BinaryReadable extends BinaryOperable {
3
3
  skipBytes: (count?: number) => void;
4
+ jumpTo(position: number): void;
4
5
  readBytes: (count: number) => Uint8Array;
5
6
  readByte: () => number;
6
7
  readHex: (count: number) => string;
@@ -1 +1 @@
1
- {"version":3,"file":"binary-readable.interface.d.ts","sourceRoot":"","sources":["../../../src/parser/byte/binary-readable.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAC;AAK7D,MAAM,WAAW,cAAe,SAAQ,cAAc;IAElD,SAAS,EAAE,CAAC,KAAK,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IACpC,SAAS,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,UAAU,CAAC;IACzC,QAAQ,EAAE,MAAM,MAAM,CAAC;IACvB,OAAO,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,MAAM,CAAC;IACnC,QAAQ,EAAE,MAAM,MAAM,CAAC;IACvB,SAAS,EAAE,MAAM,MAAM,CAAC;IACxB,SAAS,EAAE,MAAM,MAAM,CAAC;IACxB,UAAU,EAAE,MAAM,MAAM,CAAC;IACzB,SAAS,EAAE,MAAM,MAAM,CAAC;IACxB,UAAU,EAAE,MAAM,MAAM,CAAC;IACzB,SAAS,EAAE,MAAM,MAAM,CAAC;IACxB,UAAU,EAAE,MAAM,MAAM,CAAC;IACzB,WAAW,EAAE,MAAM,MAAM,CAAC;IAC1B,UAAU,EAAE,MAAM,MAAM,CAAC;IACzB,UAAU,EAAE,MAAM,MAAM,CAAC;IAEzB,iBAAiB,EAAE,MAAM,MAAM,CAAC;CACnC"}
1
+ {"version":3,"file":"binary-readable.interface.d.ts","sourceRoot":"","sources":["../../../src/parser/byte/binary-readable.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAC;AAK7D,MAAM,WAAW,cAAe,SAAQ,cAAc;IAElD,SAAS,EAAE,CAAC,KAAK,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IACpC,MAAM,CAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B,SAAS,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,UAAU,CAAC;IACzC,QAAQ,EAAE,MAAM,MAAM,CAAC;IACvB,OAAO,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,MAAM,CAAC;IACnC,QAAQ,EAAE,MAAM,MAAM,CAAC;IACvB,SAAS,EAAE,MAAM,MAAM,CAAC;IACxB,SAAS,EAAE,MAAM,MAAM,CAAC;IACxB,UAAU,EAAE,MAAM,MAAM,CAAC;IACzB,SAAS,EAAE,MAAM,MAAM,CAAC;IACxB,UAAU,EAAE,MAAM,MAAM,CAAC;IACzB,SAAS,EAAE,MAAM,MAAM,CAAC;IACxB,UAAU,EAAE,MAAM,MAAM,CAAC;IACzB,WAAW,EAAE,MAAM,MAAM,CAAC;IAC1B,UAAU,EAAE,MAAM,MAAM,CAAC;IACzB,UAAU,EAAE,MAAM,MAAM,CAAC;IAEzB,iBAAiB,EAAE,MAAM,MAAM,CAAC;CACnC"}