@etothepii/satisfactory-file-parser 1.1.1 → 2.0.1

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 (512) hide show
  1. package/.github/workflows/tests.yml +24 -0
  2. package/CHANGELOG.md +88 -0
  3. package/README.md +6 -80
  4. package/build/index.d.ts +21 -3
  5. package/build/index.d.ts.map +1 -1
  6. package/build/index.js +21 -3
  7. package/build/index.js.map +1 -1
  8. package/build/parser/byte/byte-reader.class.d.ts +1 -1
  9. package/build/parser/byte/byte-reader.class.d.ts.map +1 -1
  10. package/build/parser/byte/byte-reader.class.js +4 -4
  11. package/build/parser/byte/byte-reader.class.js.map +1 -1
  12. package/build/parser/parser.d.ts +1 -1
  13. package/build/parser/parser.d.ts.map +1 -1
  14. package/build/parser/parser.js +1 -1
  15. package/build/parser/parser.js.map +1 -1
  16. package/build/parser/satisfactory/save/level.class.d.ts.map +1 -1
  17. package/build/parser/satisfactory/save/level.class.js +3 -1
  18. package/build/parser/satisfactory/save/level.class.js.map +1 -1
  19. package/build/parser/satisfactory/types/objects/SaveObject.d.ts +1 -1
  20. package/build/parser/satisfactory/types/objects/SaveObject.d.ts.map +1 -1
  21. package/build/parser/satisfactory/types/objects/SaveObject.js.map +1 -1
  22. package/build/parser/satisfactory/types/property/PropertiesList.d.ts +2 -2
  23. package/build/parser/satisfactory/types/property/PropertiesList.d.ts.map +1 -1
  24. package/build/parser/satisfactory/types/property/PropertiesList.js +6 -6
  25. package/build/parser/satisfactory/types/property/PropertiesList.js.map +1 -1
  26. package/build/parser/satisfactory/types/property/generic/AbstractBaseProperty.d.ts +21 -0
  27. package/build/parser/satisfactory/types/property/generic/AbstractBaseProperty.d.ts.map +1 -0
  28. package/build/parser/satisfactory/types/property/generic/AbstractBaseProperty.js +23 -0
  29. package/build/parser/satisfactory/types/property/generic/AbstractBaseProperty.js.map +1 -0
  30. package/build/parser/satisfactory/types/property/generic/ArrayProperty/ArrayProperty.d.ts +22 -0
  31. package/build/parser/satisfactory/types/property/generic/ArrayProperty/ArrayProperty.d.ts.map +1 -0
  32. package/build/parser/satisfactory/types/property/generic/ArrayProperty/ArrayProperty.js +128 -0
  33. package/build/parser/satisfactory/types/property/generic/ArrayProperty/ArrayProperty.js.map +1 -0
  34. package/build/parser/satisfactory/types/property/generic/ArrayProperty/BoolArrayProperty.d.ts +14 -0
  35. package/build/parser/satisfactory/types/property/generic/ArrayProperty/BoolArrayProperty.d.ts.map +1 -0
  36. package/build/parser/satisfactory/types/property/generic/ArrayProperty/BoolArrayProperty.js +25 -0
  37. package/build/parser/satisfactory/types/property/generic/ArrayProperty/BoolArrayProperty.js.map +1 -0
  38. package/build/parser/satisfactory/types/property/generic/ArrayProperty/ByteArrayProperty.d.ts +14 -0
  39. package/build/parser/satisfactory/types/property/generic/ArrayProperty/ByteArrayProperty.d.ts.map +1 -0
  40. package/build/parser/satisfactory/types/property/generic/ArrayProperty/ByteArrayProperty.js +25 -0
  41. package/build/parser/satisfactory/types/property/generic/ArrayProperty/ByteArrayProperty.js.map +1 -0
  42. package/build/parser/satisfactory/types/property/generic/ArrayProperty/DoubleArrayProperty.d.ts +14 -0
  43. package/build/parser/satisfactory/types/property/generic/ArrayProperty/DoubleArrayProperty.d.ts.map +1 -0
  44. package/build/parser/satisfactory/types/property/generic/ArrayProperty/DoubleArrayProperty.js +25 -0
  45. package/build/parser/satisfactory/types/property/generic/ArrayProperty/DoubleArrayProperty.js.map +1 -0
  46. package/build/parser/satisfactory/types/property/generic/ArrayProperty/EnumArrayProperty.d.ts +14 -0
  47. package/build/parser/satisfactory/types/property/generic/ArrayProperty/EnumArrayProperty.d.ts.map +1 -0
  48. package/build/parser/satisfactory/types/property/generic/ArrayProperty/EnumArrayProperty.js +25 -0
  49. package/build/parser/satisfactory/types/property/generic/ArrayProperty/EnumArrayProperty.js.map +1 -0
  50. package/build/parser/satisfactory/types/property/generic/ArrayProperty/FloatArrayProperty.d.ts +14 -0
  51. package/build/parser/satisfactory/types/property/generic/ArrayProperty/FloatArrayProperty.d.ts.map +1 -0
  52. package/build/parser/satisfactory/types/property/generic/ArrayProperty/FloatArrayProperty.js +25 -0
  53. package/build/parser/satisfactory/types/property/generic/ArrayProperty/FloatArrayProperty.js.map +1 -0
  54. package/build/parser/satisfactory/types/property/generic/ArrayProperty/Int32ArrayProperty.d.ts +14 -0
  55. package/build/parser/satisfactory/types/property/generic/ArrayProperty/Int32ArrayProperty.d.ts.map +1 -0
  56. package/build/parser/satisfactory/types/property/generic/ArrayProperty/Int32ArrayProperty.js +25 -0
  57. package/build/parser/satisfactory/types/property/generic/ArrayProperty/Int32ArrayProperty.js.map +1 -0
  58. package/build/parser/satisfactory/types/property/generic/ArrayProperty/Int64ArrayProperty.d.ts +14 -0
  59. package/build/parser/satisfactory/types/property/generic/ArrayProperty/Int64ArrayProperty.d.ts.map +1 -0
  60. package/build/parser/satisfactory/types/property/generic/ArrayProperty/Int64ArrayProperty.js +25 -0
  61. package/build/parser/satisfactory/types/property/generic/ArrayProperty/Int64ArrayProperty.js.map +1 -0
  62. package/build/parser/satisfactory/types/property/generic/ArrayProperty/ObjectArrayProperty.d.ts +15 -0
  63. package/build/parser/satisfactory/types/property/generic/ArrayProperty/ObjectArrayProperty.d.ts.map +1 -0
  64. package/build/parser/satisfactory/types/property/generic/ArrayProperty/ObjectArrayProperty.js +25 -0
  65. package/build/parser/satisfactory/types/property/generic/ArrayProperty/ObjectArrayProperty.js.map +1 -0
  66. package/build/parser/satisfactory/types/property/generic/ArrayProperty/SoftObjectArrayProperty.d.ts +15 -0
  67. package/build/parser/satisfactory/types/property/generic/ArrayProperty/SoftObjectArrayProperty.d.ts.map +1 -0
  68. package/build/parser/satisfactory/types/property/generic/ArrayProperty/SoftObjectArrayProperty.js +25 -0
  69. package/build/parser/satisfactory/types/property/generic/ArrayProperty/SoftObjectArrayProperty.js.map +1 -0
  70. package/build/parser/satisfactory/types/property/generic/ArrayProperty/StrArrayProperty.d.ts +14 -0
  71. package/build/parser/satisfactory/types/property/generic/ArrayProperty/StrArrayProperty.d.ts.map +1 -0
  72. package/build/parser/satisfactory/types/property/generic/ArrayProperty/StrArrayProperty.js +25 -0
  73. package/build/parser/satisfactory/types/property/generic/ArrayProperty/StrArrayProperty.js.map +1 -0
  74. package/build/parser/satisfactory/types/property/generic/ArrayProperty/StructArrayProperty.d.ts +26 -0
  75. package/build/parser/satisfactory/types/property/generic/ArrayProperty/StructArrayProperty.d.ts.map +1 -0
  76. package/build/parser/satisfactory/types/property/generic/ArrayProperty/StructArrayProperty.js +72 -0
  77. package/build/parser/satisfactory/types/property/generic/ArrayProperty/StructArrayProperty.js.map +1 -0
  78. package/build/parser/satisfactory/types/property/generic/ArrayProperty/TextArrayProperty.d.ts +15 -0
  79. package/build/parser/satisfactory/types/property/generic/ArrayProperty/TextArrayProperty.d.ts.map +1 -0
  80. package/build/parser/satisfactory/types/property/generic/ArrayProperty/TextArrayProperty.js +25 -0
  81. package/build/parser/satisfactory/types/property/generic/ArrayProperty/TextArrayProperty.js.map +1 -0
  82. package/build/parser/satisfactory/types/property/generic/BoolProperty.d.ts +3 -3
  83. package/build/parser/satisfactory/types/property/generic/BoolProperty.d.ts.map +1 -1
  84. package/build/parser/satisfactory/types/property/generic/BoolProperty.js +3 -3
  85. package/build/parser/satisfactory/types/property/generic/BoolProperty.js.map +1 -1
  86. package/build/parser/satisfactory/types/property/generic/ByteProperty.d.ts +3 -3
  87. package/build/parser/satisfactory/types/property/generic/ByteProperty.d.ts.map +1 -1
  88. package/build/parser/satisfactory/types/property/generic/ByteProperty.js +3 -3
  89. package/build/parser/satisfactory/types/property/generic/ByteProperty.js.map +1 -1
  90. package/build/parser/satisfactory/types/property/generic/DoubleProperty.d.ts +3 -3
  91. package/build/parser/satisfactory/types/property/generic/DoubleProperty.d.ts.map +1 -1
  92. package/build/parser/satisfactory/types/property/generic/DoubleProperty.js +3 -3
  93. package/build/parser/satisfactory/types/property/generic/DoubleProperty.js.map +1 -1
  94. package/build/parser/satisfactory/types/property/generic/EnumProperty.d.ts +3 -3
  95. package/build/parser/satisfactory/types/property/generic/EnumProperty.d.ts.map +1 -1
  96. package/build/parser/satisfactory/types/property/generic/EnumProperty.js +3 -3
  97. package/build/parser/satisfactory/types/property/generic/EnumProperty.js.map +1 -1
  98. package/build/parser/satisfactory/types/property/generic/FloatProperty.d.ts +3 -3
  99. package/build/parser/satisfactory/types/property/generic/FloatProperty.d.ts.map +1 -1
  100. package/build/parser/satisfactory/types/property/generic/FloatProperty.js +3 -3
  101. package/build/parser/satisfactory/types/property/generic/FloatProperty.js.map +1 -1
  102. package/build/parser/satisfactory/types/property/generic/Int32Property.d.ts +3 -3
  103. package/build/parser/satisfactory/types/property/generic/Int32Property.d.ts.map +1 -1
  104. package/build/parser/satisfactory/types/property/generic/Int32Property.js +3 -3
  105. package/build/parser/satisfactory/types/property/generic/Int32Property.js.map +1 -1
  106. package/build/parser/satisfactory/types/property/generic/Int64Property.d.ts +3 -3
  107. package/build/parser/satisfactory/types/property/generic/Int64Property.d.ts.map +1 -1
  108. package/build/parser/satisfactory/types/property/generic/Int64Property.js +3 -3
  109. package/build/parser/satisfactory/types/property/generic/Int64Property.js.map +1 -1
  110. package/build/parser/satisfactory/types/property/generic/Int8Property.d.ts +3 -3
  111. package/build/parser/satisfactory/types/property/generic/Int8Property.d.ts.map +1 -1
  112. package/build/parser/satisfactory/types/property/generic/Int8Property.js +3 -3
  113. package/build/parser/satisfactory/types/property/generic/Int8Property.js.map +1 -1
  114. package/build/parser/satisfactory/types/property/generic/MapProperty.d.ts +3 -3
  115. package/build/parser/satisfactory/types/property/generic/MapProperty.d.ts.map +1 -1
  116. package/build/parser/satisfactory/types/property/generic/MapProperty.js +3 -3
  117. package/build/parser/satisfactory/types/property/generic/MapProperty.js.map +1 -1
  118. package/build/parser/satisfactory/types/property/generic/ObjectProperty.d.ts +3 -3
  119. package/build/parser/satisfactory/types/property/generic/ObjectProperty.d.ts.map +1 -1
  120. package/build/parser/satisfactory/types/property/generic/ObjectProperty.js +3 -3
  121. package/build/parser/satisfactory/types/property/generic/ObjectProperty.js.map +1 -1
  122. package/build/parser/satisfactory/types/property/generic/SetProperty/Int32SetProperty.d.ts +14 -0
  123. package/build/parser/satisfactory/types/property/generic/SetProperty/Int32SetProperty.d.ts.map +1 -0
  124. package/build/parser/satisfactory/types/property/generic/SetProperty/Int32SetProperty.js +25 -0
  125. package/build/parser/satisfactory/types/property/generic/SetProperty/Int32SetProperty.js.map +1 -0
  126. package/build/parser/satisfactory/types/property/generic/SetProperty/ObjectSetProperty.d.ts +15 -0
  127. package/build/parser/satisfactory/types/property/generic/SetProperty/ObjectSetProperty.d.ts.map +1 -0
  128. package/build/parser/satisfactory/types/property/generic/SetProperty/ObjectSetProperty.js +25 -0
  129. package/build/parser/satisfactory/types/property/generic/SetProperty/ObjectSetProperty.js.map +1 -0
  130. package/build/parser/satisfactory/types/property/generic/SetProperty/SetProperty.d.ts +15 -0
  131. package/build/parser/satisfactory/types/property/generic/SetProperty/SetProperty.d.ts.map +1 -0
  132. package/build/parser/satisfactory/types/property/generic/SetProperty/SetProperty.js +73 -0
  133. package/build/parser/satisfactory/types/property/generic/SetProperty/SetProperty.js.map +1 -0
  134. package/build/parser/satisfactory/types/property/generic/SetProperty/StrSetProperty.d.ts +14 -0
  135. package/build/parser/satisfactory/types/property/generic/SetProperty/StrSetProperty.d.ts.map +1 -0
  136. package/build/parser/satisfactory/types/property/generic/SetProperty/StrSetProperty.js +25 -0
  137. package/build/parser/satisfactory/types/property/generic/SetProperty/StrSetProperty.js.map +1 -0
  138. package/build/parser/satisfactory/types/property/generic/SetProperty/StructSetProperty.d.ts +14 -0
  139. package/build/parser/satisfactory/types/property/generic/SetProperty/StructSetProperty.d.ts.map +1 -0
  140. package/build/parser/satisfactory/types/property/generic/SetProperty/StructSetProperty.js +45 -0
  141. package/build/parser/satisfactory/types/property/generic/SetProperty/StructSetProperty.js.map +1 -0
  142. package/build/parser/satisfactory/types/property/generic/SetProperty/Uint32SetProperty.d.ts +14 -0
  143. package/build/parser/satisfactory/types/property/generic/SetProperty/Uint32SetProperty.d.ts.map +1 -0
  144. package/build/parser/satisfactory/types/property/generic/SetProperty/Uint32SetProperty.js +25 -0
  145. package/build/parser/satisfactory/types/property/generic/SetProperty/Uint32SetProperty.js.map +1 -0
  146. package/build/parser/satisfactory/types/property/generic/SoftObjectProperty.d.ts +3 -3
  147. package/build/parser/satisfactory/types/property/generic/SoftObjectProperty.d.ts.map +1 -1
  148. package/build/parser/satisfactory/types/property/generic/SoftObjectProperty.js +3 -3
  149. package/build/parser/satisfactory/types/property/generic/SoftObjectProperty.js.map +1 -1
  150. package/build/parser/satisfactory/types/property/generic/StrProperty.d.ts +3 -3
  151. package/build/parser/satisfactory/types/property/generic/StrProperty.d.ts.map +1 -1
  152. package/build/parser/satisfactory/types/property/generic/StrProperty.js +3 -3
  153. package/build/parser/satisfactory/types/property/generic/StrProperty.js.map +1 -1
  154. package/build/parser/satisfactory/types/property/generic/StructProperty.d.ts +4 -4
  155. package/build/parser/satisfactory/types/property/generic/StructProperty.d.ts.map +1 -1
  156. package/build/parser/satisfactory/types/property/generic/StructProperty.js +10 -10
  157. package/build/parser/satisfactory/types/property/generic/StructProperty.js.map +1 -1
  158. package/build/parser/satisfactory/types/property/generic/TextProperty.d.ts +3 -3
  159. package/build/parser/satisfactory/types/property/generic/TextProperty.d.ts.map +1 -1
  160. package/build/parser/satisfactory/types/property/generic/TextProperty.js +3 -3
  161. package/build/parser/satisfactory/types/property/generic/TextProperty.js.map +1 -1
  162. package/build/parser/satisfactory/types/property/generic/Uint32Property.d.ts +3 -3
  163. package/build/parser/satisfactory/types/property/generic/Uint32Property.d.ts.map +1 -1
  164. package/build/parser/satisfactory/types/property/generic/Uint32Property.js +3 -3
  165. package/build/parser/satisfactory/types/property/generic/Uint32Property.js.map +1 -1
  166. package/build/parser/satisfactory/types/property/generic/Uint64Property.d.ts +3 -3
  167. package/build/parser/satisfactory/types/property/generic/Uint64Property.d.ts.map +1 -1
  168. package/build/parser/satisfactory/types/property/generic/Uint64Property.js +3 -3
  169. package/build/parser/satisfactory/types/property/generic/Uint64Property.js.map +1 -1
  170. package/build/parser/satisfactory/types/property/generic/Uint8Property.d.ts +3 -3
  171. package/build/parser/satisfactory/types/property/generic/Uint8Property.d.ts.map +1 -1
  172. package/build/parser/satisfactory/types/property/generic/Uint8Property.js +3 -3
  173. package/build/parser/satisfactory/types/property/generic/Uint8Property.js.map +1 -1
  174. package/build/parser/satisfactory/types/property/special/ConveyorChainActorSpecialProperties.js +1 -1
  175. package/build/parser/satisfactory/types/property/special/ConveyorChainActorSpecialProperties.js.map +1 -1
  176. package/build/parser/satisfactory/types/property/special/SpecialDroneActionProperties.d.ts +1 -1
  177. package/build/parser/satisfactory/types/property/special/SpecialDroneActionProperties.d.ts.map +1 -1
  178. package/build/parser/satisfactory/types/property/special/SpecialDroneActionProperties.js.map +1 -1
  179. package/build/parser/satisfactory/types/structs/DynamicStructPropertyValue.d.ts +1 -1
  180. package/build/parser/satisfactory/types/structs/DynamicStructPropertyValue.d.ts.map +1 -1
  181. package/build/parser/satisfactory/types/structs/DynamicStructPropertyValue.js.map +1 -1
  182. package/build/parser/stream/reworked/readable-stream-parser.d.ts +1 -1
  183. package/build/parser/stream/reworked/readable-stream-parser.d.ts.map +1 -1
  184. package/build/parser/stream/reworked/readable-stream-parser.js +1 -1
  185. package/build/parser/stream/reworked/readable-stream-parser.js.map +1 -1
  186. package/docs/assets/navigation.js +1 -1
  187. package/docs/assets/search.js +1 -1
  188. package/docs/classes/AbstractBaseProperty.html +5 -4
  189. package/docs/classes/BlueprintConfigReader.html +5 -4
  190. package/docs/classes/BlueprintConfigWriter.html +3 -3
  191. package/docs/classes/BlueprintReader.html +5 -4
  192. package/docs/classes/BlueprintWriter.html +3 -3
  193. package/docs/classes/BoolProperty.html +3 -3
  194. package/docs/classes/ByteProperty.html +3 -3
  195. package/docs/classes/CompressionLibraryError.html +2 -2
  196. package/docs/classes/CorruptSaveError.html +2 -2
  197. package/docs/classes/DoubleProperty.html +3 -3
  198. package/docs/classes/EnumProperty.html +3 -3
  199. package/docs/classes/FloatProperty.html +3 -3
  200. package/docs/classes/Int32Property.html +3 -3
  201. package/docs/classes/Int64Property.html +3 -3
  202. package/docs/classes/Int8Property.html +3 -3
  203. package/docs/classes/MapProperty.html +3 -3
  204. package/docs/classes/ObjectProperty.html +3 -3
  205. package/docs/classes/Parser.html +7 -7
  206. package/docs/classes/ParserError.html +2 -2
  207. package/docs/classes/ReadableStreamParser.html +3 -3
  208. package/docs/classes/SatisfactorySave.html +2 -2
  209. package/docs/classes/SaveComponent.html +2 -2
  210. package/docs/classes/SaveEntity.html +2 -2
  211. package/docs/classes/SaveObject.html +14 -0
  212. package/docs/classes/SaveReader.html +5 -4
  213. package/docs/classes/SaveStreamJsonStringifier.html +2 -2
  214. package/docs/classes/SaveStreamWriter.html +2 -2
  215. package/docs/classes/SaveWriter.html +3 -3
  216. package/docs/classes/StrProperty.html +3 -3
  217. package/docs/classes/StructProperty.html +4 -4
  218. package/docs/classes/TextProperty.html +3 -3
  219. package/docs/classes/TimeoutError.html +2 -2
  220. package/docs/classes/Uint32Property.html +3 -3
  221. package/docs/classes/Uint64Property.html +3 -3
  222. package/docs/classes/Uint8Property.html +3 -3
  223. package/docs/classes/UnimplementedError.html +2 -2
  224. package/docs/classes/UnsupportedVersionError.html +2 -2
  225. package/docs/functions/ArrayProperty.CalcOverhead.html +1 -0
  226. package/docs/functions/ArrayProperty.Parse.html +1 -0
  227. package/docs/functions/ArrayProperty.Serialize.html +1 -0
  228. package/docs/functions/BoolArrayProperty.Parse.html +1 -0
  229. package/docs/functions/BoolArrayProperty.Serialize.html +1 -0
  230. package/docs/functions/BuildableSubsystemSpecialProperties.Parse.html +1 -1
  231. package/docs/functions/BuildableSubsystemSpecialProperties.Serialize.html +1 -1
  232. package/docs/functions/ByteArrayProperty.Parse.html +1 -0
  233. package/docs/functions/ByteArrayProperty.Serialize.html +1 -0
  234. package/docs/functions/CircuitSpecialProperties.Parse.html +1 -1
  235. package/docs/functions/CircuitSpecialProperties.Serialize.html +1 -1
  236. package/docs/functions/ConveyorChainActorSpecialProperties.Parse.html +1 -1
  237. package/docs/functions/ConveyorChainActorSpecialProperties.Serialize.html +1 -1
  238. package/docs/functions/ConveyorSpecialProperties.Parse.html +1 -1
  239. package/docs/functions/ConveyorSpecialProperties.Serialize.html +1 -1
  240. package/docs/functions/DoubleArrayProperty.Parse.html +1 -0
  241. package/docs/functions/DoubleArrayProperty.Serialize.html +1 -0
  242. package/docs/functions/DynamicStructPropertyValue.read.html +1 -1
  243. package/docs/functions/DynamicStructPropertyValue.write.html +1 -1
  244. package/docs/functions/EmptySpecialProperties.Parse.html +1 -1
  245. package/docs/functions/EmptySpecialProperties.Serialize.html +1 -1
  246. package/docs/functions/EnumArrayProperty.Parse.html +1 -0
  247. package/docs/functions/EnumArrayProperty.Serialize.html +1 -0
  248. package/docs/functions/FICFrameRange.Parse.html +1 -1
  249. package/docs/functions/FICFrameRange.Serialize.html +1 -1
  250. package/docs/functions/FloatArrayProperty.Parse.html +1 -0
  251. package/docs/functions/FloatArrayProperty.Serialize.html +1 -0
  252. package/docs/functions/GUID.read.html +1 -1
  253. package/docs/functions/GUID.write.html +1 -1
  254. package/docs/functions/GUIDInfo.read.html +1 -1
  255. package/docs/functions/GUIDInfo.write.html +1 -1
  256. package/docs/functions/Int32ArrayProperty.Parse.html +1 -0
  257. package/docs/functions/Int32ArrayProperty.Serialize.html +1 -0
  258. package/docs/functions/Int32SetProperty.Parse.html +1 -0
  259. package/docs/functions/Int32SetProperty.Serialize.html +1 -0
  260. package/docs/functions/Int64ArrayProperty.Parse.html +1 -0
  261. package/docs/functions/Int64ArrayProperty.Serialize.html +1 -0
  262. package/docs/functions/Level.ReadAllObjectContents.html +1 -1
  263. package/docs/functions/Level.ReadAllObjectHeaders.html +1 -1
  264. package/docs/functions/Level.ReadLevel.html +1 -1
  265. package/docs/functions/Level.ReadNObjectContents.html +1 -1
  266. package/docs/functions/Level.ReadNObjectHeaders.html +1 -1
  267. package/docs/functions/Level.SerializeAllObjectContents.html +1 -1
  268. package/docs/functions/Level.SerializeAllObjectHeaders.html +1 -1
  269. package/docs/functions/Level.SerializeLevel.html +1 -1
  270. package/docs/functions/MD5Hash.read.html +1 -1
  271. package/docs/functions/MD5Hash.write.html +1 -1
  272. package/docs/functions/ObjectArrayProperty.Parse.html +1 -0
  273. package/docs/functions/ObjectArrayProperty.Serialize.html +1 -0
  274. package/docs/functions/ObjectReference.read.html +1 -1
  275. package/docs/functions/ObjectReference.write.html +1 -1
  276. package/docs/functions/ObjectSetProperty.Parse.html +1 -0
  277. package/docs/functions/ObjectSetProperty.Serialize.html +1 -0
  278. package/docs/functions/ObjectsListSpecialProperties.Parse.html +1 -1
  279. package/docs/functions/ObjectsListSpecialProperties.Serialize.html +1 -1
  280. package/docs/functions/PlayerSpecialProperties.Parse.html +1 -1
  281. package/docs/functions/PlayerSpecialProperties.Serialize.html +1 -1
  282. package/docs/functions/PowerLineSpecialProperties.Parse.html +1 -1
  283. package/docs/functions/PowerLineSpecialProperties.Serialize.html +1 -1
  284. package/docs/functions/PropertiesList.ParseList.html +1 -1
  285. package/docs/functions/PropertiesList.ParseSingleProperty.html +1 -1
  286. package/docs/functions/PropertiesList.SerializeList.html +1 -1
  287. package/docs/functions/PropertiesList.SerializeSingleProperty.html +1 -1
  288. package/docs/functions/SetProperty.CalcOverhead.html +1 -0
  289. package/docs/functions/SetProperty.Parse.html +1 -0
  290. package/docs/functions/SetProperty.Serialize.html +1 -0
  291. package/docs/functions/SoftObjectArrayProperty.Parse.html +1 -0
  292. package/docs/functions/SoftObjectArrayProperty.Serialize.html +1 -0
  293. package/docs/functions/SoftObjectReference.read.html +1 -1
  294. package/docs/functions/SoftObjectReference.write.html +1 -1
  295. package/docs/functions/SpecialDroneActionProperties.Parse.html +1 -1
  296. package/docs/functions/SpecialDroneActionProperties.Serialize.html +1 -1
  297. package/docs/functions/SpecialProperties.ParseClassSpecificSpecialProperties.html +1 -1
  298. package/docs/functions/SpecialProperties.SerializeClassSpecificSpecialProperties.html +1 -1
  299. package/docs/functions/StrArrayProperty.Parse.html +1 -0
  300. package/docs/functions/StrArrayProperty.Serialize.html +1 -0
  301. package/docs/functions/StrSetProperty.Parse.html +1 -0
  302. package/docs/functions/StrSetProperty.Serialize.html +1 -0
  303. package/docs/functions/StructArrayProperty.Parse.html +1 -0
  304. package/docs/functions/StructArrayProperty.Serialize.html +1 -0
  305. package/docs/functions/StructSetProperty.Parse.html +1 -0
  306. package/docs/functions/StructSetProperty.Serialize.html +1 -0
  307. package/docs/functions/TextArrayProperty.Parse.html +1 -0
  308. package/docs/functions/TextArrayProperty.Serialize.html +1 -0
  309. package/docs/functions/Transform.Parse.html +1 -1
  310. package/docs/functions/Transform.ParseF.html +1 -1
  311. package/docs/functions/Transform.Serialize.html +1 -1
  312. package/docs/functions/Transform.SerializeF.html +1 -1
  313. package/docs/functions/Uint32SetProperty.Parse.html +1 -0
  314. package/docs/functions/Uint32SetProperty.Serialize.html +1 -0
  315. package/docs/functions/VehicleSpecialProperties.Parse.html +1 -1
  316. package/docs/functions/VehicleSpecialProperties.Serialize.html +1 -1
  317. package/docs/functions/col4.ParseBGRA.html +1 -1
  318. package/docs/functions/col4.ParseRGBA.html +1 -1
  319. package/docs/functions/col4.SerializeBGRA.html +1 -1
  320. package/docs/functions/col4.SerializeRGBA.html +1 -1
  321. package/docs/functions/isArrayProperty.html +1 -1
  322. package/docs/functions/isBoolArrayProperty.html +1 -0
  323. package/docs/functions/isBoolProperty.html +1 -1
  324. package/docs/functions/isBuildableSubsystemSpecialProperties.html +1 -1
  325. package/docs/functions/isByteArrayProperty.html +1 -0
  326. package/docs/functions/isByteProperty.html +1 -1
  327. package/docs/functions/isCircuitSpecialProperties.html +1 -1
  328. package/docs/functions/isConveyorChainActorSpecialProperties.html +1 -1
  329. package/docs/functions/isConveyorSpecialProperties.html +1 -1
  330. package/docs/functions/isDoubleArrayProperty.html +1 -0
  331. package/docs/functions/isDoubleProperty.html +1 -1
  332. package/docs/functions/isEmptySpecialProperties.html +1 -1
  333. package/docs/functions/isEnumArrayProperty.html +1 -0
  334. package/docs/functions/isEnumProperty.html +1 -1
  335. package/docs/functions/isFloatArrayProperty.html +1 -0
  336. package/docs/functions/isFloatProperty.html +1 -1
  337. package/docs/functions/isInt32ArrayProperty.html +1 -0
  338. package/docs/functions/isInt32Property.html +1 -1
  339. package/docs/functions/isInt32SetProperty.html +1 -0
  340. package/docs/functions/isInt64ArrayProperty.html +1 -0
  341. package/docs/functions/isInt64Property.html +1 -1
  342. package/docs/functions/isInt8Property.html +1 -1
  343. package/docs/functions/isMapProperty.html +1 -1
  344. package/docs/functions/isObjectArrayProperty.html +1 -0
  345. package/docs/functions/isObjectProperty.html +1 -1
  346. package/docs/functions/isObjectSetProperty.html +1 -0
  347. package/docs/functions/isObjectsListSpecialProperties.html +1 -1
  348. package/docs/functions/isPlayerSpecialProperties.html +1 -1
  349. package/docs/functions/isPowerLineSpecialProperties.html +1 -1
  350. package/docs/functions/isSaveComponent.html +1 -1
  351. package/docs/functions/isSaveEntity.html +1 -1
  352. package/docs/functions/isSetProperty.html +1 -1
  353. package/docs/functions/isSoftObjectArrayProperty.html +1 -0
  354. package/docs/functions/isSpecialDroneActionProperties.html +1 -1
  355. package/docs/functions/isStrArrayProperty.html +1 -0
  356. package/docs/functions/isStrProperty.html +1 -1
  357. package/docs/functions/isStrSetProperty.html +1 -0
  358. package/docs/functions/isStructArrayProperty.html +1 -0
  359. package/docs/functions/isStructProperty.html +1 -1
  360. package/docs/functions/isStructSetProperty.html +1 -0
  361. package/docs/functions/isTextArrayProperty.html +1 -0
  362. package/docs/functions/isTextProperty.html +1 -1
  363. package/docs/functions/isUInt64Property.html +1 -1
  364. package/docs/functions/isUint32Property.html +1 -1
  365. package/docs/functions/isUint32SetProperty.html +1 -0
  366. package/docs/functions/isUint8Property.html +1 -1
  367. package/docs/functions/isVehicleSpecialProperties.html +1 -1
  368. package/docs/functions/vec2.Parse.html +1 -1
  369. package/docs/functions/vec2.ParseF.html +1 -1
  370. package/docs/functions/vec2.Serialize.html +1 -1
  371. package/docs/functions/vec2.SerializeF.html +1 -1
  372. package/docs/functions/vec3.Parse.html +1 -1
  373. package/docs/functions/vec3.ParseF.html +1 -1
  374. package/docs/functions/vec3.ParseInt.html +1 -1
  375. package/docs/functions/vec3.Serialize.html +1 -1
  376. package/docs/functions/vec3.SerializeF.html +1 -1
  377. package/docs/functions/vec3.SerializeInt.html +1 -1
  378. package/docs/functions/vec3.add.html +1 -1
  379. package/docs/functions/vec3.length.html +1 -1
  380. package/docs/functions/vec3.mult.html +1 -1
  381. package/docs/functions/vec3.norm.html +1 -1
  382. package/docs/functions/vec3.sub.html +1 -1
  383. package/docs/functions/vec4.Parse.html +1 -1
  384. package/docs/functions/vec4.ParseF.html +1 -1
  385. package/docs/functions/vec4.Serialize.html +1 -1
  386. package/docs/functions/vec4.SerializeF.html +1 -1
  387. package/docs/hierarchy.html +1 -1
  388. package/docs/index.html +5 -61
  389. package/docs/interfaces/Blueprint.html +2 -2
  390. package/docs/interfaces/BlueprintConfig.html +2 -2
  391. package/docs/interfaces/ModData.html +2 -2
  392. package/docs/interfaces/SatisfactoryModMetadata.html +2 -2
  393. package/docs/interfaces/SatisfactorySaveHeader.html +2 -2
  394. package/docs/interfaces/SaveComponentHeader.html +2 -2
  395. package/docs/interfaces/SaveEntityHeader.html +2 -2
  396. package/docs/interfaces/SaveObjectHeader.html +4 -0
  397. package/docs/modules/ArrayProperty.html +5 -0
  398. package/docs/modules/BoolArrayProperty.html +3 -0
  399. package/docs/modules/BuildableSubsystemSpecialProperties.html +1 -1
  400. package/docs/modules/ByteArrayProperty.html +3 -0
  401. package/docs/modules/CircuitSpecialProperties.html +1 -1
  402. package/docs/modules/ConveyorChainActorSpecialProperties.html +1 -1
  403. package/docs/modules/ConveyorSpecialProperties.html +1 -1
  404. package/docs/modules/DoubleArrayProperty.html +3 -0
  405. package/docs/modules/DynamicStructPropertyValue.html +1 -1
  406. package/docs/modules/EmptySpecialProperties.html +1 -1
  407. package/docs/modules/EnumArrayProperty.html +3 -0
  408. package/docs/modules/FICFrameRange.html +1 -1
  409. package/docs/modules/FloatArrayProperty.html +3 -0
  410. package/docs/modules/GUID.html +1 -1
  411. package/docs/modules/GUIDInfo.html +1 -1
  412. package/docs/modules/Int32ArrayProperty.html +3 -0
  413. package/docs/modules/Int32SetProperty.html +3 -0
  414. package/docs/modules/Int64ArrayProperty.html +3 -0
  415. package/docs/modules/Level.html +1 -1
  416. package/docs/modules/MD5Hash.html +1 -1
  417. package/docs/modules/ObjectArrayProperty.html +3 -0
  418. package/docs/modules/ObjectReference.html +1 -1
  419. package/docs/modules/ObjectSetProperty.html +3 -0
  420. package/docs/modules/ObjectsListSpecialProperties.html +1 -1
  421. package/docs/modules/PlayerSpecialProperties.html +1 -1
  422. package/docs/modules/PowerLineSpecialProperties.html +1 -1
  423. package/docs/modules/PropertiesList.html +1 -1
  424. package/docs/modules/SetProperty.html +5 -0
  425. package/docs/modules/SoftObjectArrayProperty.html +3 -0
  426. package/docs/modules/SoftObjectReference.html +1 -1
  427. package/docs/modules/SpecialDroneActionProperties.html +1 -1
  428. package/docs/modules/SpecialProperties.html +1 -1
  429. package/docs/modules/StrArrayProperty.html +3 -0
  430. package/docs/modules/StrSetProperty.html +3 -0
  431. package/docs/modules/StructArrayProperty.html +3 -0
  432. package/docs/modules/StructSetProperty.html +3 -0
  433. package/docs/modules/TextArrayProperty.html +3 -0
  434. package/docs/modules/Transform.html +1 -1
  435. package/docs/modules/Uint32SetProperty.html +3 -0
  436. package/docs/modules/VehicleSpecialProperties.html +1 -1
  437. package/docs/modules/col4.html +1 -1
  438. package/docs/modules/vec2.html +1 -1
  439. package/docs/modules/vec3.html +1 -1
  440. package/docs/modules/vec4.html +1 -1
  441. package/docs/modules.html +56 -5
  442. package/docs/types/ArrayProperty.AvailableArrayPropertyTypes.html +1 -0
  443. package/docs/types/ArrayPropertyStructValueFields.html +1 -1
  444. package/docs/types/BasicMultipleStructPropertyValue.html +1 -1
  445. package/docs/types/BasicStructPropertyValue.html +1 -1
  446. package/docs/types/BlueprintHeader.html +1 -1
  447. package/docs/types/BoolArrayProperty-1.html +1 -0
  448. package/docs/types/BoxStructPropertyValue.html +1 -1
  449. package/docs/types/BuildableSubsystemSpecialProperties-1.html +1 -1
  450. package/docs/types/BuildableTypeInstance.html +1 -1
  451. package/docs/types/ByteArrayProperty-1.html +1 -0
  452. package/docs/types/BytePropertyValue.html +1 -1
  453. package/docs/types/CircuitSpecialProperties-1.html +1 -1
  454. package/docs/types/ClientIdentityInfo.html +1 -1
  455. package/docs/types/ConveyorChainActorSpecialProperties-1.html +1 -1
  456. package/docs/types/ConveyorChainSegmentSpecialProperties.html +1 -1
  457. package/docs/types/ConveyorItemSpecialProperties.html +1 -1
  458. package/docs/types/ConveyorSpecialProperties-1.html +1 -1
  459. package/docs/types/DoubleArrayProperty-1.html +1 -0
  460. package/docs/types/DynamicStructPropertyValue-1.html +1 -1
  461. package/docs/types/EmptySpecialProperties-1.html +1 -1
  462. package/docs/types/EnumArrayProperty-1.html +1 -0
  463. package/docs/types/FICFrameRange-1.html +1 -1
  464. package/docs/types/FICFrameRangeStructPropertyValue.html +1 -1
  465. package/docs/types/FloatArrayProperty-1.html +1 -0
  466. package/docs/types/GENERIC_MAP_KEY_TYPE.html +1 -1
  467. package/docs/types/GENERIC_MAP_VALUE_TYPE.html +1 -1
  468. package/docs/types/GENERIC_STRUCT_PROPERTY_VALUE.html +1 -1
  469. package/docs/types/GUID-1.html +1 -1
  470. package/docs/types/GUIDInfo-1.html +1 -1
  471. package/docs/types/Int32ArrayProperty-1.html +1 -0
  472. package/docs/types/Int32SetProperty-1.html +1 -0
  473. package/docs/types/Int64ArrayProperty-1.html +1 -0
  474. package/docs/types/InventoryItemStructPropertyValue.html +1 -1
  475. package/docs/types/Level-1.html +1 -1
  476. package/docs/types/MAP_STRUCT_KEY_PROXY.html +1 -1
  477. package/docs/types/MD5Hash-1.html +1 -1
  478. package/docs/types/ObjectArrayProperty-1.html +1 -0
  479. package/docs/types/ObjectReference-1.html +1 -1
  480. package/docs/types/ObjectSetProperty-1.html +1 -0
  481. package/docs/types/ObjectsListSpecialProperties-1.html +1 -1
  482. package/docs/types/PlayerSpecialProperties-1.html +1 -1
  483. package/docs/types/PowerLineSpecialProperties-1.html +1 -1
  484. package/docs/types/PropertiesMap.html +1 -1
  485. package/docs/types/RailroadTrackPositionStructPropertyValue.html +1 -1
  486. package/docs/types/RoughSaveVersion.html +1 -1
  487. package/docs/types/SetProperty.AvailableSetPropertyTypes.html +1 -0
  488. package/docs/types/SoftObjectArrayProperty-1.html +1 -0
  489. package/docs/types/SoftObjectReference-1.html +1 -1
  490. package/docs/types/SpecialDroneAction.html +1 -1
  491. package/docs/types/SpecialDroneActionProperties-1.html +1 -1
  492. package/docs/types/SpecialProperties.AvailableSpecialPropertiesTypes.html +1 -1
  493. package/docs/types/StrArrayProperty-1.html +1 -0
  494. package/docs/types/StrSetProperty-1.html +1 -0
  495. package/docs/types/StructArrayProperty-1.html +1 -0
  496. package/docs/types/StructSetProperty-1.html +1 -0
  497. package/docs/types/TextArrayProperty-1.html +1 -0
  498. package/docs/types/TextPropertyValue.html +1 -1
  499. package/docs/types/Transform-1.html +1 -1
  500. package/docs/types/Uint32SetProperty-1.html +1 -0
  501. package/docs/types/VehicleSpecialProperties-1.html +1 -1
  502. package/docs/types/col4-1.html +1 -1
  503. package/docs/types/vec2-1.html +1 -1
  504. package/docs/types/vec3-1.html +1 -1
  505. package/docs/types/vec4-1.html +1 -1
  506. package/docs/variables/EDIT.html +1 -1
  507. package/package.json +2 -2
  508. package/LICENSE +0 -21
  509. package/docs/classes/AbstractProperty.html +0 -4
  510. package/docs/classes/ArrayProperty.html +0 -13
  511. package/docs/classes/BasicProperty.html +0 -7
  512. package/docs/classes/SetProperty.html +0 -12
@@ -1,9 +1,9 @@
1
1
  import { BinaryReadable } from '../../../../byte/binary-readable.interface';
2
2
  import { ByteWriter } from '../../../../byte/byte-writer.class';
3
3
  import { GUIDInfo } from '../../structs/GUIDInfo';
4
- import { BasicProperty } from './BasicProperty';
5
- export declare const isStrProperty: (property: BasicProperty) => property is StrProperty;
6
- export declare class StrProperty extends BasicProperty {
4
+ import { AbstractBaseProperty } from './AbstractBaseProperty';
5
+ export declare const isStrProperty: (property: any) => property is StrProperty;
6
+ export declare class StrProperty extends AbstractBaseProperty {
7
7
  value: string;
8
8
  constructor(value: string, ueType?: string, guidInfo?: GUIDInfo, index?: number);
9
9
  static Parse(reader: BinaryReadable, ueType: string, index?: number): StrProperty;
@@ -1 +1 @@
1
- {"version":3,"file":"StrProperty.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/satisfactory/types/property/generic/StrProperty.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,4CAA4C,CAAC;AAC5E,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAChE,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAClD,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAEhD,eAAO,MAAM,aAAa,aAAc,aAAa,KAAG,QAAQ,IAAI,WAA8C,CAAC;AAEnH,qBAAa,WAAY,SAAQ,aAAa;IAEvB,KAAK,EAAE,MAAM;gBAAb,KAAK,EAAE,MAAM,EAAE,MAAM,GAAE,MAAsB,EAAE,QAAQ,GAAE,QAAoB,EAAE,KAAK,GAAE,MAAU;WAIrG,KAAK,CAAC,MAAM,EAAE,cAAc,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,GAAE,MAAU,GAAG,WAAW;WAM7E,SAAS,CAAC,MAAM,EAAE,cAAc,GAAG,MAAM;WAIzC,YAAY,CAAC,QAAQ,EAAE,WAAW,GAAG,MAAM;WAI3C,SAAS,CAAC,MAAM,EAAE,UAAU,EAAE,QAAQ,EAAE,WAAW,GAAG,IAAI;WAK1D,cAAc,CAAC,MAAM,EAAE,UAAU,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI;CAGxE"}
1
+ {"version":3,"file":"StrProperty.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/satisfactory/types/property/generic/StrProperty.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,4CAA4C,CAAC;AAC5E,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAChE,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAClD,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAE9D,eAAO,MAAM,aAAa,aAAc,GAAG,KAAG,QAAQ,IAAI,WAA0E,CAAC;AAErI,qBAAa,WAAY,SAAQ,oBAAoB;IAE9B,KAAK,EAAE,MAAM;gBAAb,KAAK,EAAE,MAAM,EAAE,MAAM,GAAE,MAAsB,EAAE,QAAQ,GAAE,QAAoB,EAAE,KAAK,GAAE,MAAU;WAIrG,KAAK,CAAC,MAAM,EAAE,cAAc,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,GAAE,MAAU,GAAG,WAAW;WAM7E,SAAS,CAAC,MAAM,EAAE,cAAc,GAAG,MAAM;WAIzC,YAAY,CAAC,QAAQ,EAAE,WAAW,GAAG,MAAM;WAI3C,SAAS,CAAC,MAAM,EAAE,UAAU,EAAE,QAAQ,EAAE,WAAW,GAAG,IAAI;WAK1D,cAAc,CAAC,MAAM,EAAE,UAAU,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI;CAGxE"}
@@ -2,10 +2,10 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.StrProperty = exports.isStrProperty = void 0;
4
4
  const GUIDInfo_1 = require("../../structs/GUIDInfo");
5
- const BasicProperty_1 = require("./BasicProperty");
6
- const isStrProperty = (property) => property.type === 'StrProperty';
5
+ const AbstractBaseProperty_1 = require("./AbstractBaseProperty");
6
+ const isStrProperty = (property) => !Array.isArray(property) && property.type === 'StrProperty';
7
7
  exports.isStrProperty = isStrProperty;
8
- class StrProperty extends BasicProperty_1.BasicProperty {
8
+ class StrProperty extends AbstractBaseProperty_1.AbstractBaseProperty {
9
9
  constructor(value, ueType = 'StrProperty', guidInfo = undefined, index = 0) {
10
10
  super({ type: 'StrProperty', ueType, guidInfo, index });
11
11
  this.value = value;
@@ -1 +1 @@
1
- {"version":3,"file":"StrProperty.js","sourceRoot":"","sources":["../../../../../../src/parser/satisfactory/types/property/generic/StrProperty.ts"],"names":[],"mappings":";;;AAEA,qDAAkD;AAClD,mDAAgD;AAEzC,MAAM,aAAa,GAAG,CAAC,QAAuB,EAA2B,EAAE,CAAC,QAAQ,CAAC,IAAI,KAAK,aAAa,CAAC;AAAtG,QAAA,aAAa,iBAAyF;AAEnH,MAAa,WAAY,SAAQ,6BAAa;IAE1C,YAAmB,KAAa,EAAE,SAAiB,aAAa,EAAE,WAAqB,SAAS,EAAE,QAAgB,CAAC;QAC/G,KAAK,CAAC,EAAE,IAAI,EAAE,aAAa,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC,CAAC;QADzC,UAAK,GAAL,KAAK,CAAQ;IAEhC,CAAC;IAEM,MAAM,CAAC,KAAK,CAAC,MAAsB,EAAE,MAAc,EAAE,QAAgB,CAAC;QACzE,MAAM,QAAQ,GAAG,mBAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QACvC,MAAM,KAAK,GAAG,WAAW,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;QAC5C,OAAO,IAAI,WAAW,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAC;IAC3D,CAAC;IAEM,MAAM,CAAC,SAAS,CAAC,MAAsB;QAC1C,OAAO,MAAM,CAAC,UAAU,EAAE,CAAC;IAC/B,CAAC;IAEM,MAAM,CAAC,YAAY,CAAC,QAAqB;QAC5C,OAAO,CAAC,CAAC;IACb,CAAC;IAEM,MAAM,CAAC,SAAS,CAAC,MAAkB,EAAE,QAAqB;QAC7D,mBAAQ,CAAC,KAAK,CAAC,MAAM,EAAE,QAAQ,CAAC,QAAQ,CAAC,CAAC;QAC1C,WAAW,CAAC,cAAc,CAAC,MAAM,EAAE,QAAQ,CAAC,KAAK,CAAC,CAAC;IACvD,CAAC;IAEM,MAAM,CAAC,cAAc,CAAC,MAAkB,EAAE,KAAa;QAC1D,MAAM,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;IAC9B,CAAC;CACJ;AA5BD,kCA4BC","sourcesContent":["import { BinaryReadable } from '../../../../byte/binary-readable.interface';\nimport { ByteWriter } from '../../../../byte/byte-writer.class';\nimport { GUIDInfo } from '../../structs/GUIDInfo';\nimport { BasicProperty } from './BasicProperty';\n\nexport const isStrProperty = (property: BasicProperty): property is StrProperty => property.type === 'StrProperty';\n\nexport class StrProperty extends BasicProperty {\n\n constructor(public value: string, ueType: string = 'StrProperty', guidInfo: GUIDInfo = undefined, index: number = 0) {\n super({ type: 'StrProperty', ueType, guidInfo, index });\n }\n\n public static Parse(reader: BinaryReadable, ueType: string, index: number = 0): StrProperty {\n const guidInfo = GUIDInfo.read(reader);\n const value = StrProperty.ReadValue(reader);\n return new StrProperty(value, ueType, guidInfo, index);\n }\n\n public static ReadValue(reader: BinaryReadable): string {\n return reader.readString();\n }\n\n public static CalcOverhead(property: StrProperty): number {\n return 1;\n }\n\n public static Serialize(writer: ByteWriter, property: StrProperty): void {\n GUIDInfo.write(writer, property.guidInfo);\n StrProperty.SerializeValue(writer, property.value);\n }\n\n public static SerializeValue(writer: ByteWriter, value: string): void {\n writer.writeString(value);\n }\n}\n"]}
1
+ {"version":3,"file":"StrProperty.js","sourceRoot":"","sources":["../../../../../../src/parser/satisfactory/types/property/generic/StrProperty.ts"],"names":[],"mappings":";;;AAEA,qDAAkD;AAClD,iEAA8D;AAEvD,MAAM,aAAa,GAAG,CAAC,QAAa,EAA2B,EAAE,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,QAAQ,CAAC,IAAI,KAAK,aAAa,CAAC;AAAxH,QAAA,aAAa,iBAA2G;AAErI,MAAa,WAAY,SAAQ,2CAAoB;IAEjD,YAAmB,KAAa,EAAE,SAAiB,aAAa,EAAE,WAAqB,SAAS,EAAE,QAAgB,CAAC;QAC/G,KAAK,CAAC,EAAE,IAAI,EAAE,aAAa,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC,CAAC;QADzC,UAAK,GAAL,KAAK,CAAQ;IAEhC,CAAC;IAEM,MAAM,CAAC,KAAK,CAAC,MAAsB,EAAE,MAAc,EAAE,QAAgB,CAAC;QACzE,MAAM,QAAQ,GAAG,mBAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QACvC,MAAM,KAAK,GAAG,WAAW,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;QAC5C,OAAO,IAAI,WAAW,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAC;IAC3D,CAAC;IAEM,MAAM,CAAC,SAAS,CAAC,MAAsB;QAC1C,OAAO,MAAM,CAAC,UAAU,EAAE,CAAC;IAC/B,CAAC;IAEM,MAAM,CAAC,YAAY,CAAC,QAAqB;QAC5C,OAAO,CAAC,CAAC;IACb,CAAC;IAEM,MAAM,CAAC,SAAS,CAAC,MAAkB,EAAE,QAAqB;QAC7D,mBAAQ,CAAC,KAAK,CAAC,MAAM,EAAE,QAAQ,CAAC,QAAQ,CAAC,CAAC;QAC1C,WAAW,CAAC,cAAc,CAAC,MAAM,EAAE,QAAQ,CAAC,KAAK,CAAC,CAAC;IACvD,CAAC;IAEM,MAAM,CAAC,cAAc,CAAC,MAAkB,EAAE,KAAa;QAC1D,MAAM,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;IAC9B,CAAC;CACJ;AA5BD,kCA4BC","sourcesContent":["import { BinaryReadable } from '../../../../byte/binary-readable.interface';\nimport { ByteWriter } from '../../../../byte/byte-writer.class';\nimport { GUIDInfo } from '../../structs/GUIDInfo';\nimport { AbstractBaseProperty } from './AbstractBaseProperty';\n\nexport const isStrProperty = (property: any): property is StrProperty => !Array.isArray(property) && property.type === 'StrProperty';\n\nexport class StrProperty extends AbstractBaseProperty {\n\n constructor(public value: string, ueType: string = 'StrProperty', guidInfo: GUIDInfo = undefined, index: number = 0) {\n super({ type: 'StrProperty', ueType, guidInfo, index });\n }\n\n public static Parse(reader: BinaryReadable, ueType: string, index: number = 0): StrProperty {\n const guidInfo = GUIDInfo.read(reader);\n const value = StrProperty.ReadValue(reader);\n return new StrProperty(value, ueType, guidInfo, index);\n }\n\n public static ReadValue(reader: BinaryReadable): string {\n return reader.readString();\n }\n\n public static CalcOverhead(property: StrProperty): number {\n return 1;\n }\n\n public static Serialize(writer: ByteWriter, property: StrProperty): void {\n GUIDInfo.write(writer, property.guidInfo);\n StrProperty.SerializeValue(writer, property.value);\n }\n\n public static SerializeValue(writer: ByteWriter, value: string): void {\n writer.writeString(value);\n }\n}\n"]}
@@ -2,9 +2,10 @@ import { BinaryReadable } from '../../../../byte/binary-readable.interface';
2
2
  import { ByteWriter } from '../../../../byte/byte-writer.class';
3
3
  import { col4 } from '../../structs/col4';
4
4
  import { DynamicStructPropertyValue } from '../../structs/DynamicStructPropertyValue';
5
+ import { GUIDInfo } from '../../structs/GUIDInfo';
5
6
  import { vec3 } from '../../structs/vec3';
6
7
  import { vec4 } from '../../structs/vec4';
7
- import { AbstractBaseProperty } from './BasicProperty';
8
+ import { AbstractBaseProperty } from './AbstractBaseProperty';
8
9
  export type BasicMultipleStructPropertyValue = {
9
10
  values: any;
10
11
  };
@@ -42,16 +43,15 @@ export type ClientIdentityInfo = {
42
43
  accountIds: Record<number, number[]>;
43
44
  };
44
45
  export type GENERIC_STRUCT_PROPERTY_VALUE = BasicMultipleStructPropertyValue | BasicStructPropertyValue | BoxStructPropertyValue | RailroadTrackPositionStructPropertyValue | InventoryItemStructPropertyValue | FICFrameRangeStructPropertyValue | ClientIdentityInfo | DynamicStructPropertyValue | col4 | vec3 | vec4 | string;
45
- export declare const isStructProperty: (property: AbstractBaseProperty) => property is StructProperty;
46
+ export declare const isStructProperty: (property: any) => property is StructProperty;
46
47
  export declare class StructProperty extends AbstractBaseProperty {
47
48
  subtype: string;
48
- guid: number;
49
49
  value: GENERIC_STRUCT_PROPERTY_VALUE;
50
50
  unk1?: number;
51
51
  unk2?: number;
52
52
  unk3?: number;
53
53
  unk4?: number;
54
- constructor(subtype: string, ueType?: string, index?: number, guid?: number);
54
+ constructor(subtype: string, ueType?: string, index?: number, guidInfo?: GUIDInfo);
55
55
  static Parse(reader: BinaryReadable, ueType: string, index: number, size: number): StructProperty;
56
56
  static ParseValue(reader: BinaryReadable, subtype: string, size: number): GENERIC_STRUCT_PROPERTY_VALUE;
57
57
  static CalcOverhead(property: StructProperty): number;
@@ -1 +1 @@
1
- {"version":3,"file":"StructProperty.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/satisfactory/types/property/generic/StructProperty.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"StructProperty.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/satisfactory/types/property/generic/StructProperty.ts"],"names":[],"mappings":"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"}
@@ -4,21 +4,21 @@ exports.StructProperty = exports.isStructProperty = void 0;
4
4
  const parser_error_1 = require("../../../../error/parser.error");
5
5
  const col4_1 = require("../../structs/col4");
6
6
  const DynamicStructPropertyValue_1 = require("../../structs/DynamicStructPropertyValue");
7
+ const GUIDInfo_1 = require("../../structs/GUIDInfo");
7
8
  const FICFrameRange_1 = require("../../structs/mods/FicsItCam/FICFrameRange");
8
9
  const vec3_1 = require("../../structs/vec3");
9
10
  const vec4_1 = require("../../structs/vec4");
10
- const BasicProperty_1 = require("./BasicProperty");
11
- const isStructProperty = (property) => property.type === 'StructProperty';
11
+ const AbstractBaseProperty_1 = require("./AbstractBaseProperty");
12
+ const isStructProperty = (property) => !Array.isArray(property) && property.type === 'StructProperty';
12
13
  exports.isStructProperty = isStructProperty;
13
- class StructProperty extends BasicProperty_1.AbstractBaseProperty {
14
- constructor(subtype, ueType = 'StructProperty', index = 0, guid = 0) {
15
- super('StructProperty', ueType, index);
14
+ class StructProperty extends AbstractBaseProperty_1.AbstractBaseProperty {
15
+ constructor(subtype, ueType = 'StructProperty', index = 0, guidInfo = undefined) {
16
+ super({ type: 'StructProperty', ueType, index, guidInfo });
16
17
  this.subtype = subtype;
17
- this.guid = guid;
18
18
  this.value = { values: {} };
19
19
  }
20
20
  static Parse(reader, ueType, index, size) {
21
- const struct = new StructProperty(reader.readString(), ueType, index, reader.readInt32());
21
+ const struct = new StructProperty(reader.readString(), ueType, index, GUIDInfo_1.GUIDInfo.read(reader));
22
22
  const unk1 = reader.readInt32();
23
23
  if (unk1 !== 0) {
24
24
  struct.unk1 = unk1;
@@ -31,7 +31,7 @@ class StructProperty extends BasicProperty_1.AbstractBaseProperty {
31
31
  if (unk3 !== 0) {
32
32
  struct.unk3 = unk3;
33
33
  }
34
- const unk4 = reader.readByte();
34
+ const unk4 = reader.readInt32();
35
35
  if (unk4 !== 0) {
36
36
  struct.unk4 = unk4;
37
37
  }
@@ -160,11 +160,11 @@ class StructProperty extends BasicProperty_1.AbstractBaseProperty {
160
160
  }
161
161
  static Serialize(writer, property) {
162
162
  writer.writeString(property.subtype);
163
- writer.writeInt32(property.guid);
163
+ GUIDInfo_1.GUIDInfo.write(writer, property.guidInfo);
164
164
  writer.writeInt32(property.unk1 ?? 0);
165
165
  writer.writeInt32(property.unk2 ?? 0);
166
166
  writer.writeInt32(property.unk3 ?? 0);
167
- writer.writeByte(property.unk4 ?? 0);
167
+ writer.writeInt32(property.unk4 ?? 0);
168
168
  StructProperty.SerializeValue(writer, property.subtype, property.value);
169
169
  }
170
170
  static SerializeValue(writer, subtype, value) {
@@ -1 +1 @@
1
- {"version":3,"file":"StructProperty.js","sourceRoot":"","sources":["../../../../../../src/parser/satisfactory/types/property/generic/StructProperty.ts"],"names":[],"mappings":"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","sourcesContent":["import { BinaryReadable } from '../../../../byte/binary-readable.interface';\nimport { ByteWriter } from '../../../../byte/byte-writer.class';\nimport { CorruptSaveError } from '../../../../error/parser.error';\nimport { col4 } from '../../structs/col4';\nimport { DynamicStructPropertyValue } from '../../structs/DynamicStructPropertyValue';\nimport { FICFrameRange } from '../../structs/mods/FicsItCam/FICFrameRange';\nimport { vec3 } from '../../structs/vec3';\nimport { vec4 } from '../../structs/vec4';\nimport { AbstractBaseProperty } from './BasicProperty';\n\n\nexport type BasicMultipleStructPropertyValue = {\n values: any;\n};\n\nexport type BasicStructPropertyValue = {\n value: any;\n};\n\nexport type BoxStructPropertyValue = {\n min: vec3;\n max: vec3;\n isValid: boolean;\n};\n\nexport type RailroadTrackPositionStructPropertyValue = {\n root: string;\n instanceName: string;\n offset: number;\n forward: number;\n};\n\nexport type InventoryItemStructPropertyValue = {\n unk1: number;\n itemName: string;\n hasItemState: number;\n itemState?: {\n unk: number;\n pathName: string;\n binarySize: number;\n itemStateRaw: number[];\n };\n};\n\nexport type FICFrameRangeStructPropertyValue = {\n begin: string;\n end: string;\n};\n\nexport type ClientIdentityInfo = {\n offlineId: string;\n accountIds: Record<number, number[]>;\n};\n\nexport type GENERIC_STRUCT_PROPERTY_VALUE = BasicMultipleStructPropertyValue | BasicStructPropertyValue | BoxStructPropertyValue | RailroadTrackPositionStructPropertyValue |\n InventoryItemStructPropertyValue | FICFrameRangeStructPropertyValue | ClientIdentityInfo | DynamicStructPropertyValue | col4 | vec3 | vec4 | string;\n\nexport const isStructProperty = (property: AbstractBaseProperty): property is StructProperty => property.type === 'StructProperty';\n\nexport class StructProperty extends AbstractBaseProperty {\n\n public value: GENERIC_STRUCT_PROPERTY_VALUE = { values: {} };\n\n public unk1?: number;\n public unk2?: number;\n public unk3?: number;\n public unk4?: number;\n\n constructor(public subtype: string, ueType: string = 'StructProperty', index: number = 0, public guid = 0) {\n super('StructProperty', ueType, index);\n }\n\n public static Parse(reader: BinaryReadable, ueType: string, index: number, size: number): StructProperty {\n const struct = new StructProperty(\n reader.readString(),\n ueType,\n index,\n reader.readInt32()\n );\n\n const unk1 = reader.readInt32();\n if (unk1 !== 0) {\n struct.unk1 = unk1;\n }\n\n const unk2 = reader.readInt32();\n if (unk2 !== 0) {\n struct.unk2 = unk2;\n }\n\n const unk3 = reader.readInt32();\n if (unk3 !== 0) {\n struct.unk3 = unk3;\n }\n\n const unk4 = reader.readByte();\n if (unk4 !== 0) {\n struct.unk4 = unk4;\n }\n\n const before = reader.getBufferPosition();\n struct.value = StructProperty.ParseValue(reader, struct.subtype, size);\n const readBytes = reader.getBufferPosition() - before;\n if (readBytes !== size) {\n if (size - readBytes === 4) {\n // U8, fine\n reader.skipBytes(size - readBytes);\n } else {\n throw new Error(`possibly corrupt. Read ${readBytes} for StructProperty Content of ${struct.subtype}, but ${size} were indicated.`);\n }\n }\n\n return struct;\n }\n\n public static ParseValue(reader: BinaryReadable, subtype: string, size: number): GENERIC_STRUCT_PROPERTY_VALUE {\n\n let value: GENERIC_STRUCT_PROPERTY_VALUE;\n\n switch (subtype) {\n case 'Color':\n value = col4.ParseBGRA(reader);\n break;\n\n case 'IntPoint':\n value = reader.readInt64().toString();\n break;\n\n case 'LinearColor':\n value = col4.ParseRGBA(reader);\n break;\n\n case 'Vector':\n case 'Rotator':\n case 'Vector2D':\n value = (size === 12) ? vec3.ParseF(reader) : vec3.Parse(reader);\n break;\n\n case 'Quat':\n case 'Vector4':\n case 'Vector4D':\n value = (size === 16) ? vec4.ParseF(reader) : vec4.Parse(reader);\n break;\n\n case 'Box':\n value = ((size === 25) ? {\n min: vec3.ParseF(reader),\n max: vec3.ParseF(reader),\n isValid: reader.readByte() >= 1\n } : {\n min: vec3.Parse(reader),\n max: vec3.Parse(reader),\n isValid: reader.readByte() >= 1\n }) satisfies BoxStructPropertyValue;\n break;\n\n case 'RailroadTrackPosition':\n value = {\n root: reader.readString(),\n instanceName: reader.readString(),\n offset: reader.readFloat32(),\n forward: reader.readFloat32()\n };\n break;\n\n case 'TimerHandle':\n value = reader.readString();\n break;\n\n case 'Guid':\n value = reader.readString();\n break;\n\n case 'ClientIdentityInfo':\n const offlineId = reader.readString();\n const numAccountIds = reader.readInt32();\n\n const accountIds: Record<number, number[]> = {};\n for (let i = 0; i < numAccountIds; i++) {\n const platformFlagMaybe = reader.readByte(); // 1 for Epic, 6 for steam ? Only seen 1s and 6s so far.\n const idSize = reader.readInt32();\n const accountId = Array.from(reader.readBytes(idSize));\n accountIds[platformFlagMaybe] = accountId;\n }\n\n value = {\n offlineId,\n accountIds\n } satisfies ClientIdentityInfo;\n break;\n\n case 'InventoryItem':\n const before = reader.getBufferPosition();\n\n value = {\n unk1: reader.readInt32(),\n itemName: reader.readString(),\n hasItemState: reader.readInt32(), // this indicates whether more properties follow\n } satisfies InventoryItemStructPropertyValue;\n\n if (value.hasItemState >= 1) {\n const stateUnk = reader.readInt32(); // 0\n const statePathName = reader.readString();\n const stateBinarySize = reader.readInt32();\n const itemStateRaw = Array.from(reader.readBytes(stateBinarySize)); // TODO: learn to parse these properties\n\n value.itemState = {\n unk: stateUnk,\n pathName: statePathName,\n binarySize: stateBinarySize,\n itemStateRaw: itemStateRaw\n };\n }\n\n // some have a 0 here. Only applies to ported saves from U8 i think.\n const bytesLeft = size - (reader.getBufferPosition() - before);\n if (bytesLeft === 0 || (bytesLeft === 4 && reader.readInt32() === 0)) {\n // fine\n } else {\n throw new CorruptSaveError(`save may be corrupt. InventoryItem has weird format that was not seen so far and therefore not implemented. Could be that the save is ported from way before U8.`);\n }\n\n break;\n\n case 'FluidBox':\n value = {\n value: reader.readFloat32()\n };\n break;\n\n case 'SlateBrush':\n value = reader.readString();\n break;\n\n case 'DateTime':\n value = reader.readInt64().toString();\n break;\n\n // MODS\n case 'FICFrameRange': // https://github.com/Panakotta00/FicsIt-Cam/blob/master/Source/FicsItCam/Public/Data/FICTypes.h#35\n value = FICFrameRange.Parse(reader);\n break;\n\n default:\n //TODO: use buildversion\n value = DynamicStructPropertyValue.read(reader, 0, subtype);\n }\n\n return value;\n }\n\n public static CalcOverhead(property: StructProperty): number {\n return property.subtype.length + 5 + 4 + 4 + 4 + 4 + 1;\n }\n\n public static Serialize(writer: ByteWriter, property: StructProperty): void {\n writer.writeString(property.subtype);\n writer.writeInt32(property.guid);\n\n writer.writeInt32(property.unk1 ?? 0);\n writer.writeInt32(property.unk2 ?? 0);\n writer.writeInt32(property.unk3 ?? 0);\n writer.writeByte(property.unk4 ?? 0);\n\n StructProperty.SerializeValue(writer, property.subtype, property.value);\n }\n\n public static SerializeValue(writer: ByteWriter, subtype: string, value: GENERIC_STRUCT_PROPERTY_VALUE): void {\n\n switch (subtype) {\n case 'Color':\n value = value as col4;\n col4.SerializeBGRA(writer, value);\n break;\n\n case 'IntPoint':\n writer.writeInt64(BigInt(value as string))\n break;\n\n case 'LinearColor':\n value = value as col4;\n col4.SerializeRGBA(writer, value);\n break;\n\n case 'Vector':\n case 'Rotator':\n case 'Vector2D':\n value = value as vec3;\n vec3.Serialize(writer, value);\n break;\n\n case 'Quat':\n case 'Vector4':\n case 'Vector4D':\n value = value as vec4;\n vec4.Serialize(writer, value as vec4);\n break;\n\n case 'Box':\n value = value as BoxStructPropertyValue;\n vec3.Serialize(writer, value.min);\n vec3.Serialize(writer, value.max);\n writer.writeByte(value.isValid ? 1 : 0);\n break;\n\n case 'RailroadTrackPosition':\n value = value as RailroadTrackPositionStructPropertyValue;\n writer.writeString(value.root);\n writer.writeString(value.instanceName);\n writer.writeFloat32(value.offset);\n writer.writeFloat32(value.forward);\n break;\n\n case 'TimerHandle':\n value = value as string;\n writer.writeString(value);\n break;\n\n case 'Guid':\n value = value as string;\n writer.writeString(value);\n break;\n\n case 'ClientIdentityInfo':\n value = value as ClientIdentityInfo;\n writer.writeString(value.offlineId);\n writer.writeInt32(Object.values(value.accountIds).length);\n for (const [platformFlagMaybe, accountId] of Object.entries(value.accountIds)) {\n writer.writeByte(Number(platformFlagMaybe));\n writer.writeInt32(accountId.length);\n writer.writeBytesArray(accountId);\n }\n\n break;\n\n case 'InventoryItem':\n value = value as InventoryItemStructPropertyValue;\n writer.writeInt32(value.unk1);\n writer.writeString(value.itemName);\n writer.writeInt32(value.hasItemState);\n\n if (value.hasItemState >= 1) {\n writer.writeInt32(value.itemState!.unk);\n writer.writeString(value.itemState!.pathName);\n writer.writeInt32(value.itemState!.binarySize);\n writer.writeBytesArray(value.itemState!.itemStateRaw);\n }\n break;\n\n case 'FluidBox':\n value = value as BasicStructPropertyValue;\n writer.writeFloat32(value.value);\n break;\n\n case 'SlateBrush':\n value = value as string;\n writer.writeString(value);\n break;\n\n case 'DateTime':\n value = value as string;\n writer.writeInt64(BigInt(value));\n break;\n\n // MODS\n case 'FICFrameRange': // https://github.com/Panakotta00/FicsIt-Cam/blob/master/Source/FicsItCam/Public/Data/FICTypes.h#35\n value = value as FICFrameRange;\n FICFrameRange.Serialize(writer, value);\n break;\n\n default:\n //TODO: use buildversion\n value = value as DynamicStructPropertyValue;\n DynamicStructPropertyValue.write(writer, 0, value);\n }\n }\n}\n\n\n"]}
1
+ {"version":3,"file":"StructProperty.js","sourceRoot":"","sources":["../../../../../../src/parser/satisfactory/types/property/generic/StructProperty.ts"],"names":[],"mappings":"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","sourcesContent":["import { BinaryReadable } from '../../../../byte/binary-readable.interface';\nimport { ByteWriter } from '../../../../byte/byte-writer.class';\nimport { CorruptSaveError } from '../../../../error/parser.error';\nimport { col4 } from '../../structs/col4';\nimport { DynamicStructPropertyValue } from '../../structs/DynamicStructPropertyValue';\nimport { GUIDInfo } from '../../structs/GUIDInfo';\nimport { FICFrameRange } from '../../structs/mods/FicsItCam/FICFrameRange';\nimport { vec3 } from '../../structs/vec3';\nimport { vec4 } from '../../structs/vec4';\nimport { AbstractBaseProperty } from './AbstractBaseProperty';\n\n\nexport type BasicMultipleStructPropertyValue = {\n values: any;\n};\n\nexport type BasicStructPropertyValue = {\n value: any;\n};\n\nexport type BoxStructPropertyValue = {\n min: vec3;\n max: vec3;\n isValid: boolean;\n};\n\nexport type RailroadTrackPositionStructPropertyValue = {\n root: string;\n instanceName: string;\n offset: number;\n forward: number;\n};\n\nexport type InventoryItemStructPropertyValue = {\n unk1: number;\n itemName: string;\n hasItemState: number;\n itemState?: {\n unk: number;\n pathName: string;\n binarySize: number;\n itemStateRaw: number[];\n };\n};\n\nexport type FICFrameRangeStructPropertyValue = {\n begin: string;\n end: string;\n};\n\nexport type ClientIdentityInfo = {\n offlineId: string;\n accountIds: Record<number, number[]>;\n};\n\nexport type GENERIC_STRUCT_PROPERTY_VALUE = BasicMultipleStructPropertyValue | BasicStructPropertyValue | BoxStructPropertyValue | RailroadTrackPositionStructPropertyValue |\n InventoryItemStructPropertyValue | FICFrameRangeStructPropertyValue | ClientIdentityInfo | DynamicStructPropertyValue | col4 | vec3 | vec4 | string;\n\nexport const isStructProperty = (property: any): property is StructProperty => !Array.isArray(property) && property.type === 'StructProperty';\n\nexport class StructProperty extends AbstractBaseProperty {\n\n public value: GENERIC_STRUCT_PROPERTY_VALUE = { values: {} };\n\n public unk1?: number;\n public unk2?: number;\n public unk3?: number;\n public unk4?: number;\n\n constructor(public subtype: string, ueType: string = 'StructProperty', index: number = 0, guidInfo: GUIDInfo = undefined) {\n super({ type: 'StructProperty', ueType, index, guidInfo });\n }\n\n public static Parse(reader: BinaryReadable, ueType: string, index: number, size: number): StructProperty {\n const struct = new StructProperty(\n reader.readString(),\n ueType,\n index,\n GUIDInfo.read(reader)\n );\n\n const unk1 = reader.readInt32();\n if (unk1 !== 0) {\n struct.unk1 = unk1;\n }\n\n const unk2 = reader.readInt32();\n if (unk2 !== 0) {\n struct.unk2 = unk2;\n }\n\n const unk3 = reader.readInt32();\n if (unk3 !== 0) {\n struct.unk3 = unk3;\n }\n\n const unk4 = reader.readInt32();\n if (unk4 !== 0) {\n struct.unk4 = unk4;\n }\n\n const before = reader.getBufferPosition();\n struct.value = StructProperty.ParseValue(reader, struct.subtype, size);\n const readBytes = reader.getBufferPosition() - before;\n if (readBytes !== size) {\n if (size - readBytes === 4) {\n // U8, fine\n reader.skipBytes(size - readBytes);\n } else {\n throw new Error(`possibly corrupt. Read ${readBytes} for StructProperty Content of ${struct.subtype}, but ${size} were indicated.`);\n }\n }\n\n return struct;\n }\n\n public static ParseValue(reader: BinaryReadable, subtype: string, size: number): GENERIC_STRUCT_PROPERTY_VALUE {\n\n let value: GENERIC_STRUCT_PROPERTY_VALUE;\n\n switch (subtype) {\n case 'Color':\n value = col4.ParseBGRA(reader);\n break;\n\n case 'IntPoint':\n value = reader.readInt64().toString();\n break;\n\n case 'LinearColor':\n value = col4.ParseRGBA(reader);\n break;\n\n case 'Vector':\n case 'Rotator':\n case 'Vector2D':\n value = (size === 12) ? vec3.ParseF(reader) : vec3.Parse(reader);\n break;\n\n case 'Quat':\n case 'Vector4':\n case 'Vector4D':\n value = (size === 16) ? vec4.ParseF(reader) : vec4.Parse(reader);\n break;\n\n case 'Box':\n value = ((size === 25) ? {\n min: vec3.ParseF(reader),\n max: vec3.ParseF(reader),\n isValid: reader.readByte() >= 1\n } : {\n min: vec3.Parse(reader),\n max: vec3.Parse(reader),\n isValid: reader.readByte() >= 1\n }) satisfies BoxStructPropertyValue;\n break;\n\n case 'RailroadTrackPosition':\n value = {\n root: reader.readString(),\n instanceName: reader.readString(),\n offset: reader.readFloat32(),\n forward: reader.readFloat32()\n };\n break;\n\n case 'TimerHandle':\n value = reader.readString();\n break;\n\n case 'Guid':\n value = reader.readString();\n break;\n\n case 'ClientIdentityInfo':\n const offlineId = reader.readString();\n const numAccountIds = reader.readInt32();\n\n const accountIds: Record<number, number[]> = {};\n for (let i = 0; i < numAccountIds; i++) {\n const platformFlagMaybe = reader.readByte(); // 1 for Epic, 6 for steam ? Only seen 1s and 6s so far.\n const idSize = reader.readInt32();\n const accountId = Array.from(reader.readBytes(idSize));\n accountIds[platformFlagMaybe] = accountId;\n }\n\n value = {\n offlineId,\n accountIds\n } satisfies ClientIdentityInfo;\n break;\n\n case 'InventoryItem':\n const before = reader.getBufferPosition();\n\n value = {\n unk1: reader.readInt32(),\n itemName: reader.readString(),\n hasItemState: reader.readInt32(), // this indicates whether more properties follow\n } satisfies InventoryItemStructPropertyValue;\n\n if (value.hasItemState >= 1) {\n const stateUnk = reader.readInt32(); // 0\n const statePathName = reader.readString();\n const stateBinarySize = reader.readInt32();\n const itemStateRaw = Array.from(reader.readBytes(stateBinarySize)); // TODO: learn to parse these properties\n\n value.itemState = {\n unk: stateUnk,\n pathName: statePathName,\n binarySize: stateBinarySize,\n itemStateRaw: itemStateRaw\n };\n }\n\n // some have a 0 here. Only applies to ported saves from U8 i think.\n const bytesLeft = size - (reader.getBufferPosition() - before);\n if (bytesLeft === 0 || (bytesLeft === 4 && reader.readInt32() === 0)) {\n // fine\n } else {\n throw new CorruptSaveError(`save may be corrupt. InventoryItem has weird format that was not seen so far and therefore not implemented. Could be that the save is ported from way before U8.`);\n }\n\n break;\n\n case 'FluidBox':\n value = {\n value: reader.readFloat32()\n };\n break;\n\n case 'SlateBrush':\n value = reader.readString();\n break;\n\n case 'DateTime':\n value = reader.readInt64().toString();\n break;\n\n // MODS\n case 'FICFrameRange': // https://github.com/Panakotta00/FicsIt-Cam/blob/master/Source/FicsItCam/Public/Data/FICTypes.h#35\n value = FICFrameRange.Parse(reader);\n break;\n\n default:\n //TODO: use buildversion\n value = DynamicStructPropertyValue.read(reader, 0, subtype);\n }\n\n return value;\n }\n\n public static CalcOverhead(property: StructProperty): number {\n return property.subtype.length + 5 + 4 + 4 + 4 + 4 + 1;\n }\n\n public static Serialize(writer: ByteWriter, property: StructProperty): void {\n writer.writeString(property.subtype);\n GUIDInfo.write(writer, property.guidInfo);\n\n writer.writeInt32(property.unk1 ?? 0);\n writer.writeInt32(property.unk2 ?? 0);\n writer.writeInt32(property.unk3 ?? 0);\n writer.writeInt32(property.unk4 ?? 0);\n\n StructProperty.SerializeValue(writer, property.subtype, property.value);\n }\n\n public static SerializeValue(writer: ByteWriter, subtype: string, value: GENERIC_STRUCT_PROPERTY_VALUE): void {\n\n switch (subtype) {\n case 'Color':\n value = value as col4;\n col4.SerializeBGRA(writer, value);\n break;\n\n case 'IntPoint':\n writer.writeInt64(BigInt(value as string))\n break;\n\n case 'LinearColor':\n value = value as col4;\n col4.SerializeRGBA(writer, value);\n break;\n\n case 'Vector':\n case 'Rotator':\n case 'Vector2D':\n value = value as vec3;\n vec3.Serialize(writer, value);\n break;\n\n case 'Quat':\n case 'Vector4':\n case 'Vector4D':\n value = value as vec4;\n vec4.Serialize(writer, value as vec4);\n break;\n\n case 'Box':\n value = value as BoxStructPropertyValue;\n vec3.Serialize(writer, value.min);\n vec3.Serialize(writer, value.max);\n writer.writeByte(value.isValid ? 1 : 0);\n break;\n\n case 'RailroadTrackPosition':\n value = value as RailroadTrackPositionStructPropertyValue;\n writer.writeString(value.root);\n writer.writeString(value.instanceName);\n writer.writeFloat32(value.offset);\n writer.writeFloat32(value.forward);\n break;\n\n case 'TimerHandle':\n value = value as string;\n writer.writeString(value);\n break;\n\n case 'Guid':\n value = value as string;\n writer.writeString(value);\n break;\n\n case 'ClientIdentityInfo':\n value = value as ClientIdentityInfo;\n writer.writeString(value.offlineId);\n writer.writeInt32(Object.values(value.accountIds).length);\n for (const [platformFlagMaybe, accountId] of Object.entries(value.accountIds)) {\n writer.writeByte(Number(platformFlagMaybe));\n writer.writeInt32(accountId.length);\n writer.writeBytesArray(accountId);\n }\n\n break;\n\n case 'InventoryItem':\n value = value as InventoryItemStructPropertyValue;\n writer.writeInt32(value.unk1);\n writer.writeString(value.itemName);\n writer.writeInt32(value.hasItemState);\n\n if (value.hasItemState >= 1) {\n writer.writeInt32(value.itemState!.unk);\n writer.writeString(value.itemState!.pathName);\n writer.writeInt32(value.itemState!.binarySize);\n writer.writeBytesArray(value.itemState!.itemStateRaw);\n }\n break;\n\n case 'FluidBox':\n value = value as BasicStructPropertyValue;\n writer.writeFloat32(value.value);\n break;\n\n case 'SlateBrush':\n value = value as string;\n writer.writeString(value);\n break;\n\n case 'DateTime':\n value = value as string;\n writer.writeInt64(BigInt(value));\n break;\n\n // MODS\n case 'FICFrameRange': // https://github.com/Panakotta00/FicsIt-Cam/blob/master/Source/FicsItCam/Public/Data/FICTypes.h#35\n value = value as FICFrameRange;\n FICFrameRange.Serialize(writer, value);\n break;\n\n default:\n //TODO: use buildversion\n value = value as DynamicStructPropertyValue;\n DynamicStructPropertyValue.write(writer, 0, value);\n }\n }\n}\n\n\n"]}
@@ -1,9 +1,9 @@
1
1
  import { BinaryReadable } from '../../../../byte/binary-readable.interface';
2
2
  import { ByteWriter } from '../../../../byte/byte-writer.class';
3
3
  import { GUIDInfo } from '../../structs/GUIDInfo';
4
- import { BasicProperty } from './BasicProperty';
5
- export declare const isTextProperty: (property: BasicProperty) => property is TextProperty;
6
- export declare class TextProperty extends BasicProperty {
4
+ import { AbstractBaseProperty } from './AbstractBaseProperty';
5
+ export declare const isTextProperty: (property: any) => property is TextProperty;
6
+ export declare class TextProperty extends AbstractBaseProperty {
7
7
  value: TextPropertyValue;
8
8
  constructor(value: TextPropertyValue, ueType?: string, guidInfo?: GUIDInfo, index?: number);
9
9
  static Parse(reader: BinaryReadable, ueType: string, index?: number): TextProperty;
@@ -1 +1 @@
1
- {"version":3,"file":"TextProperty.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/satisfactory/types/property/generic/TextProperty.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,4CAA4C,CAAC;AAC5E,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAChE,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAClD,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAEhD,eAAO,MAAM,cAAc,aAAc,aAAa,KAAG,QAAQ,IAAI,YAAgD,CAAC;AAEtH,qBAAa,YAAa,SAAQ,aAAa;IAExB,KAAK,EAAE,iBAAiB;gBAAxB,KAAK,EAAE,iBAAiB,EAAE,MAAM,GAAE,MAAuB,EAAE,QAAQ,GAAE,QAAoB,EAAE,KAAK,GAAE,MAAU;WAIjH,KAAK,CAAC,MAAM,EAAE,cAAc,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,GAAE,MAAU,GAAG,YAAY;WAM9E,SAAS,CAAC,MAAM,EAAE,cAAc,GAAG,iBAAiB;WA+DpD,YAAY,CAAC,QAAQ,EAAE,YAAY,GAAG,MAAM;WAI5C,SAAS,CAAC,MAAM,EAAE,UAAU,EAAE,QAAQ,EAAE,YAAY,GAAG,IAAI;WAK3D,cAAc,CAAC,MAAM,EAAE,UAAU,EAAE,KAAK,EAAE,iBAAiB,GAAG,IAAI;CAuDnF;AACD,MAAM,MAAM,iBAAiB,GAAG;IAC5B,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IAGpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IAGf,SAAS,CAAC,EAAE,iBAAiB,CAAC;IAC9B,SAAS,CAAC,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,MAAM,CAAC;QAAC,aAAa,EAAE,iBAAiB,CAAC;KAAE,EAAE,CAAC;IAGrF,UAAU,CAAC,EAAE,iBAAiB,CAAC;IAC/B,aAAa,CAAC,EAAE,MAAM,CAAC;IAGvB,yBAAyB,CAAC,EAAE,OAAO,CAAC;CACvC,CAAC"}
1
+ {"version":3,"file":"TextProperty.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/satisfactory/types/property/generic/TextProperty.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,4CAA4C,CAAC;AAC5E,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAChE,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAClD,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAE9D,eAAO,MAAM,cAAc,aAAc,GAAG,KAAG,QAAQ,IAAI,YAA4E,CAAC;AAExI,qBAAa,YAAa,SAAQ,oBAAoB;IAE/B,KAAK,EAAE,iBAAiB;gBAAxB,KAAK,EAAE,iBAAiB,EAAE,MAAM,GAAE,MAAuB,EAAE,QAAQ,GAAE,QAAoB,EAAE,KAAK,GAAE,MAAU;WAIjH,KAAK,CAAC,MAAM,EAAE,cAAc,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,GAAE,MAAU,GAAG,YAAY;WAM9E,SAAS,CAAC,MAAM,EAAE,cAAc,GAAG,iBAAiB;WA+DpD,YAAY,CAAC,QAAQ,EAAE,YAAY,GAAG,MAAM;WAI5C,SAAS,CAAC,MAAM,EAAE,UAAU,EAAE,QAAQ,EAAE,YAAY,GAAG,IAAI;WAK3D,cAAc,CAAC,MAAM,EAAE,UAAU,EAAE,KAAK,EAAE,iBAAiB,GAAG,IAAI;CAuDnF;AACD,MAAM,MAAM,iBAAiB,GAAG;IAC5B,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IAGpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IAGf,SAAS,CAAC,EAAE,iBAAiB,CAAC;IAC9B,SAAS,CAAC,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,MAAM,CAAC;QAAC,aAAa,EAAE,iBAAiB,CAAC;KAAE,EAAE,CAAC;IAGrF,UAAU,CAAC,EAAE,iBAAiB,CAAC;IAC/B,aAAa,CAAC,EAAE,MAAM,CAAC;IAGvB,yBAAyB,CAAC,EAAE,OAAO,CAAC;CACvC,CAAC"}
@@ -2,10 +2,10 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.TextProperty = exports.isTextProperty = void 0;
4
4
  const GUIDInfo_1 = require("../../structs/GUIDInfo");
5
- const BasicProperty_1 = require("./BasicProperty");
6
- const isTextProperty = (property) => property.type === 'TextProperty';
5
+ const AbstractBaseProperty_1 = require("./AbstractBaseProperty");
6
+ const isTextProperty = (property) => !Array.isArray(property) && property.type === 'TextProperty';
7
7
  exports.isTextProperty = isTextProperty;
8
- class TextProperty extends BasicProperty_1.BasicProperty {
8
+ class TextProperty extends AbstractBaseProperty_1.AbstractBaseProperty {
9
9
  constructor(value, ueType = 'TextProperty', guidInfo = undefined, index = 0) {
10
10
  super({ type: 'TextProperty', ueType, guidInfo, index });
11
11
  this.value = value;
@@ -1 +1 @@
1
- {"version":3,"file":"TextProperty.js","sourceRoot":"","sources":["../../../../../../src/parser/satisfactory/types/property/generic/TextProperty.ts"],"names":[],"mappings":"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","sourcesContent":["import { BinaryReadable } from '../../../../byte/binary-readable.interface';\nimport { ByteWriter } from '../../../../byte/byte-writer.class';\nimport { GUIDInfo } from '../../structs/GUIDInfo';\nimport { BasicProperty } from './BasicProperty';\n\nexport const isTextProperty = (property: BasicProperty): property is TextProperty => property.type === 'TextProperty';\n\nexport class TextProperty extends BasicProperty {\n\n constructor(public value: TextPropertyValue, ueType: string = 'TextProperty', guidInfo: GUIDInfo = undefined, index: number = 0) {\n super({ type: 'TextProperty', ueType, guidInfo, index });\n }\n\n public static Parse(reader: BinaryReadable, ueType: string, index: number = 0): TextProperty {\n const guidInfo = GUIDInfo.read(reader);\n const value = TextProperty.ReadValue(reader);\n return new TextProperty(value, ueType, guidInfo, index);\n }\n\n public static ReadValue(reader: BinaryReadable): TextPropertyValue {\n const prop: TextPropertyValue = {\n flags: reader.readInt32(),\n historyType: reader.readByte()\n };\n\n switch (prop.historyType) {\n // HISTORYTYPE_BASE\n case 0:\n prop.namespace = reader.readString();\n prop.key = reader.readString();\n prop.value = reader.readString();\n break;\n // HISTORYTYPE_NAMEDFORMAT\n case 1:\n // HISTORYTYPE_ARGUMENTFORMAT\n case 3:\n prop.sourceFmt = TextProperty.ReadValue(reader);\n\n const argumentsCount = reader.readInt32();\n prop.arguments = [];\n\n for (let i = 0; i < argumentsCount; i++) {\n let currentArgumentsData: any = {};\n currentArgumentsData.name = reader.readString();\n currentArgumentsData.valueType = reader.readByte();\n\n switch (currentArgumentsData.valueType) {\n case 4:\n currentArgumentsData.argumentValue = TextProperty.ReadValue(reader);\n break;\n default:\n\n throw new Error('Unimplemented FormatArgumentType `' + currentArgumentsData.valueType);\n }\n\n prop.arguments.push(currentArgumentsData);\n }\n break;\n // see https://github.com/EpicGames/UnrealEngine/blob/4.25/Engine/Source/Runtime/Core/Private/Internationalization/TextHistory.cpp#L2268\n // HISTORYTYPE_TRANSFORM\n case 10:\n prop.sourceText = TextProperty.ReadValue(reader);\n prop.transformType = reader.readByte();\n break;\n // HISTORYTYPE_NONE\n case 255:\n // See: https://github.com/EpicGames/UnrealEngine/blob/4.25/Engine/Source/Runtime/Core/Private/Internationalization/Text.cpp#L894\n\n prop.hasCultureInvariantString = reader.readInt32() === 1;\n\n if (prop.hasCultureInvariantString) {\n prop.value = reader.readString();\n }\n break;\n\n default:\n throw new Error('Unimplemented historyType `' + prop.historyType);\n }\n\n return prop;\n }\n\n public static CalcOverhead(property: TextProperty): number {\n return 1;\n }\n\n public static Serialize(writer: ByteWriter, property: TextProperty): void {\n GUIDInfo.write(writer, property.guidInfo);\n TextProperty.SerializeValue(writer, property.value);\n }\n\n public static SerializeValue(writer: ByteWriter, value: TextPropertyValue): void {\n writer.writeInt32(value.flags);\n writer.writeByte(value.historyType);\n\n\n switch (value.historyType) {\n // HISTORYTYPE_BASE\n case 0:\n writer.writeString(value.namespace!);\n writer.writeString(value.key!);\n writer.writeString(value.value!);\n break;\n // HISTORYTYPE_NAMEDFORMAT\n case 1:\n // HISTORYTYPE_ARGUMENTFORMAT\n case 3:\n TextProperty.SerializeValue(writer, value.sourceFmt!);\n\n writer.writeInt32(value.arguments!.length);\n\n for (const arg of value.arguments!) {\n let currentArgumentsData: any = {};\n writer.writeString(arg.name);\n writer.writeByte(arg.valueType);\n\n switch (arg.valueType) {\n case 4:\n TextProperty.SerializeValue(writer, arg.argumentValue!);\n break;\n default:\n\n throw new Error('Unimplemented FormatArgumentType `' + currentArgumentsData.valueType);\n }\n }\n break;\n // see https://github.com/EpicGames/UnrealEngine/blob/4.25/Engine/Source/Runtime/Core/Private/Internationalization/TextHistory.cpp#L2268\n // HISTORYTYPE_TRANSFORM\n case 10:\n TextProperty.SerializeValue(writer, value.sourceText!);\n writer.writeByte(value.transformType!);\n break;\n // HISTORYTYPE_NONE\n case 255:\n // See: https://github.com/EpicGames/UnrealEngine/blob/4.25/Engine/Source/Runtime/Core/Private/Internationalization/Text.cpp#L894\n\n writer.writeInt32(value.hasCultureInvariantString ? 1 : 0);\n\n if (value.hasCultureInvariantString) {\n writer.writeString(value.value!);\n }\n break;\n default:\n throw new Error('Unimplemented historyType `' + value.historyType);\n }\n }\n}\nexport type TextPropertyValue = {\n flags: number;\n historyType: number;\n\n // flag 0\n namespace?: string;\n key?: string;\n value?: string;\n\n // flag 1 + 3\n sourceFmt?: TextPropertyValue;\n arguments?: { name: string; valueType: number; argumentValue: TextPropertyValue; }[];\n\n // flag 10\n sourceText?: TextPropertyValue;\n transformType?: number;\n\n // flag 255, reusing value\n hasCultureInvariantString?: boolean;\n};\n\n"]}
1
+ {"version":3,"file":"TextProperty.js","sourceRoot":"","sources":["../../../../../../src/parser/satisfactory/types/property/generic/TextProperty.ts"],"names":[],"mappings":";;;AAEA,qDAAkD;AAClD,iEAA8D;AAEvD,MAAM,cAAc,GAAG,CAAC,QAAa,EAA4B,EAAE,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,QAAQ,CAAC,IAAI,KAAK,cAAc,CAAC;AAA3H,QAAA,cAAc,kBAA6G;AAExI,MAAa,YAAa,SAAQ,2CAAoB;IAElD,YAAmB,KAAwB,EAAE,SAAiB,cAAc,EAAE,WAAqB,SAAS,EAAE,QAAgB,CAAC;QAC3H,KAAK,CAAC,EAAE,IAAI,EAAE,cAAc,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC,CAAC;QAD1C,UAAK,GAAL,KAAK,CAAmB;IAE3C,CAAC;IAEM,MAAM,CAAC,KAAK,CAAC,MAAsB,EAAE,MAAc,EAAE,QAAgB,CAAC;QACzE,MAAM,QAAQ,GAAG,mBAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QACvC,MAAM,KAAK,GAAG,YAAY,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;QAC7C,OAAO,IAAI,YAAY,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAC;IAC5D,CAAC;IAEM,MAAM,CAAC,SAAS,CAAC,MAAsB;QAC1C,MAAM,IAAI,GAAsB;YAC5B,KAAK,EAAE,MAAM,CAAC,SAAS,EAAE;YACzB,WAAW,EAAE,MAAM,CAAC,QAAQ,EAAE;SACjC,CAAC;QAEF,QAAQ,IAAI,CAAC,WAAW,EAAE,CAAC;YAEvB,KAAK,CAAC;gBACF,IAAI,CAAC,SAAS,GAAG,MAAM,CAAC,UAAU,EAAE,CAAC;gBACrC,IAAI,CAAC,GAAG,GAAG,MAAM,CAAC,UAAU,EAAE,CAAC;gBAC/B,IAAI,CAAC,KAAK,GAAG,MAAM,CAAC,UAAU,EAAE,CAAC;gBACjC,MAAM;YAEV,KAAK,CAAC,CAAC;YAEP,KAAK,CAAC;gBACF,IAAI,CAAC,SAAS,GAAG,YAAY,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;gBAEhD,MAAM,cAAc,GAAG,MAAM,CAAC,SAAS,EAAE,CAAC;gBAC1C,IAAI,CAAC,SAAS,GAAG,EAAE,CAAC;gBAEpB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,cAAc,EAAE,CAAC,EAAE,EAAE,CAAC;oBACtC,IAAI,oBAAoB,GAAQ,EAAE,CAAC;oBACnC,oBAAoB,CAAC,IAAI,GAAG,MAAM,CAAC,UAAU,EAAE,CAAC;oBAChD,oBAAoB,CAAC,SAAS,GAAG,MAAM,CAAC,QAAQ,EAAE,CAAC;oBAEnD,QAAQ,oBAAoB,CAAC,SAAS,EAAE,CAAC;wBACrC,KAAK,CAAC;4BACF,oBAAoB,CAAC,aAAa,GAAG,YAAY,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;4BACpE,MAAM;wBACV;4BAEI,MAAM,IAAI,KAAK,CAAC,oCAAoC,GAAG,oBAAoB,CAAC,SAAS,CAAC,CAAC;oBAC/F,CAAC;oBAED,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,oBAAoB,CAAC,CAAC;gBAC9C,CAAC;gBACD,MAAM;YAGV,KAAK,EAAE;gBACH,IAAI,CAAC,UAAU,GAAG,YAAY,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;gBACjD,IAAI,CAAC,aAAa,GAAG,MAAM,CAAC,QAAQ,EAAE,CAAC;gBACvC,MAAM;YAEV,KAAK,GAAG;gBAGJ,IAAI,CAAC,yBAAyB,GAAG,MAAM,CAAC,SAAS,EAAE,KAAK,CAAC,CAAC;gBAE1D,IAAI,IAAI,CAAC,yBAAyB,EAAE,CAAC;oBACjC,IAAI,CAAC,KAAK,GAAG,MAAM,CAAC,UAAU,EAAE,CAAC;gBACrC,CAAC;gBACD,MAAM;YAEV;gBACI,MAAM,IAAI,KAAK,CAAC,6BAA6B,GAAG,IAAI,CAAC,WAAW,CAAC,CAAC;QAC1E,CAAC;QAED,OAAO,IAAI,CAAC;IAChB,CAAC;IAEM,MAAM,CAAC,YAAY,CAAC,QAAsB;QAC7C,OAAO,CAAC,CAAC;IACb,CAAC;IAEM,MAAM,CAAC,SAAS,CAAC,MAAkB,EAAE,QAAsB;QAC9D,mBAAQ,CAAC,KAAK,CAAC,MAAM,EAAE,QAAQ,CAAC,QAAQ,CAAC,CAAC;QAC1C,YAAY,CAAC,cAAc,CAAC,MAAM,EAAE,QAAQ,CAAC,KAAK,CAAC,CAAC;IACxD,CAAC;IAEM,MAAM,CAAC,cAAc,CAAC,MAAkB,EAAE,KAAwB;QACrE,MAAM,CAAC,UAAU,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;QAC/B,MAAM,CAAC,SAAS,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC;QAGpC,QAAQ,KAAK,CAAC,WAAW,EAAE,CAAC;YAExB,KAAK,CAAC;gBACF,MAAM,CAAC,WAAW,CAAC,KAAK,CAAC,SAAU,CAAC,CAAC;gBACrC,MAAM,CAAC,WAAW,CAAC,KAAK,CAAC,GAAI,CAAC,CAAC;gBAC/B,MAAM,CAAC,WAAW,CAAC,KAAK,CAAC,KAAM,CAAC,CAAC;gBACjC,MAAM;YAEV,KAAK,CAAC,CAAC;YAEP,KAAK,CAAC;gBACF,YAAY,CAAC,cAAc,CAAC,MAAM,EAAE,KAAK,CAAC,SAAU,CAAC,CAAC;gBAEtD,MAAM,CAAC,UAAU,CAAC,KAAK,CAAC,SAAU,CAAC,MAAM,CAAC,CAAC;gBAE3C,KAAK,MAAM,GAAG,IAAI,KAAK,CAAC,SAAU,EAAE,CAAC;oBACjC,IAAI,oBAAoB,GAAQ,EAAE,CAAC;oBACnC,MAAM,CAAC,WAAW,CAAC,GAAG,CAAC,IAAI,CAAC,CAAC;oBAC7B,MAAM,CAAC,SAAS,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;oBAEhC,QAAQ,GAAG,CAAC,SAAS,EAAE,CAAC;wBACpB,KAAK,CAAC;4BACF,YAAY,CAAC,cAAc,CAAC,MAAM,EAAE,GAAG,CAAC,aAAc,CAAC,CAAC;4BACxD,MAAM;wBACV;4BAEI,MAAM,IAAI,KAAK,CAAC,oCAAoC,GAAG,oBAAoB,CAAC,SAAS,CAAC,CAAC;oBAC/F,CAAC;gBACL,CAAC;gBACD,MAAM;YAGV,KAAK,EAAE;gBACH,YAAY,CAAC,cAAc,CAAC,MAAM,EAAE,KAAK,CAAC,UAAW,CAAC,CAAC;gBACvD,MAAM,CAAC,SAAS,CAAC,KAAK,CAAC,aAAc,CAAC,CAAC;gBACvC,MAAM;YAEV,KAAK,GAAG;gBAGJ,MAAM,CAAC,UAAU,CAAC,KAAK,CAAC,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBAE3D,IAAI,KAAK,CAAC,yBAAyB,EAAE,CAAC;oBAClC,MAAM,CAAC,WAAW,CAAC,KAAK,CAAC,KAAM,CAAC,CAAC;gBACrC,CAAC;gBACD,MAAM;YACV;gBACI,MAAM,IAAI,KAAK,CAAC,6BAA6B,GAAG,KAAK,CAAC,WAAW,CAAC,CAAC;QAC3E,CAAC;IACL,CAAC;CACJ;AA3ID,oCA2IC","sourcesContent":["import { BinaryReadable } from '../../../../byte/binary-readable.interface';\nimport { ByteWriter } from '../../../../byte/byte-writer.class';\nimport { GUIDInfo } from '../../structs/GUIDInfo';\nimport { AbstractBaseProperty } from './AbstractBaseProperty';\n\nexport const isTextProperty = (property: any): property is TextProperty => !Array.isArray(property) && property.type === 'TextProperty';\n\nexport class TextProperty extends AbstractBaseProperty {\n\n constructor(public value: TextPropertyValue, ueType: string = 'TextProperty', guidInfo: GUIDInfo = undefined, index: number = 0) {\n super({ type: 'TextProperty', ueType, guidInfo, index });\n }\n\n public static Parse(reader: BinaryReadable, ueType: string, index: number = 0): TextProperty {\n const guidInfo = GUIDInfo.read(reader);\n const value = TextProperty.ReadValue(reader);\n return new TextProperty(value, ueType, guidInfo, index);\n }\n\n public static ReadValue(reader: BinaryReadable): TextPropertyValue {\n const prop: TextPropertyValue = {\n flags: reader.readInt32(),\n historyType: reader.readByte()\n };\n\n switch (prop.historyType) {\n // HISTORYTYPE_BASE\n case 0:\n prop.namespace = reader.readString();\n prop.key = reader.readString();\n prop.value = reader.readString();\n break;\n // HISTORYTYPE_NAMEDFORMAT\n case 1:\n // HISTORYTYPE_ARGUMENTFORMAT\n case 3:\n prop.sourceFmt = TextProperty.ReadValue(reader);\n\n const argumentsCount = reader.readInt32();\n prop.arguments = [];\n\n for (let i = 0; i < argumentsCount; i++) {\n let currentArgumentsData: any = {};\n currentArgumentsData.name = reader.readString();\n currentArgumentsData.valueType = reader.readByte();\n\n switch (currentArgumentsData.valueType) {\n case 4:\n currentArgumentsData.argumentValue = TextProperty.ReadValue(reader);\n break;\n default:\n\n throw new Error('Unimplemented FormatArgumentType `' + currentArgumentsData.valueType);\n }\n\n prop.arguments.push(currentArgumentsData);\n }\n break;\n // see https://github.com/EpicGames/UnrealEngine/blob/4.25/Engine/Source/Runtime/Core/Private/Internationalization/TextHistory.cpp#L2268\n // HISTORYTYPE_TRANSFORM\n case 10:\n prop.sourceText = TextProperty.ReadValue(reader);\n prop.transformType = reader.readByte();\n break;\n // HISTORYTYPE_NONE\n case 255:\n // See: https://github.com/EpicGames/UnrealEngine/blob/4.25/Engine/Source/Runtime/Core/Private/Internationalization/Text.cpp#L894\n\n prop.hasCultureInvariantString = reader.readInt32() === 1;\n\n if (prop.hasCultureInvariantString) {\n prop.value = reader.readString();\n }\n break;\n\n default:\n throw new Error('Unimplemented historyType `' + prop.historyType);\n }\n\n return prop;\n }\n\n public static CalcOverhead(property: TextProperty): number {\n return 1;\n }\n\n public static Serialize(writer: ByteWriter, property: TextProperty): void {\n GUIDInfo.write(writer, property.guidInfo);\n TextProperty.SerializeValue(writer, property.value);\n }\n\n public static SerializeValue(writer: ByteWriter, value: TextPropertyValue): void {\n writer.writeInt32(value.flags);\n writer.writeByte(value.historyType);\n\n\n switch (value.historyType) {\n // HISTORYTYPE_BASE\n case 0:\n writer.writeString(value.namespace!);\n writer.writeString(value.key!);\n writer.writeString(value.value!);\n break;\n // HISTORYTYPE_NAMEDFORMAT\n case 1:\n // HISTORYTYPE_ARGUMENTFORMAT\n case 3:\n TextProperty.SerializeValue(writer, value.sourceFmt!);\n\n writer.writeInt32(value.arguments!.length);\n\n for (const arg of value.arguments!) {\n let currentArgumentsData: any = {};\n writer.writeString(arg.name);\n writer.writeByte(arg.valueType);\n\n switch (arg.valueType) {\n case 4:\n TextProperty.SerializeValue(writer, arg.argumentValue!);\n break;\n default:\n\n throw new Error('Unimplemented FormatArgumentType `' + currentArgumentsData.valueType);\n }\n }\n break;\n // see https://github.com/EpicGames/UnrealEngine/blob/4.25/Engine/Source/Runtime/Core/Private/Internationalization/TextHistory.cpp#L2268\n // HISTORYTYPE_TRANSFORM\n case 10:\n TextProperty.SerializeValue(writer, value.sourceText!);\n writer.writeByte(value.transformType!);\n break;\n // HISTORYTYPE_NONE\n case 255:\n // See: https://github.com/EpicGames/UnrealEngine/blob/4.25/Engine/Source/Runtime/Core/Private/Internationalization/Text.cpp#L894\n\n writer.writeInt32(value.hasCultureInvariantString ? 1 : 0);\n\n if (value.hasCultureInvariantString) {\n writer.writeString(value.value!);\n }\n break;\n default:\n throw new Error('Unimplemented historyType `' + value.historyType);\n }\n }\n}\nexport type TextPropertyValue = {\n flags: number;\n historyType: number;\n\n // flag 0\n namespace?: string;\n key?: string;\n value?: string;\n\n // flag 1 + 3\n sourceFmt?: TextPropertyValue;\n arguments?: { name: string; valueType: number; argumentValue: TextPropertyValue; }[];\n\n // flag 10\n sourceText?: TextPropertyValue;\n transformType?: number;\n\n // flag 255, reusing value\n hasCultureInvariantString?: boolean;\n};\n\n"]}
@@ -1,9 +1,9 @@
1
1
  import { BinaryReadable } from '../../../../byte/binary-readable.interface';
2
2
  import { ByteWriter } from '../../../../byte/byte-writer.class';
3
3
  import { GUIDInfo } from '../../structs/GUIDInfo';
4
- import { BasicProperty } from './BasicProperty';
5
- export declare const isUint32Property: (property: BasicProperty) => property is Uint32Property;
6
- export declare class Uint32Property extends BasicProperty {
4
+ import { AbstractBaseProperty } from './AbstractBaseProperty';
5
+ export declare const isUint32Property: (property: any) => property is Uint32Property;
6
+ export declare class Uint32Property extends AbstractBaseProperty {
7
7
  value: number;
8
8
  constructor(value: number, ueType?: string, guidInfo?: GUIDInfo, index?: number);
9
9
  static Parse(reader: BinaryReadable, ueType: string, index?: number): Uint32Property;
@@ -1 +1 @@
1
- {"version":3,"file":"Uint32Property.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/satisfactory/types/property/generic/Uint32Property.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,4CAA4C,CAAC;AAC5E,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAChE,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAClD,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAEhD,eAAO,MAAM,gBAAgB,aAAc,aAAa,KAAG,QAAQ,IAAI,cAAoD,CAAC;AAE5H,qBAAa,cAAe,SAAQ,aAAa;IAE1B,KAAK,EAAE,MAAM;gBAAb,KAAK,EAAE,MAAM,EAAE,MAAM,GAAE,MAAyB,EAAE,QAAQ,GAAE,QAAoB,EAAE,KAAK,GAAE,MAAU;WAIxG,KAAK,CAAC,MAAM,EAAE,cAAc,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,GAAE,MAAU,GAAG,cAAc;WAMhF,SAAS,CAAC,MAAM,EAAE,cAAc,GAAG,MAAM;WAIzC,YAAY,CAAC,QAAQ,EAAE,cAAc,GAAG,MAAM;WAI9C,SAAS,CAAC,MAAM,EAAE,UAAU,EAAE,QAAQ,EAAE,cAAc,GAAG,IAAI;WAK7D,cAAc,CAAC,MAAM,EAAE,UAAU,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI;CAGxE"}
1
+ {"version":3,"file":"Uint32Property.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/satisfactory/types/property/generic/Uint32Property.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,4CAA4C,CAAC;AAC5E,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAChE,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAClD,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAG9D,eAAO,MAAM,gBAAgB,aAAc,GAAG,KAAG,QAAQ,IAAI,cAAgF,CAAC;AAE9I,qBAAa,cAAe,SAAQ,oBAAoB;IAEjC,KAAK,EAAE,MAAM;gBAAb,KAAK,EAAE,MAAM,EAAE,MAAM,GAAE,MAAyB,EAAE,QAAQ,GAAE,QAAoB,EAAE,KAAK,GAAE,MAAU;WAIxG,KAAK,CAAC,MAAM,EAAE,cAAc,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,GAAE,MAAU,GAAG,cAAc;WAMhF,SAAS,CAAC,MAAM,EAAE,cAAc,GAAG,MAAM;WAIzC,YAAY,CAAC,QAAQ,EAAE,cAAc,GAAG,MAAM;WAI9C,SAAS,CAAC,MAAM,EAAE,UAAU,EAAE,QAAQ,EAAE,cAAc,GAAG,IAAI;WAK7D,cAAc,CAAC,MAAM,EAAE,UAAU,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI;CAGxE"}
@@ -2,10 +2,10 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.Uint32Property = exports.isUint32Property = void 0;
4
4
  const GUIDInfo_1 = require("../../structs/GUIDInfo");
5
- const BasicProperty_1 = require("./BasicProperty");
6
- const isUint32Property = (property) => property.type === 'UInt32Property';
5
+ const AbstractBaseProperty_1 = require("./AbstractBaseProperty");
6
+ const isUint32Property = (property) => !Array.isArray(property) && property.type === 'UInt32Property';
7
7
  exports.isUint32Property = isUint32Property;
8
- class Uint32Property extends BasicProperty_1.BasicProperty {
8
+ class Uint32Property extends AbstractBaseProperty_1.AbstractBaseProperty {
9
9
  constructor(value, ueType = 'UInt32Property', guidInfo = undefined, index = 0) {
10
10
  super({ type: 'UInt32Property', ueType, guidInfo, index });
11
11
  this.value = value;
@@ -1 +1 @@
1
- {"version":3,"file":"Uint32Property.js","sourceRoot":"","sources":["../../../../../../src/parser/satisfactory/types/property/generic/Uint32Property.ts"],"names":[],"mappings":";;;AAEA,qDAAkD;AAClD,mDAAgD;AAEzC,MAAM,gBAAgB,GAAG,CAAC,QAAuB,EAA8B,EAAE,CAAC,QAAQ,CAAC,IAAI,KAAK,gBAAgB,CAAC;AAA/G,QAAA,gBAAgB,oBAA+F;AAE5H,MAAa,cAAe,SAAQ,6BAAa;IAE7C,YAAmB,KAAa,EAAE,SAAiB,gBAAgB,EAAE,WAAqB,SAAS,EAAE,QAAgB,CAAC;QAClH,KAAK,CAAC,EAAE,IAAI,EAAE,gBAAgB,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC,CAAC;QAD5C,UAAK,GAAL,KAAK,CAAQ;IAEhC,CAAC;IAEM,MAAM,CAAC,KAAK,CAAC,MAAsB,EAAE,MAAc,EAAE,QAAgB,CAAC;QACzE,MAAM,QAAQ,GAAG,mBAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QACvC,MAAM,KAAK,GAAG,cAAc,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;QAC/C,OAAO,IAAI,cAAc,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAC;IAC9D,CAAC;IAEM,MAAM,CAAC,SAAS,CAAC,MAAsB;QAC1C,OAAO,MAAM,CAAC,UAAU,EAAE,CAAC;IAC/B,CAAC;IAEM,MAAM,CAAC,YAAY,CAAC,QAAwB;QAC/C,OAAO,CAAC,CAAC;IACb,CAAC;IAEM,MAAM,CAAC,SAAS,CAAC,MAAkB,EAAE,QAAwB;QAChE,mBAAQ,CAAC,KAAK,CAAC,MAAM,EAAE,QAAQ,CAAC,QAAQ,CAAC,CAAC;QAC1C,cAAc,CAAC,cAAc,CAAC,MAAM,EAAE,QAAQ,CAAC,KAAK,CAAC,CAAC;IAC1D,CAAC;IAEM,MAAM,CAAC,cAAc,CAAC,MAAkB,EAAE,KAAa;QAC1D,MAAM,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;IAC9B,CAAC;CACJ;AA5BD,wCA4BC","sourcesContent":["import { BinaryReadable } from '../../../../byte/binary-readable.interface';\nimport { ByteWriter } from '../../../../byte/byte-writer.class';\nimport { GUIDInfo } from '../../structs/GUIDInfo';\nimport { BasicProperty } from './BasicProperty';\n\nexport const isUint32Property = (property: BasicProperty): property is Uint32Property => property.type === 'UInt32Property';\n\nexport class Uint32Property extends BasicProperty {\n\n constructor(public value: number, ueType: string = 'UInt32Property', guidInfo: GUIDInfo = undefined, index: number = 0) {\n super({ type: 'UInt32Property', ueType, guidInfo, index });\n }\n\n public static Parse(reader: BinaryReadable, ueType: string, index: number = 0): Uint32Property {\n const guidInfo = GUIDInfo.read(reader);\n const value = Uint32Property.ReadValue(reader);\n return new Uint32Property(value, ueType, guidInfo, index);\n }\n\n public static ReadValue(reader: BinaryReadable): number {\n return reader.readUint32();\n }\n\n public static CalcOverhead(property: Uint32Property): number {\n return 1;\n }\n\n public static Serialize(writer: ByteWriter, property: Uint32Property): void {\n GUIDInfo.write(writer, property.guidInfo);\n Uint32Property.SerializeValue(writer, property.value);\n }\n\n public static SerializeValue(writer: ByteWriter, value: number): void {\n writer.writeUint32(value);\n }\n}\n"]}
1
+ {"version":3,"file":"Uint32Property.js","sourceRoot":"","sources":["../../../../../../src/parser/satisfactory/types/property/generic/Uint32Property.ts"],"names":[],"mappings":";;;AAEA,qDAAkD;AAClD,iEAA8D;AAGvD,MAAM,gBAAgB,GAAG,CAAC,QAAa,EAA8B,EAAE,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,QAAQ,CAAC,IAAI,KAAK,gBAAgB,CAAC;AAAjI,QAAA,gBAAgB,oBAAiH;AAE9I,MAAa,cAAe,SAAQ,2CAAoB;IAEpD,YAAmB,KAAa,EAAE,SAAiB,gBAAgB,EAAE,WAAqB,SAAS,EAAE,QAAgB,CAAC;QAClH,KAAK,CAAC,EAAE,IAAI,EAAE,gBAAgB,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC,CAAC;QAD5C,UAAK,GAAL,KAAK,CAAQ;IAEhC,CAAC;IAEM,MAAM,CAAC,KAAK,CAAC,MAAsB,EAAE,MAAc,EAAE,QAAgB,CAAC;QACzE,MAAM,QAAQ,GAAG,mBAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QACvC,MAAM,KAAK,GAAG,cAAc,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;QAC/C,OAAO,IAAI,cAAc,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAC;IAC9D,CAAC;IAEM,MAAM,CAAC,SAAS,CAAC,MAAsB;QAC1C,OAAO,MAAM,CAAC,UAAU,EAAE,CAAC;IAC/B,CAAC;IAEM,MAAM,CAAC,YAAY,CAAC,QAAwB;QAC/C,OAAO,CAAC,CAAC;IACb,CAAC;IAEM,MAAM,CAAC,SAAS,CAAC,MAAkB,EAAE,QAAwB;QAChE,mBAAQ,CAAC,KAAK,CAAC,MAAM,EAAE,QAAQ,CAAC,QAAQ,CAAC,CAAC;QAC1C,cAAc,CAAC,cAAc,CAAC,MAAM,EAAE,QAAQ,CAAC,KAAK,CAAC,CAAC;IAC1D,CAAC;IAEM,MAAM,CAAC,cAAc,CAAC,MAAkB,EAAE,KAAa;QAC1D,MAAM,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;IAC9B,CAAC;CACJ;AA5BD,wCA4BC","sourcesContent":["import { BinaryReadable } from '../../../../byte/binary-readable.interface';\nimport { ByteWriter } from '../../../../byte/byte-writer.class';\nimport { GUIDInfo } from '../../structs/GUIDInfo';\nimport { AbstractBaseProperty } from './AbstractBaseProperty';\n\n\nexport const isUint32Property = (property: any): property is Uint32Property => !Array.isArray(property) && property.type === 'UInt32Property';\n\nexport class Uint32Property extends AbstractBaseProperty {\n\n constructor(public value: number, ueType: string = 'UInt32Property', guidInfo: GUIDInfo = undefined, index: number = 0) {\n super({ type: 'UInt32Property', ueType, guidInfo, index });\n }\n\n public static Parse(reader: BinaryReadable, ueType: string, index: number = 0): Uint32Property {\n const guidInfo = GUIDInfo.read(reader);\n const value = Uint32Property.ReadValue(reader);\n return new Uint32Property(value, ueType, guidInfo, index);\n }\n\n public static ReadValue(reader: BinaryReadable): number {\n return reader.readUint32();\n }\n\n public static CalcOverhead(property: Uint32Property): number {\n return 1;\n }\n\n public static Serialize(writer: ByteWriter, property: Uint32Property): void {\n GUIDInfo.write(writer, property.guidInfo);\n Uint32Property.SerializeValue(writer, property.value);\n }\n\n public static SerializeValue(writer: ByteWriter, value: number): void {\n writer.writeUint32(value);\n }\n}\n"]}
@@ -1,9 +1,9 @@
1
1
  import { BinaryReadable } from '../../../../byte/binary-readable.interface';
2
2
  import { ByteWriter } from '../../../../byte/byte-writer.class';
3
3
  import { GUIDInfo } from '../../structs/GUIDInfo';
4
- import { BasicProperty } from './BasicProperty';
5
- export declare const isUInt64Property: (property: BasicProperty) => property is Uint64Property;
6
- export declare class Uint64Property extends BasicProperty {
4
+ import { AbstractBaseProperty } from './AbstractBaseProperty';
5
+ export declare const isUInt64Property: (property: any) => property is Uint64Property;
6
+ export declare class Uint64Property extends AbstractBaseProperty {
7
7
  value: string;
8
8
  constructor(value: string, ueType?: string, guidInfo?: GUIDInfo, index?: number);
9
9
  static Parse(reader: BinaryReadable, ueType: string, index?: number): Uint64Property;
@@ -1 +1 @@
1
- {"version":3,"file":"Uint64Property.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/satisfactory/types/property/generic/Uint64Property.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,4CAA4C,CAAC;AAC5E,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAChE,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAClD,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAEhD,eAAO,MAAM,gBAAgB,aAAc,aAAa,KAAG,QAAQ,IAAI,cAAoD,CAAC;AAE5H,qBAAa,cAAe,SAAQ,aAAa;IAE1B,KAAK,EAAE,MAAM;gBAAb,KAAK,EAAE,MAAM,EAAE,MAAM,GAAE,MAAyB,EAAE,QAAQ,GAAE,QAAoB,EAAE,KAAK,GAAE,MAAU;WAIxG,KAAK,CAAC,MAAM,EAAE,cAAc,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,GAAE,MAAU,GAAG,cAAc;WAMhF,SAAS,CAAC,MAAM,EAAE,cAAc,GAAG,MAAM;WAIzC,YAAY,CAAC,QAAQ,EAAE,cAAc,GAAG,MAAM;WAI9C,SAAS,CAAC,MAAM,EAAE,UAAU,EAAE,QAAQ,EAAE,cAAc,GAAG,IAAI;WAK7D,cAAc,CAAC,MAAM,EAAE,UAAU,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI;CAGxE"}
1
+ {"version":3,"file":"Uint64Property.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/satisfactory/types/property/generic/Uint64Property.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,4CAA4C,CAAC;AAC5E,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAChE,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAClD,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAE9D,eAAO,MAAM,gBAAgB,aAAc,GAAG,KAAG,QAAQ,IAAI,cAAgF,CAAC;AAE9I,qBAAa,cAAe,SAAQ,oBAAoB;IAEjC,KAAK,EAAE,MAAM;gBAAb,KAAK,EAAE,MAAM,EAAE,MAAM,GAAE,MAAyB,EAAE,QAAQ,GAAE,QAAoB,EAAE,KAAK,GAAE,MAAU;WAIxG,KAAK,CAAC,MAAM,EAAE,cAAc,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,GAAE,MAAU,GAAG,cAAc;WAMhF,SAAS,CAAC,MAAM,EAAE,cAAc,GAAG,MAAM;WAIzC,YAAY,CAAC,QAAQ,EAAE,cAAc,GAAG,MAAM;WAI9C,SAAS,CAAC,MAAM,EAAE,UAAU,EAAE,QAAQ,EAAE,cAAc,GAAG,IAAI;WAK7D,cAAc,CAAC,MAAM,EAAE,UAAU,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI;CAGxE"}
@@ -2,10 +2,10 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.Uint64Property = exports.isUInt64Property = void 0;
4
4
  const GUIDInfo_1 = require("../../structs/GUIDInfo");
5
- const BasicProperty_1 = require("./BasicProperty");
6
- const isUInt64Property = (property) => property.type === 'UInt64Property';
5
+ const AbstractBaseProperty_1 = require("./AbstractBaseProperty");
6
+ const isUInt64Property = (property) => !Array.isArray(property) && property.type === 'UInt64Property';
7
7
  exports.isUInt64Property = isUInt64Property;
8
- class Uint64Property extends BasicProperty_1.BasicProperty {
8
+ class Uint64Property extends AbstractBaseProperty_1.AbstractBaseProperty {
9
9
  constructor(value, ueType = 'UInt64Property', guidInfo = undefined, index = 0) {
10
10
  super({ type: 'UInt64Property', ueType, guidInfo, index });
11
11
  this.value = value;
@@ -1 +1 @@
1
- {"version":3,"file":"Uint64Property.js","sourceRoot":"","sources":["../../../../../../src/parser/satisfactory/types/property/generic/Uint64Property.ts"],"names":[],"mappings":";;;AAEA,qDAAkD;AAClD,mDAAgD;AAEzC,MAAM,gBAAgB,GAAG,CAAC,QAAuB,EAA8B,EAAE,CAAC,QAAQ,CAAC,IAAI,KAAK,gBAAgB,CAAC;AAA/G,QAAA,gBAAgB,oBAA+F;AAE5H,MAAa,cAAe,SAAQ,6BAAa;IAE7C,YAAmB,KAAa,EAAE,SAAiB,gBAAgB,EAAE,WAAqB,SAAS,EAAE,QAAgB,CAAC;QAClH,KAAK,CAAC,EAAE,IAAI,EAAE,gBAAgB,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC,CAAC;QAD5C,UAAK,GAAL,KAAK,CAAQ;IAEhC,CAAC;IAEM,MAAM,CAAC,KAAK,CAAC,MAAsB,EAAE,MAAc,EAAE,QAAgB,CAAC;QACzE,MAAM,QAAQ,GAAG,mBAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QACvC,MAAM,KAAK,GAAG,cAAc,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;QAC/C,OAAO,IAAI,cAAc,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAC;IAC9D,CAAC;IAEM,MAAM,CAAC,SAAS,CAAC,MAAsB;QAC1C,OAAO,MAAM,CAAC,UAAU,EAAE,CAAC,QAAQ,EAAE,CAAC;IAC1C,CAAC;IAEM,MAAM,CAAC,YAAY,CAAC,QAAwB;QAC/C,OAAO,CAAC,CAAC;IACb,CAAC;IAEM,MAAM,CAAC,SAAS,CAAC,MAAkB,EAAE,QAAwB;QAChE,mBAAQ,CAAC,KAAK,CAAC,MAAM,EAAE,QAAQ,CAAC,QAAQ,CAAC,CAAC;QAC1C,cAAc,CAAC,cAAc,CAAC,MAAM,EAAE,QAAQ,CAAC,KAAK,CAAC,CAAC;IAC1D,CAAC;IAEM,MAAM,CAAC,cAAc,CAAC,MAAkB,EAAE,KAAa;QAC1D,MAAM,CAAC,WAAW,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC;IACtC,CAAC;CACJ;AA5BD,wCA4BC","sourcesContent":["import { BinaryReadable } from '../../../../byte/binary-readable.interface';\nimport { ByteWriter } from '../../../../byte/byte-writer.class';\nimport { GUIDInfo } from '../../structs/GUIDInfo';\nimport { BasicProperty } from './BasicProperty';\n\nexport const isUInt64Property = (property: BasicProperty): property is Uint64Property => property.type === 'UInt64Property';\n\nexport class Uint64Property extends BasicProperty {\n\n constructor(public value: string, ueType: string = 'UInt64Property', guidInfo: GUIDInfo = undefined, index: number = 0) {\n super({ type: 'UInt64Property', ueType, guidInfo, index });\n }\n\n public static Parse(reader: BinaryReadable, ueType: string, index: number = 0): Uint64Property {\n const guidInfo = GUIDInfo.read(reader);\n const value = Uint64Property.ReadValue(reader);\n return new Uint64Property(value, ueType, guidInfo, index);\n }\n\n public static ReadValue(reader: BinaryReadable): string {\n return reader.readUint64().toString();\n }\n\n public static CalcOverhead(property: Uint64Property): number {\n return 1;\n }\n\n public static Serialize(writer: ByteWriter, property: Uint64Property): void {\n GUIDInfo.write(writer, property.guidInfo);\n Uint64Property.SerializeValue(writer, property.value);\n }\n\n public static SerializeValue(writer: ByteWriter, value: string): void {\n writer.writeUint64(BigInt(value));\n }\n}\n"]}
1
+ {"version":3,"file":"Uint64Property.js","sourceRoot":"","sources":["../../../../../../src/parser/satisfactory/types/property/generic/Uint64Property.ts"],"names":[],"mappings":";;;AAEA,qDAAkD;AAClD,iEAA8D;AAEvD,MAAM,gBAAgB,GAAG,CAAC,QAAa,EAA8B,EAAE,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,QAAQ,CAAC,IAAI,KAAK,gBAAgB,CAAC;AAAjI,QAAA,gBAAgB,oBAAiH;AAE9I,MAAa,cAAe,SAAQ,2CAAoB;IAEpD,YAAmB,KAAa,EAAE,SAAiB,gBAAgB,EAAE,WAAqB,SAAS,EAAE,QAAgB,CAAC;QAClH,KAAK,CAAC,EAAE,IAAI,EAAE,gBAAgB,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC,CAAC;QAD5C,UAAK,GAAL,KAAK,CAAQ;IAEhC,CAAC;IAEM,MAAM,CAAC,KAAK,CAAC,MAAsB,EAAE,MAAc,EAAE,QAAgB,CAAC;QACzE,MAAM,QAAQ,GAAG,mBAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QACvC,MAAM,KAAK,GAAG,cAAc,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;QAC/C,OAAO,IAAI,cAAc,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAC;IAC9D,CAAC;IAEM,MAAM,CAAC,SAAS,CAAC,MAAsB;QAC1C,OAAO,MAAM,CAAC,UAAU,EAAE,CAAC,QAAQ,EAAE,CAAC;IAC1C,CAAC;IAEM,MAAM,CAAC,YAAY,CAAC,QAAwB;QAC/C,OAAO,CAAC,CAAC;IACb,CAAC;IAEM,MAAM,CAAC,SAAS,CAAC,MAAkB,EAAE,QAAwB;QAChE,mBAAQ,CAAC,KAAK,CAAC,MAAM,EAAE,QAAQ,CAAC,QAAQ,CAAC,CAAC;QAC1C,cAAc,CAAC,cAAc,CAAC,MAAM,EAAE,QAAQ,CAAC,KAAK,CAAC,CAAC;IAC1D,CAAC;IAEM,MAAM,CAAC,cAAc,CAAC,MAAkB,EAAE,KAAa;QAC1D,MAAM,CAAC,WAAW,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC;IACtC,CAAC;CACJ;AA5BD,wCA4BC","sourcesContent":["import { BinaryReadable } from '../../../../byte/binary-readable.interface';\nimport { ByteWriter } from '../../../../byte/byte-writer.class';\nimport { GUIDInfo } from '../../structs/GUIDInfo';\nimport { AbstractBaseProperty } from './AbstractBaseProperty';\n\nexport const isUInt64Property = (property: any): property is Uint64Property => !Array.isArray(property) && property.type === 'UInt64Property';\n\nexport class Uint64Property extends AbstractBaseProperty {\n\n constructor(public value: string, ueType: string = 'UInt64Property', guidInfo: GUIDInfo = undefined, index: number = 0) {\n super({ type: 'UInt64Property', ueType, guidInfo, index });\n }\n\n public static Parse(reader: BinaryReadable, ueType: string, index: number = 0): Uint64Property {\n const guidInfo = GUIDInfo.read(reader);\n const value = Uint64Property.ReadValue(reader);\n return new Uint64Property(value, ueType, guidInfo, index);\n }\n\n public static ReadValue(reader: BinaryReadable): string {\n return reader.readUint64().toString();\n }\n\n public static CalcOverhead(property: Uint64Property): number {\n return 1;\n }\n\n public static Serialize(writer: ByteWriter, property: Uint64Property): void {\n GUIDInfo.write(writer, property.guidInfo);\n Uint64Property.SerializeValue(writer, property.value);\n }\n\n public static SerializeValue(writer: ByteWriter, value: string): void {\n writer.writeUint64(BigInt(value));\n }\n}\n"]}
@@ -1,9 +1,9 @@
1
1
  import { BinaryReadable } from '../../../../byte/binary-readable.interface';
2
2
  import { ByteWriter } from '../../../../byte/byte-writer.class';
3
3
  import { GUIDInfo } from '../../structs/GUIDInfo';
4
- import { BasicProperty } from './BasicProperty';
5
- export declare const isUint8Property: (property: BasicProperty) => property is Uint8Property;
6
- export declare class Uint8Property extends BasicProperty {
4
+ import { AbstractBaseProperty } from './AbstractBaseProperty';
5
+ export declare const isUint8Property: (property: any) => property is Uint8Property;
6
+ export declare class Uint8Property extends AbstractBaseProperty {
7
7
  value: number;
8
8
  constructor(value: number, ueType?: string, guidInfo?: GUIDInfo, index?: number);
9
9
  static Parse(reader: BinaryReadable, ueType: string, index?: number): Uint8Property;
@@ -1 +1 @@
1
- {"version":3,"file":"Uint8Property.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/satisfactory/types/property/generic/Uint8Property.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,4CAA4C,CAAC;AAC5E,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAChE,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAClD,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAEhD,eAAO,MAAM,eAAe,aAAc,aAAa,KAAG,QAAQ,IAAI,aAAkD,CAAC;AAEzH,qBAAa,aAAc,SAAQ,aAAa;IAEzB,KAAK,EAAE,MAAM;gBAAb,KAAK,EAAE,MAAM,EAAE,MAAM,GAAE,MAAwB,EAAE,QAAQ,GAAE,QAAoB,EAAE,KAAK,GAAE,MAAU;WAIvG,KAAK,CAAC,MAAM,EAAE,cAAc,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,GAAE,MAAU,GAAG,aAAa;WAM/E,SAAS,CAAC,MAAM,EAAE,cAAc,GAAG,MAAM;WAIzC,YAAY,CAAC,QAAQ,EAAE,aAAa,GAAG,MAAM;WAI7C,SAAS,CAAC,MAAM,EAAE,UAAU,EAAE,QAAQ,EAAE,aAAa,GAAG,IAAI;WAK5D,cAAc,CAAC,MAAM,EAAE,UAAU,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI;CAGxE"}
1
+ {"version":3,"file":"Uint8Property.d.ts","sourceRoot":"","sources":["../../../../../../src/parser/satisfactory/types/property/generic/Uint8Property.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,4CAA4C,CAAC;AAC5E,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAChE,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAClD,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAE9D,eAAO,MAAM,eAAe,aAAc,GAAG,KAAG,QAAQ,IAAI,aAA8E,CAAC;AAE3I,qBAAa,aAAc,SAAQ,oBAAoB;IAEhC,KAAK,EAAE,MAAM;gBAAb,KAAK,EAAE,MAAM,EAAE,MAAM,GAAE,MAAwB,EAAE,QAAQ,GAAE,QAAoB,EAAE,KAAK,GAAE,MAAU;WAIvG,KAAK,CAAC,MAAM,EAAE,cAAc,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,GAAE,MAAU,GAAG,aAAa;WAM/E,SAAS,CAAC,MAAM,EAAE,cAAc,GAAG,MAAM;WAIzC,YAAY,CAAC,QAAQ,EAAE,aAAa,GAAG,MAAM;WAI7C,SAAS,CAAC,MAAM,EAAE,UAAU,EAAE,QAAQ,EAAE,aAAa,GAAG,IAAI;WAK5D,cAAc,CAAC,MAAM,EAAE,UAAU,EAAE,KAAK,EAAE,MAAM,GAAG,IAAI;CAGxE"}
@@ -2,10 +2,10 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.Uint8Property = exports.isUint8Property = void 0;
4
4
  const GUIDInfo_1 = require("../../structs/GUIDInfo");
5
- const BasicProperty_1 = require("./BasicProperty");
6
- const isUint8Property = (property) => property.type === 'UInt8Property';
5
+ const AbstractBaseProperty_1 = require("./AbstractBaseProperty");
6
+ const isUint8Property = (property) => !Array.isArray(property) && property.type === 'UInt8Property';
7
7
  exports.isUint8Property = isUint8Property;
8
- class Uint8Property extends BasicProperty_1.BasicProperty {
8
+ class Uint8Property extends AbstractBaseProperty_1.AbstractBaseProperty {
9
9
  constructor(value, ueType = 'UInt8Property', guidInfo = undefined, index = 0) {
10
10
  super({ type: 'UInt8Property', ueType, guidInfo, index });
11
11
  this.value = value;
@@ -1 +1 @@
1
- {"version":3,"file":"Uint8Property.js","sourceRoot":"","sources":["../../../../../../src/parser/satisfactory/types/property/generic/Uint8Property.ts"],"names":[],"mappings":";;;AAEA,qDAAkD;AAClD,mDAAgD;AAEzC,MAAM,eAAe,GAAG,CAAC,QAAuB,EAA6B,EAAE,CAAC,QAAQ,CAAC,IAAI,KAAK,eAAe,CAAC;AAA5G,QAAA,eAAe,mBAA6F;AAEzH,MAAa,aAAc,SAAQ,6BAAa;IAE5C,YAAmB,KAAa,EAAE,SAAiB,eAAe,EAAE,WAAqB,SAAS,EAAE,QAAgB,CAAC;QACjH,KAAK,CAAC,EAAE,IAAI,EAAE,eAAe,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC,CAAC;QAD3C,UAAK,GAAL,KAAK,CAAQ;IAEhC,CAAC;IAEM,MAAM,CAAC,KAAK,CAAC,MAAsB,EAAE,MAAc,EAAE,QAAgB,CAAC;QACzE,MAAM,QAAQ,GAAG,mBAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QACvC,MAAM,KAAK,GAAG,aAAa,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;QAC9C,OAAO,IAAI,aAAa,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAC;IAC7D,CAAC;IAEM,MAAM,CAAC,SAAS,CAAC,MAAsB;QAC1C,OAAO,MAAM,CAAC,SAAS,EAAE,CAAC;IAC9B,CAAC;IAEM,MAAM,CAAC,YAAY,CAAC,QAAuB;QAC9C,OAAO,CAAC,CAAC;IACb,CAAC;IAEM,MAAM,CAAC,SAAS,CAAC,MAAkB,EAAE,QAAuB;QAC/D,mBAAQ,CAAC,KAAK,CAAC,MAAM,EAAE,QAAQ,CAAC,QAAQ,CAAC,CAAC;QAC1C,aAAa,CAAC,cAAc,CAAC,MAAM,EAAE,QAAQ,CAAC,KAAK,CAAC,CAAC;IACzD,CAAC;IAEM,MAAM,CAAC,cAAc,CAAC,MAAkB,EAAE,KAAa;QAC1D,MAAM,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC;IAC7B,CAAC;CACJ;AA5BD,sCA4BC","sourcesContent":["import { BinaryReadable } from '../../../../byte/binary-readable.interface';\nimport { ByteWriter } from '../../../../byte/byte-writer.class';\nimport { GUIDInfo } from '../../structs/GUIDInfo';\nimport { BasicProperty } from './BasicProperty';\n\nexport const isUint8Property = (property: BasicProperty): property is Uint8Property => property.type === 'UInt8Property';\n\nexport class Uint8Property extends BasicProperty {\n\n constructor(public value: number, ueType: string = 'UInt8Property', guidInfo: GUIDInfo = undefined, index: number = 0) {\n super({ type: 'UInt8Property', ueType, guidInfo, index });\n }\n\n public static Parse(reader: BinaryReadable, ueType: string, index: number = 0): Uint8Property {\n const guidInfo = GUIDInfo.read(reader);\n const value = Uint8Property.ReadValue(reader);\n return new Uint8Property(value, ueType, guidInfo, index);\n }\n\n public static ReadValue(reader: BinaryReadable): number {\n return reader.readUint8();\n }\n\n public static CalcOverhead(property: Uint8Property): number {\n return 1;\n }\n\n public static Serialize(writer: ByteWriter, property: Uint8Property): void {\n GUIDInfo.write(writer, property.guidInfo);\n Uint8Property.SerializeValue(writer, property.value);\n }\n\n public static SerializeValue(writer: ByteWriter, value: number): void {\n writer.writeUint8(value);\n }\n}\n"]}
1
+ {"version":3,"file":"Uint8Property.js","sourceRoot":"","sources":["../../../../../../src/parser/satisfactory/types/property/generic/Uint8Property.ts"],"names":[],"mappings":";;;AAEA,qDAAkD;AAClD,iEAA8D;AAEvD,MAAM,eAAe,GAAG,CAAC,QAAa,EAA6B,EAAE,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,QAAQ,CAAC,IAAI,KAAK,eAAe,CAAC;AAA9H,QAAA,eAAe,mBAA+G;AAE3I,MAAa,aAAc,SAAQ,2CAAoB;IAEnD,YAAmB,KAAa,EAAE,SAAiB,eAAe,EAAE,WAAqB,SAAS,EAAE,QAAgB,CAAC;QACjH,KAAK,CAAC,EAAE,IAAI,EAAE,eAAe,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC,CAAC;QAD3C,UAAK,GAAL,KAAK,CAAQ;IAEhC,CAAC;IAEM,MAAM,CAAC,KAAK,CAAC,MAAsB,EAAE,MAAc,EAAE,QAAgB,CAAC;QACzE,MAAM,QAAQ,GAAG,mBAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QACvC,MAAM,KAAK,GAAG,aAAa,CAAC,SAAS,CAAC,MAAM,CAAC,CAAC;QAC9C,OAAO,IAAI,aAAa,CAAC,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,CAAC,CAAC;IAC7D,CAAC;IAEM,MAAM,CAAC,SAAS,CAAC,MAAsB;QAC1C,OAAO,MAAM,CAAC,SAAS,EAAE,CAAC;IAC9B,CAAC;IAEM,MAAM,CAAC,YAAY,CAAC,QAAuB;QAC9C,OAAO,CAAC,CAAC;IACb,CAAC;IAEM,MAAM,CAAC,SAAS,CAAC,MAAkB,EAAE,QAAuB;QAC/D,mBAAQ,CAAC,KAAK,CAAC,MAAM,EAAE,QAAQ,CAAC,QAAQ,CAAC,CAAC;QAC1C,aAAa,CAAC,cAAc,CAAC,MAAM,EAAE,QAAQ,CAAC,KAAK,CAAC,CAAC;IACzD,CAAC;IAEM,MAAM,CAAC,cAAc,CAAC,MAAkB,EAAE,KAAa;QAC1D,MAAM,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC;IAC7B,CAAC;CACJ;AA5BD,sCA4BC","sourcesContent":["import { BinaryReadable } from '../../../../byte/binary-readable.interface';\nimport { ByteWriter } from '../../../../byte/byte-writer.class';\nimport { GUIDInfo } from '../../structs/GUIDInfo';\nimport { AbstractBaseProperty } from './AbstractBaseProperty';\n\nexport const isUint8Property = (property: any): property is Uint8Property => !Array.isArray(property) && property.type === 'UInt8Property';\n\nexport class Uint8Property extends AbstractBaseProperty {\n\n constructor(public value: number, ueType: string = 'UInt8Property', guidInfo: GUIDInfo = undefined, index: number = 0) {\n super({ type: 'UInt8Property', ueType, guidInfo, index });\n }\n\n public static Parse(reader: BinaryReadable, ueType: string, index: number = 0): Uint8Property {\n const guidInfo = GUIDInfo.read(reader);\n const value = Uint8Property.ReadValue(reader);\n return new Uint8Property(value, ueType, guidInfo, index);\n }\n\n public static ReadValue(reader: BinaryReadable): number {\n return reader.readUint8();\n }\n\n public static CalcOverhead(property: Uint8Property): number {\n return 1;\n }\n\n public static Serialize(writer: ByteWriter, property: Uint8Property): void {\n GUIDInfo.write(writer, property.guidInfo);\n Uint8Property.SerializeValue(writer, property.value);\n }\n\n public static SerializeValue(writer: ByteWriter, value: number): void {\n writer.writeUint8(value);\n }\n}\n"]}
@@ -86,7 +86,7 @@ var ConveyorChainActorSpecialProperties;
86
86
  writer.writeInt32(belt.lastItemIndex);
87
87
  writer.writeInt32(belt.beltIndexInChain);
88
88
  }
89
- writer.writeInt32(property.totalLength);
89
+ writer.writeFloat32(property.totalLength);
90
90
  writer.writeInt32(property.totalNumberItemsMaybe);
91
91
  writer.writeInt32(property.firstChainItemIndex);
92
92
  writer.writeInt32(property.lastChainItemIndex);
@@ -1 +1 @@
1
- {"version":3,"file":"ConveyorChainActorSpecialProperties.js","sourceRoot":"","sources":["../../../../../../src/parser/satisfactory/types/property/special/ConveyorChainActorSpecialProperties.ts"],"names":[],"mappings":"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","sourcesContent":["import { BinaryReadable } from '../../../../byte/binary-readable.interface';\nimport { ByteWriter } from '../../../../byte/byte-writer.class';\nimport { ObjectReference } from '../../structs/ObjectReference';\nimport { vec3 } from '../../structs/vec3';\n\n\n\nexport const isConveyorChainActorSpecialProperties = (obj: any): obj is ConveyorChainActorSpecialProperties => obj.type === 'ConveyorChainActorSpecialProperties';\n\nexport type ConveyorChainActorSpecialProperties = {\n type: 'ConveyorChainActorSpecialProperties';\n firstBelt: ObjectReference;\n lastBelt: ObjectReference;\n beltsInChain: ConveyorChainSegmentSpecialProperties[];\n totalLength: number;\n totalNumberItemsMaybe: number;\n firstChainItemIndex: number;\n lastChainItemIndex: number;\n items: ConveyorItemSpecialProperties[];\n};\n\nexport namespace ConveyorChainActorSpecialProperties {\n export const Parse = (reader: BinaryReadable): ConveyorChainActorSpecialProperties => {\n\n const lastBelt = ObjectReference.read(reader);\n const firstBelt = ObjectReference.read(reader);\n const countBeltsInChain = reader.readInt32();\n\n const beltsInChain: ConveyorChainSegmentSpecialProperties[] = [];\n for (let i = 0; i < countBeltsInChain; i++) {\n const chainActorRef = ObjectReference.read(reader);\n const beltRef = ObjectReference.read(reader);\n const splinePointsCount = reader.readInt32();\n\n const splinePoints: { location: vec3; arriveTangent: vec3; leaveTangent: vec3; }[] = [];\n for (let j = 0; j < splinePointsCount; j++) {\n splinePoints.push({\n location: vec3.Parse(reader),\n arriveTangent: vec3.Parse(reader),\n leaveTangent: vec3.Parse(reader),\n });\n }\n\n // indices which items of this chain are on this belt.\n const offsetAtStart = reader.readFloat32();\n const startsAtLength = reader.readFloat32();\n const endsAtLength = reader.readFloat32();\n const firstItemIndex = reader.readInt32();\n const lastItemIndex = reader.readInt32();\n const beltIndexInChain = reader.readInt32();\n\n beltsInChain.push({\n chainActorRef,\n beltRef,\n splinePoints,\n offsetAtStart,\n startsAtLength,\n endsAtLength,\n firstItemIndex,\n lastItemIndex,\n beltIndexInChain\n });\n }\n\n const totalLength = reader.readFloat32();\n const totalNumberItemsMaybe = reader.readInt32();\n\n const firstChainItemIndex = reader.readInt32();\n const lastChainItemIndex = reader.readInt32();\n const countItemsInChain = reader.readInt32();\n\n const items: ConveyorItemSpecialProperties[] = [];\n for (let n = 0; n < countItemsInChain; n++) {\n const item = ObjectReference.read(reader);\n reader.readInt32(); //0\n const position = reader.readInt32();\n items.push({ itemReference: item, position });\n }\n\n return {\n type: 'ConveyorChainActorSpecialProperties',\n firstBelt: firstBelt,\n lastBelt: lastBelt,\n beltsInChain,\n totalLength,\n totalNumberItemsMaybe,\n firstChainItemIndex,\n lastChainItemIndex,\n items\n };\n };\n\n export const Serialize = (writer: ByteWriter, property: ConveyorChainActorSpecialProperties) => {\n\n ObjectReference.write(writer, property.lastBelt);\n ObjectReference.write(writer, property.firstBelt);\n writer.writeInt32(property.beltsInChain.length);\n\n for (const belt of property.beltsInChain) {\n ObjectReference.write(writer, belt.chainActorRef);\n ObjectReference.write(writer, belt.beltRef);\n writer.writeInt32(belt.splinePoints.length);\n\n\n for (const splinepoint of belt.splinePoints) {\n vec3.Serialize(writer, splinepoint.location);\n vec3.Serialize(writer, splinepoint.arriveTangent);\n vec3.Serialize(writer, splinepoint.leaveTangent);\n }\n\n writer.writeFloat32(belt.offsetAtStart);\n writer.writeFloat32(belt.startsAtLength);\n writer.writeFloat32(belt.endsAtLength);\n writer.writeInt32(belt.firstItemIndex);\n writer.writeInt32(belt.lastItemIndex);\n writer.writeInt32(belt.beltIndexInChain);\n }\n\n writer.writeInt32(property.totalLength);\n writer.writeInt32(property.totalNumberItemsMaybe);\n writer.writeInt32(property.firstChainItemIndex);\n writer.writeInt32(property.lastChainItemIndex);\n writer.writeInt32(property.items.length);\n\n for (const item of property.items) {\n ObjectReference.write(writer, item.itemReference);\n writer.writeInt32(0);\n writer.writeInt32(item.position);\n }\n };\n}\nexport type ConveyorChainSegmentSpecialProperties = {\n chainActorRef: ObjectReference;\n beltRef: ObjectReference;\n splinePoints: {\n location: vec3;\n arriveTangent: vec3;\n leaveTangent: vec3;\n }[];\n offsetAtStart: number;\n startsAtLength: number;\n endsAtLength: number;\n firstItemIndex: number;\n lastItemIndex: number;\n beltIndexInChain: number;\n};\nexport type ConveyorItemSpecialProperties = {\n position: number;\n itemReference: ObjectReference;\n};\n\n"]}
1
+ {"version":3,"file":"ConveyorChainActorSpecialProperties.js","sourceRoot":"","sources":["../../../../../../src/parser/satisfactory/types/property/special/ConveyorChainActorSpecialProperties.ts"],"names":[],"mappings":"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","sourcesContent":["import { BinaryReadable } from '../../../../byte/binary-readable.interface';\nimport { ByteWriter } from '../../../../byte/byte-writer.class';\nimport { ObjectReference } from '../../structs/ObjectReference';\nimport { vec3 } from '../../structs/vec3';\n\n\n\nexport const isConveyorChainActorSpecialProperties = (obj: any): obj is ConveyorChainActorSpecialProperties => obj.type === 'ConveyorChainActorSpecialProperties';\n\nexport type ConveyorChainActorSpecialProperties = {\n type: 'ConveyorChainActorSpecialProperties';\n firstBelt: ObjectReference;\n lastBelt: ObjectReference;\n beltsInChain: ConveyorChainSegmentSpecialProperties[];\n totalLength: number;\n totalNumberItemsMaybe: number;\n firstChainItemIndex: number;\n lastChainItemIndex: number;\n items: ConveyorItemSpecialProperties[];\n};\n\nexport namespace ConveyorChainActorSpecialProperties {\n export const Parse = (reader: BinaryReadable): ConveyorChainActorSpecialProperties => {\n\n const lastBelt = ObjectReference.read(reader);\n const firstBelt = ObjectReference.read(reader);\n const countBeltsInChain = reader.readInt32();\n\n const beltsInChain: ConveyorChainSegmentSpecialProperties[] = [];\n for (let i = 0; i < countBeltsInChain; i++) {\n const chainActorRef = ObjectReference.read(reader);\n const beltRef = ObjectReference.read(reader);\n const splinePointsCount = reader.readInt32();\n\n const splinePoints: { location: vec3; arriveTangent: vec3; leaveTangent: vec3; }[] = [];\n for (let j = 0; j < splinePointsCount; j++) {\n splinePoints.push({\n location: vec3.Parse(reader),\n arriveTangent: vec3.Parse(reader),\n leaveTangent: vec3.Parse(reader),\n });\n }\n\n // indices which items of this chain are on this belt.\n const offsetAtStart = reader.readFloat32();\n const startsAtLength = reader.readFloat32();\n const endsAtLength = reader.readFloat32();\n const firstItemIndex = reader.readInt32();\n const lastItemIndex = reader.readInt32();\n const beltIndexInChain = reader.readInt32();\n\n beltsInChain.push({\n chainActorRef,\n beltRef,\n splinePoints,\n offsetAtStart,\n startsAtLength,\n endsAtLength,\n firstItemIndex,\n lastItemIndex,\n beltIndexInChain\n });\n }\n\n const totalLength = reader.readFloat32();\n const totalNumberItemsMaybe = reader.readInt32();\n\n const firstChainItemIndex = reader.readInt32();\n const lastChainItemIndex = reader.readInt32();\n const countItemsInChain = reader.readInt32();\n\n const items: ConveyorItemSpecialProperties[] = [];\n for (let n = 0; n < countItemsInChain; n++) {\n const item = ObjectReference.read(reader);\n reader.readInt32(); //0\n const position = reader.readInt32();\n items.push({ itemReference: item, position });\n }\n\n return {\n type: 'ConveyorChainActorSpecialProperties',\n firstBelt: firstBelt,\n lastBelt: lastBelt,\n beltsInChain,\n totalLength,\n totalNumberItemsMaybe,\n firstChainItemIndex,\n lastChainItemIndex,\n items\n };\n };\n\n export const Serialize = (writer: ByteWriter, property: ConveyorChainActorSpecialProperties) => {\n\n ObjectReference.write(writer, property.lastBelt);\n ObjectReference.write(writer, property.firstBelt);\n writer.writeInt32(property.beltsInChain.length);\n\n for (const belt of property.beltsInChain) {\n ObjectReference.write(writer, belt.chainActorRef);\n ObjectReference.write(writer, belt.beltRef);\n writer.writeInt32(belt.splinePoints.length);\n\n\n for (const splinepoint of belt.splinePoints) {\n vec3.Serialize(writer, splinepoint.location);\n vec3.Serialize(writer, splinepoint.arriveTangent);\n vec3.Serialize(writer, splinepoint.leaveTangent);\n }\n\n writer.writeFloat32(belt.offsetAtStart);\n writer.writeFloat32(belt.startsAtLength);\n writer.writeFloat32(belt.endsAtLength);\n writer.writeInt32(belt.firstItemIndex);\n writer.writeInt32(belt.lastItemIndex);\n writer.writeInt32(belt.beltIndexInChain);\n }\n\n writer.writeFloat32(property.totalLength);\n writer.writeInt32(property.totalNumberItemsMaybe);\n writer.writeInt32(property.firstChainItemIndex);\n writer.writeInt32(property.lastChainItemIndex);\n writer.writeInt32(property.items.length);\n\n for (const item of property.items) {\n ObjectReference.write(writer, item.itemReference);\n writer.writeInt32(0);\n writer.writeInt32(item.position);\n }\n };\n}\nexport type ConveyorChainSegmentSpecialProperties = {\n chainActorRef: ObjectReference;\n beltRef: ObjectReference;\n splinePoints: {\n location: vec3;\n arriveTangent: vec3;\n leaveTangent: vec3;\n }[];\n offsetAtStart: number;\n startsAtLength: number;\n endsAtLength: number;\n firstItemIndex: number;\n lastItemIndex: number;\n beltIndexInChain: number;\n};\nexport type ConveyorItemSpecialProperties = {\n position: number;\n itemReference: ObjectReference;\n};\n\n"]}