@esengine/ecs-framework 2.2.20 → 2.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (491) hide show
  1. package/bin/Core/DI/Decorators.d.ts +206 -0
  2. package/bin/Core/DI/Decorators.d.ts.map +1 -0
  3. package/bin/Core/DI/Decorators.js +253 -0
  4. package/bin/Core/DI/Decorators.js.map +1 -0
  5. package/bin/Core/DI/index.d.ts +8 -0
  6. package/bin/Core/DI/index.d.ts.map +1 -0
  7. package/bin/Core/DI/index.js +7 -0
  8. package/bin/Core/DI/index.js.map +1 -0
  9. package/bin/Core/Plugin.d.ts +112 -0
  10. package/bin/Core/Plugin.d.ts.map +1 -0
  11. package/bin/Core/Plugin.js +19 -0
  12. package/bin/Core/Plugin.js.map +1 -0
  13. package/bin/Core/PluginManager.d.ts +118 -0
  14. package/bin/Core/PluginManager.d.ts.map +1 -0
  15. package/bin/Core/PluginManager.js +229 -0
  16. package/bin/Core/PluginManager.js.map +1 -0
  17. package/bin/Core/ServiceContainer.d.ts +221 -0
  18. package/bin/Core/ServiceContainer.d.ts.map +1 -0
  19. package/bin/Core/ServiceContainer.js +352 -0
  20. package/bin/Core/ServiceContainer.js.map +1 -0
  21. package/bin/Core.d.ts +379 -0
  22. package/bin/Core.d.ts.map +1 -0
  23. package/bin/Core.js +553 -0
  24. package/bin/Core.js.map +1 -0
  25. package/bin/ECS/Component.d.ts +104 -0
  26. package/bin/ECS/Component.d.ts.map +1 -0
  27. package/bin/ECS/Component.js +105 -0
  28. package/bin/ECS/Component.js.map +1 -0
  29. package/bin/ECS/Components/HierarchyComponent.d.ts +46 -0
  30. package/bin/ECS/Components/HierarchyComponent.d.ts.map +1 -0
  31. package/bin/ECS/Components/HierarchyComponent.js +65 -0
  32. package/bin/ECS/Components/HierarchyComponent.js.map +1 -0
  33. package/bin/ECS/Components/index.d.ts +2 -0
  34. package/bin/ECS/Components/index.d.ts.map +1 -0
  35. package/bin/ECS/Components/index.js +2 -0
  36. package/bin/ECS/Components/index.js.map +1 -0
  37. package/bin/ECS/Core/ArchetypeSystem.d.ts +103 -0
  38. package/bin/ECS/Core/ArchetypeSystem.d.ts.map +1 -0
  39. package/bin/ECS/Core/ArchetypeSystem.js +244 -0
  40. package/bin/ECS/Core/ArchetypeSystem.js.map +1 -0
  41. package/bin/ECS/Core/CommandBuffer.d.ts +154 -0
  42. package/bin/ECS/Core/CommandBuffer.d.ts.map +1 -0
  43. package/bin/ECS/Core/CommandBuffer.js +244 -0
  44. package/bin/ECS/Core/CommandBuffer.js.map +1 -0
  45. package/bin/ECS/Core/ComponentPool.d.ts +139 -0
  46. package/bin/ECS/Core/ComponentPool.d.ts.map +1 -0
  47. package/bin/ECS/Core/ComponentPool.js +276 -0
  48. package/bin/ECS/Core/ComponentPool.js.map +1 -0
  49. package/bin/ECS/Core/ComponentStorage/ComponentRegistry.d.ts +127 -0
  50. package/bin/ECS/Core/ComponentStorage/ComponentRegistry.d.ts.map +1 -0
  51. package/bin/ECS/Core/ComponentStorage/ComponentRegistry.js +235 -0
  52. package/bin/ECS/Core/ComponentStorage/ComponentRegistry.js.map +1 -0
  53. package/bin/ECS/Core/ComponentStorage.d.ts +185 -0
  54. package/bin/ECS/Core/ComponentStorage.d.ts.map +1 -0
  55. package/bin/ECS/Core/ComponentStorage.js +321 -0
  56. package/bin/ECS/Core/ComponentStorage.js.map +1 -0
  57. package/bin/ECS/Core/EntityLifecyclePolicy.d.ts +26 -0
  58. package/bin/ECS/Core/EntityLifecyclePolicy.d.ts.map +1 -0
  59. package/bin/ECS/Core/EntityLifecyclePolicy.js +2 -0
  60. package/bin/ECS/Core/EntityLifecyclePolicy.js.map +1 -0
  61. package/bin/ECS/Core/EventBus.d.ts +210 -0
  62. package/bin/ECS/Core/EventBus.d.ts.map +1 -0
  63. package/bin/ECS/Core/EventBus.js +370 -0
  64. package/bin/ECS/Core/EventBus.js.map +1 -0
  65. package/bin/ECS/Core/EventSystem.d.ts +225 -0
  66. package/bin/ECS/Core/EventSystem.d.ts.map +1 -0
  67. package/bin/ECS/Core/EventSystem.js +448 -0
  68. package/bin/ECS/Core/EventSystem.js.map +1 -0
  69. package/bin/ECS/Core/Events/index.d.ts +3 -0
  70. package/bin/ECS/Core/Events/index.d.ts.map +1 -0
  71. package/bin/ECS/Core/Events/index.js +3 -0
  72. package/bin/ECS/Core/Events/index.js.map +1 -0
  73. package/bin/ECS/Core/FluentAPI/ComponentBuilder.d.ts +35 -0
  74. package/bin/ECS/Core/FluentAPI/ComponentBuilder.d.ts.map +1 -0
  75. package/bin/ECS/Core/FluentAPI/ComponentBuilder.js +48 -0
  76. package/bin/ECS/Core/FluentAPI/ComponentBuilder.js.map +1 -0
  77. package/bin/ECS/Core/FluentAPI/ECSFluentAPI.d.ts +135 -0
  78. package/bin/ECS/Core/FluentAPI/ECSFluentAPI.d.ts.map +1 -0
  79. package/bin/ECS/Core/FluentAPI/ECSFluentAPI.js +166 -0
  80. package/bin/ECS/Core/FluentAPI/ECSFluentAPI.js.map +1 -0
  81. package/bin/ECS/Core/FluentAPI/EntityBatchOperator.d.ts +58 -0
  82. package/bin/ECS/Core/FluentAPI/EntityBatchOperator.d.ts.map +1 -0
  83. package/bin/ECS/Core/FluentAPI/EntityBatchOperator.js +85 -0
  84. package/bin/ECS/Core/FluentAPI/EntityBatchOperator.js.map +1 -0
  85. package/bin/ECS/Core/FluentAPI/EntityBuilder.d.ts +110 -0
  86. package/bin/ECS/Core/FluentAPI/EntityBuilder.d.ts.map +1 -0
  87. package/bin/ECS/Core/FluentAPI/EntityBuilder.js +181 -0
  88. package/bin/ECS/Core/FluentAPI/EntityBuilder.js.map +1 -0
  89. package/bin/ECS/Core/FluentAPI/SceneBuilder.d.ts +53 -0
  90. package/bin/ECS/Core/FluentAPI/SceneBuilder.d.ts.map +1 -0
  91. package/bin/ECS/Core/FluentAPI/SceneBuilder.js +79 -0
  92. package/bin/ECS/Core/FluentAPI/SceneBuilder.js.map +1 -0
  93. package/bin/ECS/Core/FluentAPI/index.d.ts +6 -0
  94. package/bin/ECS/Core/FluentAPI/index.d.ts.map +1 -0
  95. package/bin/ECS/Core/FluentAPI/index.js +6 -0
  96. package/bin/ECS/Core/FluentAPI/index.js.map +1 -0
  97. package/bin/ECS/Core/FluentAPI.d.ts +2 -0
  98. package/bin/ECS/Core/FluentAPI.d.ts.map +1 -0
  99. package/bin/ECS/Core/FluentAPI.js +3 -0
  100. package/bin/ECS/Core/FluentAPI.js.map +1 -0
  101. package/bin/ECS/Core/Query/TypedQuery.d.ts +214 -0
  102. package/bin/ECS/Core/Query/TypedQuery.d.ts.map +1 -0
  103. package/bin/ECS/Core/Query/TypedQuery.js +294 -0
  104. package/bin/ECS/Core/Query/TypedQuery.js.map +1 -0
  105. package/bin/ECS/Core/Query/index.d.ts +3 -0
  106. package/bin/ECS/Core/Query/index.d.ts.map +1 -0
  107. package/bin/ECS/Core/Query/index.js +3 -0
  108. package/bin/ECS/Core/Query/index.js.map +1 -0
  109. package/bin/ECS/Core/QuerySystem.d.ts +458 -0
  110. package/bin/ECS/Core/QuerySystem.d.ts.map +1 -0
  111. package/bin/ECS/Core/QuerySystem.js +1069 -0
  112. package/bin/ECS/Core/QuerySystem.js.map +1 -0
  113. package/bin/ECS/Core/QueryTypes.d.ts +34 -0
  114. package/bin/ECS/Core/QueryTypes.d.ts.map +1 -0
  115. package/bin/ECS/Core/QueryTypes.js +13 -0
  116. package/bin/ECS/Core/QueryTypes.js.map +1 -0
  117. package/bin/ECS/Core/ReactiveQuery.d.ts +211 -0
  118. package/bin/ECS/Core/ReactiveQuery.d.ts.map +1 -0
  119. package/bin/ECS/Core/ReactiveQuery.js +401 -0
  120. package/bin/ECS/Core/ReactiveQuery.js.map +1 -0
  121. package/bin/ECS/Core/ReferenceTracker.d.ts +111 -0
  122. package/bin/ECS/Core/ReferenceTracker.d.ts.map +1 -0
  123. package/bin/ECS/Core/ReferenceTracker.js +254 -0
  124. package/bin/ECS/Core/ReferenceTracker.js.map +1 -0
  125. package/bin/ECS/Core/SoASerializer.d.ts +28 -0
  126. package/bin/ECS/Core/SoASerializer.d.ts.map +1 -0
  127. package/bin/ECS/Core/SoASerializer.js +85 -0
  128. package/bin/ECS/Core/SoASerializer.js.map +1 -0
  129. package/bin/ECS/Core/SoAStorage.d.ts +129 -0
  130. package/bin/ECS/Core/SoAStorage.d.ts.map +1 -0
  131. package/bin/ECS/Core/SoAStorage.js +685 -0
  132. package/bin/ECS/Core/SoAStorage.js.map +1 -0
  133. package/bin/ECS/Core/SoATypeRegistry.d.ts +50 -0
  134. package/bin/ECS/Core/SoATypeRegistry.d.ts.map +1 -0
  135. package/bin/ECS/Core/SoATypeRegistry.js +135 -0
  136. package/bin/ECS/Core/SoATypeRegistry.js.map +1 -0
  137. package/bin/ECS/Core/Storage/index.d.ts +4 -0
  138. package/bin/ECS/Core/Storage/index.d.ts.map +1 -0
  139. package/bin/ECS/Core/Storage/index.js +4 -0
  140. package/bin/ECS/Core/Storage/index.js.map +1 -0
  141. package/bin/ECS/Core/StorageDecorators.d.ts +20 -0
  142. package/bin/ECS/Core/StorageDecorators.d.ts.map +1 -0
  143. package/bin/ECS/Core/StorageDecorators.js +27 -0
  144. package/bin/ECS/Core/StorageDecorators.js.map +1 -0
  145. package/bin/ECS/CoreEvents.d.ts +131 -0
  146. package/bin/ECS/CoreEvents.d.ts.map +1 -0
  147. package/bin/ECS/CoreEvents.js +163 -0
  148. package/bin/ECS/CoreEvents.js.map +1 -0
  149. package/bin/ECS/Decorators/EntityRefDecorator.d.ts +46 -0
  150. package/bin/ECS/Decorators/EntityRefDecorator.d.ts.map +1 -0
  151. package/bin/ECS/Decorators/EntityRefDecorator.js +118 -0
  152. package/bin/ECS/Decorators/EntityRefDecorator.js.map +1 -0
  153. package/bin/ECS/Decorators/PropertyDecorator.d.ts +168 -0
  154. package/bin/ECS/Decorators/PropertyDecorator.d.ts.map +1 -0
  155. package/bin/ECS/Decorators/PropertyDecorator.js +40 -0
  156. package/bin/ECS/Decorators/PropertyDecorator.js.map +1 -0
  157. package/bin/ECS/Decorators/TypeDecorators.d.ts +124 -0
  158. package/bin/ECS/Decorators/TypeDecorators.d.ts.map +1 -0
  159. package/bin/ECS/Decorators/TypeDecorators.js +151 -0
  160. package/bin/ECS/Decorators/TypeDecorators.js.map +1 -0
  161. package/bin/ECS/Decorators/index.d.ts +7 -0
  162. package/bin/ECS/Decorators/index.d.ts.map +1 -0
  163. package/bin/ECS/Decorators/index.js +4 -0
  164. package/bin/ECS/Decorators/index.js.map +1 -0
  165. package/bin/ECS/Entity.d.ts +415 -0
  166. package/bin/ECS/Entity.d.ts.map +1 -0
  167. package/bin/ECS/Entity.js +683 -0
  168. package/bin/ECS/Entity.js.map +1 -0
  169. package/bin/ECS/EntityTags.d.ts +71 -0
  170. package/bin/ECS/EntityTags.d.ts.map +1 -0
  171. package/bin/ECS/EntityTags.js +82 -0
  172. package/bin/ECS/EntityTags.js.map +1 -0
  173. package/bin/ECS/IScene.d.ts +308 -0
  174. package/bin/ECS/IScene.d.ts.map +1 -0
  175. package/bin/ECS/IScene.js +2 -0
  176. package/bin/ECS/IScene.js.map +1 -0
  177. package/bin/ECS/Scene.d.ts +799 -0
  178. package/bin/ECS/Scene.d.ts.map +1 -0
  179. package/bin/ECS/Scene.js +1203 -0
  180. package/bin/ECS/Scene.js.map +1 -0
  181. package/bin/ECS/SceneManager.d.ts +197 -0
  182. package/bin/ECS/SceneManager.d.ts.map +1 -0
  183. package/bin/ECS/SceneManager.js +264 -0
  184. package/bin/ECS/SceneManager.js.map +1 -0
  185. package/bin/ECS/Serialization/ComponentSerializer.d.ts +106 -0
  186. package/bin/ECS/Serialization/ComponentSerializer.d.ts.map +1 -0
  187. package/bin/ECS/Serialization/ComponentSerializer.js +251 -0
  188. package/bin/ECS/Serialization/ComponentSerializer.js.map +1 -0
  189. package/bin/ECS/Serialization/EntitySerializer.d.ts +111 -0
  190. package/bin/ECS/Serialization/EntitySerializer.d.ts.map +1 -0
  191. package/bin/ECS/Serialization/EntitySerializer.js +155 -0
  192. package/bin/ECS/Serialization/EntitySerializer.js.map +1 -0
  193. package/bin/ECS/Serialization/IncrementalSerializer.d.ts +259 -0
  194. package/bin/ECS/Serialization/IncrementalSerializer.d.ts.map +1 -0
  195. package/bin/ECS/Serialization/IncrementalSerializer.js +500 -0
  196. package/bin/ECS/Serialization/IncrementalSerializer.js.map +1 -0
  197. package/bin/ECS/Serialization/SceneSerializer.d.ts +213 -0
  198. package/bin/ECS/Serialization/SceneSerializer.d.ts.map +1 -0
  199. package/bin/ECS/Serialization/SceneSerializer.js +387 -0
  200. package/bin/ECS/Serialization/SceneSerializer.js.map +1 -0
  201. package/bin/ECS/Serialization/SerializationDecorators.d.ts +136 -0
  202. package/bin/ECS/Serialization/SerializationDecorators.d.ts.map +1 -0
  203. package/bin/ECS/Serialization/SerializationDecorators.js +216 -0
  204. package/bin/ECS/Serialization/SerializationDecorators.js.map +1 -0
  205. package/bin/ECS/Serialization/VersionMigration.d.ts +156 -0
  206. package/bin/ECS/Serialization/VersionMigration.d.ts.map +1 -0
  207. package/bin/ECS/Serialization/VersionMigration.js +279 -0
  208. package/bin/ECS/Serialization/VersionMigration.js.map +1 -0
  209. package/bin/ECS/Serialization/index.d.ts +18 -0
  210. package/bin/ECS/Serialization/index.d.ts.map +1 -0
  211. package/bin/ECS/Serialization/index.js +18 -0
  212. package/bin/ECS/Serialization/index.js.map +1 -0
  213. package/bin/ECS/Systems/EntityCache.d.ts +114 -0
  214. package/bin/ECS/Systems/EntityCache.d.ts.map +1 -0
  215. package/bin/ECS/Systems/EntityCache.js +145 -0
  216. package/bin/ECS/Systems/EntityCache.js.map +1 -0
  217. package/bin/ECS/Systems/EntitySystem.d.ts +591 -0
  218. package/bin/ECS/Systems/EntitySystem.d.ts.map +1 -0
  219. package/bin/ECS/Systems/EntitySystem.js +1102 -0
  220. package/bin/ECS/Systems/EntitySystem.js.map +1 -0
  221. package/bin/ECS/Systems/HierarchySystem.d.ts +155 -0
  222. package/bin/ECS/Systems/HierarchySystem.d.ts.map +1 -0
  223. package/bin/ECS/Systems/HierarchySystem.js +498 -0
  224. package/bin/ECS/Systems/HierarchySystem.js.map +1 -0
  225. package/bin/ECS/Systems/IntervalSystem.d.ts +33 -0
  226. package/bin/ECS/Systems/IntervalSystem.d.ts.map +1 -0
  227. package/bin/ECS/Systems/IntervalSystem.js +50 -0
  228. package/bin/ECS/Systems/IntervalSystem.js.map +1 -0
  229. package/bin/ECS/Systems/PassiveSystem.d.ts +17 -0
  230. package/bin/ECS/Systems/PassiveSystem.d.ts.map +1 -0
  231. package/bin/ECS/Systems/PassiveSystem.js +19 -0
  232. package/bin/ECS/Systems/PassiveSystem.js.map +1 -0
  233. package/bin/ECS/Systems/ProcessingSystem.d.ts +21 -0
  234. package/bin/ECS/Systems/ProcessingSystem.d.ts.map +1 -0
  235. package/bin/ECS/Systems/ProcessingSystem.js +20 -0
  236. package/bin/ECS/Systems/ProcessingSystem.js.map +1 -0
  237. package/bin/ECS/Systems/WorkerEntitySystem.d.ts +313 -0
  238. package/bin/ECS/Systems/WorkerEntitySystem.d.ts.map +1 -0
  239. package/bin/ECS/Systems/WorkerEntitySystem.js +792 -0
  240. package/bin/ECS/Systems/WorkerEntitySystem.js.map +1 -0
  241. package/bin/ECS/Systems/index.d.ts +8 -0
  242. package/bin/ECS/Systems/index.d.ts.map +1 -0
  243. package/bin/ECS/Systems/index.js +8 -0
  244. package/bin/ECS/Systems/index.js.map +1 -0
  245. package/bin/ECS/TypedEntity.d.ts +192 -0
  246. package/bin/ECS/TypedEntity.d.ts.map +1 -0
  247. package/bin/ECS/TypedEntity.js +254 -0
  248. package/bin/ECS/TypedEntity.js.map +1 -0
  249. package/bin/ECS/Utils/BigIntCompatibility.d.ts +151 -0
  250. package/bin/ECS/Utils/BigIntCompatibility.d.ts.map +1 -0
  251. package/bin/ECS/Utils/BigIntCompatibility.js +476 -0
  252. package/bin/ECS/Utils/BigIntCompatibility.js.map +1 -0
  253. package/bin/ECS/Utils/BitMaskHashMap.d.ts +28 -0
  254. package/bin/ECS/Utils/BitMaskHashMap.d.ts.map +1 -0
  255. package/bin/ECS/Utils/BitMaskHashMap.js +127 -0
  256. package/bin/ECS/Utils/BitMaskHashMap.js.map +1 -0
  257. package/bin/ECS/Utils/Bits.d.ts +154 -0
  258. package/bin/ECS/Utils/Bits.d.ts.map +1 -0
  259. package/bin/ECS/Utils/Bits.js +331 -0
  260. package/bin/ECS/Utils/Bits.js.map +1 -0
  261. package/bin/ECS/Utils/ComponentSparseSet.d.ts +143 -0
  262. package/bin/ECS/Utils/ComponentSparseSet.d.ts.map +1 -0
  263. package/bin/ECS/Utils/ComponentSparseSet.js +347 -0
  264. package/bin/ECS/Utils/ComponentSparseSet.js.map +1 -0
  265. package/bin/ECS/Utils/EntityList.d.ts +115 -0
  266. package/bin/ECS/Utils/EntityList.d.ts.map +1 -0
  267. package/bin/ECS/Utils/EntityList.js +258 -0
  268. package/bin/ECS/Utils/EntityList.js.map +1 -0
  269. package/bin/ECS/Utils/EntityProcessorList.d.ts +56 -0
  270. package/bin/ECS/Utils/EntityProcessorList.d.ts.map +1 -0
  271. package/bin/ECS/Utils/EntityProcessorList.js +113 -0
  272. package/bin/ECS/Utils/EntityProcessorList.js.map +1 -0
  273. package/bin/ECS/Utils/IdentifierPool.d.ts +203 -0
  274. package/bin/ECS/Utils/IdentifierPool.d.ts.map +1 -0
  275. package/bin/ECS/Utils/IdentifierPool.js +325 -0
  276. package/bin/ECS/Utils/IdentifierPool.js.map +1 -0
  277. package/bin/ECS/Utils/Matcher.d.ts +171 -0
  278. package/bin/ECS/Utils/Matcher.d.ts.map +1 -0
  279. package/bin/ECS/Utils/Matcher.js +293 -0
  280. package/bin/ECS/Utils/Matcher.js.map +1 -0
  281. package/bin/ECS/Utils/SparseSet.d.ts +170 -0
  282. package/bin/ECS/Utils/SparseSet.d.ts.map +1 -0
  283. package/bin/ECS/Utils/SparseSet.js +280 -0
  284. package/bin/ECS/Utils/SparseSet.js.map +1 -0
  285. package/bin/ECS/Utils/index.d.ts +9 -0
  286. package/bin/ECS/Utils/index.d.ts.map +1 -0
  287. package/bin/ECS/Utils/index.js +10 -0
  288. package/bin/ECS/Utils/index.js.map +1 -0
  289. package/bin/ECS/World.d.ts +238 -0
  290. package/bin/ECS/World.d.ts.map +1 -0
  291. package/bin/ECS/World.js +416 -0
  292. package/bin/ECS/World.js.map +1 -0
  293. package/bin/ECS/WorldManager.d.ts +224 -0
  294. package/bin/ECS/WorldManager.d.ts.map +1 -0
  295. package/bin/ECS/WorldManager.js +365 -0
  296. package/bin/ECS/WorldManager.js.map +1 -0
  297. package/bin/ECS/index.d.ts +26 -0
  298. package/bin/ECS/index.d.ts.map +1 -0
  299. package/bin/ECS/index.js +21 -0
  300. package/bin/ECS/index.js.map +1 -0
  301. package/bin/Platform/IPlatformAdapter.d.ts +169 -0
  302. package/bin/Platform/IPlatformAdapter.d.ts.map +1 -0
  303. package/bin/Platform/IPlatformAdapter.js +2 -0
  304. package/bin/Platform/IPlatformAdapter.js.map +1 -0
  305. package/bin/Platform/PlatformDetector.d.ts +56 -0
  306. package/bin/Platform/PlatformDetector.d.ts.map +1 -0
  307. package/bin/Platform/PlatformDetector.js +247 -0
  308. package/bin/Platform/PlatformDetector.js.map +1 -0
  309. package/bin/Platform/PlatformManager.d.ts +50 -0
  310. package/bin/Platform/PlatformManager.d.ts.map +1 -0
  311. package/bin/Platform/PlatformManager.js +114 -0
  312. package/bin/Platform/PlatformManager.js.map +1 -0
  313. package/bin/Platform/index.d.ts +19 -0
  314. package/bin/Platform/index.d.ts.map +1 -0
  315. package/bin/Platform/index.js +29 -0
  316. package/bin/Platform/index.js.map +1 -0
  317. package/bin/Plugins/DebugPlugin.d.ts +156 -0
  318. package/bin/Plugins/DebugPlugin.d.ts.map +1 -0
  319. package/bin/Plugins/DebugPlugin.js +248 -0
  320. package/bin/Plugins/DebugPlugin.js.map +1 -0
  321. package/bin/Plugins/index.d.ts +2 -0
  322. package/bin/Plugins/index.d.ts.map +1 -0
  323. package/bin/Plugins/index.js +2 -0
  324. package/bin/Plugins/index.js.map +1 -0
  325. package/bin/Types/IUpdatable.d.ts +18 -0
  326. package/bin/Types/IUpdatable.d.ts.map +1 -0
  327. package/bin/Types/IUpdatable.js +7 -0
  328. package/bin/Types/IUpdatable.js.map +1 -0
  329. package/bin/Types/TypeHelpers.d.ts +238 -0
  330. package/bin/Types/TypeHelpers.d.ts.map +1 -0
  331. package/bin/Types/TypeHelpers.js +19 -0
  332. package/bin/Types/TypeHelpers.js.map +1 -0
  333. package/bin/Types/index.d.ts +466 -0
  334. package/bin/Types/index.d.ts.map +1 -0
  335. package/bin/Types/index.js +7 -0
  336. package/bin/Types/index.js.map +1 -0
  337. package/bin/Utils/BinarySerializer.d.ts +23 -0
  338. package/bin/Utils/BinarySerializer.d.ts.map +1 -0
  339. package/bin/Utils/BinarySerializer.js +100 -0
  340. package/bin/Utils/BinarySerializer.js.map +1 -0
  341. package/bin/Utils/Debug/AdvancedProfilerCollector.d.ts +153 -0
  342. package/bin/Utils/Debug/AdvancedProfilerCollector.d.ts.map +1 -0
  343. package/bin/Utils/Debug/AdvancedProfilerCollector.js +406 -0
  344. package/bin/Utils/Debug/AdvancedProfilerCollector.js.map +1 -0
  345. package/bin/Utils/Debug/ComponentDataCollector.d.ts +32 -0
  346. package/bin/Utils/Debug/ComponentDataCollector.d.ts.map +1 -0
  347. package/bin/Utils/Debug/ComponentDataCollector.js +250 -0
  348. package/bin/Utils/Debug/ComponentDataCollector.js.map +1 -0
  349. package/bin/Utils/Debug/DebugConfigService.d.ts +16 -0
  350. package/bin/Utils/Debug/DebugConfigService.d.ts.map +1 -0
  351. package/bin/Utils/Debug/DebugConfigService.js +42 -0
  352. package/bin/Utils/Debug/DebugConfigService.js.map +1 -0
  353. package/bin/Utils/Debug/DebugManager.d.ts +131 -0
  354. package/bin/Utils/Debug/DebugManager.d.ts.map +1 -0
  355. package/bin/Utils/Debug/DebugManager.js +848 -0
  356. package/bin/Utils/Debug/DebugManager.js.map +1 -0
  357. package/bin/Utils/Debug/EntityDataCollector.d.ts +115 -0
  358. package/bin/Utils/Debug/EntityDataCollector.d.ts.map +1 -0
  359. package/bin/Utils/Debug/EntityDataCollector.js +870 -0
  360. package/bin/Utils/Debug/EntityDataCollector.js.map +1 -0
  361. package/bin/Utils/Debug/PerformanceDataCollector.d.ts +31 -0
  362. package/bin/Utils/Debug/PerformanceDataCollector.d.ts.map +1 -0
  363. package/bin/Utils/Debug/PerformanceDataCollector.js +203 -0
  364. package/bin/Utils/Debug/PerformanceDataCollector.js.map +1 -0
  365. package/bin/Utils/Debug/SceneDataCollector.d.ts +18 -0
  366. package/bin/Utils/Debug/SceneDataCollector.d.ts.map +1 -0
  367. package/bin/Utils/Debug/SceneDataCollector.js +43 -0
  368. package/bin/Utils/Debug/SceneDataCollector.js.map +1 -0
  369. package/bin/Utils/Debug/SystemDataCollector.d.ts +14 -0
  370. package/bin/Utils/Debug/SystemDataCollector.d.ts.map +1 -0
  371. package/bin/Utils/Debug/SystemDataCollector.js +60 -0
  372. package/bin/Utils/Debug/SystemDataCollector.js.map +1 -0
  373. package/bin/Utils/Debug/WebSocketManager.d.ts +54 -0
  374. package/bin/Utils/Debug/WebSocketManager.d.ts.map +1 -0
  375. package/bin/Utils/Debug/WebSocketManager.js +141 -0
  376. package/bin/Utils/Debug/WebSocketManager.js.map +1 -0
  377. package/bin/Utils/Debug/index.d.ts +11 -0
  378. package/bin/Utils/Debug/index.d.ts.map +1 -0
  379. package/bin/Utils/Debug/index.js +10 -0
  380. package/bin/Utils/Debug/index.js.map +1 -0
  381. package/bin/Utils/Emitter.d.ts +61 -0
  382. package/bin/Utils/Emitter.d.ts.map +1 -0
  383. package/bin/Utils/Emitter.js +101 -0
  384. package/bin/Utils/Emitter.js.map +1 -0
  385. package/bin/Utils/Extensions/NumberExtension.d.ts +13 -0
  386. package/bin/Utils/Extensions/NumberExtension.d.ts.map +1 -0
  387. package/bin/Utils/Extensions/NumberExtension.js +17 -0
  388. package/bin/Utils/Extensions/NumberExtension.js.map +1 -0
  389. package/bin/Utils/Extensions/TypeUtils.d.ts +13 -0
  390. package/bin/Utils/Extensions/TypeUtils.d.ts.map +1 -0
  391. package/bin/Utils/Extensions/TypeUtils.js +15 -0
  392. package/bin/Utils/Extensions/TypeUtils.js.map +1 -0
  393. package/bin/Utils/Extensions/index.d.ts +3 -0
  394. package/bin/Utils/Extensions/index.d.ts.map +1 -0
  395. package/bin/Utils/Extensions/index.js +4 -0
  396. package/bin/Utils/Extensions/index.js.map +1 -0
  397. package/bin/Utils/GlobalManager.d.ts +29 -0
  398. package/bin/Utils/GlobalManager.d.ts.map +1 -0
  399. package/bin/Utils/GlobalManager.js +50 -0
  400. package/bin/Utils/GlobalManager.js.map +1 -0
  401. package/bin/Utils/Logger/ConsoleLogger.d.ts +74 -0
  402. package/bin/Utils/Logger/ConsoleLogger.d.ts.map +1 -0
  403. package/bin/Utils/Logger/ConsoleLogger.js +187 -0
  404. package/bin/Utils/Logger/ConsoleLogger.js.map +1 -0
  405. package/bin/Utils/Logger/Constants.d.ts +36 -0
  406. package/bin/Utils/Logger/Constants.d.ts.map +1 -0
  407. package/bin/Utils/Logger/Constants.js +40 -0
  408. package/bin/Utils/Logger/Constants.js.map +1 -0
  409. package/bin/Utils/Logger/LoggerManager.d.ts +91 -0
  410. package/bin/Utils/Logger/LoggerManager.d.ts.map +1 -0
  411. package/bin/Utils/Logger/LoggerManager.js +167 -0
  412. package/bin/Utils/Logger/LoggerManager.js.map +1 -0
  413. package/bin/Utils/Logger/Types.d.ts +40 -0
  414. package/bin/Utils/Logger/Types.d.ts.map +1 -0
  415. package/bin/Utils/Logger/Types.js +2 -0
  416. package/bin/Utils/Logger/Types.js.map +1 -0
  417. package/bin/Utils/Logger/index.d.ts +5 -0
  418. package/bin/Utils/Logger/index.d.ts.map +1 -0
  419. package/bin/Utils/Logger/index.js +5 -0
  420. package/bin/Utils/Logger/index.js.map +1 -0
  421. package/bin/Utils/PerformanceMonitor.d.ts +196 -0
  422. package/bin/Utils/PerformanceMonitor.d.ts.map +1 -0
  423. package/bin/Utils/PerformanceMonitor.js +244 -0
  424. package/bin/Utils/PerformanceMonitor.js.map +1 -0
  425. package/bin/Utils/Pool/IPoolable.d.ts +29 -0
  426. package/bin/Utils/Pool/IPoolable.d.ts.map +1 -0
  427. package/bin/Utils/Pool/IPoolable.js +2 -0
  428. package/bin/Utils/Pool/IPoolable.js.map +1 -0
  429. package/bin/Utils/Pool/Pool.d.ts +109 -0
  430. package/bin/Utils/Pool/Pool.d.ts.map +1 -0
  431. package/bin/Utils/Pool/Pool.js +238 -0
  432. package/bin/Utils/Pool/Pool.js.map +1 -0
  433. package/bin/Utils/Pool/PoolManager.d.ts +96 -0
  434. package/bin/Utils/Pool/PoolManager.d.ts.map +1 -0
  435. package/bin/Utils/Pool/PoolManager.js +199 -0
  436. package/bin/Utils/Pool/PoolManager.js.map +1 -0
  437. package/bin/Utils/Pool/index.d.ts +4 -0
  438. package/bin/Utils/Pool/index.d.ts.map +1 -0
  439. package/bin/Utils/Pool/index.js +4 -0
  440. package/bin/Utils/Pool/index.js.map +1 -0
  441. package/bin/Utils/Profiler/AutoProfiler.d.ts +160 -0
  442. package/bin/Utils/Profiler/AutoProfiler.d.ts.map +1 -0
  443. package/bin/Utils/Profiler/AutoProfiler.js +503 -0
  444. package/bin/Utils/Profiler/AutoProfiler.js.map +1 -0
  445. package/bin/Utils/Profiler/ProfilerSDK.d.ts +175 -0
  446. package/bin/Utils/Profiler/ProfilerSDK.d.ts.map +1 -0
  447. package/bin/Utils/Profiler/ProfilerSDK.js +727 -0
  448. package/bin/Utils/Profiler/ProfilerSDK.js.map +1 -0
  449. package/bin/Utils/Profiler/ProfilerTypes.d.ts +218 -0
  450. package/bin/Utils/Profiler/ProfilerTypes.d.ts.map +1 -0
  451. package/bin/Utils/Profiler/ProfilerTypes.js +47 -0
  452. package/bin/Utils/Profiler/ProfilerTypes.js.map +1 -0
  453. package/bin/Utils/Profiler/index.d.ts +8 -0
  454. package/bin/Utils/Profiler/index.d.ts.map +1 -0
  455. package/bin/Utils/Profiler/index.js +7 -0
  456. package/bin/Utils/Profiler/index.js.map +1 -0
  457. package/bin/Utils/Time.d.ts +47 -0
  458. package/bin/Utils/Time.d.ts.map +1 -0
  459. package/bin/Utils/Time.js +64 -0
  460. package/bin/Utils/Time.js.map +1 -0
  461. package/bin/Utils/Timers/ITimer.d.ts +16 -0
  462. package/bin/Utils/Timers/ITimer.d.ts.map +1 -0
  463. package/bin/Utils/Timers/ITimer.js +2 -0
  464. package/bin/Utils/Timers/ITimer.js.map +1 -0
  465. package/bin/Utils/Timers/Timer.d.ts +30 -0
  466. package/bin/Utils/Timers/Timer.d.ts.map +1 -0
  467. package/bin/Utils/Timers/Timer.js +58 -0
  468. package/bin/Utils/Timers/Timer.js.map +1 -0
  469. package/bin/Utils/Timers/TimerManager.d.ts +26 -0
  470. package/bin/Utils/Timers/TimerManager.d.ts.map +1 -0
  471. package/bin/Utils/Timers/TimerManager.js +48 -0
  472. package/bin/Utils/Timers/TimerManager.js.map +1 -0
  473. package/bin/Utils/index.d.ts +11 -0
  474. package/bin/Utils/index.d.ts.map +1 -0
  475. package/bin/Utils/index.js +11 -0
  476. package/bin/Utils/index.js.map +1 -0
  477. package/bin/index.d.ts +29 -0
  478. package/bin/index.d.ts.map +1 -0
  479. package/bin/index.js +36 -0
  480. package/bin/index.js.map +1 -0
  481. package/package.json +84 -47
  482. package/LICENSE +0 -21
  483. package/index.cjs +0 -2
  484. package/index.cjs.map +0 -1
  485. package/index.d.ts +0 -13021
  486. package/index.es5.js +0 -4
  487. package/index.es5.js.map +0 -1
  488. package/index.mjs +0 -2
  489. package/index.mjs.map +0 -1
  490. package/index.umd.js +0 -4
  491. package/index.umd.js.map +0 -1
package/index.es5.js DELETED
@@ -1,4 +0,0 @@
1
- "use strict";function e(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}function t(e,t,n,r,i,o,s){try{var a=e[o](s),c=a.value}catch(e){return void n(e)}a.done?t(c):Promise.resolve(c).then(r,i)}function n(e){return function(){var n=this,r=arguments;return new Promise(function(i,o){var s=e.apply(n,r);function a(e){t(s,i,o,a,c,"next",e)}function c(e){t(s,i,o,a,c,"throw",e)}a(void 0)})}}function r(e,t,n){if(l())return Reflect.construct.apply(null,arguments);var r=[null];r.push.apply(r,t);var i=new(e.bind.apply(e,r));return n&&d(i,n.prototype),i}function i(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,p(r.key),r)}}function o(e,t,n){return t&&i(e.prototype,t),n&&i(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e}function s(t,n){var r="undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(r)return(r=r.call(t)).next.bind(r);if(Array.isArray(t)||(r=function(t,n){if(t){if("string"==typeof t)return e(t,n);var r={}.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?e(t,n):void 0}}(t))||n){r&&(t=r);var i=0;return function(){return i>=t.length?{done:!0}:{done:!1,value:t[i++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)({}).hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},a.apply(null,arguments)}function c(e){return c=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},c(e)}function u(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,d(e,t)}function l(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(e){}return(l=function(){return!!e})()}function h(){
2
- /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */
3
- var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function o(n,r,i,o){var c=r&&r.prototype instanceof a?r:a,u=Object.create(c.prototype);return f(u,"_invoke",function(n,r,i){var o,a,c,u=0,l=i||[],h=!1,f={p:0,n:0,v:e,a:d,f:d.bind(e,4),d:function(t,n){return o=t,a=0,c=e,f.n=n,s}};function d(n,r){for(a=n,c=r,t=0;!h&&u&&!i&&t<l.length;t++){var i,o=l[t],d=f.p,p=o[2];n>3?(i=p===r)&&(c=o[(a=o[4])?5:(a=3,3)],o[4]=o[5]=e):o[0]<=d&&((i=n<2&&d<o[1])?(a=0,f.v=r,f.n=o[1]):d<p&&(i=n<3||o[0]>r||r>p)&&(o[4]=n,o[5]=r,f.n=p,a=0))}if(i||n>1)return s;throw h=!0,r}return function(i,l,p){if(u>1)throw TypeError("Generator is already running");for(h&&1===l&&d(l,p),a=l,c=p;(t=a<2?e:c)||!h;){o||(a?a<3?(a>1&&(f.n=-1),d(a,c)):f.n=c:f.v=c);try{if(u=2,o){if(a||(i="next"),t=o[i]){if(!(t=t.call(o,c)))throw TypeError("iterator result is not an object");if(!t.done)return t;c=t.value,a<2&&(a=0)}else 1===a&&(t=o.return)&&t.call(o),a<2&&(c=TypeError("The iterator does not provide a '"+i+"' method"),a=1);o=e}else if((t=(h=f.n<0)?c:n.call(r,f))!==s)break}catch(t){o=e,a=1,c=t}finally{u=1}}return{value:t,done:h}}}(n,i,o),!0),u}var s={};function a(){}function c(){}function u(){}t=Object.getPrototypeOf;var l=[][r]?t(t([][r]())):(f(t={},r,function(){return this}),t),d=u.prototype=a.prototype=Object.create(l);function p(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,u):(e.__proto__=u,f(e,i,"GeneratorFunction")),e.prototype=Object.create(d),e}return c.prototype=u,f(d,"constructor",u),f(u,"constructor",c),c.displayName="GeneratorFunction",f(u,i,"GeneratorFunction"),f(d),f(d,i,"Generator"),f(d,r,function(){return this}),f(d,"toString",function(){return"[object Generator]"}),(h=function(){return{w:o,m:p}})()}function f(e,t,n,r){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}f=function(e,t,n,r){function o(t,n){f(e,t,function(e){return this._invoke(t,n,e)})}t?i?i(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(o("next",0),o("throw",1),o("return",2))},f(e,t,n,r)}function d(e,t){return d=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},d(e,t)}function p(e){var t=function(e,t){if("object"!=typeof e||!e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,t);if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e,"string");return"symbol"==typeof t?t:t+""}function m(e){var t="function"==typeof Map?new Map:void 0;return m=function(e){if(null===e||!function(e){try{return-1!==Function.toString.call(e).indexOf("[native code]")}catch(t){return"function"==typeof e}}(e))return e;if("function"!=typeof e)throw new TypeError("Super expression must either be null or a function");if(void 0!==t){if(t.has(e))return t.get(e);t.set(e,n)}function n(){return r(e,arguments,c(this).constructor)}return n.prototype=Object.create(e.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),d(n,e)},m(e)}function v(e,t,n,r){var i,o=arguments.length,s=o<3?t:null===r?r=Object.getOwnPropertyDescriptor(t,n):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)s=Reflect.decorate(e,t,n,r);else for(var a=e.length-1;a>=0;a--)(i=e[a])&&(s=(o<3?i(s):o>3?i(t,n,s):i(t,n))||s);return o>3&&s&&Object.defineProperty(t,n,s),s}function y(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)}"function"==typeof SuppressedError&&SuppressedError;var g=function(){function e(){}return e.update=function(e){this.unscaledDeltaTime=e,this.deltaTime=e*this.timeScale,this.unscaledTotalTime+=this.unscaledDeltaTime,this.totalTime+=this.deltaTime,this.frameCount++},e.sceneChanged=function(){this.frameCount=0,this.totalTime=0,this.unscaledTotalTime=0,this.deltaTime=0,this.unscaledDeltaTime=0},e.checkEvery=function(e,t){return this.totalTime-t>=e},e}();g.deltaTime=0,g.unscaledDeltaTime=0,g.totalTime=0,g.unscaledTotalTime=0,g.timeScale=1,g.frameCount=0;var _,S=function(){function e(){this._timeInSeconds=0,this._repeats=!1,this._isDone=!1,this._elapsedTime=0}var t=e.prototype;return t.getContext=function(){return this.context},t.reset=function(){this._elapsedTime=0},t.stop=function(){this._isDone=!0},t.tick=function(){return!this._isDone&&this._elapsedTime>this._timeInSeconds&&(this._elapsedTime-=this._timeInSeconds,this._onTime(this),this._isDone||this._repeats||(this._isDone=!0)),this._elapsedTime+=g.deltaTime,this._isDone},t.initialize=function(e,t,n,r){this._timeInSeconds=e,this._repeats=t,this.context=n,this._onTime=r.bind(n)},t.unload=function(){this.context=null,this._onTime=null},o(e,[{key:"isDone",get:function(){return this._isDone}},{key:"elapsedTime",get:function(){return this._elapsedTime}}])}(),C=new WeakMap,b=new WeakMap;function E(){return function(e){var t=C.get(e);C.set(e,a({injectable:!0,dependencies:[]},(null==t?void 0:t.properties)&&{properties:t.properties}))}}function T(e){return void 0===e&&(e=0),function(t){var n=t.prototype;if(!n||"function"!=typeof n.update)throw new Error("@Updatable() decorator requires class "+t.name+" to implement IUpdatable interface with update() method. Please add 'implements IUpdatable' and define update(deltaTime?: number): void method.");b.set(t,{updatable:!0,priority:e})}}function w(e){return function(t,n){var r=C.get(t.constructor);r||(r={injectable:!0,dependencies:[]},C.set(t.constructor,r)),r.properties||(r.properties=new Map),r.properties.set(n,e)}}function M(e){var t,n=C.get(e);return null!==(t=null==n?void 0:n.injectable)&&void 0!==t&&t}function A(e,t){var n=new e;return x(n,t),n}function x(e,t){var n,r=e.constructor,i=(n=r,C.get(n));if(null!=i&&i.properties&&0!==i.properties.size)for(var o,a=s(i.properties);!(o=a()).done;){var c=o.value,u=c[0],l=c[1],h=t.resolve(l);null!==h&&(e[u]=h)}}function I(e){var t,n=b.get(e);return null!==(t=null==n?void 0:n.updatable)&&void 0!==t&&t}function k(e){return b.get(e)}exports.TimerManager=function(){function e(){this._timers=[]}var t=e.prototype;return t.update=function(){for(var e=this._timers.length-1;e>=0;e--)this._timers[e].tick()&&(this._timers[e].unload(),this._timers.splice(e,1))},t.schedule=function(e,t,n,r){var i=new S;return i.initialize(e,t,n,r),this._timers.push(i),i},t.dispose=function(){for(var e,t=s(this._timers);!(e=t()).done;){e.value.unload()}this._timers=[]},e}(),exports.TimerManager=v([T()],exports.TimerManager),exports.PerformanceWarningType=void 0,(_=exports.PerformanceWarningType||(exports.PerformanceWarningType={})).HIGH_EXECUTION_TIME="high_execution_time",_.HIGH_MEMORY_USAGE="high_memory_usage",_.HIGH_CPU_USAGE="high_cpu_usage",_.FREQUENT_GC="frequent_gc",_.LOW_FPS="low_fps",_.HIGH_ENTITY_COUNT="high_entity_count";var O=function(){function e(){this._systemData=new Map,this._systemStats=new Map,this._isEnabled=!1,this._maxRecentSamples=60}var t=e.prototype;return t.enable=function(){this._isEnabled=!0},t.disable=function(){this._isEnabled=!1},t.startMonitoring=function(e){return this._isEnabled?performance.now():0},t.endMonitoring=function(e,t,n){if(void 0===n&&(n=0),this._isEnabled&&0!==t){var r=performance.now(),i=r-t,o={name:e,executionTime:i,entityCount:n,averageTimePerEntity:n>0?i/n:0,lastUpdateTime:r};this._systemData.set(e,o),this.updateStats(e,i)}},t.updateStats=function(e,t){var n=this._systemStats.get(e);n||(n={totalTime:0,averageTime:0,minTime:Number.MAX_VALUE,maxTime:0,executionCount:0,recentTimes:[],standardDeviation:0,percentile95:0,percentile99:0},this._systemStats.set(e,n)),n.totalTime+=t,n.executionCount++,n.averageTime=n.totalTime/n.executionCount,n.minTime=Math.min(n.minTime,t),n.maxTime=Math.max(n.maxTime,t),n.recentTimes.push(t),n.recentTimes.length>this._maxRecentSamples&&n.recentTimes.shift(),this.calculateAdvancedStats(n)},t.calculateAdvancedStats=function(e){if(0!==e.recentTimes.length){var t=e.recentTimes.reduce(function(e,t){return e+t},0)/e.recentTimes.length,n=e.recentTimes.reduce(function(e,n){return e+Math.pow(n-t,2)},0)/e.recentTimes.length;e.standardDeviation=Math.sqrt(n);var r=[].concat(e.recentTimes).sort(function(e,t){return e-t}),i=r.length;e.percentile95=r[Math.floor(.95*i)]||0,e.percentile99=r[Math.floor(.99*i)]||0}},t.getSystemData=function(e){return this._systemData.get(e)},t.getSystemStats=function(e){return this._systemStats.get(e)},t.getAllSystemData=function(){return new Map(this._systemData)},t.getAllSystemStats=function(){return new Map(this._systemStats)},t.getPerformanceReport=function(){if(!this._isEnabled)return"Performance monitoring is disabled.";var e=[];e.push("=== ECS Performance Report ==="),e.push("");for(var t,n=s(Array.from(this._systemStats.entries()).sort(function(e,t){return t[1].averageTime-e[1].averageTime}));!(t=n()).done;){var r=t.value,i=r[0],o=r[1],a=this._systemData.get(i);e.push("System: "+i),e.push(" Current: "+(null==a?void 0:a.executionTime.toFixed(2))+"ms ("+(null==a?void 0:a.entityCount)+" entities)"),e.push(" Average: "+o.averageTime.toFixed(2)+"ms"),e.push(" Min/Max: "+o.minTime.toFixed(2)+"ms / "+o.maxTime.toFixed(2)+"ms"),e.push(" Total: "+o.totalTime.toFixed(2)+"ms ("+o.executionCount+" calls)"),null!=a&&a.averageTimePerEntity&&a.averageTimePerEntity>0&&e.push(" Per Entity: "+a.averageTimePerEntity.toFixed(4)+"ms"),e.push("")}var c=Array.from(this._systemData.values()).reduce(function(e,t){return e+t.executionTime},0);return e.push("Total Frame Time: "+c.toFixed(2)+"ms"),e.push("Systems Count: "+this._systemData.size),e.join("\n")},t.reset=function(){this._systemData.clear(),this._systemStats.clear()},t.resetSystem=function(e){this._systemData.delete(e),this._systemStats.delete(e)},t.getPerformanceWarnings=function(e){void 0===e&&(e=16.67);for(var t,n=[],r=s(this._systemData.entries());!(t=r()).done;){var i=t.value,o=i[0],a=i[1];a.executionTime>e&&n.push(o+": "+a.executionTime.toFixed(2)+"ms (>"+e+"ms)")}return n},t.setMaxRecentSamples=function(e){this._maxRecentSamples=e;for(var t,n=s(this._systemStats.values());!(t=n()).done;)for(var r=t.value;r.recentTimes.length>e;)r.recentTimes.shift()},t.dispose=function(){this._systemData.clear(),this._systemStats.clear(),this._isEnabled=!1},o(e,[{key:"isEnabled",get:function(){return this._isEnabled}}])}(),D=function(){function e(e,t,n){void 0===t&&(t=100),void 0===n&&(n=1024),this._objects=[],this._createFn=e,this._maxSize=t,this._objectSize=n,this._stats={size:0,maxSize:t,totalCreated:0,totalObtained:0,totalReleased:0,hitRate:0,estimatedMemoryUsage:0}}e.getPool=function(t,n,r){void 0===n&&(n=100),void 0===r&&(r=1024);var i=this._pools.get(t);return i||(i=new e(function(){return new t},n,r),this._pools.set(t,i)),i};var t=e.prototype;return t.obtain=function(){if(this._stats.totalObtained++,this._objects.length>0){var e=this._objects.pop();return this._stats.size--,this._updateHitRate(),this._updateMemoryUsage(),e}return this._stats.totalCreated++,this._updateHitRate(),this._createFn()},t.release=function(e){e&&(this._stats.totalReleased++,this._stats.size<this._maxSize&&(e.reset(),this._objects.push(e),this._stats.size++,this._updateMemoryUsage()))},t.getStats=function(){return a({},this._stats)},t.clear=function(){for(var e,t=s(this._objects);!(e=t()).done;){e.value.reset()}this._objects.length=0,this._stats.size=0,this._updateMemoryUsage()},t.compact=function(e){for(var t=null!=e?e:Math.floor(this._objects.length/2);this._objects.length>t;){var n=this._objects.pop();n&&(n.reset(),this._stats.size--)}this._updateMemoryUsage()},t.prewarm=function(e){for(var t=Math.min(e,this._maxSize-this._objects.length),n=0;n<t;n++){var r=this._createFn();r.reset(),this._objects.push(r),this._stats.totalCreated++,this._stats.size++}this._updateMemoryUsage()},t.setMaxSize=function(e){this._maxSize=e,this._stats.maxSize=e,this._objects.length>e&&this.compact(e)},t.getAvailableCount=function(){return this._objects.length},t.isEmpty=function(){return 0===this._objects.length},t.isFull=function(){return this._objects.length>=this._maxSize},e.getAllPoolTypes=function(){return Array.from(this._pools.keys())},e.getAllPoolStats=function(){for(var e,t={},n=s(this._pools);!(e=n()).done;){var r=e.value,i=r[0],o=r[1];t[i.name||i.toString()]=o.getStats()}return t},e.compactAllPools=function(){for(var e,t=s(this._pools.values());!(e=t()).done;){e.value.compact()}},e.clearAllPools=function(){for(var e,t=s(this._pools.values());!(e=t()).done;){e.value.clear()}this._pools.clear()},e.getGlobalStatsString=function(){var e=this.getAllPoolStats(),t=["=== Object Pool Global Statistics ===",""];if(0===Object.keys(e).length)return t.push("No pools registered"),t.join("\n");for(var n=0,r=Object.entries(e);n<r.length;n++){var i=r[n],o=i[0],s=i[1];t.push(o+":"),t.push(" Size: "+s.size+"/"+s.maxSize),t.push(" Hit Rate: "+(100*s.hitRate).toFixed(1)+"%"),t.push(" Total Created: "+s.totalCreated),t.push(" Total Obtained: "+s.totalObtained),t.push(" Memory: "+(s.estimatedMemoryUsage/1024).toFixed(1)+" KB"),t.push("")}return t.join("\n")},t._updateHitRate=function(){if(0===this._stats.totalObtained)this._stats.hitRate=0;else{var e=this._stats.totalObtained-this._stats.totalCreated;this._stats.hitRate=e/this._stats.totalObtained}},t._updateMemoryUsage=function(){this._stats.estimatedMemoryUsage=this._stats.size*this._objectSize},e}();D._pools=new Map;var P=function(){function e(){this.pools=new Map,this.autoCompactInterval=6e4,this.lastCompactTime=0}var t=e.prototype;return t.registerPool=function(e,t){this.pools.set(e,t)},t.getPool=function(e){return this.pools.get(e)||null},t.update=function(){var e=Date.now();e-this.lastCompactTime>this.autoCompactInterval&&(this.compactAllPools(),this.lastCompactTime=e)},t.createPool=function(e,t,n,r){void 0===n&&(n=100),void 0===r&&(r=1024);var i=this.pools.get(e);return i||(i=new D(t,n,r),this.pools.set(e,i)),i},t.removePool=function(e){var t=this.pools.get(e);return!!t&&(t.clear(),this.pools.delete(e),!0)},t.getPoolNames=function(){return Array.from(this.pools.keys())},t.getPoolCount=function(){return this.pools.size},t.compactAllPools=function(){for(var e,t=s(this.pools.values());!(e=t()).done;){e.value.compact()}},t.clearAllPools=function(){for(var e,t=s(this.pools.values());!(e=t()).done;){e.value.clear()}},t.getAllStats=function(){for(var e,t=new Map,n=s(this.pools);!(e=n()).done;){var r=e.value,i=r[0],o=r[1];t.set(i,o.getStats())}return t},t.getGlobalStats=function(){for(var e,t=0,n=0,r=0,i=0,o=0,a=0,c=s(this.pools.values());!(e=c()).done;){var u=e.value.getStats();t+=u.size,n+=u.maxSize,r+=u.totalCreated,i+=u.totalObtained,o+=u.totalReleased,a+=u.estimatedMemoryUsage}return{size:t,maxSize:n,totalCreated:r,totalObtained:i,totalReleased:o,hitRate:0===i?0:(i-r)/i,estimatedMemoryUsage:a}},t.getStatsString=function(){var e=["=== Pool Manager Statistics ===",""];if(0===this.pools.size)return e.push("No pools registered"),e.join("\n");var t=this.getGlobalStats();e.push("Total Pools: "+this.pools.size),e.push("Global Hit Rate: "+(100*t.hitRate).toFixed(1)+"%"),e.push("Global Memory Usage: "+(t.estimatedMemoryUsage/1024).toFixed(1)+" KB"),e.push("");for(var n,r=s(this.pools);!(n=r()).done;){var i=n.value,o=i[0],a=i[1].getStats();e.push(o+":"),e.push(" Size: "+a.size+"/"+a.maxSize),e.push(" Hit Rate: "+(100*a.hitRate).toFixed(1)+"%"),e.push(" Memory: "+(a.estimatedMemoryUsage/1024).toFixed(1)+" KB"),e.push("")}return e.join("\n")},t.setAutoCompactInterval=function(e){this.autoCompactInterval=e},t.prewarmAllPools=function(){for(var e,t=s(this.pools.values());!(e=t()).done;){var n=e.value,r=n.getStats(),i=Math.floor(.2*r.maxSize);n.prewarm(i)}},t.reset=function(){this.clearAllPools(),this.pools.clear(),this.lastCompactTime=0},t.dispose=function(){this.reset()},e}(),R=Symbol("ComponentTypeName"),F=Symbol("ComponentDependencies"),z=Symbol("SystemTypeName");function N(e,t){return function(n){if(!e||"string"!=typeof e)throw new Error("ECSComponent装饰器必须提供有效的类型名称");return n[R]=e,null!=t&&t.requires&&(n[F]=t.requires),n}}function B(e){return e.__systemMetadata__}function L(e){var t=e[R];return t||(e.name||"UnknownComponent")}function H(e){var t=e[z];return t||(e.name||"UnknownSystem")}function W(e){return L(e.constructor)}function j(e){return H(e.constructor)}var G=function(){function e(e){this._target=e}return e.prototype.deref=function(){return this._target},e}(),q="undefined"!=typeof globalThis&&globalThis.WeakRef||"undefined"!=typeof global&&global.WeakRef||"undefined"!=typeof window&&window.WeakRef||G,U=new Map;function Q(e){var t=U.get(e);return(null==t?void 0:t.deref())||null}var V,Y=function(){function e(){this._references=new Map}var t=e.prototype;return t.registerReference=function(e,t,n){var r=e.id,i=this._references.get(r);i||(i=new Set,this._references.set(r,i)),this._findRecord(i,t,n)||i.add({component:new q(t),propertyKey:n})},t.unregisterReference=function(e,t,n){var r=e.id,i=this._references.get(r);if(i){var o=this._findRecord(i,t,n);o&&(i.delete(o),0===i.size&&this._references.delete(r))}},t.clearReferencesTo=function(e){var t=this._references.get(e);if(t){for(var n,r=[],i=s(t);!(n=i()).done;){var o=n.value;o.component.deref()&&r.push(o)}for(var a=0,c=r;a<c.length;a++){var u=c[a],l=u.component.deref();l&&(l[u.propertyKey]=null)}this._references.delete(e)}},t.clearComponentReferences=function(e){for(var t,n=s(this._references.entries());!(t=n()).done;){for(var r,i=t.value,o=i[0],a=i[1],c=[],u=s(a);!(r=u()).done;){var l=r.value,h=l.component.deref();h&&h!==e||c.push(l)}for(var f=0,d=c;f<d.length;f++){var p=d[f];a.delete(p)}0===a.size&&this._references.delete(o)}},t.getReferencesTo=function(e){var t=this._references.get(e);if(!t)return[];for(var n,r=[],i=s(t);!(n=i()).done;){var o=n.value;o.component.deref()&&r.push(o)}return r},t.cleanup=function(){for(var e,t=[],n=s(this._references.entries());!(e=n()).done;){for(var r,i=e.value,o=i[0],a=i[1],c=[],u=s(a);!(r=u()).done;){var l=r.value;l.component.deref()||c.push(l)}for(var h=0,f=c;h<f.length;h++){var d=f[h];a.delete(d)}0===a.size&&t.push(o)}for(var p=0,m=t;p<m.length;p++){var v=m[p];this._references.delete(v)}},t.registerEntityScene=function(e,t){U.set(e,new q(t))},t.unregisterEntityScene=function(e){U.delete(e)},t.getDebugInfo=function(){for(var e,t={},n=s(this._references.entries());!(e=n()).done;){for(var r,i=e.value,o=i[0],a=[],c=s(i[1]);!(r=c()).done;){var u=r.value,l=u.component.deref();l&&a.push({componentId:l.id,propertyKey:u.propertyKey})}a.length>0&&(t["entity_"+o]=a)}return t},t._findRecord=function(e,t,n){for(var r,i=s(e);!(r=i()).done;){var o=r.value;if(o.component.deref()===t&&o.propertyKey===n)return o}},e}();exports.LogLevel=void 0,(V=exports.LogLevel||(exports.LogLevel={}))[V.Debug=0]="Debug",V[V.Info=1]="Info",V[V.Warn=2]="Warn",V[V.Error=3]="Error",V[V.Fatal=4]="Fatal",V[V.None=5]="None";var J={BLACK:"",RED:"",GREEN:"",YELLOW:"",BLUE:"",MAGENTA:"",CYAN:"",WHITE:"",BRIGHT_BLACK:"",BRIGHT_RED:"",BRIGHT_GREEN:"",BRIGHT_YELLOW:"",BRIGHT_BLUE:"",BRIGHT_MAGENTA:"",BRIGHT_CYAN:"",BRIGHT_WHITE:"",RESET:"",BOLD:"",UNDERLINE:""},K=function(){function e(e){void 0===e&&(e={}),this._config=a({level:exports.LogLevel.Info,enableTimestamp:!0,enableColors:"undefined"==typeof window},e)}var t=e.prototype;return t.debug=function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];this.log.apply(this,[exports.LogLevel.Debug,e].concat(n))},t.info=function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];this.log.apply(this,[exports.LogLevel.Info,e].concat(n))},t.warn=function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];this.log.apply(this,[exports.LogLevel.Warn,e].concat(n))},t.error=function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];this.log.apply(this,[exports.LogLevel.Error,e].concat(n))},t.fatal=function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];this.log.apply(this,[exports.LogLevel.Fatal,e].concat(n))},t.setLevel=function(e){this._config.level=e},t.setColors=function(e){0===Object.keys(e).length?delete this._config.colors:this._config.colors=a({},this._config.colors,e)},t.setPrefix=function(e){this._config.prefix=e},t.log=function(e,t){if(!(e<this._config.level)){var n=t;if(this._config.enableTimestamp)n="["+(new Date).toISOString()+"] "+n;if(this._config.prefix&&(n="["+this._config.prefix+"] "+n),n="["+exports.LogLevel[e].toUpperCase()+"] "+n,this._config.output)this._config.output(e,n);else{for(var r=arguments.length,i=new Array(r>2?r-2:0),o=2;o<r;o++)i[o-2]=arguments[o];this.outputToConsole.apply(this,[e,n].concat(i))}}},t.outputToConsole=function(e,t){for(var n=this._config.enableColors?this.getColors():null,r=arguments.length,i=new Array(r>2?r-2:0),o=2;o<r;o++)i[o-2]=arguments[o];switch(e){case exports.LogLevel.Debug:var s,a;if(n)(s=console).debug.apply(s,[""+n.debug+t+n.reset].concat(i));else(a=console).debug.apply(a,[t].concat(i));break;case exports.LogLevel.Info:var c,u;if(n)(c=console).info.apply(c,[""+n.info+t+n.reset].concat(i));else(u=console).info.apply(u,[t].concat(i));break;case exports.LogLevel.Warn:var l,h;if(n)(l=console).warn.apply(l,[""+n.warn+t+n.reset].concat(i));else(h=console).warn.apply(h,[t].concat(i));break;case exports.LogLevel.Error:var f,d;if(n)(f=console).error.apply(f,[""+n.error+t+n.reset].concat(i));else(d=console).error.apply(d,[t].concat(i));break;case exports.LogLevel.Fatal:var p,m;if(n)(p=console).error.apply(p,[""+n.fatal+t+n.reset].concat(i));else(m=console).error.apply(m,[t].concat(i))}},t.getColors=function(){return a({},{debug:J.BRIGHT_BLACK,info:J.GREEN,warn:J.YELLOW,error:J.RED,fatal:J.BRIGHT_RED,reset:J.RESET},this._config.colors)},e}(),Z=function(){function e(){this._loggers=new Map,this._defaultLevel=exports.LogLevel.Info}var t=e.prototype;return t.createDefaultLogger=function(){return this._loggerFactory?this._loggerFactory():new K({level:this._defaultLevel})},e.getInstance=function(){return e._instance||(e._instance=new e),e._instance},t.getLogger=function(e){return e?this._loggerFactory?this._loggerFactory(e):(this._loggers.has(e)||this._loggers.set(e,new K({prefix:e,level:this._defaultLevel})),this._loggers.get(e)):this.defaultLogger},t.setLogger=function(e,t){this._loggers.set(e,t)},t.setGlobalLevel=function(e){this._defaultLevel=e,this._defaultLogger instanceof K&&this._defaultLogger.setLevel(e);for(var t,n=s(this._loggers.values());!(t=n()).done;){var r=t.value;r instanceof K&&r.setLevel(e)}},t.createChildLogger=function(e,t){var n=e+"."+t;return this.getLogger(n)},t.setGlobalColors=function(e){this._defaultLogger instanceof K&&this._defaultLogger.setColors(e);for(var t,n=s(this._loggers.values());!(t=n()).done;){var r=t.value;r instanceof K&&r.setColors(e)}},t.resetColors=function(){this._defaultLogger instanceof K&&this._defaultLogger.setColors({});for(var e,t=s(this._loggers.values());!(e=t()).done;){var n=e.value;n instanceof K&&n.setColors({})}},t.setLoggerFactory=function(e){this._loggerFactory=e,delete this._defaultLogger,this._loggers.clear()},o(e,[{key:"defaultLogger",get:function(){return this._defaultLogger||(this._defaultLogger=this.createDefaultLogger()),this._defaultLogger}}])}(),X=Z.getInstance().getLogger();function $(e){return Z.getInstance().getLogger(e)}var ee=$("EntityRefDecorator"),te=Symbol("EntityRefMetadata"),ne=Symbol("EntityRefValues");function re(e){var t=e[ne];return t||(t=new Map,e[ne]=t),t}function ie(e){return e&&("function"==typeof e?e:e.constructor)[te]||null}var oe,se="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},ae={};!function(){return oe||(oe=1,function(e){!function(){var t="object"==typeof globalThis?globalThis:"object"==typeof se?se:"object"==typeof self?self:"object"==typeof this?this:function(){try{return Function("return this;")()}catch(e){}}()||function(){try{return(0,eval)("(function() { return this; })()")}catch(e){}}(),n=r(e);function r(e,t){return function(n,r){Object.defineProperty(e,n,{configurable:!0,writable:!0,value:r}),t&&t(n,r)}}void 0!==t.Reflect&&(n=r(t.Reflect,n)),function(e,t){var n=Object.prototype.hasOwnProperty,r="function"==typeof Symbol,i=r&&void 0!==Symbol.toPrimitive?Symbol.toPrimitive:"@@toPrimitive",o=r&&void 0!==Symbol.iterator?Symbol.iterator:"@@iterator",s="function"==typeof Object.create,a={__proto__:[]}instanceof Array,c=!s&&!a,u={create:s?function(){return he(Object.create(null))}:a?function(){return he({__proto__:null})}:function(){return he({})},has:c?function(e,t){return n.call(e,t)}:function(e,t){return t in e},get:c?function(e,t){return n.call(e,t)?e[t]:void 0}:function(e,t){return e[t]}},l=Object.getPrototypeOf(Function),h="function"==typeof Map&&"function"==typeof Map.prototype.entries?Map:ce(),f="function"==typeof Set&&"function"==typeof Set.prototype.entries?Set:ue(),d="function"==typeof WeakMap?WeakMap:le(),p=r?Symbol.for("@reflect-metadata:registry"):void 0,m=ie(),v=oe(m);function y(e,t,n,r){if(N(n)){if(!Q(e))throw new TypeError;if(!Y(t))throw new TypeError;return A(e,t)}if(!Q(e))throw new TypeError;if(!H(t))throw new TypeError;if(!H(r)&&!N(r)&&!B(r))throw new TypeError;return B(r)&&(r=void 0),x(e,t,n=U(n),r)}function g(e,t){function n(n,r){if(!H(n))throw new TypeError;if(!N(r)&&!J(r))throw new TypeError;P(e,t,n,r)}return n}function _(e,t,n,r){if(!H(n))throw new TypeError;return N(r)||(r=U(r)),P(e,t,n,r)}function S(e,t,n){if(!H(t))throw new TypeError;return N(n)||(n=U(n)),I(e,t,n)}function C(e,t,n){if(!H(t))throw new TypeError;return N(n)||(n=U(n)),k(e,t,n)}function b(e,t,n){if(!H(t))throw new TypeError;return N(n)||(n=U(n)),O(e,t,n)}function E(e,t,n){if(!H(t))throw new TypeError;return N(n)||(n=U(n)),D(e,t,n)}function T(e,t){if(!H(e))throw new TypeError;return N(t)||(t=U(t)),R(e,t)}function w(e,t){if(!H(e))throw new TypeError;return N(t)||(t=U(t)),F(e,t)}function M(e,t,n){if(!H(t))throw new TypeError;if(N(n)||(n=U(n)),!H(t))throw new TypeError;N(n)||(n=U(n));var r=ae(t,n,!1);return!N(r)&&r.OrdinaryDeleteMetadata(e,t,n)}function A(e,t){for(var n=e.length-1;n>=0;--n){var r=(0,e[n])(t);if(!N(r)&&!B(r)){if(!Y(r))throw new TypeError;t=r}}return t}function x(e,t,n,r){for(var i=e.length-1;i>=0;--i){var o=(0,e[i])(t,n,r);if(!N(o)&&!B(o)){if(!H(o))throw new TypeError;r=o}}return r}function I(e,t,n){if(k(e,t,n))return!0;var r=ne(t);return!B(r)&&I(e,r,n)}function k(e,t,n){var r=ae(t,n,!1);return!N(r)&&G(r.OrdinaryHasOwnMetadata(e,t,n))}function O(e,t,n){if(k(e,t,n))return D(e,t,n);var r=ne(t);return B(r)?void 0:O(e,r,n)}function D(e,t,n){var r=ae(t,n,!1);if(!N(r))return r.OrdinaryGetOwnMetadata(e,t,n)}function P(e,t,n,r){ae(n,r,!0).OrdinaryDefineOwnMetadata(e,t,n,r)}function R(e,t){var n=F(e,t),r=ne(e);if(null===r)return n;var i=R(r,t);if(i.length<=0)return n;if(n.length<=0)return i;for(var o=new f,s=[],a=0,c=n;a<c.length;a++){var u=c[a];o.has(u)||(o.add(u),s.push(u))}for(var l=0,h=i;l<h.length;l++){u=h[l];o.has(u)||(o.add(u),s.push(u))}return s}function F(e,t){var n=ae(e,t,!1);return n?n.OrdinaryOwnMetadataKeys(e,t):[]}function z(e){if(null===e)return 1;switch(typeof e){case"undefined":return 0;case"boolean":return 2;case"string":return 3;case"symbol":return 4;case"number":return 5;case"object":return null===e?1:6;default:return 6}}function N(e){return void 0===e}function B(e){return null===e}function L(e){return"symbol"==typeof e}function H(e){return"object"==typeof e?null!==e:"function"==typeof e}function W(e,t){switch(z(e)){case 0:case 1:case 2:case 3:case 4:case 5:return e}var n="string",r=Z(e,i);if(void 0!==r){var o=r.call(e,n);if(H(o))throw new TypeError;return o}return j(e)}function j(e,t){var n,r,i=e.toString;if(V(i)&&!H(r=i.call(e)))return r;if(V(n=e.valueOf)&&!H(r=n.call(e)))return r;throw new TypeError}function G(e){return!!e}function q(e){return""+e}function U(e){var t=W(e);return L(t)?t:q(t)}function Q(e){return Array.isArray?Array.isArray(e):e instanceof Object?e instanceof Array:"[object Array]"===Object.prototype.toString.call(e)}function V(e){return"function"==typeof e}function Y(e){return"function"==typeof e}function J(e){switch(z(e)){case 3:case 4:return!0;default:return!1}}function K(e,t){return e===t||e!=e&&t!=t}function Z(e,t){var n=e[t];if(null!=n){if(!V(n))throw new TypeError;return n}}function X(e){var t=Z(e,o);if(!V(t))throw new TypeError;var n=t.call(e);if(!H(n))throw new TypeError;return n}function $(e){return e.value}function ee(e){var t=e.next();return!t.done&&t}function te(e){var t=e.return;t&&t.call(e)}function ne(e){var t=Object.getPrototypeOf(e);if("function"!=typeof e||e===l)return t;if(t!==l)return t;var n=e.prototype,r=n&&Object.getPrototypeOf(n);if(null==r||r===Object.prototype)return t;var i=r.constructor;return"function"!=typeof i||i===e?t:i}function re(){var e,n,r,i;N(p)||void 0===t.Reflect||p in t.Reflect||"function"!=typeof t.Reflect.defineMetadata||(e=se(t.Reflect));var o=new d,s={registerProvider:a,getProvider:u,setProvider:m};return s;function a(t){if(!Object.isExtensible(s))throw new Error("Cannot add provider to a frozen registry.");switch(!0){case e===t:break;case N(n):n=t;break;case n===t:break;case N(r):r=t;break;case r===t:break;default:void 0===i&&(i=new f),i.add(t)}}function c(t,o){if(!N(n)){if(n.isProviderFor(t,o))return n;if(!N(r)){if(r.isProviderFor(t,o))return n;if(!N(i))for(var s=X(i);;){var a=ee(s);if(!a)return;var c=$(a);if(c.isProviderFor(t,o))return te(s),c}}}if(!N(e)&&e.isProviderFor(t,o))return e}function u(e,t){var n,r=o.get(e);return N(r)||(n=r.get(t)),N(n)?(N(n=c(e,t))||(N(r)&&(r=new h,o.set(e,r)),r.set(t,n)),n):n}function l(e){if(N(e))throw new TypeError;return n===e||r===e||!N(i)&&i.has(e)}function m(e,t,n){if(!l(n))throw new Error("Metadata provider not registered.");var r=u(e,t);if(r!==n){if(!N(r))return!1;var i=o.get(e);N(i)&&(i=new h,o.set(e,i)),i.set(t,n)}return!0}}function ie(){var e;return!N(p)&&H(t.Reflect)&&Object.isExtensible(t.Reflect)&&(e=t.Reflect[p]),N(e)&&(e=re()),!N(p)&&H(t.Reflect)&&Object.isExtensible(t.Reflect)&&Object.defineProperty(t.Reflect,p,{enumerable:!1,configurable:!1,writable:!1,value:e}),e}function oe(e){var t=new d,n={isProviderFor:function(e,n){var r=t.get(e);return!N(r)&&r.has(n)},OrdinaryDefineOwnMetadata:s,OrdinaryHasOwnMetadata:i,OrdinaryGetOwnMetadata:o,OrdinaryOwnMetadataKeys:a,OrdinaryDeleteMetadata:c};return m.registerProvider(n),n;function r(r,i,o){var s=t.get(r),a=!1;if(N(s)){if(!o)return;s=new h,t.set(r,s),a=!0}var c=s.get(i);if(N(c)){if(!o)return;if(c=new h,s.set(i,c),!e.setProvider(r,i,n))throw s.delete(i),a&&t.delete(r),new Error("Wrong provider for target.")}return c}function i(e,t,n){var i=r(t,n,!1);return!N(i)&&G(i.has(e))}function o(e,t,n){var i=r(t,n,!1);if(!N(i))return i.get(e)}function s(e,t,n,i){r(n,i,!0).set(e,t)}function a(e,t){var n=[],i=r(e,t,!1);if(N(i))return n;for(var o=X(i.keys()),s=0;;){var a=ee(o);if(!a)return n.length=s,n;var c=$(a);try{n[s]=c}catch(e){try{te(o)}finally{throw e}}s++}}function c(e,n,i){var o=r(n,i,!1);if(N(o))return!1;if(!o.delete(e))return!1;if(0===o.size){var s=t.get(n);N(s)||(s.delete(i),0===s.size&&t.delete(s))}return!0}}function se(e){var t=e.defineMetadata,n=e.hasOwnMetadata,r=e.getOwnMetadata,i=e.getOwnMetadataKeys,o=e.deleteMetadata,s=new d;return{isProviderFor:function(e,t){var n=s.get(e);return!(N(n)||!n.has(t))||!!i(e,t).length&&(N(n)&&(n=new f,s.set(e,n)),n.add(t),!0)},OrdinaryDefineOwnMetadata:t,OrdinaryHasOwnMetadata:n,OrdinaryGetOwnMetadata:r,OrdinaryOwnMetadataKeys:i,OrdinaryDeleteMetadata:o}}function ae(e,t,n){var r=m.getProvider(e,t);if(!N(r))return r;if(n){if(m.setProvider(e,t,v))return v;throw new Error("Illegal state.")}}function ce(){var e={},t=[],n=function(){function e(e,t,n){this._index=0,this._keys=e,this._values=t,this._selector=n}return e.prototype["@@iterator"]=function(){return this},e.prototype[o]=function(){return this},e.prototype.next=function(){var e=this._index;if(e>=0&&e<this._keys.length){var n=this._selector(this._keys[e],this._values[e]);return e+1>=this._keys.length?(this._index=-1,this._keys=t,this._values=t):this._index++,{value:n,done:!1}}return{value:void 0,done:!0}},e.prototype.throw=function(e){throw this._index>=0&&(this._index=-1,this._keys=t,this._values=t),e},e.prototype.return=function(e){return this._index>=0&&(this._index=-1,this._keys=t,this._values=t),{value:e,done:!0}},e}();return function(){function t(){this._keys=[],this._values=[],this._cacheKey=e,this._cacheIndex=-2}return Object.defineProperty(t.prototype,"size",{get:function(){return this._keys.length},enumerable:!0,configurable:!0}),t.prototype.has=function(e){return this._find(e,!1)>=0},t.prototype.get=function(e){var t=this._find(e,!1);return t>=0?this._values[t]:void 0},t.prototype.set=function(e,t){var n=this._find(e,!0);return this._values[n]=t,this},t.prototype.delete=function(t){var n=this._find(t,!1);if(n>=0){for(var r=this._keys.length,i=n+1;i<r;i++)this._keys[i-1]=this._keys[i],this._values[i-1]=this._values[i];return this._keys.length--,this._values.length--,K(t,this._cacheKey)&&(this._cacheKey=e,this._cacheIndex=-2),!0}return!1},t.prototype.clear=function(){this._keys.length=0,this._values.length=0,this._cacheKey=e,this._cacheIndex=-2},t.prototype.keys=function(){return new n(this._keys,this._values,r)},t.prototype.values=function(){return new n(this._keys,this._values,i)},t.prototype.entries=function(){return new n(this._keys,this._values,s)},t.prototype["@@iterator"]=function(){return this.entries()},t.prototype[o]=function(){return this.entries()},t.prototype._find=function(e,t){if(!K(this._cacheKey,e)){this._cacheIndex=-1;for(var n=0;n<this._keys.length;n++)if(K(this._keys[n],e)){this._cacheIndex=n;break}}return this._cacheIndex<0&&t&&(this._cacheIndex=this._keys.length,this._keys.push(e),this._values.push(void 0)),this._cacheIndex},t}();function r(e,t){return e}function i(e,t){return t}function s(e,t){return[e,t]}}function ue(){return function(){function e(){this._map=new h}return Object.defineProperty(e.prototype,"size",{get:function(){return this._map.size},enumerable:!0,configurable:!0}),e.prototype.has=function(e){return this._map.has(e)},e.prototype.add=function(e){return this._map.set(e,e),this},e.prototype.delete=function(e){return this._map.delete(e)},e.prototype.clear=function(){this._map.clear()},e.prototype.keys=function(){return this._map.keys()},e.prototype.values=function(){return this._map.keys()},e.prototype.entries=function(){return this._map.entries()},e.prototype["@@iterator"]=function(){return this.keys()},e.prototype[o]=function(){return this.keys()},e}()}function le(){var e=16,t=u.create(),r=i();return function(){function e(){this._key=i()}return e.prototype.has=function(e){var t=o(e,!1);return void 0!==t&&u.has(t,this._key)},e.prototype.get=function(e){var t=o(e,!1);return void 0!==t?u.get(t,this._key):void 0},e.prototype.set=function(e,t){return o(e,!0)[this._key]=t,this},e.prototype.delete=function(e){var t=o(e,!1);return void 0!==t&&delete t[this._key]},e.prototype.clear=function(){this._key=i()},e}();function i(){var e;do{e="@@WeakMap@@"+c()}while(u.has(t,e));return t[e]=!0,e}function o(e,t){if(!n.call(e,r)){if(!t)return;Object.defineProperty(e,r,{value:u.create()})}return e[r]}function s(e,t){for(var n=0;n<t;++n)e[n]=255*Math.random()|0;return e}function a(e){if("function"==typeof Uint8Array){var t=new Uint8Array(e);return"undefined"!=typeof crypto?crypto.getRandomValues(t):"undefined"!=typeof msCrypto?msCrypto.getRandomValues(t):s(t,e),t}return s(new Array(e),e)}function c(){var t=a(e);t[6]=79&t[6]|64,t[8]=191&t[8]|128;for(var n="",r=0;r<e;++r){var i=t[r];4!==r&&6!==r&&8!==r||(n+="-"),i<16&&(n+="0"),n+=i.toString(16).toLowerCase()}return n}}function he(e){return e.__=void 0,delete e.__,e}e("decorate",y),e("metadata",g),e("defineMetadata",_),e("hasMetadata",S),e("hasOwnMetadata",C),e("getMetadata",b),e("getOwnMetadata",E),e("getMetadataKeys",T),e("getOwnMetadataKeys",w),e("deleteMetadata",M)}(n,t),void 0===t.Reflect&&(t.Reflect=e)}()}(e||(e={}))),ae;var e}();var ce=Symbol.for("@esengine/property:metadata");var ue=function(){function e(){}return e.getConstructor=function(e){return this.TYPE_CONSTRUCTORS[e]||Float32Array},e.getBytesPerElement=function(e){return this.TYPE_BYTES[e]||4},e.getTypeName=function(e){return e instanceof Float32Array?"float32":e instanceof Float64Array?"float64":e instanceof Int32Array?"int32":e instanceof Uint32Array?"uint32":e instanceof Int16Array?"int16":e instanceof Uint16Array?"uint16":e instanceof Int8Array?"int8":e instanceof Uint8Array?"uint8":e instanceof Uint8ClampedArray?"uint8clamped":"float32"},e.createSameType=function(e,t){var n=this.getTypeName(e);return new(this.getConstructor(n))(t)},e.extractFieldMetadata=function(e){var t=new e,n=new Map,r=e,i=new Map,o=function(e,t){if(e)for(var n,r=s(e);!(n=r()).done;){var o=n.value;i.set(o,t)}};o(r.__float64Fields,"float64"),o(r.__float32Fields,"float32"),o(r.__int32Fields,"int32"),o(r.__uint32Fields,"uint32"),o(r.__int16Fields,"int16"),o(r.__uint16Fields,"uint16"),o(r.__int8Fields,"int8"),o(r.__uint8Fields,"uint8"),o(r.__uint8ClampedFields,"uint8clamped");for(var a,c=Object.keys(t).filter(function(e){return"id"!==e}),u=s(c);!(a=u()).done;){var l,h,f,d,p=a.value,m=typeof t[p];if("function"!==m){var v={name:p,type:m},y=i.get(p);y?v.arrayType=y:"number"===m?v.arrayType="float32":"boolean"===m&&(v.arrayType="uint8"),null!==(l=r.__serializeMapFields)&&void 0!==l&&l.has(p)&&(v.isSerializedMap=!0),null!==(h=r.__serializeSetFields)&&void 0!==h&&h.has(p)&&(v.isSerializedSet=!0),null!==(f=r.__serializeArrayFields)&&void 0!==f&&f.has(p)&&(v.isSerializedArray=!0),null!==(d=r.__deepCopyFields)&&void 0!==d&&d.has(p)&&(v.isDeepCopy=!0),n.set(p,v)}}return n},e}();ue.TYPE_CONSTRUCTORS={float32:Float32Array,float64:Float64Array,int32:Int32Array,uint32:Uint32Array,int16:Int16Array,uint16:Uint16Array,int8:Int8Array,uint8:Uint8Array,uint8clamped:Uint8ClampedArray},ue.TYPE_BYTES={float32:4,float64:8,int32:4,uint32:4,int16:2,uint16:2,int8:1,uint8:1,uint8clamped:1};var le=function(){function e(){}return e.serialize=function(e,t,n){void 0===n&&(n={});try{return n.isMap&&e instanceof Map?JSON.stringify(Array.from(e.entries())):n.isSet&&e instanceof Set?JSON.stringify(Array.from(e)):(n.isArray&&Array.isArray(e),JSON.stringify(e))}catch(e){return this._logger.warn("SoA序列化字段 "+t+" 失败:",e),"{}"}},e.deserialize=function(e,t,n){void 0===n&&(n={});try{var r=JSON.parse(e);return n.isMap?new Map(r):n.isSet?new Set(r):r}catch(e){return this._logger.warn("SoA反序列化字段 "+t+" 失败:",e),null}},e.deepClone=function(e){var t=this;if(null===e||"object"!=typeof e)return e;if(e instanceof Date)return new Date(e.getTime());if(Array.isArray(e))return e.map(function(e){return t.deepClone(e)});if(e instanceof Map){for(var n,r=new Map,i=s(e.entries());!(n=i()).done;){var o=n.value,a=o[0],c=o[1];r.set(a,this.deepClone(c))}return r}if(e instanceof Set){for(var u,l=new Set,h=s(e.values());!(u=h()).done;){var f=u.value;l.add(this.deepClone(f))}return l}var d={};for(var p in e)Object.prototype.hasOwnProperty.call(e,p)&&(d[p]=this.deepClone(e[p]));return d},e}();function he(e,t){var n=String(t);e.constructor.__int32Fields||(e.constructor.__int32Fields=new Set),e.constructor.__int32Fields.add(n)}le._logger=$("SoASerializer");var fe=function(){function e(e){this.fields=new Map,this.stringFields=new Map,this.serializedFields=new Map,this.complexFields=new Map,this.entityToIndex=new Map,this.indexToEntity=[],this.freeIndices=[],this._size=0,this._capacity=1e3,this.fieldTypes=new Map,this.serializeMapFields=new Set,this.serializeSetFields=new Set,this.serializeArrayFields=new Set,this.type=e,this.initializeFields(e)}var t=e.prototype;return t.initializeFields=function(e){var t=new e,n=e,r=n.__float64Fields||new Set,i=n.__float32Fields||new Set,o=n.__int32Fields||new Set,a=n.__uint32Fields||new Set,c=n.__int16Fields||new Set,u=n.__uint16Fields||new Set,l=n.__int8Fields||new Set,h=n.__uint8Fields||new Set,f=n.__uint8ClampedFields||new Set;this.serializeMapFields=n.__serializeMapFields||new Set,this.serializeSetFields=n.__serializeSetFields||new Set,this.serializeArrayFields=n.__serializeArrayFields||new Set;for(var d,p=new Map,m=s(r);!(d=m()).done;){var v=d.value;p.set(v,"float64")}for(var y,g=s(i);!(y=g()).done;){var _=y.value;p.set(_,"float32")}for(var S,C=s(o);!(S=C()).done;){var b=S.value;p.set(b,"int32")}for(var E,T=s(a);!(E=T()).done;){var w=E.value;p.set(w,"uint32")}for(var M,A=s(c);!(M=A()).done;){var x=M.value;p.set(x,"int16")}for(var I,k=s(u);!(I=k()).done;){var O=I.value;p.set(O,"uint16")}for(var D,P=s(l);!(D=P()).done;){var R=D.value;p.set(R,"int8")}for(var F,z=s(h);!(F=z()).done;){var N=F.value;p.set(N,"uint8")}for(var B,L=s(f);!(B=L()).done;){var H=B.value;p.set(H,"uint8clamped")}for(var W,j=Object.keys(t).filter(function(e){return"id"!==e}),G=s(j);!(W=G()).done;){var q=W.value,U=t[q],Q=typeof U;if("function"!==Q){var V=p.get(q),Y=V?"number":Q;if(this.fieldTypes.set(q,Y),V){var J=ue.getConstructor(V);this.fields.set(q,new J(this._capacity))}else"number"===Q?this.fields.set(q,new Float32Array(this._capacity)):"boolean"===Q?this.fields.set(q,new Uint8Array(this._capacity)):"string"===Q?this.stringFields.set(q,new Array(this._capacity)):"object"===Q&&null!==U&&(this.serializeMapFields.has(q)||this.serializeSetFields.has(q)||this.serializeArrayFields.has(q))&&this.serializedFields.set(q,new Array(this._capacity))}}},t.addComponent=function(e,t){if(this.entityToIndex.has(e)){var n=this.entityToIndex.get(e);this.updateComponentAtIndex(n,t)}else{var r;this.freeIndices.length>0?r=this.freeIndices.pop():(r=this._size)>=this._capacity&&this.resize(2*this._capacity),this.entityToIndex.set(e,r),this.indexToEntity[r]=e,this.updateComponentAtIndex(r,t),this._size++}},t.updateComponentAtIndex=function(e,t){var n=this.indexToEntity[e],r=new Map,i=this.type.__highPrecisionFields||new Set,o=this.type.__serializeMapFields||new Set,s=this.type.__serializeSetFields||new Set,a=this.type.__serializeArrayFields||new Set,c=this.type.__deepCopyFields||new Set;for(var u in t)if(t.hasOwnProperty(u)&&"id"!==u){var l=t[u],h=typeof l;if("number"===h)if(i.has(u)||!this.fields.has(u))r.set(u,l);else this.fields.get(u)[e]=l;else if("boolean"===h&&this.fields.has(u)){this.fields.get(u)[e]=l?1:0}else if(this.stringFields.has(u)){this.stringFields.get(u)[e]=String(l)}else if(this.serializedFields.has(u)){this.serializedFields.get(u)[e]=le.serialize(l,u,{isMap:o.has(u),isSet:s.has(u),isArray:a.has(u)})}else c.has(u)?r.set(u,le.deepClone(l)):r.set(u,l)}r.size>0&&this.complexFields.set(n,r)},t.getComponent=function(e){var t=this.entityToIndex.get(e);return void 0===t?null:this.createProxyView(e,t)},t.createProxyView=function(e,t){var n=this;return new Proxy({},{get:function(r,i){var o=String(i),s=n.fields.get(o);if(s)return"boolean"===n.getFieldType(o)?1===s[t]:s[t];var a=n.stringFields.get(o);if(a)return a[t];var c=n.serializedFields.get(o);if(c){var u=c[t];return u?le.deserialize(u,o,{isMap:n.serializeMapFields.has(o),isSet:n.serializeSetFields.has(o),isArray:n.serializeArrayFields.has(o)}):void 0}var l=n.complexFields.get(e);return null!=l&&l.has(o)?l.get(o):void 0},set:function(r,i,o){var s=String(i);if("entityId"===s)return!1;var a=n.fields.get(s);if(a){var c=n.getFieldType(s);return a[t]="boolean"===c?o?1:0:o,!0}var u=n.stringFields.get(s);if(u)return u[t]=String(o),!0;if(n.serializedFields.has(s))return n.serializedFields.get(s)[t]=le.serialize(o,s,{isMap:n.serializeMapFields.has(s),isSet:n.serializeSetFields.has(s),isArray:n.serializeArrayFields.has(s)}),!0;var l=n.complexFields.get(e);return l||(l=new Map,n.complexFields.set(e,l)),l.set(s,o),!0},has:function(t,r){var i,o=String(r);return n.fields.has(o)||n.stringFields.has(o)||n.serializedFields.has(o)||(null===(i=n.complexFields.get(e))||void 0===i?void 0:i.has(o))||!1},ownKeys:function(){for(var t,r=[],i=s(n.fields.keys());!(t=i()).done;){var o=t.value;r.push(o)}for(var a,c=s(n.stringFields.keys());!(a=c()).done;){var u=a.value;r.push(u)}for(var l,h=s(n.serializedFields.keys());!(l=h()).done;){var f=l.value;r.push(f)}var d=n.complexFields.get(e);if(d)for(var p,m=s(d.keys());!(p=m()).done;){var v=p.value;r.push(v)}return r},getOwnPropertyDescriptor:function(t,r){var i,o=String(r);if(n.fields.has(o)||n.stringFields.has(o)||n.serializedFields.has(o)||null!==(i=n.complexFields.get(e))&&void 0!==i&&i.has(o))return{enumerable:!0,configurable:!0,writable:"entityId"!==o}}})},t.getComponentSnapshot=function(e){var t=this.entityToIndex.get(e);if(void 0===t)return null;for(var n,r=new this.type,i=s(this.fields.entries());!(n=i()).done;){var o=n.value,a=o[0],c=o[1][t],u=this.getFieldType(a);r[a]="boolean"===u?1===c:c}for(var l,h=s(this.stringFields.entries());!(l=h()).done;){var f=l.value,d=f[0],p=f[1];r[d]=p[t]}for(var m,v=s(this.serializedFields.entries());!(m=v()).done;){var y=m.value,g=y[0],_=y[1][t];_&&(r[g]=le.deserialize(_,g,{isMap:this.serializeMapFields.has(g),isSet:this.serializeSetFields.has(g),isArray:this.serializeArrayFields.has(g)}))}var S=this.complexFields.get(e);if(S)for(var C,b=s(S.entries());!(C=b()).done;){var E=C.value,T=E[0],w=E[1];r[T]=w}return r},t.getFieldType=function(e){return this.fieldTypes.get(e)||"unknown"},t.hasComponent=function(e){return this.entityToIndex.has(e)},t.removeComponent=function(e){var t=this.entityToIndex.get(e);if(void 0===t)return null;var n=this.getComponent(e);return this.complexFields.delete(e),this.entityToIndex.delete(e),this.freeIndices.push(t),this._size--,n},t.resize=function(e){for(var t,n=s(this.fields.entries());!(t=n()).done;){var r=t.value,i=r[0],o=r[1],a=ue.createSameType(o,e);a.set(o),this.fields.set(i,a)}for(var c,u=s(this.stringFields.entries());!(c=u()).done;){for(var l=c.value,h=l[0],f=l[1],d=new Array(e),p=0;p<f.length;p++)d[p]=f[p];this.stringFields.set(h,d)}for(var m,v=s(this.serializedFields.entries());!(m=v()).done;){for(var y=m.value,g=y[0],_=y[1],S=new Array(e),C=0;C<_.length;C++)S[C]=_[C];this.serializedFields.set(g,S)}this._capacity=e},t.getActiveIndices=function(){return Array.from(this.entityToIndex.values())},t.getFieldArray=function(e){return this.fields.get(e)||null},t.getTypedFieldArray=function(e){return this.fields.get(String(e))||null},t.getEntityIndex=function(e){return this.entityToIndex.get(e)},t.getEntityIdByIndex=function(e){return this.indexToEntity[e]},t.size=function(){return this._size},t.clear=function(){this.entityToIndex.clear(),this.indexToEntity=[],this.freeIndices=[],this.complexFields.clear(),this._size=0;for(var e,t=s(this.fields.values());!(e=t()).done;){e.value.fill(0)}for(var n,r=s(this.stringFields.values());!(n=r()).done;)for(var i=n.value,o=0;o<i.length;o++)i[o]=void 0;for(var a,c=s(this.serializedFields.values());!(a=c()).done;)for(var u=a.value,l=0;l<u.length;l++)u[l]=void 0},t.compact=function(){if(0!==this.freeIndices.length){for(var e=Array.from(this.entityToIndex.entries()).sort(function(e,t){return e[1]-t[1]}),t=new Map,n=[],r=0;r<e.length;r++){var i=e[r];if(i){var o=i[0],a=i[1];if(t.set(o,r),n[r]=o,r!==a){for(var c,u=s(this.fields.entries());!(c=u()).done;){var l=c.value[1],h=l[a];void 0!==h&&(l[r]=h)}for(var f,d=s(this.stringFields.entries());!(f=d()).done;){var p=f.value[1],m=p[a];void 0!==m&&(p[r]=m)}for(var v,y=s(this.serializedFields.entries());!(v=y()).done;){var g=v.value[1],_=g[a];void 0!==_&&(g[r]=_)}}}}this.entityToIndex=t,this.indexToEntity=n,this.freeIndices=[],this._size=e.length}},t.getStats=function(){for(var e,t=0,n=new Map,r=s(this.fields.entries());!(e=r()).done;){var i=e.value,o=i[0],a=i[1],c=ue.getTypeName(a),u=ue.getBytesPerElement(c),l=a.length*u;t+=l,n.set(o,{size:this._size,capacity:a.length,type:c,memory:l})}return{size:this._size,capacity:this._capacity,usedSlots:this._size,fragmentation:this.freeIndices.length/this._capacity,memoryUsage:t,fieldStats:n}},t.performVectorizedOperation=function(e){var t=this.getActiveIndices();e(this.fields,t)},e}(),de=function(){function e(){this.entityId=null,this.id=e.idGenerator++}var t=e.prototype;return t.onAddedToEntity=function(){},t.onRemovedFromEntity=function(){},t.onDeserialized=function(){},e}();de.idGenerator=0,v([he,y("design:type",Object)],de.prototype,"entityId",void 0);var pe=Symbol("SerializableMetadata"),me=Symbol("SerializeField"),ve=Symbol("SerializeOptions");function ye(e){return function(t){if(!e||"number"!=typeof e.version)throw new Error("Serializable装饰器必须提供有效的版本号");var n;if(Object.prototype.hasOwnProperty.call(t,pe))(n=t[pe]).options=e;else{var r=t[pe];n={options:e,fields:r?new Map(r.fields):new Map,ignoredFields:r?new Set(r.ignoredFields):new Set},t[pe]=n}return t}}function ge(e){return function(t,n){var r,i=t.constructor;if(Object.prototype.hasOwnProperty.call(i,pe))r=i[pe];else{var o=i[pe];r={options:o?a({},o.options):{version:1},fields:o?new Map(o.fields):new Map,ignoredFields:o?new Set(o.ignoredFields):new Set},i[pe]=r}r.fields.set(n,e||{})}}function _e(e){return e&&("function"==typeof e?e:e.constructor)[pe]||null}exports.HierarchyComponent=function(e){function t(){var t;return(t=e.apply(this,arguments)||this).parentId=null,t.childIds=[],t.depth=0,t.bActiveInHierarchy=!0,t.bCacheDirty=!0,t}return u(t,e),t}(de),v([ge(),y("design:type",Object)],exports.HierarchyComponent.prototype,"parentId",void 0),v([ge(),y("design:type",Array)],exports.HierarchyComponent.prototype,"childIds",void 0),exports.HierarchyComponent=v([N("Hierarchy"),ye({version:1,typeId:"Hierarchy"})],exports.HierarchyComponent);var Se=function(){function e(){this.condition={all:[],any:[],none:[]}}e.all=function(){var t=new e;return t.all.apply(t,arguments)},e.any=function(){var t=new e;return t.any.apply(t,arguments)},e.none=function(){var t=new e;return t.none.apply(t,arguments)},e.byTag=function(t){return(new e).withTag(t)},e.byName=function(t){return(new e).withName(t)},e.byComponent=function(t){return(new e).withComponent(t)},e.complex=function(){return new e},e.empty=function(){return new e},e.nothing=function(){var t=new e;return t.condition.matchNothing=!0,t};var t=e.prototype;return t.all=function(){var e;return(e=this.condition.all).push.apply(e,arguments),this},t.any=function(){var e;return(e=this.condition.any).push.apply(e,arguments),this},t.none=function(){var e;return(e=this.condition.none).push.apply(e,arguments),this},t.exclude=function(){return this.none.apply(this,arguments)},t.one=function(){return this.any.apply(this,arguments)},t.withTag=function(e){return this.condition.tag=e,this},t.withName=function(e){return this.condition.name=e,this},t.withComponent=function(e){return this.condition.component=e,this},t.withoutTag=function(){return delete this.condition.tag,this},t.withoutName=function(){return delete this.condition.name,this},t.withoutComponent=function(){return delete this.condition.component,this},t.getCondition=function(){return a({all:[].concat(this.condition.all),any:[].concat(this.condition.any),none:[].concat(this.condition.none)},void 0!==this.condition.tag&&{tag:this.condition.tag},void 0!==this.condition.name&&{name:this.condition.name},void 0!==this.condition.component&&{component:this.condition.component},this.condition.matchNothing&&{matchNothing:!0})},t.isEmpty=function(){return 0===this.condition.all.length&&0===this.condition.any.length&&0===this.condition.none.length&&void 0===this.condition.tag&&void 0===this.condition.name&&void 0===this.condition.component&&!this.condition.matchNothing},t.isNothing=function(){return!0===this.condition.matchNothing},t.reset=function(){return this.condition.all.length=0,this.condition.any.length=0,this.condition.none.length=0,delete this.condition.tag,delete this.condition.name,delete this.condition.component,delete this.condition.matchNothing,this},t.clone=function(){var t,n,r,i=new e;return(t=i.condition.all).push.apply(t,this.condition.all),(n=i.condition.any).push.apply(n,this.condition.any),(r=i.condition.none).push.apply(r,this.condition.none),void 0!==this.condition.tag&&(i.condition.tag=this.condition.tag),void 0!==this.condition.name&&(i.condition.name=this.condition.name),void 0!==this.condition.component&&(i.condition.component=this.condition.component),this.condition.matchNothing&&(i.condition.matchNothing=!0),i},t.toString=function(){if(this.condition.matchNothing)return"Matcher[nothing]";var e=[];return this.condition.all.length>0&&e.push("all("+this.condition.all.map(function(e){return L(e)}).join(", ")+")"),this.condition.any.length>0&&e.push("any("+this.condition.any.map(function(e){return L(e)}).join(", ")+")"),this.condition.none.length>0&&e.push("none("+this.condition.none.map(function(e){return L(e)}).join(", ")+")"),void 0!==this.condition.tag&&e.push("tag("+this.condition.tag+")"),void 0!==this.condition.name&&e.push("name("+this.condition.name+")"),void 0!==this.condition.component&&e.push("component("+L(this.condition.component)+")"),"Matcher["+e.join(" & ")+"]"},e}(),Ce=function(){function e(){this._frameCache=null,this._persistentCache=null,this._trackedEntities=new Set}var t=e.prototype;return t.getFrame=function(){return this._frameCache},t.setFrame=function(e){this._frameCache=e},t.getPersistent=function(){return this._persistentCache},t.setPersistent=function(e){this._persistentCache=e},t.getTracked=function(){return this._trackedEntities},t.addTracked=function(e){this._trackedEntities.add(e)},t.removeTracked=function(e){this._trackedEntities.delete(e)},t.isTracked=function(e){return this._trackedEntities.has(e)},t.invalidate=function(){this._persistentCache=null},t.clearFrame=function(){this._frameCache=null},t.clearAll=function(){this._frameCache=null,this._persistentCache=null,this._trackedEntities.clear()},t.hasPersistent=function(){return null!==this._persistentCache},t.hasFrame=function(){return null!==this._frameCache},t.getStats=function(){var e,t,n,r;return{hasFrame:null!==this._frameCache,hasPersistent:null!==this._persistentCache,trackedCount:this._trackedEntities.size,frameEntityCount:null!==(e=null===(t=this._frameCache)||void 0===t?void 0:t.length)&&void 0!==e?e:0,persistentEntityCount:null!==(n=null===(r=this._persistentCache)||void 0===r?void 0:r.length)&&void 0!==n?n:0}},e}(),be=function(){function e(e){this._updateOrder=0,this._addOrder=0,this._enabled=!0,this._performanceMonitor=null,this._systemName=j(this),this._initialized=!1,this._matcher=e||Se.empty(),this._eventListeners=[],this._scene=null,this._destroyed=!1,this._entityIdMap=null,this._entityIdMapVersion=-1,this.logger=$(this.getLoggerName()),this._entityCache=new Ce}var t=e.prototype;return t.setPerformanceMonitor=function(e){this._performanceMonitor=e},t.getPerformanceMonitor=function(){if(!this._performanceMonitor)throw new Error(this._systemName+": PerformanceMonitor未注入,请确保在Core.create()之后再添加System到Scene");return this._performanceMonitor},t.setUpdateOrder=function(e){var t;this._updateOrder!==e&&(this._updateOrder=e,null===(t=this._scene)||void 0===t||t.markSystemsOrderDirty())},t.initialize=function(){if(!this._initialized){if(this._initialized=!0,this.scene){this._entityCache.invalidate();for(var e,t=s(this.queryEntities());!(e=t()).done;){var n=e.value;this.onAdded(n)}}this.onInitialize()}},t.onInitialize=function(){},t.clearEntityCache=function(){this._entityCache.invalidate()},t.resetEntityTracking=function(){this._entityCache.clearAll(),this._entityIdMap=null,this._entityIdMapVersion=-1},t.reset=function(){this._destroyed||(this.scene=null,this._initialized=!1,this._entityCache.clearAll(),this._entityIdMap=null,this._entityIdMapVersion=-1,this.destroy())},t.queryEntities=function(){var e;if(null===(e=this.scene)||void 0===e||!e.querySystem||!this._matcher)return[];var t=this._matcher.getCondition(),n=this.scene.querySystem,r=[];return this._matcher.isNothing()?[]:(r=this._matcher.isEmpty()?n.getAllEntities():this.isSingleCondition(t)?this.executeSingleConditionQuery(t,n):this.executeComplexQuery(t,n),this.updateEntityTracking(r),r)},t.isSingleCondition=function(e){var t=(e.all.length>0?1:0)|(e.any.length>0?2:0)|(e.none.length>0?4:0)|(void 0!==e.tag?8:0)|(void 0!==e.name?16:0)|(void 0!==e.component?32:0);return 0!==t&&!(t&t-1)},t.executeSingleConditionQuery=function(e,t){return void 0!==e.tag?t.queryByTag(e.tag).entities:void 0!==e.name?t.queryByName(e.name).entities:void 0!==e.component?t.queryByComponent(e.component).entities:e.all.length>0&&0===e.any.length&&0===e.none.length?t.queryAll.apply(t,e.all).entities:0===e.all.length&&e.any.length>0&&0===e.none.length?t.queryAny.apply(t,e.any).entities:0===e.all.length&&0===e.any.length&&e.none.length>0?t.queryNone.apply(t,e.none).entities:[]},t.executeComplexQueryWithIdSets=function(e,t){var n=null;if(void 0!==e.tag){var r=t.queryByTag(e.tag);n=this.extractEntityIds(r.entities)}if(void 0!==e.name){var i=this.extractEntityIds(t.queryByName(e.name).entities);n=n?this.intersectIdSets(n,i):i}if(void 0!==e.component){var o=this.extractEntityIds(t.queryByComponent(e.component).entities);n=n?this.intersectIdSets(n,o):o}if(e.all.length>0){var s=this.extractEntityIds(t.queryAll.apply(t,e.all).entities);n=n?this.intersectIdSets(n,s):s}if(e.any.length>0){var a=this.extractEntityIds(t.queryAny.apply(t,e.any).entities);n=n?this.intersectIdSets(n,a):a}if(e.none.length>0){n||(n=this.extractEntityIds(t.getAllEntities()));var c=t.queryAny.apply(t,e.none),u=this.extractEntityIds(c.entities);n=this.differenceIdSets(n,u)}return n?this.idSetToEntityArray(n,t.getAllEntities()):[]},t.extractEntityIds=function(e){for(var t=e.length,n=new Set,r=0;r<t;r=r+1|0)n.add(0|e[r].id);return n},t.intersectIdSets=function(e,t){var n,r;e.size<=t.size?(n=e,r=t):(n=t,r=e);for(var i,o=new Set,a=s(n);!(i=a()).done;){var c=i.value;r.has(c)&&o.add(c)}return o},t.differenceIdSets=function(e,t){for(var n,r=new Set,i=s(e);!(n=i()).done;){var o=n.value;t.has(o)||r.add(o)}return r},t.getEntityIdMap=function(e){var t,n,r=null!==(t=null===(n=this.scene)||void 0===n||null===(n=n.querySystem)||void 0===n?void 0:n.version)&&void 0!==t?t:0;return null!==this._entityIdMap&&this._entityIdMapVersion===r?this._entityIdMap:this.rebuildEntityIdMap(e,r)},t.rebuildEntityIdMap=function(e,t){var n=this._entityIdMap;n?n.clear():n=new Map;for(var r=e.length,i=0;i<r;i=i+1|0){var o=e[i];n.set(0|o.id,o)}return this._entityIdMap=n,this._entityIdMapVersion=t,n},t.idSetToEntityArray=function(e,t){for(var n,r=this.getEntityIdMap(t),i=e.size,o=new Array(i),a=0,c=s(e);!(n=c()).done;){var u=n.value,l=r.get(u);void 0!==l&&(o[a]=l,a=a+1|0)}return a<i&&(o.length=a),o},t.executeComplexQuery=function(e,t){return this.executeComplexQueryWithIdSets(e,t)},t.update=function(){if(this._enabled&&this.onCheckProcessing()){var e=this.getPerformanceMonitor(),t=e.startMonitoring(this._systemName),n=0;try{this.onBegin();var r=this.queryEntities();this._entityCache.setFrame(r),n=r.length,this.process(r)}finally{e.endMonitoring(this._systemName,t,n)}}},t.lateUpdate=function(){if(this._enabled&&this.onCheckProcessing()){var e=this.getPerformanceMonitor(),t=e.startMonitoring(this._systemName+"_Late"),n=0;try{var r=this._entityCache.getFrame()||[];n=r.length,this.lateProcess(r),this.onEnd()}finally{e.endMonitoring(this._systemName+"_Late",t,n),this._entityCache.clearFrame()}}},t.onBegin=function(){},t.process=function(e){},t.lateProcess=function(e){},t.onEnd=function(){},t.onCheckProcessing=function(){return!0},t.getPerformanceData=function(){return this.getPerformanceMonitor().getSystemData(this._systemName)},t.getPerformanceStats=function(){return this.getPerformanceMonitor().getSystemStats(this._systemName)},t.resetPerformanceData=function(){this.getPerformanceMonitor().resetSystem(this._systemName)},t.toString=function(){var e=this.entities.length,t=this.getPerformanceData(),n=t?" ("+t.executionTime.toFixed(2)+"ms)":"";return this._systemName+"["+e+" entities]"+n},t.matchesEntity=function(e){if(!this._matcher)return!1;if(this._matcher.isNothing())return!1;if(this._matcher.isEmpty())return!0;for(var t,n=this._matcher.getCondition(),r=s(n.all);!(t=r()).done;){var i=t.value;if(!e.hasComponent(i))return!1}if(n.any.length>0){for(var o,a=!1,c=s(n.any);!(o=c()).done;){var u=o.value;if(e.hasComponent(u)){a=!0;break}}if(!a)return!1}for(var l,h=s(n.none);!(l=h()).done;){var f=l.value;if(e.hasComponent(f))return!1}return(void 0===n.tag||e.tag===n.tag)&&((void 0===n.name||e.name===n.name)&&!(void 0!==n.component&&!e.hasComponent(n.component)))},t.isTracking=function(e){return this._entityCache.isTracked(e)},t.handleEntityComponentChanged=function(e){if(this._matcher&&this._enabled){var t=this._entityCache.isTracked(e),n=this.matchesEntity(e);!t&&n?(this._entityCache.addTracked(e),this._entityCache.invalidate(),this.onAdded(e)):t&&!n&&(this._entityCache.removeTracked(e),this._entityCache.invalidate(),this.onRemoved(e))}},t.updateEntityTracking=function(e){for(var t,n=new Set(e),r=!1,i=s(e);!(t=i()).done;){var o=t.value;this._entityCache.isTracked(o)||(this._entityCache.addTracked(o),r=!0)}for(var a,c=s(this._entityCache.getTracked());!(a=c()).done;){var u=a.value;n.has(u)||(this._entityCache.removeTracked(u),r=!0)}r&&this._entityCache.invalidate()},t.onAdded=function(e){},t.onRemoved=function(e){},t.dispose=function(){this._destroyed||(this.cleanupManualEventListeners(),this.onDestroy(),this._entityCache.clearAll(),this._entityIdMap=null,this._initialized=!1,this._scene=null,this._destroyed=!0,this.logger.debug("System "+this._systemName+" disposed"))},t.addEventListener=function(e,t,n){var r;if(null===(r=this.scene)||void 0===r||!r.eventSystem)return this.logger.warn(this.systemName+": 无法添加事件监听器,scene.eventSystem 不可用"),null;var i=this.scene.eventSystem.on(e,t,n);return i&&this._eventListeners.push({eventSystem:this.scene.eventSystem,eventType:e,listenerRef:i}),i},t.removeEventListener=function(e,t){var n=this._eventListeners.findIndex(function(n){return n.eventType===e&&n.listenerRef===t});if(n>=0){var r=this._eventListeners[n];if(!r)return;r.eventSystem.off(e,r.listenerRef),this._eventListeners.splice(n,1)}},t.cleanupManualEventListeners=function(){for(var e,t=s(this._eventListeners);!(e=t()).done;){var n=e.value;try{n.eventSystem.off(n.eventType,n.listenerRef)}catch(e){this.logger.warn(this.systemName+': 移除事件监听器失败 "'+n.eventType+'"',e)}}this._eventListeners.length=0},t.destroy=function(){this._destroyed||(this.cleanupManualEventListeners(),this._destroyed=!0,this.onDestroy())},t.getLoggerName=function(){return j(this)},t.onDestroy=function(){},t.requireComponent=function(e,t){var n=e.getComponent(t);if(!n)throw new Error("Component "+t.name+" not found on entity "+e.name+" in "+this.systemName);return n},t.getComponents=function(e){for(var t=this,n=arguments.length,r=new Array(n>1?n-1:0),i=1;i<n;i++)r[i-1]=arguments[i];return r.map(function(n){return t.requireComponent(e,n)})},t.forEach=function(e,t){for(var n=0;n<e.length;n++)t(e[n],n)},t.filterEntities=function(e,t){return Array.from(e).filter(t)},t.mapEntities=function(e,t){return Array.from(e).map(t)},t.findEntity=function(e,t){for(var n=0;n<e.length;n++)if(t(e[n],n))return e[n]},t.someEntity=function(e,t){for(var n=0;n<e.length;n++)if(t(e[n],n))return!0;return!1},t.everyEntity=function(e,t){for(var n=0;n<e.length;n++)if(!t(e[n],n))return!1;return!0},o(e,[{key:"entities",get:function(){var e=this._entityCache.getFrame();return null!==e?e:(this._entityCache.hasPersistent()||this._entityCache.setPersistent(this.queryEntities()),this._entityCache.getPersistent())}},{key:"updateOrder",get:function(){return this._updateOrder},set:function(e){this.setUpdateOrder(e)}},{key:"addOrder",get:function(){return this._addOrder},set:function(e){this._addOrder=e}},{key:"enabled",get:function(){return this._enabled},set:function(e){this._enabled=e}},{key:"systemName",get:function(){return this._systemName}},{key:"scene",get:function(){return this._scene},set:function(e){this._scene=e}},{key:"matcher",get:function(){return this._matcher}}])}(),Ee=function(e){function t(){return e.call(this,Se.empty().all(exports.HierarchyComponent))||this}u(t,e);var n=t.prototype;return n.process=function(){for(var e,t=s(this.entities);!(e=t()).done;){var n=e.value,r=n.getComponent(exports.HierarchyComponent);null!=r&&r.bCacheDirty&&this.updateHierarchyCache(n)}},n.setParent=function(e,t){var n,r=e.getComponent(exports.HierarchyComponent);r||(r=new exports.HierarchyComponent,e.addComponent(r));var i=r.parentId;if(i!==(null!==(n=null==t?void 0:t.id)&&void 0!==n?n:null)){if(t&&this.isAncestorOf(e,t))throw new Error("Cannot set parent: would create circular reference");if(null!==i){var o,s=null===(o=this.scene)||void 0===o?void 0:o.findEntityById(i);if(s){var a=s.getComponent(exports.HierarchyComponent);if(a){var c=a.childIds.indexOf(e.id);-1!==c&&a.childIds.splice(c,1)}}}if(t){var u=t.getComponent(exports.HierarchyComponent);u||(u=new exports.HierarchyComponent,t.addComponent(u)),r.parentId=t.id,u.childIds.push(e.id)}else r.parentId=null;this.markCacheDirty(e)}},n.insertChildAt=function(e,t,n){var r=t.getComponent(exports.HierarchyComponent),i=e.getComponent(exports.HierarchyComponent);if(r||(r=new exports.HierarchyComponent,t.addComponent(r)),i||(i=new exports.HierarchyComponent,e.addComponent(i)),this.isAncestorOf(t,e))throw new Error("Cannot set parent: would create circular reference");if(null!==r.parentId&&r.parentId!==e.id){var o,s=null===(o=this.scene)||void 0===o?void 0:o.findEntityById(r.parentId);if(s){var a=s.getComponent(exports.HierarchyComponent);if(a){var c=a.childIds.indexOf(t.id);-1!==c&&a.childIds.splice(c,1)}}}r.parentId=e.id;var u=i.childIds.indexOf(t.id);-1!==u&&i.childIds.splice(u,1),n<0||n>=i.childIds.length?i.childIds.push(t.id):i.childIds.splice(n,0,t.id),this.markCacheDirty(t)},n.removeChild=function(e,t){var n=e.getComponent(exports.HierarchyComponent),r=t.getComponent(exports.HierarchyComponent);if(!n||!r)return!1;if(r.parentId!==e.id)return!1;var i=n.childIds.indexOf(t.id);return-1!==i&&n.childIds.splice(i,1),r.parentId=null,this.markCacheDirty(t),!0},n.removeAllChildren=function(e){var t=e.getComponent(exports.HierarchyComponent);if(t)for(var n,r=s([].concat(t.childIds));!(n=r()).done;){var i,o=n.value,a=null===(i=this.scene)||void 0===i?void 0:i.findEntityById(o);a&&this.removeChild(e,a)}},n.getParent=function(e){var t,n,r=e.getComponent(exports.HierarchyComponent);return r&&null!==r.parentId&&null!==(t=null===(n=this.scene)||void 0===n?void 0:n.findEntityById(r.parentId))&&void 0!==t?t:null},n.getChildren=function(e){var t=e.getComponent(exports.HierarchyComponent);if(!t)return[];for(var n,r=[],i=s(t.childIds);!(n=i()).done;){var o,a=n.value,c=null===(o=this.scene)||void 0===o?void 0:o.findEntityById(a);c&&r.push(c)}return r},n.getChildCount=function(e){var t,n=e.getComponent(exports.HierarchyComponent);return null!==(t=null==n?void 0:n.childIds.length)&&void 0!==t?t:0},n.hasChildren=function(e){return this.getChildCount(e)>0},n.isAncestorOf=function(e,n){for(var r=this.getParent(n),i=0;r&&i<t.MAX_DEPTH;){if(r.id===e.id)return!0;r=this.getParent(r),i++}return!1},n.isDescendantOf=function(e,t){return this.isAncestorOf(t,e)},n.getRoot=function(e){for(var n=e,r=this.getParent(n),i=0;r&&i<t.MAX_DEPTH;)n=r,r=this.getParent(n),i++;return n},n.getDepth=function(e){var n=e.getComponent(exports.HierarchyComponent);if(!n)return 0;if(!n.bCacheDirty)return n.depth;for(var r=0,i=this.getParent(e);i&&r<t.MAX_DEPTH;)r++,i=this.getParent(i);return n.depth=r,r},n.isActiveInHierarchy=function(e){if(!e.active)return!1;var t=e.getComponent(exports.HierarchyComponent);if(!t)return e.active;if(!t.bCacheDirty)return t.bActiveInHierarchy;var n=this.getParent(e);return t.bActiveInHierarchy=n?e.active&&this.isActiveInHierarchy(n):e.active,t.bActiveInHierarchy},n.getRootEntities=function(){for(var e,t=[],n=s(this.entities);!(e=n()).done;){var r=e.value,i=r.getComponent(exports.HierarchyComponent);i&&null===i.parentId&&t.push(r)}return t},n.findChild=function(e,t,n){void 0===n&&(n=!1);for(var r,i=this.getChildren(e),o=s(i);!(r=o()).done;){var a=r.value;if(a.name===t)return a}if(n)for(var c,u=s(i);!(c=u()).done;){var l=c.value,h=this.findChild(l,t,!0);if(h)return h}return null},n.findChildrenByTag=function(e,t,n){void 0===n&&(n=!1);for(var r,i=[],o=s(this.getChildren(e));!(r=o()).done;){var a=r.value;0!==(a.tag&t)&&i.push(a),n&&i.push.apply(i,this.findChildrenByTag(a,t,!0))}return i},n.forEachChild=function(e,t,n){void 0===n&&(n=!1);for(var r,i=s(this.getChildren(e));!(r=i()).done;){var o=r.value;t(o),n&&this.forEachChild(o,t,!0)}},n.flattenHierarchy=function(e){for(var t,n=this,r=[],i=function(t,o){var a=n.hasChildren(t),c=e.has(t.id);if(r.push({entity:t,depth:o,bHasChildren:a,bIsExpanded:c}),a&&c)for(var u,l=s(n.getChildren(t));!(u=l()).done;){var h=u.value;i(h,o+1)}},o=s(this.getRootEntities());!(t=o()).done;){var a=t.value;i(a,0)}return r},n.markCacheDirty=function(e){var t=e.getComponent(exports.HierarchyComponent);if(t){t.bCacheDirty=!0;for(var n,r=s(t.childIds);!(n=r()).done;){var i,o=n.value,a=null===(i=this.scene)||void 0===i?void 0:i.findEntityById(o);a&&this.markCacheDirty(a)}}},n.updateHierarchyCache=function(e){var t=e.getComponent(exports.HierarchyComponent);t&&(t.depth=this.getDepth(e),t.bActiveInHierarchy=this.isActiveInHierarchy(e),t.bCacheDirty=!1)},n.onEntityRemoved=function(e){var t=e.getComponent(exports.HierarchyComponent);if(t){if(null!==t.parentId){var n,r=null===(n=this.scene)||void 0===n?void 0:n.findEntityById(t.parentId);if(r){var i=r.getComponent(exports.HierarchyComponent);if(i){var o=i.childIds.indexOf(e.id);-1!==o&&i.childIds.splice(o,1)}}}for(var a,c=s(t.childIds);!(a=c()).done;){var u,l=a.value,h=null===(u=this.scene)||void 0===u?void 0:u.findEntityById(l);if(h){var f=h.getComponent(exports.HierarchyComponent);f&&(f.parentId=null,this.markCacheDirty(h))}}}},n.dispose=function(){},o(t,[{key:"updateOrder",get:function(){return-1e3}}])}(be);Ee.MAX_DEPTH=32;var Te=function(){function e(){}var t=e.prototype;return t.collectEntityData=function(e){if(!e)return this.getEmptyEntityDebugData();var t,n=e.entities;if(!n)return this.getEmptyEntityDebugData();try{t=n.getStats?n.getStats():this.calculateFallbackEntityStats(n)}catch(e){return{totalEntities:0,activeEntities:0,pendingAdd:0,pendingRemove:0,entitiesPerArchetype:[],topEntitiesByComponents:[],entityHierarchy:[],entityDetailsMap:{}}}var r=this.collectArchetypeData(e);return{totalEntities:t.totalEntities,activeEntities:t.activeEntities,pendingAdd:t.pendingAdd||0,pendingRemove:t.pendingRemove||0,entitiesPerArchetype:r.distribution,topEntitiesByComponents:r.topEntities,entityHierarchy:[],entityDetailsMap:{}}},t.getRawEntityList=function(e){if(!e)return[];var t=e.entities;if(null==t||!t.buffer)return[];var n=e.getSystem(Ee);return t.buffer.map(function(e){var t,r,i,o,s=e.getComponent(exports.HierarchyComponent),a=null!==(t=null==n?void 0:n.isActiveInHierarchy(e))&&void 0!==t?t:e.active,c=null!==(r=null==n?void 0:n.getDepth(e))&&void 0!==r?r:0;return{id:e.id,name:e.name||"Entity_"+e.id,active:!1!==e.active,enabled:!1!==e.enabled,activeInHierarchy:a,componentCount:e.components.length,componentTypes:e.components.map(function(e){return W(e)}),parentId:null!==(i=null==s?void 0:s.parentId)&&void 0!==i?i:null,childIds:null!==(o=null==s?void 0:s.childIds)&&void 0!==o?o:[],depth:c,tag:e.tag||0,updateOrder:e.updateOrder||0}})},t.getEntityDetails=function(e,t){try{var n,r,i;if(!t)return null;var o=t.entities;if(null==o||!o.buffer)return null;var s=o.buffer.find(function(t){return t.id===e});if(!s)return null;var c=s.getDebugInfo?s.getDebugInfo():this.buildFallbackEntityInfo(s,t),u=this.extractComponentDetails(s.components),l=this.getSceneInfo(t);return a({},c,{scene:l.name,sceneName:l.name,sceneType:l.type,parentName:(null===(n=s.parent)||void 0===n?void 0:n.name)||null,components:u||[],componentCount:(null===(r=s.components)||void 0===r?void 0:r.length)||0,componentTypes:(null===(i=s.components)||void 0===i?void 0:i.map(function(e){return W(e)}))||[]})}catch(e){return{error:"获取实体详情失败: "+(e instanceof Error?e.message:String(e)),scene:"获取失败",components:[],componentCount:0,componentTypes:[]}}},t.getSceneInfo=function(e){var t="当前场景",n="Scene";try{if(e.name&&"string"==typeof e.name&&e.name.trim())t=e.name.trim();else if(e.constructor&&e.constructor.name)t=e.constructor.name,n=e.constructor.name;else if(e._name&&"string"==typeof e._name&&e._name.trim())t=e._name.trim();else{var r,i=null===(r=Object.getPrototypeOf(e))||void 0===r||null===(r=r.constructor)||void 0===r?void 0:r.name;i&&"Object"!==i&&(t=i,n=i)}}catch(e){t="场景名获取失败"}return{name:t,type:n}},t.collectEntityDataWithMemory=function(e){if(!e)return this.getEmptyEntityDebugData();var t,n=e.entities;if(!n)return this.getEmptyEntityDebugData();try{t=n.getStats?n.getStats():this.calculateFallbackEntityStats(n)}catch(e){return{totalEntities:0,activeEntities:0,pendingAdd:0,pendingRemove:0,entitiesPerArchetype:[],topEntitiesByComponents:[],entityHierarchy:[],entityDetailsMap:{}}}var r=this.collectArchetypeDataWithMemory(e);return{totalEntities:t.totalEntities,activeEntities:t.activeEntities,pendingAdd:t.pendingAdd||0,pendingRemove:t.pendingRemove||0,entitiesPerArchetype:r.distribution,topEntitiesByComponents:r.topEntities,entityHierarchy:this.buildEntityHierarchyTree(n,e),entityDetailsMap:this.buildEntityDetailsMap(n,e)}},t.collectArchetypeData=function(e){var t;if(e&&e.archetypeSystem&&"function"==typeof e.archetypeSystem.getAllArchetypes)return this.extractArchetypeStatistics(e.archetypeSystem);var n={entities:(null===(t=e.entities)||void 0===t?void 0:t.buffer)||[]};return{distribution:this.getArchetypeDistributionFast(n),topEntities:this.getTopEntitiesByComponentsFast(n)}},t.getArchetypeDistributionFast=function(e){var t=new Map;return e&&e.entities&&e.entities.forEach(function(e){var n,r=(null===(n=e.components)||void 0===n?void 0:n.map(function(e){return W(e)}))||[],i=r.length>0?r.sort().join(", "):"无组件",o=t.get(i);o?o.count++:t.set(i,{count:1,componentTypes:r})}),Array.from(t.entries()).map(function(e){return{signature:e[0],count:e[1].count,memory:0}}).sort(function(e,t){return t.count-e.count}).slice(0,20)},t.getTopEntitiesByComponentsFast=function(e){return e&&e.entities?e.entities.map(function(e){var t;return{id:e.id.toString(),name:e.name||"Entity_"+e.id,componentCount:(null===(t=e.components)||void 0===t?void 0:t.length)||0,memory:0}}).sort(function(e,t){return t.componentCount-e.componentCount}):[]},t.collectArchetypeDataWithMemory=function(e){var t;if(e&&e.archetypeSystem&&"function"==typeof e.archetypeSystem.getAllArchetypes)return this.extractArchetypeStatisticsWithMemory(e.archetypeSystem);var n={entities:(null===(t=e.entities)||void 0===t?void 0:t.buffer)||[]};return{distribution:this.getArchetypeDistributionWithMemory(n),topEntities:this.getTopEntitiesByComponentsWithMemory(n)}},t.extractArchetypeStatistics=function(e){var t=e.getAllArchetypes(),n=[],r=[];return t.forEach(function(e){var t,i,o=(null===(t=e.componentTypes)||void 0===t?void 0:t.map(function(e){return e.name}).join(","))||"Unknown",s=(null===(i=e.entities)||void 0===i?void 0:i.length)||0;n.push({signature:o,count:s,memory:0}),e.entities&&e.entities.forEach(function(e){var t;r.push({id:e.id.toString(),name:e.name||"Entity_"+e.id,componentCount:(null===(t=e.components)||void 0===t?void 0:t.length)||0,memory:0})})}),n.sort(function(e,t){return t.count-e.count}),r.sort(function(e,t){return t.componentCount-e.componentCount}),{distribution:n,topEntities:r}},t.extractArchetypeStatisticsWithMemory=function(e){var t=this,n=e.getAllArchetypes(),r=[],i=[];return n.forEach(function(e){var n,o,s=(null===(n=e.componentTypes)||void 0===n?void 0:n.map(function(e){return e.name}).join(","))||"Unknown",a=(null===(o=e.entities)||void 0===o?void 0:o.length)||0,c=0;if(e.entities&&e.entities.length>0){for(var u=Math.min(5,e.entities.length),l=0,h=0;h<u;h++)l+=t.estimateEntityMemoryUsage(e.entities[h]);c=l/u*a}r.push({signature:s,count:a,memory:c}),e.entities&&e.entities.forEach(function(e){var n;i.push({id:e.id.toString(),name:e.name||"Entity_"+e.id,componentCount:(null===(n=e.components)||void 0===n?void 0:n.length)||0,memory:t.estimateEntityMemoryUsage(e)})})}),r.sort(function(e,t){return t.count-e.count}),i.sort(function(e,t){return t.componentCount-e.componentCount}),{distribution:r,topEntities:i}},t.getArchetypeDistributionWithMemory=function(e){var t=this,n=new Map;return e&&e.entities&&e.entities.forEach(function(e){var r,i=(null===(r=e.components)||void 0===r?void 0:r.map(function(e){return W(e)}))||[],o=i.length>0?i.sort().join(", "):"无组件",s=n.get(o),a=t.estimateEntityMemoryUsage(e);(isNaN(a)||a<0)&&(a=0),s?(s.count++,s.memory+=a):n.set(o,{count:1,memory:a,componentTypes:i})}),Array.from(n.entries()).map(function(e){var t=e[0],n=e[1];return{signature:t,count:n.count,memory:isNaN(n.memory)?0:n.memory}}).sort(function(e,t){return t.count-e.count})},t.getTopEntitiesByComponentsWithMemory=function(e){var t=this;return e&&e.entities?e.entities.map(function(e){var n;return{id:e.id.toString(),name:e.name||"Entity_"+e.id,componentCount:(null===(n=e.components)||void 0===n?void 0:n.length)||0,memory:t.estimateEntityMemoryUsage(e)}}).sort(function(e,t){return t.componentCount-e.componentCount}):[]},t.getEmptyEntityDebugData=function(){return{totalEntities:0,activeEntities:0,pendingAdd:0,pendingRemove:0,entitiesPerArchetype:[],topEntitiesByComponents:[],entityHierarchy:[],entityDetailsMap:{}}},t.calculateFallbackEntityStats=function(e){var t=e.buffer||[],n=t.filter(function(e){return e.enabled&&!e.isDestroyed});return{totalEntities:t.length,activeEntities:n.length,pendingAdd:0,pendingRemove:0,averageComponentsPerEntity:n.length>0?t.reduce(function(e,t){var n;return e+((null===(n=t.components)||void 0===n?void 0:n.length)||0)},0)/n.length:0}},t.estimateEntityMemoryUsage=function(e){var t=this;try{var n=0,r=this.calculateObjectSize(e,["components","children","parent"]);return!isNaN(r)&&r>0&&(n+=r),e.components&&Array.isArray(e.components)&&e.components.forEach(function(e){var r=t.calculateObjectSize(e,["entity"]);!isNaN(r)&&r>0&&(n+=r)}),isNaN(n)||n<0?0:n}catch(e){return 0}},t.calculateObjectSize=function(e,t){if(void 0===t&&(t=[]),!e||"object"!=typeof e)return 0;var n=new WeakSet,r=function(e,i){if(void 0===i&&(i=0),!e||"object"!=typeof e||i>=2)return 0;if(n.has(e))return 0;n.add(e);var o=32;try{for(var s=Object.keys(e),a=Math.min(s.length,20),c=0;c<a;c++){var u=s[c];if(u&&!t.includes(u)&&"constructor"!==u&&"__proto__"!==u&&!u.startsWith("_cc_")&&!u.startsWith("__")){var l=e[u];o+=2*u.length,"string"==typeof l?o+=Math.min(2*l.length,200):"number"==typeof l?o+=8:"boolean"==typeof l?o+=4:Array.isArray(l)?o+=40+Math.min(8*l.length,160):"object"==typeof l&&null!==l&&(o+=r(l,i+1))}}}catch(e){return 64}return o};try{var i=r(e);return Math.max(i,32)}catch(e){return 64}},t.buildEntityHierarchyTree=function(e,t){var n=this;if(null==e||!e.buffer)return[];var r=null==t?void 0:t.getSystem(Ee),i=[];return e.buffer.forEach(function(e){var t=e.getComponent(exports.HierarchyComponent);if(null===(null==t?void 0:t.parentId)||void 0===(null==t?void 0:t.parentId)){var o=n.buildEntityHierarchyNode(e,r);i.push(o)}}),i.sort(function(e,t){return e.name<t.name?-1:e.name>t.name?1:e.id-t.id}),i},t.buildEntityHierarchyNode=function(e,t){var n,r,i,o=this,s=e.getComponent(exports.HierarchyComponent),c=null!==(n=null==t?void 0:t.isActiveInHierarchy(e))&&void 0!==n?n:e.active,u=null!==(r=null==t?void 0:t.getDepth(e))&&void 0!==r?r:0,l={id:e.id,name:e.name||"Entity_"+e.id,active:!1!==e.active,enabled:!1!==e.enabled,activeInHierarchy:c,componentCount:e.components.length,componentTypes:e.components.map(function(e){return W(e)}),parentId:null!==(i=null==s?void 0:s.parentId)&&void 0!==i?i:null,children:[],depth:u,tag:e.tag||0,updateOrder:e.updateOrder||0};if(t){var h=t.getChildren(e);h.length>0&&(l.children=h.map(function(e){return o.buildEntityHierarchyNode(e,t)}))}"function"==typeof e.getDebugInfo&&(l=a({},l,e.getDebugInfo()));return e.components&&e.components.length>0&&(l.componentDetails=this.extractComponentDetails(e.components)),l},t.buildEntityDetailsMap=function(e,t){var n=this;if(null==e||!e.buffer)return{};for(var r=null==t?void 0:t.getSystem(Ee),i={},o=e.buffer,s=0;s<o.length;s+=100){o.slice(s,s+100).forEach(function(e){var o,s=e.getDebugInfo?e.getDebugInfo():n.buildFallbackEntityInfo(e,t,r),c=e.getComponentCacheStats?e.getComponentCacheStats():null,u=n.extractComponentDetails(e.components),l=null==r?void 0:r.getParent(e),h=null!==(o=null==l?void 0:l.name)&&void 0!==o?o:null;i[e.id]=a({},s,{parentName:h,components:u,componentTypes:s.componentTypes||u.map(function(e){return e.typeName}),cachePerformance:c?{hitRate:c.cacheStats.hitRate,size:c.cacheStats.size,maxSize:c.cacheStats.maxSize}:null})})}return i},t.buildFallbackEntityInfo=function(e,t,n){var r,i,o,s,a,c,u,l=this.getSceneInfo(t),h=e.getComponent(exports.HierarchyComponent),f=null!==(r=null==n?void 0:n.isActiveInHierarchy(e))&&void 0!==r?r:e.active,d=null!==(i=null==n?void 0:n.getDepth(e))&&void 0!==i?i:0;return{name:e.name||"Entity_"+e.id,id:e.id,enabled:!1!==e.enabled,active:!1!==e.active,activeInHierarchy:f,destroyed:e.isDestroyed||!1,scene:l.name,sceneName:l.name,sceneType:l.type,componentCount:e.components.length,componentTypes:e.components.map(function(e){return W(e)}),componentMask:(null===(o=e.componentMask)||void 0===o?void 0:o.toString())||"0",parentId:null!==(s=null==h?void 0:h.parentId)&&void 0!==s?s:null,childCount:null!==(a=null==h||null===(c=h.childIds)||void 0===c?void 0:c.length)&&void 0!==a?a:0,childIds:null!==(u=null==h?void 0:h.childIds)&&void 0!==u?u:[],depth:d,tag:e.tag||0,updateOrder:e.updateOrder||0}},t.extractComponentDetails=function(e){var t=this;return e.map(function(e){var n=W(e),r={};try{Object.keys(e).forEach(function(n){if(!n.startsWith("_")&&"entity"!==n&&"constructor"!==n){var i=e[n];null!=i&&(r[n]=t.formatPropertyValue(i))}}),0===Object.keys(r).length&&(r._info="该组件没有公开属性",r._componentId=W(e))}catch(t){r._error="属性提取失败",r._componentId=W(e)}return{typeName:n,properties:r}})},t.getComponentProperties=function(e,t,n){var r=this;try{if(!n)return{};var i=n.entities;if(null==i||!i.buffer)return{};var o=i.buffer.find(function(t){return t.id===e});if(!o||t>=o.components.length)return{};var s=o.components[t],a={};return Object.keys(s).forEach(function(e){if(!e.startsWith("_")&&"entity"!==e){var t=s[e];null!=t&&(a[e]=r.formatPropertyValue(t))}}),a}catch(e){return{_error:"属性提取失败"}}},t.formatPropertyValue=function(e,t){return void 0===t&&(t=0),null==e?e:"object"!=typeof e?"string"==typeof e&&e.length>200?"[长字符串: "+e.length+"字符] "+e.substring(0,100)+"...":e:0===t?this.formatObjectFirstLevel(e):this.createLazyLoadPlaceholder(e)},t.formatObjectFirstLevel=function(e){var t=this;try{if(Array.isArray(e)){if(0===e.length)return[];if(e.length>10){var n=e.slice(0,3).map(function(e){return t.formatPropertyValue(e,1)});return{_isLazyArray:!0,_arrayLength:e.length,_sample:n,_summary:"数组["+e.length+"个元素]"}}return e.map(function(e){return t.formatPropertyValue(e,1)})}var r=Object.keys(e);if(0===r.length)return{};for(var i={},o=0,s=0,a=r;s<a.length;s++){var c=a[s];if(o>=15){i._hasMoreProperties=!0,i._totalProperties=r.length,i._hiddenCount=r.length-o;break}if(!c.startsWith("_")&&!c.startsWith("$")&&"function"!=typeof e[c])try{var u=e[c];null!=u&&(i[c]=this.formatPropertyValue(u,1),o++)}catch(e){i[c]="[访问失败: "+(e instanceof Error?e.message:String(e))+"]",o++}}return i}catch(e){return"[对象解析失败: "+(e instanceof Error?e.message:String(e))+"]"}},t.createLazyLoadPlaceholder=function(e){try{var t,n=(null===(t=e.constructor)||void 0===t?void 0:t.name)||"Object";return{_isLazyObject:!0,_typeName:n,_summary:this.getObjectSummary(e,n),_objectId:this.generateObjectId(e)}}catch(e){return{_isLazyObject:!0,_typeName:"Unknown",_summary:"无法分析的对象: "+(e instanceof Error?e.message:String(e)),_objectId:Math.random().toString(36).substr(2,9)}}},t.getObjectSummary=function(e,t){try{if((t.toLowerCase().includes("vec")||t.toLowerCase().includes("vector"))&&void 0!==e.x&&void 0!==e.y){var n=void 0!==e.z?e.z:"";return t+"("+e.x+", "+e.y+(n?", "+n:"")+")"}if(t.toLowerCase().includes("color")&&void 0!==e.r&&void 0!==e.g&&void 0!==e.b){var r=void 0!==e.a?e.a:1;return t+"("+e.r+", "+e.g+", "+e.b+", "+r+")"}if(t.toLowerCase().includes("node"))return t+": "+(e.name||e._name||"未命名");if(t.toLowerCase().includes("component")){var i,o,s=(null===(i=e.node)||void 0===i?void 0:i.name)||(null===(o=e.node)||void 0===o?void 0:o._name)||"";return t+(s?" on "+s:"")}var a=Object.keys(e);return 0===a.length?t+" (空对象)":t+" ("+a.length+"个属性)"}catch(e){return t+" (无法分析)"}},t.generateObjectId=function(e){try{return void 0!==e.id?"obj_"+e.id:void 0!==e._id?"obj_"+e._id:void 0!==e.uuid?"obj_"+e.uuid:void 0!==e._uuid?"obj_"+e._uuid:"obj_"+Math.random().toString(36).substr(2,9)}catch(e){return"obj_"+Math.random().toString(36).substr(2,9)}},t.expandLazyObject=function(e,t,n,r){try{if(!r)return null;var i=r.entities;if(null==i||!i.buffer)return null;var o=i.buffer.find(function(t){return t.id===e});if(!o)return null;if(t>=o.components.length)return null;var s=o.components[t],a=this.getObjectByPath(s,n);return a?this.formatObjectFirstLevel(a):null}catch(e){return{error:"展开失败: "+(e instanceof Error?e.message:String(e))}}},t.getObjectByPath=function(e,t){if(!t)return e;for(var n,r=e,i=s(t.split("."));!(n=i()).done;){var o=n.value;if(null==r)return null;if(o.includes("[")&&o.includes("]")){var a=o.substring(0,o.indexOf("[")),c=parseInt(o.substring(o.indexOf("[")+1,o.indexOf("]")));if(a&&(r=r[a]),!(Array.isArray(r)&&c>=0&&c<r.length))return null;r=r[c]}else r=r[o]}return r},e}(),we=function(){function e(){}return e.prototype.collectSystemData=function(e,t){if(!t)return{totalSystems:0,systemsInfo:[]};var n=t.entityProcessors;if(!n)return{totalSystems:0,systemsInfo:[]};var r=n.processors||[],i=new Map,o=new Map;if(e)try{i=e.getAllSystemStats(),o=e.getAllSystemData()}catch(e){}return{totalSystems:r.length,systemsInfo:r.map(function(e){var t,n=e.systemName||j(e),r=i.get(n),s=o.get(n);return{name:n,type:j(e),entityCount:(null===(t=e.entities)||void 0===t?void 0:t.length)||0,executionTime:(null==r?void 0:r.averageTime)||(null==s?void 0:s.executionTime)||0,minExecutionTime:(null==r?void 0:r.minTime)===Number.MAX_VALUE?0:(null==r?void 0:r.minTime)||0,maxExecutionTime:(null==r?void 0:r.maxTime)||0,executionTimeHistory:(null==r?void 0:r.recentTimes)||[],updateOrder:e.updateOrder||0,enabled:!1!==e.enabled,lastUpdateTime:(null==s?void 0:s.lastUpdateTime)||0}})}},e}(),Me=function(){function e(){this.frameTimeHistory=[],this.maxHistoryLength=60,this.gcCollections=0,this.lastMemoryCheck=0}var t=e.prototype;return t.collectPerformanceData=function(e){var t=g.deltaTime,n=1e3*t,r=t>0?Math.round(1/t):0,i=this.getECSPerformanceData(e),o=i.totalExecutionTime,s=n>0?o/n*100:0,a=0;performance.memory&&(a=performance.memory.usedJSHeapSize/1024/1024),this.frameTimeHistory.push(o),this.frameTimeHistory.length>this.maxHistoryLength&&this.frameTimeHistory.shift();var c=this.frameTimeHistory.filter(function(e){return e>=0});return{frameTime:o,engineFrameTime:n,ecsPercentage:s,memoryUsage:a,fps:r,averageFrameTime:c.length>0?c.reduce(function(e,t){return e+t},0)/c.length:o,minFrameTime:c.length>0?Math.min.apply(Math,c):o,maxFrameTime:c.length>0?Math.max.apply(Math,c):o,frameTimeHistory:[].concat(this.frameTimeHistory),systemPerformance:this.getSystemPerformance(e),systemBreakdown:i.systemBreakdown,memoryDetails:this.getMemoryDetails()}},t.getECSPerformanceData=function(e){if(!e)return{totalExecutionTime:0,systemBreakdown:[]};if(!e.enabled){try{e.enabled=!0}catch(e){}return{totalExecutionTime:0,systemBreakdown:[]}}try{var t=0,n=[],r=e.getAllSystemStats();if(0===r.size)return{totalExecutionTime:0,systemBreakdown:[]};for(var i,o=s(r.entries());!(i=o()).done;){var a=i.value,c=a[0],u=a[1],l=u.recentTimes&&u.recentTimes.length>0?u.recentTimes[u.recentTimes.length-1]:u.averageTime||0;t+=l,n.push({systemName:c,executionTime:l,percentage:0})}return n.forEach(function(e){e.percentage=t>0?e.executionTime/t*100:0}),n.sort(function(e,t){return t.executionTime-e.executionTime}),{totalExecutionTime:t,systemBreakdown:n}}catch(e){return{totalExecutionTime:0,systemBreakdown:[]}}},t.getSystemPerformance=function(e){if(!e)return[];try{var t=e.getAllSystemStats(),n=e.getAllSystemData();return Array.from(t.entries()).map(function(e){var t=e[0],r=e[1],i=n.get(t);return{systemName:t,averageTime:r.averageTime||0,maxTime:r.maxTime||0,minTime:r.minTime===Number.MAX_VALUE?0:r.minTime||0,samples:r.executionCount||0,percentage:0,entityCount:(null==i?void 0:i.entityCount)||0,lastExecutionTime:(null==i?void 0:i.executionTime)||0}})}catch(e){return[]}},t.getMemoryDetails=function(){var e={entities:0,components:0,systems:0,pooled:0,totalMemory:0,usedMemory:0,freeMemory:0,gcCollections:this.updateGCCount()};try{if(performance.memory){var t=performance.memory;if(e.totalMemory=t.jsHeapSizeLimit||536870912,e.usedMemory=t.usedJSHeapSize||0,e.freeMemory=e.totalMemory-e.usedMemory,this.lastMemoryCheck>0)this.lastMemoryCheck-e.usedMemory>1048576&&this.gcCollections++;this.lastMemoryCheck=e.usedMemory}else e.totalMemory=536870912,e.freeMemory=536870912}catch(e){return{totalMemory:0,usedMemory:0,freeMemory:0,entityMemory:0,componentMemory:0,systemMemory:0,pooledMemory:0,gcCollections:this.gcCollections}}return e},t.updateGCCount=function(){try{return"undefined"!=typeof PerformanceObserver||performance.measureUserAgentSpecificMemory,this.gcCollections}catch(e){return this.gcCollections}},e}(),Ae=function(){function e(e,t,n,r){void 0===n&&(n=1e3),void 0===r&&(r=10),this.pool=[],this.stats={totalCreated:0,totalAcquired:0,totalReleased:0},this.createFn=e,t&&(this.resetFn=t),this.maxSize=n,this.minSize=Math.max(1,r)}var t=e.prototype;return t.acquire=function(){return this.stats.totalAcquired++,this.pool.length>0?this.pool.pop():(this.stats.totalCreated++,this.createFn())},t.release=function(e){this.stats.totalReleased++,this.pool.length>=this.maxSize||(this.resetFn&&this.resetFn(e),this.pool.push(e))},t.prewarm=function(e){for(var t=Math.min(e,this.maxSize),n=this.pool.length;n<t;n++){var r=this.createFn();this.resetFn&&this.resetFn(r),this.pool.push(r),this.stats.totalCreated++}},t.shrink=function(){for(;this.pool.length>this.minSize;)this.pool.pop()},t.clear=function(){this.pool.length=0},t.getAvailableCount=function(){return this.pool.length},t.getMaxSize=function(){return this.maxSize},t.getStats=function(){var e=0===this.stats.totalAcquired?0:(this.stats.totalAcquired-this.stats.totalCreated)/this.stats.totalAcquired;return{totalCreated:this.stats.totalCreated,totalAcquired:this.stats.totalAcquired,totalReleased:this.stats.totalReleased,hitRate:e,currentSize:this.pool.length,maxSize:this.maxSize,minSize:this.minSize,utilizationRate:this.pool.length/this.maxSize}},e}(),xe=function(){function e(){this.pools=new Map,this.usageTracker=new Map,this.autoCleanupInterval=6e4,this.lastCleanupTime=0}e.getInstance=function(){return e.instance||(e.instance=new e),e.instance};var t=e.prototype;return t.registerPool=function(e,t,n,r,i){this.pools.set(e,new Ae(t,n,r,i)),this.usageTracker.set(e,{createCount:0,releaseCount:0,lastAccessTime:Date.now()})},t.acquireComponent=function(e){var t=this.pools.get(e);return this.trackUsage(e,"create"),t?t.acquire():null},t.releaseComponent=function(e,t){var n=this.pools.get(e);this.trackUsage(e,"release"),n&&n.release(t)},t.trackUsage=function(e,t){var n=this.usageTracker.get(e);n||(n={createCount:0,releaseCount:0,lastAccessTime:Date.now()},this.usageTracker.set(e,n)),"create"===t?n.createCount++:n.releaseCount++,n.lastAccessTime=Date.now()},t.update=function(){var e=Date.now();if(!(e-this.lastCleanupTime<this.autoCleanupInterval)){for(var t,n=s(this.usageTracker.entries());!(t=n()).done;){var r=t.value,i=r[0];if(e-r[1].lastAccessTime>12e4){var o=this.pools.get(i);o&&o.shrink()}}this.lastCleanupTime=e}},t.getHotComponents=function(e){return void 0===e&&(e=100),Array.from(this.usageTracker.entries()).filter(function(t){return t[0],t[1].createCount>e}).map(function(e){return e[0]})},t.prewarmAll=function(e){void 0===e&&(e=100);for(var t,n=s(this.pools.values());!(t=n()).done;){t.value.prewarm(e)}},t.clearAll=function(){for(var e,t=s(this.pools.values());!(e=t()).done;){e.value.clear()}},t.reset=function(){this.pools.clear(),this.usageTracker.clear()},t.getGlobalStats=function(){for(var e,t=[],n=s(this.pools.entries());!(e=n()).done;){var r=e.value,i=r[0],o=r[1];t.push({componentName:i,poolStats:o.getStats(),usage:this.usageTracker.get(i)})}return t},t.getPoolStats=function(){for(var e,t=new Map,n=s(this.pools);!(e=n()).done;){var r=e.value,i=r[0],o=r[1];t.set(i,{available:o.getAvailableCount(),maxSize:o.getMaxSize()})}return t},t.getPoolUtilization=function(){for(var e,t=new Map,n=s(this.pools);!(e=n()).done;){var r=e.value,i=r[0],o=r[1],a=o.getAvailableCount(),c=o.getMaxSize(),u=c-a,l=c>0?u/c*100:0;t.set(i,{used:u,total:c,utilization:l})}return t},t.getComponentUtilization=function(e){var t=this.pools.get(e);if(!t)return 0;var n=t.getAvailableCount(),r=t.getMaxSize();return r>0?(r-n)/r*100:0},e}(),Ie=function(){function e(){}var t=e.prototype;return t.collectComponentData=function(e){var t=this;if(!e)return{componentTypes:0,componentInstances:0,componentStats:[]};var n=e.entities;if(null==n||!n.buffer)return{componentTypes:0,componentInstances:0,componentStats:[]};var r=new Map,i=0;n.buffer.forEach(function(e){e.components&&e.components.forEach(function(e){var t=W(e),n=r.get(t)||{count:0,entities:0};n.count++,i++,r.set(t,n)})});var o=new Map,a=new Map;try{for(var c,u=xe.getInstance(),l=u.getPoolStats(),h=u.getPoolUtilization(),f=s(l.entries());!(c=f()).done;){var d=c.value,p=d[0],m=d[1];a.set(p,m.maxSize)}for(var v,y=s(h.entries());!(v=y()).done;){var g=v.value,_=g[0],S=g[1];o.set(_,S.utilization)}}catch(e){}return{componentTypes:r.size,componentInstances:i,componentStats:Array.from(r.entries()).map(function(r){var i=r[0],s=r[1],c=a.get(i)||0,u=o.get(i)||0,l=t.getEstimatedComponentSize(i,e);return{typeName:i,instanceCount:s.count,memoryPerInstance:l,totalMemory:s.count*l,poolSize:c,poolUtilization:u,averagePerEntity:s.count/n.buffer.length}})}},t.getEstimatedComponentSize=function(t,n){if(e.componentSizeCache.has(t))return e.componentSizeCache.get(t);if(!n)return 64;var r=n.entities;if(null==r||!r.buffer)return 64;var i=64;try{for(var o,a=s(r.buffer);!(o=a()).done;){var c=o.value;if(c.components){var u=c.components.find(function(e){return W(e)===t});if(u){i=this.calculateQuickObjectSize(u);break}}}}catch(e){i=64}return e.componentSizeCache.set(t,i),i},t.calculateQuickObjectSize=function(e){if(!e||"object"!=typeof e)return 8;var t=32,n=new WeakSet,r=function(e,t){if(void 0===t&&(t=0),!e||"object"!=typeof e||n.has(e)||t>3)return 0;n.add(e);var i=0;try{for(var o=Object.keys(e),s=0;s<Math.min(o.length,20);s++){var a=o[s];if(a&&"entity"!==a&&"_entity"!==a&&"constructor"!==a){var c=e[a];i+=2*a.length,"string"==typeof c?i+=Math.min(2*c.length,200):"number"==typeof c?i+=8:"boolean"==typeof c?i+=4:"object"==typeof c&&null!==c&&(i+=r(c,t+1))}}}catch(e){return 32}return i};return t+=r(e),Math.max(t,32)},t.calculateDetailedComponentMemory=function(e,t){if(!t)return this.getEstimatedComponentSize(e,t);var n=t.entities;if(null==n||!n.buffer)return this.getEstimatedComponentSize(e,t);try{for(var r,i=s(n.buffer);!(r=i()).done;){var o=r.value;if(o.components){var a=o.components.find(function(t){return W(t)===e});if(a)return this.estimateObjectSize(a)}}}catch(e){}return this.getEstimatedComponentSize(e,t)},t.estimateObjectSize=function(e,t,n){if(void 0===t&&(t=new WeakSet),void 0===n&&(n=0),null==e||n>10)return 0;if(t.has(e))return 0;var r=0;switch(typeof e){case"boolean":r=4;break;case"number":default:r=8;break;case"string":r=24+Math.min(2*e.length,1e3);break;case"object":if(t.add(e),Array.isArray(e)){r=40+8*e.length;for(var i=Math.min(e.length,50),o=0;o<i;o++)r+=this.estimateObjectSize(e[o],t,n+1)}else{r=32;try{for(var s=Object.getOwnPropertyNames(e),a=Math.min(s.length,30),c=0;c<a;c++){var u=s[c];if(u&&("constructor"!==u&&"__proto__"!==u&&"entity"!==u&&"_entity"!==u&&!u.startsWith("_cc_")&&!u.startsWith("__")))try{r+=16+2*u.length;var l=e[u];null!=l&&(r+=this.estimateObjectSize(l,t,n+1))}catch(e){continue}}}catch(e){r=128}}}return 8*Math.ceil(r/8)},e.clearCache=function(){e.componentSizeCache.clear()},e}();Ie.componentSizeCache=new Map;var ke,Oe=function(){function e(){this.sceneStartTime=Date.now()}var t=e.prototype;return t.collectSceneData=function(e){var t,n;if(!e)return{currentSceneName:"No Scene",isInitialized:!1,sceneRunTime:0,sceneEntityCount:0,sceneSystemCount:0,sceneUptime:0};var r=(Date.now()-this.sceneStartTime)/1e3,i=e.entities,o=e.entityProcessors;return{currentSceneName:e.name||"Unnamed Scene",isInitialized:e._didSceneBegin||!1,sceneRunTime:r,sceneEntityCount:(null==i||null===(t=i.buffer)||void 0===t?void 0:t.length)||0,sceneSystemCount:(null==o||null===(n=o.processors)||void 0===n?void 0:n.length)||0,sceneUptime:r}},t.setSceneStartTime=function(e){this.sceneStartTime=e},e}(),De=function(){function e(e,t){void 0===t&&(t=!0),this.isConnected=!1,this.reconnectAttempts=0,this.maxReconnectAttempts=5,this.url=e,this.autoReconnect=t}var t=e.prototype;return t.setMessageHandler=function(e){this.messageHandler=e},t.connect=function(){var e=this;return new Promise(function(t,n){try{e.ws=new WebSocket(e.url),e.ws.onopen=function(n){e.handleOpen(n),t()},e.ws.onclose=function(t){e.handleClose(t)},e.ws.onerror=function(t){e.handleError(t),n(t)},e.ws.onmessage=function(t){e.handleMessage(t)}}catch(t){e.handleConnectionFailure(t),n(t)}})},t.disconnect=function(){this.ws&&(this.autoReconnect=!1,this.ws.close(),delete this.ws),this.isConnected=!1},t.send=function(e){if(this.isConnected&&this.ws)try{var t="string"==typeof e?e:JSON.stringify(e);this.ws.send(t)}catch(e){}},t.getConnectionStatus=function(){return this.isConnected},t.setMaxReconnectAttempts=function(e){this.maxReconnectAttempts=e},t.scheduleReconnect=function(){var e=this;this.reconnectTimer&&clearTimeout(this.reconnectTimer);var t=Math.min(1e3*Math.pow(2,this.reconnectAttempts),3e4);this.reconnectAttempts++,this.reconnectTimer=setTimeout(function(){e.connect().catch(function(t){e.reconnectAttempts<e.maxReconnectAttempts&&e.scheduleReconnect()})},t)},t.handleMessage=function(e){try{var t=JSON.parse(e.data);this.messageHandler&&this.messageHandler(t)}catch(e){}},t.handleOpen=function(e){this.isConnected=!0,this.reconnectAttempts=0,this.onOpen&&this.onOpen(e)},t.handleClose=function(e){this.isConnected=!1,this.onClose&&this.onClose(e),this.autoReconnect&&this.reconnectAttempts<this.maxReconnectAttempts&&this.scheduleReconnect()},t.handleError=function(e){this.onError&&this.onError(e)},t.handleConnectionFailure=function(e){this.onError&&this.onError(e)},e}();exports.ProfileCategory=void 0,(ke=exports.ProfileCategory||(exports.ProfileCategory={})).ECS="ECS",ke.Rendering="Rendering",ke.Physics="Physics",ke.Audio="Audio",ke.Network="Network",ke.Script="Script",ke.Memory="Memory",ke.Animation="Animation",ke.AI="AI",ke.Input="Input",ke.Loading="Loading",ke.Custom="Custom";var Pe={enabled:!1,maxFrameHistory:300,maxSampleDepth:32,collectMemory:!0,memorySampleInterval:100,detectLongTasks:!0,longTaskThreshold:50,enabledCategories:new Set(Object.values(exports.ProfileCategory))},Re=0;var Fe=function(){function e(e){this.currentFrame=null,this.frameHistory=[],this.frameNumber=0,this.activeSamples=new Map,this.sampleStack=[],this.counters=new Map,this.callGraph=new Map,this.gcCount=0,this.previousHeapSize=0,this.longTasks=[],this.performanceObserver=null,this.config=a({},Pe,e),this.config.detectLongTasks&&this.setupLongTaskObserver()}e.getInstance=function(t){return e.instance||(e.instance=new e(t)),e.instance},e.resetInstance=function(){e.instance&&(e.instance.dispose(),e.instance=null)},e.beginSample=function(t,n){return void 0===n&&(n=exports.ProfileCategory.Custom),e.getInstance().beginSample(t,n)},e.endSample=function(t){t&&e.getInstance().endSample(t)},e.measure=function(t,n,r){return void 0===r&&(r=exports.ProfileCategory.Custom),e.getInstance().measure(t,n,r)},e.measureAsync=function(){var t=n(h().m(function t(n,r,i){return h().w(function(t){for(;;)if(0===t.n)return void 0===i&&(i=exports.ProfileCategory.Custom),t.a(2,e.getInstance().measureAsync(n,r,i))},t)}));return function(e,n,r){return t.apply(this,arguments)}}(),e.beginFrame=function(){e.getInstance().beginFrame()},e.endFrame=function(){e.getInstance().endFrame()},e.incrementCounter=function(t,n,r){void 0===n&&(n=1),void 0===r&&(r=exports.ProfileCategory.Custom),e.getInstance().incrementCounter(t,n,r)},e.setGauge=function(t,n,r){void 0===r&&(r=exports.ProfileCategory.Custom),e.getInstance().setGauge(t,n,r)},e.setEnabled=function(t){e.getInstance().setEnabled(t)},e.isEnabled=function(){return e.getInstance().config.enabled},e.getCurrentFrame=function(){return e.getInstance().currentFrame},e.getFrameHistory=function(){return e.getInstance().frameHistory},e.getReport=function(t){return e.getInstance().generateReport(t)},e.reset=function(){e.getInstance().reset()};var t=e.prototype;return t.beginSample=function(e,t){if(void 0===t&&(t=exports.ProfileCategory.Custom),!this.config.enabled||!this.config.enabledCategories.has(t))return null;var n=this.sampleStack.length>0?this.sampleStack[this.sampleStack.length-1]:void 0;if(n&&this.sampleStack.length>=this.config.maxSampleDepth)return null;var r={id:"sample_"+ ++Re+"_"+Date.now(),name:e,category:t,startTime:performance.now(),depth:this.sampleStack.length,parentId:null==n?void 0:n.id};return this.activeSamples.set(r.id,r),this.sampleStack.push(r),r},t.endSample=function(e){if(this.config.enabled&&this.activeSamples.has(e.id)){var t=performance.now(),n=t-e.startTime,r=e.parentId?this.activeSamples.get(e.parentId):void 0,i={id:e.id,name:e.name,category:e.category,startTime:e.startTime,endTime:t,duration:n,selfTime:n,parentId:e.parentId,parentName:null==r?void 0:r.name,depth:e.depth,callCount:1};this.currentFrame&&this.currentFrame.samples.push(i),this.updateCallGraph(e.name,e.category,n,r),this.activeSamples.delete(e.id);var o=this.sampleStack.indexOf(e);-1!==o&&this.sampleStack.splice(o,1)}},t.measure=function(e,t,n){void 0===n&&(n=exports.ProfileCategory.Custom);var r=this.beginSample(e,n);try{return t()}finally{r&&this.endSample(r)}},t.measureAsync=function(){var e=n(h().m(function e(t,n,r){var i;return h().w(function(e){for(;;)switch(e.p=e.n){case 0:return void 0===r&&(r=exports.ProfileCategory.Custom),i=this.beginSample(t,r),e.p=1,e.n=2,n();case 2:return e.a(2,e.v);case 3:return e.p=3,i&&this.endSample(i),e.f(3);case 4:return e.a(2)}},e,this,[[1,,3,4]])}));return function(t,n,r){return e.apply(this,arguments)}}(),t.beginFrame=function(){this.config.enabled&&(this.frameNumber++,this.currentFrame={frameNumber:this.frameNumber,startTime:performance.now(),endTime:0,duration:0,samples:[],sampleStats:[],counters:new Map(this.counters),memory:this.captureMemory(),categoryStats:new Map},this.resetFrameCounters())},t.endFrame=function(){if(this.config.enabled&&this.currentFrame){for(this.currentFrame.endTime=performance.now(),this.currentFrame.duration=this.currentFrame.endTime-this.currentFrame.startTime,this.calculateSampleStats(),this.calculateCategoryStats(),this.frameHistory.push(this.currentFrame);this.frameHistory.length>this.config.maxFrameHistory;)this.frameHistory.shift();this.sampleStack=[],this.activeSamples.clear()}},t.incrementCounter=function(e,t,n){if(void 0===t&&(t=1),void 0===n&&(n=exports.ProfileCategory.Custom),this.config.enabled){var r=this.counters.get(e);r||(r={name:e,category:n,value:0,type:"counter",history:[]},this.counters.set(e,r)),r.value+=t,r.history.push({time:performance.now(),value:r.value}),r.history.length>100&&r.history.shift()}},t.setGauge=function(e,t,n){if(void 0===n&&(n=exports.ProfileCategory.Custom),this.config.enabled){var r=this.counters.get(e);r||(r={name:e,category:n,value:0,type:"gauge",history:[]},this.counters.set(e,r)),r.value=t,r.history.push({time:performance.now(),value:t}),r.history.length>100&&r.history.shift()}},t.setEnabled=function(e){this.config.enabled=e,e&&this.config.detectLongTasks&&!this.performanceObserver&&this.setupLongTaskObserver()},t.reset=function(){this.frameHistory=[],this.currentFrame=null,this.frameNumber=0,this.activeSamples.clear(),this.sampleStack=[],this.counters.clear(),this.callGraph.clear(),this.gcCount=0,this.longTasks=[]},t.generateReport=function(e){var t,n,r=e?this.frameHistory.slice(-e):this.frameHistory;if(0===r.length)return this.createEmptyReport();var i=r.map(function(e){return e.duration}),o=[].concat(i).sort(function(e,t){return e-t}),s=this.aggregateSampleStats(r).sort(function(e,t){return t.inclusiveTime-e.inclusiveTime}).slice(0,20),a=this.aggregateCategoryStats(r),c=this.buildCallGraphFromFrames(r),u=r[0],l=r[r.length-1];return{startTime:null!==(t=null==u?void 0:u.startTime)&&void 0!==t?t:0,endTime:null!==(n=null==l?void 0:l.endTime)&&void 0!==n?n:0,totalFrames:r.length,averageFrameTime:i.reduce(function(e,t){return e+t},0)/i.length,minFrameTime:Math.min.apply(Math,i),maxFrameTime:Math.max.apply(Math,i),p95FrameTime:o[Math.floor(.95*o.length)]||0,p99FrameTime:o[Math.floor(.99*o.length)]||0,hotspots:s,callGraph:c,categoryBreakdown:a,memoryTrend:r.map(function(e){return e.memory}),longTasks:[].concat(this.longTasks)}},t.buildCallGraphFromFrames=function(e){for(var t,n=new Map,r=s(e);!(t=r()).done;)for(var i,o=s(t.value.samples);!(i=o()).done;){var a=i.value,c=n.get(a.name);if(c||(c={category:a.category,callCount:0,totalTime:0,callers:new Map,callees:new Map},n.set(a.name,c)),c.callCount++,c.totalTime+=a.duration,a.parentName){var u=c.callers.get(a.parentName)||{count:0,totalTime:0};u.count++,u.totalTime+=a.duration,c.callers.set(a.parentName,u);var l=n.get(a.parentName);l||(l={category:a.category,callCount:0,totalTime:0,callers:new Map,callees:new Map},n.set(a.parentName,l));var h=l.callees.get(a.name)||{count:0,totalTime:0};h.count++,h.totalTime+=a.duration,l.callees.set(a.name,h)}}for(var f,d=new Map,p=s(n);!(f=p()).done;){for(var m,v=f.value,y=v[0],g=v[1],_=new Map,S=s(g.callers);!(m=S()).done;){var C=m.value,b=C[0],E=C[1];_.set(b,{count:E.count,totalTime:E.count>0?E.totalTime/E.count:0})}for(var T,w=new Map,M=s(g.callees);!(T=M()).done;){var A=T.value,x=A[0],I=A[1];w.set(x,{count:I.count,totalTime:I.count>0?I.totalTime/I.count:0})}d.set(y,{name:y,category:g.category,callCount:g.callCount,totalTime:g.callCount>0?g.totalTime/g.callCount:0,callers:_,callees:w})}return d},t.getCallGraph=function(){return new Map(this.callGraph)},t.getFunctionCallInfo=function(e){var t=this.callGraph.get(e);return t?{callers:Array.from(t.callers.entries()).map(function(e){return a({name:e[0]},e[1])}),callees:Array.from(t.callees.entries()).map(function(e){return a({name:e[0]},e[1])})}:null},t.dispose=function(){this.performanceObserver&&(this.performanceObserver.disconnect(),this.performanceObserver=null),this.reset()},t.captureMemory=function(){var e=performance.now(),t=0,n=0,r=0,i=performance;return i.memory&&(t=i.memory.usedJSHeapSize||0,n=i.memory.totalJSHeapSize||0,r=i.memory.jsHeapSizeLimit||0,this.previousHeapSize>0&&t<this.previousHeapSize-1048576&&this.gcCount++,this.previousHeapSize=t),{timestamp:e,usedHeapSize:t,totalHeapSize:n,heapSizeLimit:r,utilizationPercent:r>0?t/r*100:0,gcCount:this.gcCount}},t.resetFrameCounters=function(){for(var e,t=s(this.counters.values());!(e=t()).done;){var n=e.value;"counter"===n.type&&(n.value=0)}},t.calculateSampleStats=function(){var e=this;if(this.currentFrame){for(var t,n=new Map,r=s(this.currentFrame.samples);!(t=r()).done;){var i=t.value,o=n.get(i.name);o||(o={name:i.name,category:i.category,inclusiveTime:0,exclusiveTime:0,callCount:0,averageTime:0,minTime:Number.MAX_VALUE,maxTime:0,percentOfFrame:0,percentOfParent:0,children:[],depth:i.depth},n.set(i.name,o)),o.inclusiveTime+=i.duration,o.callCount+=1,o.minTime=Math.min(o.minTime,i.duration),o.maxTime=Math.max(o.maxTime,i.duration)}for(var a,c=function(){var t=a.value;if(t.parentId){var r=e.currentFrame.samples.find(function(e){return e.id===t.parentId});if(r){var i=n.get(r.name);if(i){i.exclusiveTime=i.inclusiveTime;for(var o,c=s(e.currentFrame.samples);!(o=c()).done;){var u=o.value;u.parentId===r.id&&(i.exclusiveTime-=u.duration)}}}}},u=s(this.currentFrame.samples);!(a=u()).done;)c();for(var l,h=this.currentFrame.duration||1,f=s(n.values());!(l=f()).done;){var d=l.value;d.averageTime=d.inclusiveTime/d.callCount,d.percentOfFrame=d.inclusiveTime/h*100,0===d.exclusiveTime&&(d.exclusiveTime=d.inclusiveTime)}this.currentFrame.sampleStats=Array.from(n.values()).sort(function(e,t){return t.inclusiveTime-e.inclusiveTime})}},t.calculateCategoryStats=function(){if(this.currentFrame){for(var e,t=new Map,n=s(this.currentFrame.samples);!(e=n()).done;){var r=e.value;if(0===r.depth){var i=t.get(r.category);i||(i={totalTime:0,sampleCount:0},t.set(r.category,i)),i.totalTime+=r.duration,i.sampleCount+=1}}for(var o,c=this.currentFrame.duration||1,u=s(t);!(o=u()).done;){var l=o.value,h=l[0],f=l[1];this.currentFrame.categoryStats.set(h,a({},f,{percentOfFrame:f.totalTime/c*100}))}}},t.updateCallGraph=function(e,t,n,r){var i=this.callGraph.get(e);if(i||(i={name:e,category:t,callCount:0,totalTime:0,callers:new Map,callees:new Map},this.callGraph.set(e,i)),i.callCount++,i.totalTime+=n,r){var o=i.callers.get(r.name)||{count:0,totalTime:0};o.count++,o.totalTime+=n,i.callers.set(r.name,o);var s=this.callGraph.get(r.name);s||(s={name:r.name,category:r.category,callCount:0,totalTime:0,callers:new Map,callees:new Map},this.callGraph.set(r.name,s));var a=s.callees.get(e)||{count:0,totalTime:0};a.count++,a.totalTime+=n,s.callees.set(e,a)}},t.aggregateSampleStats=function(e){for(var t,n=new Map,r=s(e);!(t=r()).done;)for(var i,o=s(t.value.sampleStats);!(i=o()).done;){var c=i.value,u=n.get(c.name);u?(u.inclusiveTime+=c.inclusiveTime,u.exclusiveTime+=c.exclusiveTime,u.callCount+=c.callCount,u.minTime=Math.min(u.minTime,c.minTime),u.maxTime=Math.max(u.maxTime,c.maxTime)):(u=a({},c,{minTime:Number.MAX_VALUE}),n.set(c.name,u))}for(var l,h=e.reduce(function(e,t){return e+t.duration},0),f=s(n.values());!(l=f()).done;){var d=l.value;d.averageTime=d.inclusiveTime/d.callCount,d.percentOfFrame=d.inclusiveTime/h*100}return Array.from(n.values())},t.aggregateCategoryStats=function(e){for(var t,n=new Map,r=s(e);!(t=r()).done;)for(var i,o=s(t.value.categoryStats);!(i=o()).done;){var a=i.value,c=a[0],u=a[1],l=n.get(c);l||(l={totalTime:0,frameCount:0},n.set(c,l)),l.totalTime+=u.totalTime,l.frameCount++}for(var h,f=e.reduce(function(e,t){return e+t.duration},0),d=new Map,p=s(n);!(h=p()).done;){var m=h.value,v=m[0],y=m[1];d.set(v,{totalTime:y.totalTime,averageTime:y.frameCount>0?y.totalTime/y.frameCount:0,percentOfTotal:f>0?y.totalTime/f*100:0})}return d},t.setupLongTaskObserver=function(){var e=this;if("undefined"!=typeof PerformanceObserver)try{this.performanceObserver=new PerformanceObserver(function(t){for(var n,r=s(t.getEntries());!(n=r()).done;){var i,o=n.value;if(o.duration>e.config.longTaskThreshold)e.longTasks.push({startTime:o.startTime,duration:o.duration,attribution:(null===(i=o.attribution)||void 0===i?void 0:i.map(function(e){return e.name}))||[]}),e.longTasks.length>100&&e.longTasks.shift()}}),this.performanceObserver.observe({entryTypes:["longtask"]})}catch(e){}},t.createEmptyReport=function(){return{startTime:0,endTime:0,totalFrames:0,averageFrameTime:0,minFrameTime:0,maxFrameTime:0,p95FrameTime:0,p99FrameTime:0,hotspots:[],callGraph:new Map,categoryBreakdown:new Map,memoryTrend:[],longTasks:[]}},e}();Fe.instance=null;var ze,Ne=function(){function e(){this.selectedFunction=null,this.peakMemory=0}var t=e.prototype;return t.setSelectedFunction=function(e){this.selectedFunction=e},t.collectAdvancedData=function(e){var t=Fe.getFrameHistory(),n=Fe.getCurrentFrame(),r=Fe.getReport(300),i=(null==n?void 0:n.memory)||this.getDefaultMemory();return i.usedHeapSize>this.peakMemory&&(this.peakMemory=i.usedHeapSize),{currentFrame:this.buildCurrentFrameData(n),frameTimeHistory:this.buildFrameTimeHistory(t),categoryStats:this.buildCategoryStats(n,e),hotspots:this.buildHotspots(r),callGraph:this.buildCallGraph(r),longTasks:r.longTasks,memoryTrend:this.buildMemoryTrend(r.memoryTrend),summary:this.buildSummary(r,i)}},t.collectFromLegacyMonitor=function(e){var t,n;if(!e)return this.createEmptyData();var r=(null===(t=e.getAllSystemStats)||void 0===t?void 0:t.call(e))||new Map,i=(null===(n=e.getAllSystemData)||void 0===n?void 0:n.call(e))||new Map,o=1e3*g.deltaTime,s=o>0?Math.round(1e3/o):0,a=this.buildCategoryStatsFromLegacy(r,i,o),c=this.buildHotspotsFromLegacy(r,i,o);return{currentFrame:{frameNumber:0,frameTime:o,fps:s,memory:this.getCurrentMemory()},frameTimeHistory:[],categoryStats:a,hotspots:c,callGraph:{currentFunction:this.selectedFunction,callers:[],callees:[]},longTasks:[],memoryTrend:[],summary:{totalFrames:0,averageFrameTime:o,minFrameTime:o,maxFrameTime:o,p95FrameTime:o,p99FrameTime:o,currentMemoryMB:this.getCurrentMemory().usedHeapSize/1048576,peakMemoryMB:this.peakMemory/1048576,gcCount:0,longTaskCount:0}}},t.buildCurrentFrameData=function(e){if(!e){var t=1e3*g.deltaTime;return{frameNumber:0,frameTime:t,fps:t>0?Math.round(1e3/t):0,memory:this.getCurrentMemory()}}return{frameNumber:e.frameNumber,frameTime:e.duration,fps:e.duration>0?Math.round(1e3/e.duration):0,memory:e.memory}},t.buildFrameTimeHistory=function(e){return e.map(function(e){return{frameNumber:e.frameNumber,time:e.startTime,duration:e.duration}})},t.buildCategoryStats=function(e,t){var n=[];if(e&&e.categoryStats.size>0)for(var r,i=e.duration||1,o=function(){var t=r.value,o=t[0],s=t[1],a=e.sampleStats.filter(function(e){return e.category===o}).map(function(e){return{name:e.name,inclusiveTime:e.inclusiveTime,exclusiveTime:e.exclusiveTime,callCount:e.callCount,percentOfCategory:s.totalTime>0?e.inclusiveTime/s.totalTime*100:0,percentOfFrame:e.inclusiveTime/i*100}}).sort(function(e,t){return t.inclusiveTime-e.inclusiveTime});n.push({category:o,totalTime:s.totalTime,percentOfFrame:s.percentOfFrame,sampleCount:s.sampleCount,items:a})},a=s(e.categoryStats);!(r=a()).done;)o();if(t&&0===n.length){var c,u,l=(null===(c=t.getAllSystemStats)||void 0===c?void 0:c.call(t))||new Map,h=(null===(u=t.getAllSystemData)||void 0===u?void 0:u.call(t))||new Map,f=1e3*g.deltaTime||1;return this.buildCategoryStatsFromLegacy(l,h,f)}return n.sort(function(e,t){return t.totalTime-e.totalTime})},t.buildCategoryStatsFromLegacy=function(e,t,n){for(var r,i=[],o=0,a=s(e.entries());!(r=a()).done;){var c=r.value,u=c[0],l=c[1],h=t.get(u),f=(null==h?void 0:h.executionTime)||(null==l?void 0:l.averageTime)||0;o+=f,i.push({name:u,inclusiveTime:f,exclusiveTime:f,callCount:1,percentOfCategory:0,percentOfFrame:n>0?f/n*100:0})}for(var d=0,p=i;d<p.length;d++){var m=p[d];m.percentOfCategory=o>0?m.inclusiveTime/o*100:0}return i.sort(function(e,t){return t.inclusiveTime-e.inclusiveTime}),0===i.length?[]:[{category:exports.ProfileCategory.ECS,totalTime:o,percentOfFrame:n>0?o/n*100:0,sampleCount:i.length,items:i}]},t.buildHotspots=function(e){for(var t,n=e.hotspots.reduce(function(e,t){return e+t.inclusiveTime},0)||1,r=new Set,i=new Set,o=s(e.callGraph);!(t=o()).done;){var a=t.value,c=a[0],u=a[1];if(0===u.callers.size)r.add(c);else{for(var l,h=!1,f=s(u.callers.keys());!(l=f()).done;){var d=l.value;if(e.callGraph.has(d)){h=!0,i.add(c);break}}h||r.add(c)}}for(var p,m=function(t,r,i){if(i.has(t))return null;i.add(t);var o=e.hotspots.find(function(e){return e.name===t}),a=e.callGraph.get(t);if(!o&&!a)return null;var c=(null==o?void 0:o.inclusiveTime)||(null==a?void 0:a.totalTime)||0,u=(null==o?void 0:o.exclusiveTime)||c,l=(null==o?void 0:o.callCount)||(null==a?void 0:a.callCount)||1,h=[];if(a&&r<5){for(var f,d=s(a.callees);!(f=d()).done;){var p=f.value[0],v=m(p,r+1,i);v&&h.push(v)}h.sort(function(e,t){return t.inclusiveTime-e.inclusiveTime})}return{name:t,category:(null==o?void 0:o.category)||(null==a?void 0:a.category)||exports.ProfileCategory.Custom,inclusiveTime:c,inclusiveTimePercent:c/n*100,exclusiveTime:u,exclusiveTimePercent:u/n*100,callCount:l,avgCallTime:l>0?c/l:0,depth:r,children:h.length>0?h:void 0}},v=[],y=new Set,g=s(r);!(p=g()).done;){var _=p.value,S=m(_,0,y);S&&v.push(S)}return v.sort(function(e,t){return t.inclusiveTime-e.inclusiveTime}),v.slice(0,50)},t.buildHotspotsFromLegacy=function(e,t,n){for(var r,i=[],o=s(e.entries());!(r=o()).done;){var a=r.value,c=a[0],u=a[1],l=t.get(c),h=(null==l?void 0:l.executionTime)||(null==u?void 0:u.averageTime)||0;i.push({name:c,category:exports.ProfileCategory.ECS,inclusiveTime:h,inclusiveTimePercent:n>0?h/n*100:0,exclusiveTime:h,exclusiveTimePercent:n>0?h/n*100:0,callCount:(null==u?void 0:u.executionCount)||1,avgCallTime:(null==u?void 0:u.averageTime)||h,depth:0})}return i.sort(function(e,t){return t.inclusiveTime-e.inclusiveTime}).slice(0,50)},t.buildCallGraph=function(e){if(!this.selectedFunction)return{currentFunction:null,callers:[],callees:[]};var t=e.callGraph.get(this.selectedFunction);if(!t)return{currentFunction:this.selectedFunction,callers:[],callees:[]};for(var n,r=0,i=s(t.callers.values());!(n=i()).done;){var o=n.value;r+=o.count}var a=Array.from(t.callers.entries()).map(function(e){var t=e[0],n=e[1];return{name:t,callCount:n.count,totalTime:n.totalTime,percentOfCurrent:r>0?n.count/r*100:0}}).sort(function(e,t){return t.callCount-e.callCount}),c=Array.from(t.callees.entries()).map(function(e){var n=e[0],r=e[1];return{name:n,callCount:r.count,totalTime:r.totalTime,percentOfCurrent:t.totalTime>0?r.totalTime/t.totalTime*100:0}}).sort(function(e,t){return t.totalTime-e.totalTime});return{currentFunction:this.selectedFunction,callers:a,callees:c}},t.buildMemoryTrend=function(e){return e.map(function(e){return{time:e.timestamp,usedMB:e.usedHeapSize/1048576,totalMB:e.totalHeapSize/1048576,gcCount:e.gcCount}})},t.buildSummary=function(e,t){return{totalFrames:e.totalFrames,averageFrameTime:e.averageFrameTime,minFrameTime:e.minFrameTime,maxFrameTime:e.maxFrameTime,p95FrameTime:e.p95FrameTime,p99FrameTime:e.p99FrameTime,currentMemoryMB:t.usedHeapSize/1048576,peakMemoryMB:this.peakMemory/1048576,gcCount:t.gcCount,longTaskCount:e.longTasks.length}},t.getCurrentMemory=function(){var e,t,n,r=performance,i=(null===(e=r.memory)||void 0===e?void 0:e.usedJSHeapSize)||0,o=(null===(t=r.memory)||void 0===t?void 0:t.totalJSHeapSize)||0,s=(null===(n=r.memory)||void 0===n?void 0:n.jsHeapSizeLimit)||0;return{timestamp:performance.now(),usedHeapSize:i,totalHeapSize:o,heapSizeLimit:s,utilizationPercent:s>0?i/s*100:0,gcCount:0}},t.getDefaultMemory=function(){return{timestamp:performance.now(),usedHeapSize:0,totalHeapSize:0,heapSizeLimit:0,utilizationPercent:0,gcCount:0}},t.createEmptyData=function(){return{currentFrame:{frameNumber:0,frameTime:0,fps:0,memory:this.getDefaultMemory()},frameTimeHistory:[],categoryStats:[],hotspots:[],callGraph:{currentFunction:null,callers:[],callees:[]},longTasks:[],memoryTrend:[],summary:{totalFrames:0,averageFrameTime:0,minFrameTime:0,maxFrameTime:0,p95FrameTime:0,p99FrameTime:0,currentMemoryMB:0,peakMemoryMB:0,gcCount:0,longTaskCount:0}}},e}();!function(e){e[e.LOW=0]="LOW",e[e.HIGH=1]="HIGH"}(ze||(ze={}));var Be=function(){function e(){}return e.create=function(t){if(t<0)throw new Error("Bit index "+t+" out of range [0, ∞)");var n={base:[0,0]};return e.setBit(n,t),n},e.fromNumber=function(e){return{base:[e>>>0,0]}},e.hasAny=function(e,t){var n=t.base,r=e.base,i=t.segments,o=e.segments,s=0!==(r[ze.LOW]&n[ze.LOW])||0!==(r[ze.HIGH]&n[ze.HIGH]);return!s&&i&&o?o.some(function(e,t){var n=i[t];return n&&(0!==(e[ze.LOW]&n[ze.LOW])||0!==(e[ze.HIGH]&n[ze.HIGH]))}):s},e.hasAll=function(e,t){var n,r=e.base,i=t.base,o=e.segments,s=t.segments,a=(r[ze.LOW]&i[ze.LOW])===i[ze.LOW]&&(r[ze.HIGH]&i[ze.HIGH])===i[ze.HIGH];if(!a||!s)return a;var c=null!==(n=null==o?void 0:o.length)&&void 0!==n?n:0;if(o)for(var u=0;u<Math.min(c,s.length);u++){var l=o[u],h=s[u];if((l[ze.LOW]&h[ze.LOW])!==h[ze.LOW]||(l[ze.HIGH]&h[ze.HIGH])!==h[ze.HIGH])return!1}for(var f=c;f<s.length;f++){var d=s[f];if(0!==d[ze.LOW]||0!==d[ze.HIGH])return!1}return!0},e.hasNone=function(e,t){var n=e.base,r=t.base,i=e.segments,o=t.segments,s=0===(n[ze.LOW]&r[ze.LOW])&&0===(n[ze.HIGH]&r[ze.HIGH]);return i&&s&&o?i.every(function(e,t){var n=o[t];return!n||0===(e[ze.LOW]&n[ze.LOW])&&0===(e[ze.HIGH]&n[ze.HIGH])}):s},e.isZero=function(e){var t=0===e.base[ze.LOW]&&0===e.base[ze.HIGH];return e.segments&&t?e.segments.every(function(e){return 0===e[ze.LOW]&&0===e[ze.HIGH]}):t},e.equals=function(e,t){var n,r,i=e.base[ze.LOW]===t.base[ze.LOW]&&e.base[ze.HIGH]===t.base[ze.HIGH];if(!i||!e.segments&&!t.segments)return i;for(var o=null!==(n=e.segments)&&void 0!==n?n:[],s=null!==(r=t.segments)&&void 0!==r?r:[],a=0;a<Math.max(o.length,s.length);a++){var c=o[a],u=s[a];if(c&&!u){if(0!==c[ze.LOW]||0!==c[ze.HIGH])return!1}else if(!c&&u){if(0!==u[ze.LOW]||0!==u[ze.HIGH])return!1}else if(c&&u&&(c[ze.LOW]!==u[ze.LOW]||c[ze.HIGH]!==u[ze.HIGH]))return!1}return!0},e.setBit=function(t,n){if(n<0)throw new Error("Bit index "+n+" out of range [0, 63]");var r=e.getSegmentByBitIndex(t,n),i=63&n;i<32?r[ze.LOW]|=1<<i:r[ze.HIGH]|=1<<i-32},e.getBit=function(t,n){if(n<0)return!1;var r=e.getSegmentByBitIndex(t,n,!1);if(!r)return!1;var i=63&n;return i<32?!!(r[ze.LOW]&1<<i):!!(r[ze.HIGH]&1<<i-32)},e.clearBit=function(t,n){if(n<0)throw new Error("Bit index "+n+" out of range [0, 63]");var r=e.getSegmentByBitIndex(t,n,!1);if(r){var i=63&n;i<32?r[ze.LOW]&=~(1<<i):r[ze.HIGH]&=~(1<<i-32)}},e.orInPlace=function(e,t){e.base[ze.LOW]|=t.base[ze.LOW],e.base[ze.HIGH]|=t.base[ze.HIGH];var n=t.segments;if(n&&n.length>0){e.segments||(e.segments=[]);for(var r=e.segments;r.length<n.length;)r.push([0,0]);for(var i=0;i<n.length;i++){var o=r[i],s=n[i];o[ze.LOW]|=s[ze.LOW],o[ze.HIGH]|=s[ze.HIGH]}}},e.andInPlace=function(e,t){e.base[ze.LOW]&=t.base[ze.LOW],e.base[ze.HIGH]&=t.base[ze.HIGH];var n=t.segments;if(n&&n.length>0){e.segments||(e.segments=[]);for(var r=e.segments;r.length<n.length;)r.push([0,0]);for(var i=0;i<n.length;i++){var o=r[i],s=n[i];o[ze.LOW]&=s[ze.LOW],o[ze.HIGH]&=s[ze.HIGH]}}},e.xorInPlace=function(e,t){e.base[ze.LOW]^=t.base[ze.LOW],e.base[ze.HIGH]^=t.base[ze.HIGH];var n=t.segments;if(n&&0!=n.length){e.segments||(e.segments=[]);for(var r=e.segments;r.length<n.length;)r.push([0,0]);for(var i=0;i<n.length;i++){var o=r[i],s=n[i];o[ze.LOW]^=s[ze.LOW],o[ze.HIGH]^=s[ze.HIGH]}}},e.clear=function(e){if(e.base[ze.LOW]=0,e.base[ze.HIGH]=0,e.segments)for(var t=0;t<e.segments.length;t++){var n=e.segments[t];n[ze.LOW]=0,n[ze.HIGH]=0}},e.copy=function(t,n){if(e.clear(n),n.base[ze.LOW]=t.base[ze.LOW],n.base[ze.HIGH]=t.base[ze.HIGH],t.segments&&0!=t.segments.length)if(n.segments){for(var r=t.segments.length-n.segments.length,i=0;i<r;i++)n.segments.push([0,0]);for(var o=n.segments,s=t.segments,a=0;a<s.length;a++){var c=o[a],u=s[a];c[ze.LOW]=u[ze.LOW],c[ze.HIGH]=u[ze.HIGH]}}else n.segments=t.segments.map(function(e){return[].concat(e)})},e.clone=function(e){return a({base:e.base.slice()},e.segments&&{segments:e.segments.map(function(e){return[].concat(e)})})},e.toString=function(e,t,n){var r,i;void 0===t&&(t=2),void 0===n&&(n=!1),2!=t&&16!=t&&(t=2);var o=null!==(r=null===(i=e.segments)||void 0===i?void 0:i.length)&&void 0!==r?r:0,s="";if(n){var a=0;a=2===t?66:19;for(var c=0;c<=o;c++){s+=(0===c?"0 (Base):":c+" ("+64*c+"):").toString().padEnd(a)}s+="\n"}for(var u=-1;u<o;u++){var l="",h=-1==u?e.base:e.segments[u],f=h[ze.HIGH],d=h[ze.LOW];if(2==t){l=f.toString(2).padStart(32,"0")+"_"+d.toString(2).padStart(32,"0")}else{var p=f?f.toString(16).toUpperCase():"";n&&(p=p.padStart(8,"0"));var m=d.toString(16).toUpperCase();p&&(m=m.padStart(8,"0")),l="0x"+p+m}s+=-1===u?l:" "+l}return s},e.popCount=function(e){for(var t=0,n=-1;n<(null!==(r=null===(i=e.segments)||void 0===i?void 0:i.length)&&void 0!==r?r:0);n++){for(var r,i,o=-1==n?e.base:e.segments[n],s=o[ze.LOW],a=o[ze.HIGH];s;)s&=s-1,t++;for(;a;)a&=a-1,t++}return t},e.getSegmentByBitIndex=function(e,t,n){if(void 0===n&&(n=!0),t<=63)return e.base;var r,i=e.segments;if(!i){if(!n)return null;i=e.segments=[]}var o=(t>>6)-1;if(i.length<=o){if(!n)return null;for(var s=o-i.length+1,a=0;a<s;a++)i.push([0,0])}return null!==(r=i[o])&&void 0!==r?r:null},e}();Be.ZERO={base:[0,0]};var Le=function(){function e(){}return e.register=function(e){var t=L(e);if(this.componentTypes.has(e))return this.componentTypes.get(e);if(this.componentNameToType.has(t)){var n=this.componentNameToType.get(t);n!==e&&console.warn('[ComponentRegistry] Component name conflict: "'+t+'" already registered with different class. Existing: '+(null==n?void 0:n.name)+", New: "+e.name)}var r=this.nextBitIndex++;return this.componentTypes.set(e,r),this.bitIndexToType.set(r,e),this.componentNameToType.set(t,e),this.componentNameToId.set(t,r),r},e.getBitMask=function(e){var t=this.componentTypes.get(e);if(void 0===t){var n=L(e);throw new Error("Component type "+n+" is not registered")}return Be.create(t)},e.getBitIndex=function(e){var t=this.componentTypes.get(e);if(void 0===t){var n=L(e);throw new Error("Component type "+n+" is not registered")}return t},e.isRegistered=function(e){return this.componentTypes.has(e)},e.getTypeByBitIndex=function(e){return this.bitIndexToType.get(e)||null},e.getRegisteredCount=function(){return this.nextBitIndex},e.getComponentType=function(e){return this.componentNameToType.get(e)||null},e.getAllRegisteredTypes=function(){return new Map(this.componentTypes)},e.getAllComponentNames=function(){return new Map(this.componentNameToType)},e.getComponentId=function(e){return this.componentNameToId.get(e)},e.registerComponentByName=function(e){if(this.componentNameToId.has(e))return this.componentNameToId.get(e);var t=this.nextBitIndex++;return this.componentNameToId.set(e,t),t},e.createSingleComponentMask=function(e){var t="single:"+e;if(this.maskCache.has(t))return this.maskCache.get(t);var n=this.getComponentId(e);if(void 0===n)throw new Error("Component type "+e+" is not registered");var r=Be.create(n);return this.maskCache.set(t,r),r},e.createComponentMask=function(e){var t="multi:"+[].concat(e).sort().join(",");if(this.maskCache.has(t))return this.maskCache.get(t);for(var n,r=Be.clone(Be.ZERO),i=s(e);!(n=i()).done;){var o=n.value,a=this.getComponentId(o);if(void 0!==a){var c=Be.create(a);Be.orInPlace(r,c)}}return this.maskCache.set(t,r),r},e.clearMaskCache=function(){this.maskCache.clear()},e.reset=function(){this.componentTypes.clear(),this.bitIndexToType.clear(),this.componentNameToType.clear(),this.componentNameToId.clear(),this.maskCache.clear(),this.nextBitIndex=0},e}();Le._logger=$("ComponentStorage"),Le.componentTypes=new Map,Le.bitIndexToType=new Map,Le.componentNameToType=new Map,Le.componentNameToId=new Map,Le.maskCache=new Map,Le.nextBitIndex=0;var He=function(){function e(e){this.dense=[],this.entityIds=[],this.entityToIndex=new Map,this.componentType=e,Le.isRegistered(e)||Le.register(e)}var t=e.prototype;return t.addComponent=function(e,t){if(this.entityToIndex.has(e))throw new Error("Entity "+e+" already has component "+L(this.componentType));var n=this.dense.length;this.dense.push(t),this.entityIds.push(e),this.entityToIndex.set(e,n)},t.getComponent=function(e){var t=this.entityToIndex.get(e);return void 0!==t?this.dense[t]:null},t.hasComponent=function(e){return this.entityToIndex.has(e)},t.removeComponent=function(e){var t=this.entityToIndex.get(e);if(void 0===t)return null;var n=this.dense[t],r=this.dense.length-1;if(t!==r){var i=this.dense[r],o=this.entityIds[r];this.dense[t]=i,this.entityIds[t]=o,this.entityToIndex.set(o,t)}return this.dense.pop(),this.entityIds.pop(),this.entityToIndex.delete(e),n},t.forEach=function(e){for(var t=0;t<this.dense.length;t++)e(this.dense[t],this.entityIds[t],t)},t.getDenseArray=function(){return{components:[].concat(this.dense),entityIds:[].concat(this.entityIds)}},t.clear=function(){this.dense.length=0,this.entityIds.length=0,this.entityToIndex.clear()},t.getStats=function(){return{totalSlots:this.dense.length,usedSlots:this.dense.length,freeSlots:0,fragmentation:0}},o(e,[{key:"size",get:function(){return this.dense.length}},{key:"type",get:function(){return this.componentType}}])}(),We=function(){function e(){this.storages=new Map}var t=e.prototype;return t.isSoAStorage=function(e){return this.storages.get(e)instanceof fe},t.getSoAStorage=function(e){var t=this.getStorage(e);return t instanceof fe?t:null},t.getFieldArray=function(e,t){var n=this.getSoAStorage(e);return n?n.getFieldArray(t):null},t.getTypedFieldArray=function(e,t){var n=this.getSoAStorage(e);return n?n.getTypedFieldArray(t):null},t.getActiveIndices=function(e){var t=this.getSoAStorage(e);return t?t.getActiveIndices():[]},t.getEntityIndex=function(e,t){var n=this.getSoAStorage(e);return n?n.getEntityIndex(t):void 0},t.getEntityIdByIndex=function(e,t){var n=this.getSoAStorage(e);return n?n.getEntityIdByIndex(t):void 0},t.getStorage=function(t){var n=this.storages.get(t);n||(t.__enableSoA?(n=new fe(t),e._logger.info("为 "+L(t)+" 启用SoA优化(适用于大规模批量操作)")):n=new He(t),this.storages.set(t,n));return n},t.addComponent=function(e,t){var n=t.constructor;this.getStorage(n).addComponent(e,t)},t.getComponent=function(e,t){var n=this.storages.get(t);return n?n.getComponent(e):null},t.hasComponent=function(e,t){var n=this.storages.get(t);return!!n&&n.hasComponent(e)},t.removeComponent=function(e,t){var n=this.storages.get(t);return n?n.removeComponent(e):null},t.removeAllComponents=function(e){for(var t,n=s(this.storages.values());!(t=n()).done;){t.value.removeComponent(e)}},t.getComponentMask=function(e){for(var t,n=Be.clone(Be.ZERO),r=s(this.storages.entries());!(t=r()).done;){var i=t.value,o=i[0];if(i[1].hasComponent(e)){var a=Le.getBitMask(o);Be.orInPlace(n,a)}}return n},t.getAllStats=function(){for(var e,t=new Map,n=s(this.storages.entries());!(e=n()).done;){var r=e.value,i=r[0],o=r[1],a=L(i);t.set(a,o.getStats())}return t},t.clear=function(){for(var e,t=s(this.storages.values());!(e=t()).done;){e.value.clear()}this.storages.clear()},e}();We._logger=$("ComponentStorage");var je=function(){function e(){}return e.prototype.compare=function(e,t){var n=e.updateOrder-t.updateOrder;return 0==n&&(n=e.id-t.id),n},e}(),Ge=function(){function e(e,t){this.scene=null,this._isDestroyed=!1,this._active=!0,this._tag=0,this._enabled=!0,this._updateOrder=0,this._componentMask=Be.clone(Be.ZERO),this._componentCache=null,this.name=e,this.id=t}var t=e.prototype;return t.setDestroyedState=function(e){this._isDestroyed=e},t._rebuildComponentCache=function(){var e,t=[];if(null!==(e=this.scene)&&void 0!==e&&e.componentStorageManager){for(var n=this._componentMask,r=Le.getRegisteredCount(),i=0;i<r;i++)if(Be.getBit(n,i)){var o=Le.getTypeByBitIndex(i);if(o){var s=this.scene.componentStorageManager.getComponent(this.id,o);s&&t.push(s)}}this._componentCache=t}else this._componentCache=t},t.createComponent=function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),i=1;i<t;i++)n[i-1]=arguments[i];var o=r(e,n);return this.addComponent(o)},t.addComponentInternal=function(e){var t=e.constructor;Le.isRegistered(t)||Le.register(t);var n=Le.getBitMask(t);return Be.orInPlace(this._componentMask,n),this._componentCache=null,e},t.notifyQuerySystems=function(e){this.scene&&this.scene.querySystem&&(this.scene.querySystem.updateEntity(this),this.scene.clearSystemEntityCaches(),this.scene.notifyEntityComponentChanged&&this.scene.notifyEntityComponentChanged(this,e))},t.addComponent=function(e){var t,n=e.constructor;if(!this.scene)throw new Error("Entity must be added to Scene before adding components. Use scene.createEntity() instead of new Entity()");if(!this.scene.componentStorageManager)throw new Error("Scene does not have componentStorageManager");if(this.hasComponent(n))throw new Error("Entity "+this.name+" already has component "+L(n));(this.addComponentInternal(e),this.scene.componentStorageManager.addComponent(this.id,e),e.entityId=this.id,this.scene.referenceTracker&&this.scene.referenceTracker.registerEntityScene(this.id,this.scene),e.onAddedToEntity(),this.scene&&this.scene.eventSystem)&&this.scene.eventSystem.emitSync("component:added",{timestamp:Date.now(),source:"Entity",entityId:this.id,entityName:this.name,entityTag:null===(t=this.tag)||void 0===t?void 0:t.toString(),componentType:L(n),component:e});return this.notifyQuerySystems(n),e},t.getComponent=function(e){var t;return this.hasComponent(e)&&null!==(t=this.scene)&&void 0!==t&&t.componentStorageManager?this.scene.componentStorageManager.getComponent(this.id,e):null},t.hasComponent=function(e){if(!Le.isRegistered(e))return!1;var t=Le.getBitMask(e);return Be.hasAny(this._componentMask,t)},t.getOrCreateComponent=function(e){var t=this.getComponent(e);if(!t){for(var n=arguments.length,r=new Array(n>1?n-1:0),i=1;i<n;i++)r[i-1]=arguments[i];t=this.createComponent.apply(this,[e].concat(r))}return t},t.removeComponent=function(e){var t,n,r=e.constructor;if(Le.isRegistered(r)){var i,o=Le.getBitIndex(r);if(Be.clearBit(this._componentMask,o),this._componentCache=null,null!==(t=this.scene)&&void 0!==t&&t.componentStorageManager&&this.scene.componentStorageManager.removeComponent(this.id,r),null!==(n=this.scene)&&void 0!==n&&n.referenceTracker&&this.scene.referenceTracker.clearComponentReferences(e),e.onRemovedFromEntity&&e.onRemovedFromEntity(),e.entityId=null,this.scene&&this.scene.eventSystem)this.scene.eventSystem.emitSync("component:removed",{timestamp:Date.now(),source:"Entity",entityId:this.id,entityName:this.name,entityTag:null===(i=this.tag)||void 0===i?void 0:i.toString(),componentType:L(r),component:e});this.notifyQuerySystems(r)}},t.removeComponentByType=function(e){var t=this.getComponent(e);return t?(this.removeComponent(t),t):null},t.removeAllComponents=function(){var e=[].concat(this.components);Be.clear(this._componentMask),this._componentCache=null;for(var t,n=s(e);!(t=n()).done;){var r,i=t.value,o=i.constructor;null!==(r=this.scene)&&void 0!==r&&r.componentStorageManager&&this.scene.componentStorageManager.removeComponent(this.id,o),i.onRemovedFromEntity()}this.notifyQuerySystems()},t.addComponents=function(t){for(var n,r=[],i=s(t);!(n=i()).done;){var o=n.value;try{r.push(this.addComponent(o))}catch(t){e._logger.warn("添加组件失败 "+W(o)+":",t)}}return r},t.removeComponentsByTypes=function(e){for(var t,n=[],r=s(e);!(t=r()).done;){var i=t.value;n.push(this.removeComponentByType(i))}return n},t.getComponents=function(e){for(var t,n=[],r=s(this.components);!(t=r()).done;){var i=t.value;i instanceof e&&n.push(i)}return n},t.getComponentByType=function(e){for(var t,n=s(this.components);!(t=n()).done;){var r=t.value;if(r instanceof e)return r}return null},t.onActiveChanged=function(){for(var e,t=s(this.components);!(e=t()).done;){var n=e.value;"onActiveChanged"in n&&"function"==typeof n.onActiveChanged&&n.onActiveChanged()}this.scene&&this.scene.eventSystem&&this.scene.eventSystem.emitSync("entity:activeChanged",{entity:this,active:this._active})},t.destroy=function(){this._isDestroyed||(this._isDestroyed=!0,this.scene&&this.scene.referenceTracker&&(this.scene.referenceTracker.clearReferencesTo(this.id),this.scene.referenceTracker.unregisterEntityScene(this.id)),this.removeAllComponents(),this.scene&&(this.scene.querySystem&&this.scene.querySystem.removeEntity(this),this.scene.entities&&this.scene.entities.remove(this)))},t.compareTo=function(e){return je.prototype.compare(this,e)},t.toString=function(){return"Entity["+this.name+":"+this.id+"]"},t.getDebugInfo=function(){return{name:this.name,id:this.id,enabled:this._enabled,active:this._active,destroyed:this._isDestroyed,componentCount:this.components.length,componentTypes:this.components.map(function(e){return W(e)}),componentMask:Be.toString(this._componentMask,2),cacheBuilt:null!==this._componentCache}},o(e,[{key:"isDestroyed",get:function(){return this._isDestroyed}},{key:"components",get:function(){return null===this._componentCache&&this._rebuildComponentCache(),this._componentCache}},{key:"active",get:function(){return this._active},set:function(e){this._active!==e&&(this._active=e,this.onActiveChanged())}},{key:"tag",get:function(){return this._tag},set:function(e){this._tag=e}},{key:"enabled",get:function(){return this._enabled},set:function(e){this._enabled=e}},{key:"updateOrder",get:function(){return this._updateOrder},set:function(e){this._updateOrder=e}},{key:"componentMask",get:function(){return this._componentMask}}])}();Ge._logger=$("Entity"),Ge.entityComparer=new je;var qe=function(){function e(e,t){this.scene=e,this.storageManager=t;var n=e.identifierPool.checkOut();this.entity=new Ge("",n),this.entity.scene=this.scene}var t=e.prototype;return t.named=function(e){return this.entity.name=e,this},t.tagged=function(e){return this.entity.tag=e,this},t.with=function(e){return this.entity.addComponent(e),this},t.withComponents=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];for(var r=0,i=t;r<i.length;r++){var o=i[r];this.entity.addComponent(o)}return this},t.withIf=function(e,t){return e&&this.entity.addComponent(t),this},t.withFactory=function(e){var t=e();return this.entity.addComponent(t),this},t.configure=function(e,t){var n=this.entity.getComponent(e);return n&&t(n),this},t.enabled=function(e){return void 0===e&&(e=!0),this.entity.enabled=e,this},t.active=function(e){return void 0===e&&(e=!0),this.entity.active=e,this},t.withChild=function(e){var t=e.build(),n=this.scene.getSystem(Ee);return null==n||n.setParent(t,this.entity),this},t.withChildren=function(){for(var e=this.scene.getSystem(Ee),t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];for(var i=0,o=n;i<o.length;i++){var s=o[i].build();null==e||e.setParent(s,this.entity)}return this},t.withChildFactory=function(e){var t=e(this.entity).build(),n=this.scene.getSystem(Ee);return null==n||n.setParent(t,this.entity),this},t.withChildIf=function(e,t){if(e){var n=t.build(),r=this.scene.getSystem(Ee);null==r||r.setParent(n,this.entity)}return this},t.build=function(){return this.entity},t.spawn=function(){return this.scene.addEntity(this.entity),this.entity},t.clone=function(){var t=new e(this.scene,this.storageManager);return t.entity=this.entity,t},e}(),Ue=function(){function e(e){this.buffer=[],this._idToEntity=new Map,this._nameToEntities=new Map,this._entitiesToAdd=[],this._entitiesToRemove=[],this._scene=e}var t=e.prototype;return t.add=function(e){this.addImmediate(e)},t.addImmediate=function(e){this._idToEntity.has(e.id)||(this.buffer.push(e),this._idToEntity.set(e.id,e),this.updateNameIndex(e,!0))},t.remove=function(e){this.removeImmediate(e)},t.removeImmediate=function(e){var t=this.buffer.indexOf(e);-1!==t&&(this.buffer.splice(t,1),this._idToEntity.delete(e.id),this.updateNameIndex(e,!1),this._scene&&this._scene.identifierPool&&this._scene.identifierPool.checkIn(e.id))},t.removeAllEntities=function(){for(var e=[],t=this.buffer.length-1;t>=0;t--)e.push(this.buffer[t].id),this.buffer[t].destroy();if(this._scene&&this._scene.identifierPool)for(var n,r=s(e);!(n=r()).done;){var i=n.value;this._scene.identifierPool.checkIn(i)}this.buffer.length=0,this._idToEntity.clear(),this._nameToEntities.clear(),this._entitiesToAdd.length=0,this._entitiesToRemove.length=0},t.updateLists=function(){if(this._entitiesToAdd.length>0){for(var e,t=s(this._entitiesToAdd);!(e=t()).done;){var n=e.value;this.addImmediate(n)}this._entitiesToAdd.length=0}if(this._entitiesToRemove.length>0){for(var r,i=s(this._entitiesToRemove);!(r=i()).done;){var o=r.value;this.removeImmediate(o)}this._entitiesToRemove.length=0}},t.update=function(){this.updateLists()},t.findEntity=function(e){var t=this._nameToEntities.get(e);return t&&t.length>0?t[0]:null},t.findEntitiesByName=function(e){return this._nameToEntities.get(e)||[]},t.findEntityById=function(e){return this._idToEntity.get(e)||null},t.findEntitiesByTag=function(e){for(var t,n=[],r=s(this.buffer);!(t=r()).done;){var i=t.value;i.tag===e&&n.push(i)}return n},t.findEntitiesWithComponent=function(e){for(var t,n=[],r=s(this.buffer);!(t=r()).done;){var i=t.value;i.hasComponent(e)&&n.push(i)}return n},t.forEach=function(e){for(var t,n=s(this.buffer);!(t=n()).done;){e(t.value)}},t.forEachWhere=function(e,t){for(var n,r=s(this.buffer);!(n=r()).done;){var i=n.value;e(i)&&t(i)}},t.updateNameIndex=function(e,t){if(e.name)if(t){var n=this._nameToEntities.get(e.name);n||(n=[],this._nameToEntities.set(e.name,n)),n.push(e)}else{var r=this._nameToEntities.get(e.name);if(r){var i=r.indexOf(e);-1!==i&&(r.splice(i,1),0===r.length&&this._nameToEntities.delete(e.name))}}},t.reorderEntity=function(e,t){var n=this._idToEntity.get(e);if(n){var r=this.buffer.indexOf(n);if(-1!==r&&r!==t){var i=Math.max(0,Math.min(t,this.buffer.length-1));this.buffer.splice(r,1),this.buffer.splice(i,0,n)}}},t.getStats=function(){for(var e,t=0,n=s(this.buffer);!(e=n()).done;){var r=e.value;r.enabled&&!r.isDestroyed&&t++}return{totalEntities:this.buffer.length,activeEntities:t,pendingAdd:this._entitiesToAdd.length,pendingRemove:this._entitiesToRemove.length,nameIndexSize:this._nameToEntities.size}},o(e,[{key:"count",get:function(){return this.buffer.length}}])}(),Qe=function(){function e(e,t){void 0===e&&(e=100),void 0===t&&(t=1024),this._nextAvailableIndex=0,this._freeIndices=[],this._generations=new Map,this._pendingRecycle=[],this._recycleDelay=100,this._stats={totalAllocated:0,totalRecycled:0,currentActive:0,memoryExpansions:0},this._recycleDelay=e,this._expansionBlockSize=t,this._preAllocateGenerations(0,this._expansionBlockSize)}var t=e.prototype;return t.checkOut=function(){var t;if(this._processDelayedRecycle(),this._freeIndices.length>0)t=this._freeIndices.pop();else{if(this._nextAvailableIndex>e.MAX_INDEX)throw new Error("实体索引已达到框架设计限制 ("+e.MAX_INDEX+")。这意味着您已经分配了超过65535个不同的实体索引。这是16位索引设计的限制,考虑优化实体回收策略或升级到64位ID设计。");t=this._nextAvailableIndex++,this._ensureGenerationCapacity(t)}var n=this._generations.get(t)||1;return this._stats.totalAllocated++,this._stats.currentActive++,this._packId(t,n)},t.checkIn=function(e){var t=this._unpackIndex(e),n=this._unpackGeneration(e);return!!this._isValidId(t,n)&&(!this._pendingRecycle.some(function(e){return e.index===t&&e.generation===n})&&(this._pendingRecycle.push({index:t,generation:n,timestamp:Date.now()}),this._stats.currentActive--,this._stats.totalRecycled++,!0))},t.isValid=function(e){var t=this._unpackIndex(e),n=this._unpackGeneration(e);return this._isValidId(t,n)},t.getStats=function(){for(var t,n=0,r=0,i=s(this._generations);!(t=i()).done;){var o=t.value,a=o[0],c=o[1];a<this._nextAvailableIndex&&(n+=c,r++)}var u=r>0?n/r:1;return{totalAllocated:this._stats.totalAllocated,totalRecycled:this._stats.totalRecycled,currentActive:this._stats.currentActive,currentlyFree:this._freeIndices.length,pendingRecycle:this._pendingRecycle.length,maxPossibleEntities:e.MAX_INDEX+1,maxUsedIndex:this._nextAvailableIndex-1,memoryUsage:this._calculateMemoryUsage(),memoryExpansions:this._stats.memoryExpansions,averageGeneration:Math.round(100*u)/100,generationStorageSize:this._generations.size}},t.forceProcessDelayedRecycle=function(){this._processDelayedRecycle(!0)},t._processDelayedRecycle=function(t){if(void 0===t&&(t=!1),0!==this._pendingRecycle.length){for(var n,r=Date.now(),i=[],o=[],a=s(this._pendingRecycle);!(n=a()).done;){var c=n.value;t||r-c.timestamp>=this._recycleDelay?i.push(c):o.push(c)}for(var u=0,l=i;u<l.length;u++){var h=l[u];if(this._isValidId(h.index,h.generation)){var f=h.generation+1;f>e.MAX_GENERATION&&(f=1),this._generations.set(h.index,f),this._freeIndices.push(h.index)}}this._pendingRecycle=o}},t._preAllocateGenerations=function(t,n){for(var r=0;r<n;r++){var i=t+r;i<=e.MAX_INDEX&&this._generations.set(i,1)}this._stats.memoryExpansions++},t._ensureGenerationCapacity=function(e){if(!this._generations.has(e)){var t=Math.floor(e/this._expansionBlockSize)*this._expansionBlockSize;this._preAllocateGenerations(t,this._expansionBlockSize)}},t._calculateMemoryUsage=function(){return 16*this._generations.size+8*this._freeIndices.length+32*this._pendingRecycle.length},t._packId=function(e,t){return t<<16|e},t._unpackIndex=function(e){return 65535&e},t._unpackGeneration=function(e){return e>>>16&65535},t._isValidId=function(e,t){if(e<0||e>=this._nextAvailableIndex)return!1;var n=this._generations.get(e);return void 0!==n&&n===t},e}();Qe.MAX_INDEX=65535,Qe.MAX_GENERATION=65535;var Ve=function(){function e(){this._processors=[],this._isDirty=!1}var t=e.prototype;return t.setDirty=function(){this._isDirty=!0},t.add=function(e){this._processors.push(e),this.setDirty()},t.remove=function(e){var t=this._processors.indexOf(e);-1!==t&&this._processors.splice(t,1)},t.getProcessor=function(e){for(var t,n=s(this._processors);!(t=n()).done;){var r=t.value;if(r instanceof e)return r}return null},t.begin=function(){this.sortProcessors()},t.end=function(){for(var t,n=s(this._processors);!(t=n()).done;){var r=t.value;try{r.reset()}catch(t){e._logger.error("Error in processor "+j(r)+":",t)}}this._isDirty=!1,this._processors.length=0},t.update=function(){this.sortProcessors();for(var t,n=s(this._processors);!(t=n()).done;){var r=t.value;try{r.update()}catch(t){e._logger.error("Error in processor "+j(r)+":",t)}}},t.lateUpdate=function(){for(var e,t=s(this._processors);!(e=t()).done;){e.value.lateUpdate()}},t.sortProcessors=function(){this._isDirty&&(this._processors.sort(function(e,t){return e.updateOrder-t.updateOrder}),this._isDirty=!1)},o(e,[{key:"processors",get:function(){return this._processors}},{key:"count",get:function(){return this._processors.length}}])}();Ve._logger=$("EntityProcessorList");var Ye=function(){function e(e){if(e&&"object"==typeof e)this._value=Be.clone(e);else if("number"==typeof e)this._value=Be.fromNumber(e);else if("string"==typeof e){var t=parseInt(e,10);this._value=Be.fromNumber(t)}else this._value=Be.clone(Be.ZERO)}var t=e.prototype;return t.set=function(e){if(e<0)throw new Error("Bit index cannot be negative");Be.setBit(this._value,e)},t.clear=function(e){if(e<0)throw new Error("Bit index cannot be negative");Be.clearBit(this._value,e)},t.get=function(e){return Be.getBit(this._value,e)},t.containsAll=function(e){return Be.hasAll(this._value,e._value)},t.intersects=function(e){return Be.hasAny(this._value,e._value)},t.excludes=function(e){return Be.hasNone(this._value,e._value)},t.clearAll=function(){Be.clear(this._value)},t.isEmpty=function(){return Be.isZero(this._value)},t.cardinality=function(){return Be.popCount(this._value)},t.and=function(t){var n=new e;return Be.copy(this._value,n._value),Be.andInPlace(n._value,t._value),n},t.or=function(t){var n=new e;return Be.copy(this._value,n._value),Be.orInPlace(n._value,t._value),n},t.xor=function(t){var n=new e;return Be.copy(this._value,n._value),Be.xorInPlace(n._value,t._value),n},t.not=function(t){void 0===t&&(t=64),t>64&&(t=64);var n=new e;if(Be.copy(this._value,n._value),t<=32){var r=(1<<t)-1;n._value.base[ze.LOW]=~n._value.base[ze.LOW]&r,n._value.base[ze.HIGH]=0}else if(n._value.base[ze.LOW]=~n._value.base[ze.LOW],t<64){var i=(1<<t-32)-1;n._value.base[ze.HIGH]=~n._value.base[ze.HIGH]&i}else n._value.base[ze.HIGH]=~n._value.base[ze.HIGH];return n},t.copyFrom=function(e){Be.copy(e._value,this._value)},t.clone=function(){return new e(this._value)},t.getValue=function(){return this._value},t.setValue=function(e){if("object"==typeof e)Be.copy(e,this._value);else if("number"==typeof e)this._value=Be.fromNumber(e);else{var t=parseInt(e,10);this._value=Be.fromNumber(t)}},t.toString=function(){for(var e=[],t=0;t<64;t++)this.get(t)&&e.push(t.toString());return"Bits["+e.join(", ")+"]"},t.toBinaryString=function(e){void 0===e&&(e=0),0==e&&(e=64+(this._value.segments?64*this._value.segments.length:0));for(var t="",n=e-1;n>=0;n--)t+=this.get(n)?"1":"0",n%8==0&&n>0&&(t+=" ");return t},t.toHexString=function(){return Be.toString(this._value,16)},e.fromBinaryString=function(t){var n,r=t.replace(/\s/g,"");if(r.length<=32){n={base:[parseInt(r,2)>>>0,0]}}else{var i=r.substring(r.length-32),o=r.substring(0,r.length-32);n={base:[parseInt(i,2)>>>0,parseInt(o,2)>>>0]}}return new e(n)},e.fromHexString=function(t){var n,r=t.replace(/^0x/i,"");if(r.length<=8){n={base:[parseInt(r,16)>>>0,0]}}else{var i=r.substring(r.length-8),o=r.substring(0,r.length-8);n={base:[parseInt(i,16)>>>0,parseInt(o,16)>>>0]}}return new e(n)},t.equals=function(e){return Be.equals(this._value,e._value)},t.getHighestBitIndex=function(){if(Be.isZero(this._value))return-1;if(0!==this._value.base[ze.HIGH])for(var e=31;e>=0;e--)if(this._value.base[ze.HIGH]&1<<e)return e+32;for(var t=31;t>=0;t--)if(this._value.base[ze.LOW]&1<<t)return t;return-1},t.getLowestBitIndex=function(){if(Be.isZero(this._value))return-1;for(var e=0;e<32;e++)if(this._value.base[ze.LOW]&1<<e)return e;for(var t=0;t<32;t++)if(this._value.base[ze.HIGH]&1<<t)return t+32;return-1},e}(),Je=function(){function e(){this._dense=[],this._sparse=new Map}var t=e.prototype;return t.add=function(e){if(this._sparse.has(e))return!1;var t=this._dense.length;return this._dense.push(e),this._sparse.set(e,t),!0},t.remove=function(e){var t=this._sparse.get(e);if(void 0===t)return!1;var n=this._dense.length-1;if(t!==n){var r=this._dense[n];this._dense[t]=r,this._sparse.set(r,t)}return this._dense.pop(),this._sparse.delete(e),!0},t.has=function(e){return this._sparse.has(e)},t.getIndex=function(e){return this._sparse.get(e)},t.getByIndex=function(e){return this._dense[e]},t.forEach=function(e){for(var t=0;t<this._dense.length;t++)e(this._dense[t],t)},t.map=function(e){for(var t=[],n=0;n<this._dense.length;n++)t.push(e(this._dense[n],n));return t},t.filter=function(e){for(var t=[],n=0;n<this._dense.length;n++)e(this._dense[n],n)&&t.push(this._dense[n]);return t},t.find=function(e){for(var t=0;t<this._dense.length;t++)if(e(this._dense[t],t))return this._dense[t]},t.some=function(e){for(var t=0;t<this._dense.length;t++)if(e(this._dense[t],t))return!0;return!1},t.every=function(e){for(var t=0;t<this._dense.length;t++)if(!e(this._dense[t],t))return!1;return!0},t.getDenseArray=function(){return[].concat(this._dense)},t.getDenseArrayUnsafe=function(){return this._dense},t.clear=function(){this._dense.length=0,this._sparse.clear()},t.toArray=function(){return[].concat(this._dense)},t.toSet=function(){return new Set(this._dense)},t.getMemoryStats=function(){var e=8*this._dense.length,t=16*this._sparse.size;return{denseArraySize:e,sparseMapSize:t,totalMemory:e+t}},t.validate=function(){if(this._dense.length!==this._sparse.size)return!1;for(var e=0;e<this._dense.length;e++){var t=this._dense[e];if(this._sparse.get(t)!==e)return!1}for(var n,r=s(this._sparse);!(n=r()).done;){var i=n.value,o=i[0],a=i[1];if(a>=this._dense.length||this._dense[a]!==o)return!1}return!0},o(e,[{key:"size",get:function(){return this._dense.length}},{key:"isEmpty",get:function(){return 0===this._dense.length}}])}(),Ke=function(e){function t(){return e.call(this)||this}return u(t,e),t.prototype.reset=function(){this.clear()},t}(m(Set)),Ze=function(){function e(){this._componentMasks=[],this._componentToEntities=new Map,this._entities=new Je}var t=e.prototype;return t.addEntity=function(e){this._entities.has(e)&&this.removeEntity(e);for(var t,n=Be.clone(Be.ZERO),r=new Set,i=s(e.components);!(t=i()).done;){var o=t.value.constructor;r.add(o),Le.isRegistered(o)||Le.register(o);var a=Le.getBitMask(o);Be.orInPlace(n,a)}this._entities.add(e);for(var c=this._entities.getIndex(e);this._componentMasks.length<=c;)this._componentMasks.push(Be.clone(Be.ZERO));this._componentMasks[c]=n,this.updateComponentMappings(e,r,!0)},t.removeEntity=function(e){var t=this._entities.getIndex(e);if(void 0!==t){var n=this.getEntityComponentTypes(e);this.updateComponentMappings(e,n,!1),this._entities.remove(e);var r=this._componentMasks.length-1;t!==r&&(this._componentMasks[t]=this._componentMasks[r]),this._componentMasks.pop()}},t.queryByComponent=function(e){var t=this._componentToEntities.get(e);return t?new Set(t):new Set},t.queryMultipleAnd=function(t){var n=this;if(0===t.length)return new Set;if(1===t.length)return this.queryByComponent(t[0]);for(var r,i=Be.clone(Be.ZERO),o=s(t);!(r=o()).done;){var a=r.value;if(!Le.isRegistered(a))return new Set;var c=Le.getBitMask(a);Be.orInPlace(i,c)}var u=e._entitySetPool.obtain();return this._entities.forEach(function(e,t){var r=n._componentMasks[t];Be.hasAll(r,i)&&u.add(e)}),u},t.queryMultipleOr=function(t){var n=this;if(0===t.length)return new Set;if(1===t.length)return this.queryByComponent(t[0]);for(var r,i=Be.clone(Be.ZERO),o=s(t);!(r=o()).done;){var a=r.value;if(Le.isRegistered(a)){var c=Le.getBitMask(a);Be.orInPlace(i,c)}}if(Be.equals(i,Be.ZERO))return new Set;var u=e._entitySetPool.obtain();return this._entities.forEach(function(e,t){var r=n._componentMasks[t];Be.hasAny(r,i)&&u.add(e)}),u},t.hasComponent=function(e,t){var n=this._entities.getIndex(e);if(void 0===n)return!1;if(!Le.isRegistered(t))return!1;var r=this._componentMasks[n],i=Le.getBitMask(t);return Be.hasAny(r,i)},t.getEntityMask=function(e){var t=this._entities.getIndex(e);if(void 0!==t)return this._componentMasks[t]},t.getAllEntities=function(){return this._entities.toArray()},t.forEach=function(e){var t=this;this._entities.forEach(function(n,r){e(n,t._componentMasks[r],r)})},t.clear=function(){this._entities.clear(),this._componentMasks.length=0;for(var t,n=s(this._componentToEntities.values());!(t=n()).done;){var r=t.value;e._entitySetPool.release(r)}this._componentToEntities.clear()},t.getMemoryStats=function(){for(var e,t=this._entities.getMemoryStats(),n=16*this._componentMasks.length,r=16*this._componentToEntities.size,i=s(this._componentToEntities.values());!(e=i()).done;){r+=8*e.value.size}return{entitiesMemory:t.totalMemory,masksMemory:n,mappingsMemory:r,totalMemory:t.totalMemory+n+r}},t.validate=function(){if(!this._entities.validate())return!1;if(this._componentMasks.length!==this._entities.size)return!1;for(var e,t=new Set,n=s(this._componentToEntities.values());!(e=n()).done;)for(var r,i=s(e.value);!(r=i()).done;){var o=r.value;t.add(o)}for(var a,c=s(t);!(a=c()).done;){var u=a.value;if(!this._entities.has(u))return!1}return!0},t.getEntityComponentTypes=function(e){for(var t,n=new Set,r=s(e.components);!(t=r()).done;){var i=t.value;n.add(i.constructor)}return n},t.updateComponentMappings=function(t,n,r){for(var i,o=s(n);!(i=o()).done;){var a=i.value,c=this._componentToEntities.get(a);r?(c||(c=e._entitySetPool.obtain(),this._componentToEntities.set(a,c)),c.add(t)):c&&(c.delete(t),0===c.size&&(this._componentToEntities.delete(a),e._entitySetPool.release(c)))}},o(e,[{key:"size",get:function(){return this._entities.size}},{key:"isEmpty",get:function(){return this._entities.isEmpty}}])}();Ze._entitySetPool=D.getPool(Ke,50,512);var Xe,$e=function(){function e(){this.buckets=new Map,this._size=0}var t=e.prototype;return t.murmur32=function(e,t){var n=t>>>0,r=function(e){e=(e=Math.imul(e,3432918353)>>>0)<<15|e>>>17,e=Math.imul(e,461845907)>>>0,n=(n^=e)<<13|n>>>19,n=Math.imul(n,5)+3864292196>>>0};if(r(e.base[0]>>>0),r(e.base[1]>>>0),e.segments)for(var i,o=s(e.segments);!(i=o()).done;){var a=i.value;r(a[0]>>>0),r(a[1]>>>0)}return n^=e.segments?8*e.segments.length:8,n^=n>>>16,n=Math.imul(n,2246822507)>>>0,n^=n>>>13,n=Math.imul(n,3266489909)>>>0,(n^=n>>>16)>>>0},t.getHashes=function(e){return[this.murmur32(e,2538058380),this.murmur32(e,305419896)]},t.set=function(e,t){var n=this.getHashes(e),r=n[0],i=n[1],o=this.buckets.get(r);o||(o=[],this.buckets.set(r,o));for(var s=0;s<o.length;s++)if(o[s][0]===i)return o[s][1]=t,this;return o.push([i,t]),this._size++,this},t.get=function(e){var t=this.getHashes(e),n=t[0],r=t[1],i=this.buckets.get(n);if(i)for(var o=0;o<i.length;o++)if(i[o][0]===r)return i[o][1]},t.has=function(e){return void 0!==this.get(e)},t.delete=function(e){var t=this.getHashes(e),n=t[0],r=t[1],i=this.buckets.get(n);if(!i)return!1;for(var o=0;o<i.length;o++)if(i[o][0]===r)return i.splice(o,1),this._size--,0===i.length&&this.buckets.delete(n),!0;return!1},t.clear=function(){this.buckets.clear(),this._size=0},t.entries=h().m(function e(){var t,n,r,i,o,a,c,u;return h().w(function(e){for(;;)switch(e.n){case 0:t=s(this.buckets);case 1:if((n=t()).done){e.n=5;break}(r=n.value)[0],i=r[1],o=s(i);case 2:if((a=o()).done){e.n=4;break}return(c=a.value)[0],u=c[1],e.n=3,[void 0,u];case 3:e.n=2;break;case 4:e.n=1;break;case 5:return e.a(2)}},e,this)}),t.values=h().m(function e(){var t,n,r,i,o,a,c;return h().w(function(e){for(;;)switch(e.n){case 0:t=s(this.buckets.values());case 1:if((n=t()).done){e.n=5;break}r=n.value,i=s(r);case 2:if((o=i()).done){e.n=4;break}return(a=o.value)[0],c=a[1],e.n=3,c;case 3:e.n=2;break;case 4:e.n=1;break;case 5:return e.a(2)}},e,this)}),o(e,[{key:"size",get:function(){return this._size}},{key:"innerBuckets",get:function(){return this.buckets}}])}(),et=function(){function e(){this._archetypes=new $e,this._entityToArchetype=new Map,this._componentToArchetypes=new Map,this._entityComponentTypesCache=new Map,this._allArchetypes=[]}var t=e.prototype;return t.addEntity=function(e){var t=this.getEntityComponentTypes(e),n=this.generateArchetypeId(t),r=this._archetypes.get(n);r||(r=this.createArchetype(t)),r.entities.add(e),this._entityToArchetype.set(e,r)},t.removeEntity=function(e){var t=this._entityToArchetype.get(e);t&&(t.entities.delete(e),this._entityComponentTypesCache.delete(e),this._entityToArchetype.delete(e))},t.updateEntity=function(e){var t=this._entityToArchetype.get(e);this._entityComponentTypesCache.delete(e);var n=this.getEntityComponentTypes(e),r=this.generateArchetypeId(n);if(!t||t.id!==r){t&&t.entities.delete(e);var i=this._archetypes.get(r);i||(i=this.createArchetype(n)),i.entities.add(e),this._entityToArchetype.set(e,i)}},t.queryArchetypes=function(e,t){void 0===t&&(t="AND");var n=[],r=0;if("AND"===t){if(0===e.length){for(var i,o=s(this._allArchetypes);!(i=o()).done;){var a=i.value;n.push(a),r+=a.entities.size}return{archetypes:n,totalEntities:r}}if(1===e.length){var c=this._componentToArchetypes.get(e[0]);if(c)for(var u,l=s(c);!(u=l()).done;){var h=u.value;n.push(h),r+=h.entities.size}return{archetypes:n,totalEntities:r}}for(var f,d,p=1/0,m=s(e);!(d=m()).done;){var v=d.value,y=this._componentToArchetypes.get(v);if(!y||0===y.size)return{archetypes:[],totalEntities:0};y.size<p&&(p=y.size,f=y)}var g=this.generateArchetypeId(e);if(f)for(var _,S=s(f);!(_=S()).done;){var C=_.value;Be.hasAll(C.id,g)&&(n.push(C),r+=C.entities.size)}}else{for(var b,E=new Set,T=s(e);!(b=T()).done;){var w=b.value,M=this._componentToArchetypes.get(w);if(M)for(var A,x=s(M);!(A=x()).done;){var I=A.value;E.add(I)}}for(var k,O=s(E);!(k=O()).done;){var D=k.value;n.push(D),r+=D.entities.size}}return{archetypes:n,totalEntities:r}},t.getEntityArchetype=function(e){return this._entityToArchetype.get(e)},t.getAllArchetypes=function(){return this._allArchetypes.slice()},t.getEntitiesByComponent=function(e){var t=this._componentToArchetypes.get(e);if(!t||0===t.size)return[];for(var n,r=[],i=s(t);!(n=i()).done;)for(var o,a=s(n.value.entities);!(o=a()).done;){var c=o.value;r.push(c)}return r},t.clear=function(){this._archetypes.clear(),this._entityToArchetype.clear(),this._componentToArchetypes.clear(),this._entityComponentTypesCache.clear(),this._allArchetypes=[]},t.updateAllArchetypeArrays=function(){this._allArchetypes=[];for(var e,t=s(this._archetypes.values());!(e=t()).done;){var n=e.value;this._allArchetypes.push(n)}},t.getEntityComponentTypes=function(e){var t=this._entityComponentTypesCache.get(e);return t||(t=e.components.map(function(e){return e.constructor}),this._entityComponentTypesCache.set(e,t)),t},t.generateArchetypeId=function(e){for(var t,n=Be.clone(Be.ZERO),r=s(e);!(t=r()).done;){var i=t.value;Le.isRegistered(i)||Le.register(i);var o=Le.getBitMask(i);Be.orInPlace(n,o)}return n},t.createArchetype=function(e){var t=this.generateArchetypeId(e),n={id:t,componentTypes:[].concat(e),entities:new Set};this._archetypes.set(t,n),this.updateAllArchetypeArrays();for(var r,i=s(e);!(r=i()).done;){var o=r.value,a=this._componentToArchetypes.get(o);a||(a=new Set,this._componentToArchetypes.set(o,a)),a.add(n)}return n},e}();!function(e){e.ALL="all",e.ANY="any",e.NONE="none"}(Xe||(Xe={}));var tt,nt=$("ReactiveQuery");exports.ReactiveQueryChangeType=void 0,(tt=exports.ReactiveQueryChangeType||(exports.ReactiveQueryChangeType={})).ADDED="added",tt.REMOVED="removed",tt.BATCH_UPDATE="batch_update";var rt=function(){function e(e,t){var n,r,i;void 0===t&&(t={}),this._entities=[],this._entityIdSet=new Set,this._listeners=[],this._active=!0,this._condition=e,this._config={enableBatchMode:null===(n=t.enableBatchMode)||void 0===n||n,batchDelay:null!==(r=t.batchDelay)&&void 0!==r?r:16,debug:null!==(i=t.debug)&&void 0!==i&&i},this._id=this.generateQueryId(),this._batchChanges={added:[],removed:[],timer:null},this._config.debug&&nt.debug("创建ReactiveQuery: "+this._id)}var t=e.prototype;return t.generateQueryId=function(){return this._condition.type+":"+this._condition.componentTypes.map(function(e){return e.name}).sort().join(",")},t.subscribe=function(e){var t=this;if(!this._active)throw new Error("Cannot subscribe to disposed ReactiveQuery "+this._id);if("function"!=typeof e)throw new TypeError("Listener must be a function");return this._listeners.push(e),this._config.debug&&nt.debug("订阅ReactiveQuery: "+this._id+", 监听器数量: "+this._listeners.length),function(){var n=t._listeners.indexOf(e);-1!==n&&t._listeners.splice(n,1)}},t.unsubscribeAll=function(){this._listeners.length=0},t.getEntities=function(){return this._entities},t.matches=function(e){var t=e.componentMask;switch(this._condition.type){case Xe.ALL:return Be.hasAll(t,this._condition.mask);case Xe.ANY:return Be.hasAny(t,this._condition.mask);case Xe.NONE:return Be.hasNone(t,this._condition.mask);default:return!1}},t.notifyEntityAdded=function(e){this._active&&this.matches(e)&&(this._entityIdSet.has(e.id)||(this._entities.push(e),this._entityIdSet.add(e.id),this._config.enableBatchMode?this.addToBatch("added",e):this.notifyListeners({type:exports.ReactiveQueryChangeType.ADDED,entity:e}),this._config.debug&&nt.debug("ReactiveQuery "+this._id+": 实体添加 "+e.name+"("+e.id+")")))},t.notifyEntityRemoved=function(e){if(this._active&&this._entityIdSet.has(e.id)){var t=this._entities.indexOf(e);-1!==t&&this._entities.splice(t,1),this._entityIdSet.delete(e.id),this._config.enableBatchMode?this.addToBatch("removed",e):this.notifyListeners({type:exports.ReactiveQueryChangeType.REMOVED,entity:e}),this._config.debug&&nt.debug("ReactiveQuery "+this._id+": 实体移除 "+e.name+"("+e.id+")")}},t.notifyEntityChanged=function(e){if(this._active){var t=this._entityIdSet.has(e.id),n=this.matches(e);t&&!n?this.notifyEntityRemoved(e):!t&&n&&this.notifyEntityAdded(e)}},t.initializeWith=function(e){this._entities.length=0,this._entityIdSet.clear();for(var t,n=s(e);!(t=n()).done;){var r=t.value;this.matches(r)&&(this._entities.push(r),this._entityIdSet.add(r.id))}this._config.debug&&nt.debug("ReactiveQuery "+this._id+": 初始化 "+this._entities.length+" 个实体")},t.addToBatch=function(e,t){var n=this;"added"===e?this._batchChanges.added.push(t):this._batchChanges.removed.push(t),null===this._batchChanges.timer&&(this._batchChanges.timer=setTimeout(function(){n.flushBatchChanges()},this._config.batchDelay))},t.flushBatchChanges=function(){if(0!==this._batchChanges.added.length||0!==this._batchChanges.removed.length){var e=[].concat(this._batchChanges.added),t=[].concat(this._batchChanges.removed);this._batchChanges.added.length=0,this._batchChanges.removed.length=0,this._batchChanges.timer=null,this.notifyListeners({type:exports.ReactiveQueryChangeType.BATCH_UPDATE,added:e,removed:t,entities:this._entities}),this._config.debug&&nt.debug("ReactiveQuery "+this._id+": 批量更新 +"+e.length+" -"+t.length)}else this._batchChanges.timer=null},t.notifyListeners=function(e){for(var t,n=s([].concat(this._listeners));!(t=n()).done;){var r=t.value;try{r(e)}catch(e){nt.error("ReactiveQuery "+this._id+": 监听器执行出错",e)}}},t.pause=function(){this._active=!1,null!==this._batchChanges.timer&&(clearTimeout(this._batchChanges.timer),this._batchChanges.timer=null),this._batchChanges.added.length=0,this._batchChanges.removed.length=0},t.resume=function(){this._active=!0},t.dispose=function(){null!==this._batchChanges.timer&&(clearTimeout(this._batchChanges.timer),this._batchChanges.timer=null),this._batchChanges.added.length=0,this._batchChanges.removed.length=0,this._active=!1,this.unsubscribeAll(),this._entities.length=0,this._entityIdSet.clear(),this._config.debug&&nt.debug("ReactiveQuery "+this._id+": 已销毁")},o(e,[{key:"count",get:function(){return this._entities.length}},{key:"condition",get:function(){return this._condition}},{key:"id",get:function(){return this._id}},{key:"active",get:function(){return this._active}},{key:"listenerCount",get:function(){return this._listeners.length}}])}(),it=function(){function e(){this._logger=$("QuerySystem"),this._entities=[],this._version=0,this._queryCache=new Map,this._cacheMaxSize=1e3,this._cacheTimeout=5e3,this._componentMaskCache=new Map,this._queryStats={totalQueries:0,cacheHits:0,indexHits:0,linearScans:0,archetypeHits:0,dirtyChecks:0},this._reactiveQueries=new Map,this._reactiveQueriesByComponent=new Map,this._entityIndex={byTag:new Map,byName:new Map},this._archetypeSystem=new et}var t=e.prototype;return t.setEntities=function(e){this._entities=e,this.clearQueryCache(),this.clearReactiveQueries(),this.rebuildIndexes()},t.addEntity=function(e,t){void 0===t&&(t=!1),this._entities.includes(e)||(this._entities.push(e),this.addEntityToIndexes(e),this._archetypeSystem.addEntity(e),this.notifyReactiveQueriesEntityAdded(e),t||this.clearQueryCache(),this._version++)},t.addEntities=function(e){if(0!==e.length){for(var t,n=new Set(this._entities.map(function(e){return e.id})),r=0,i=s(e);!(t=i()).done;){var o=t.value;n.has(o.id)||(this._entities.push(o),this.addEntityToIndexes(o),this._archetypeSystem.addEntity(o),n.add(o.id),r++)}r>0&&this.clearQueryCache()}},t.addEntitiesUnchecked=function(e){if(0!==e.length){for(var t,n=s(e);!(t=n()).done;){var r=t.value;this._entities.push(r)}for(var i,o=s(e);!(i=o()).done;){var a=i.value;this.addEntityToIndexes(a),this._archetypeSystem.addEntity(a)}this.clearQueryCache()}},t.removeEntity=function(e){var t=this._entities.indexOf(e);if(-1!==t){for(var n,r=[],i=s(e.components);!(n=i()).done;){var o=n.value;r.push(o.constructor)}this._entities.splice(t,1),this.removeEntityFromIndexes(e),this._archetypeSystem.removeEntity(e),r.length>0?this.notifyReactiveQueriesEntityRemoved(e,r):this.notifyReactiveQueriesEntityRemovedFallback(e),this.clearQueryCache(),this._version++}},t.updateEntity=function(e){this._entities.includes(e)?(this.removeEntityFromIndexes(e),this._archetypeSystem.updateEntity(e),this.addEntityToIndexes(e),this.notifyReactiveQueriesEntityChanged(e),this.clearQueryCache(),this._version++):this.addEntity(e)},t.addEntityToIndexes=function(e){var t=e.tag;void 0!==t&&(this._entityIndex.byTag.get(t)||this.createAndSetTagIndex(t)).add(e);var n=e.name;n&&(this._entityIndex.byName.get(n)||this.createAndSetNameIndex(n)).add(e)},t.createAndSetTagIndex=function(e){var t=new Set;return this._entityIndex.byTag.set(e,t),t},t.createAndSetNameIndex=function(e){var t=new Set;return this._entityIndex.byName.set(e,t),t},t.removeEntityFromIndexes=function(e){if(void 0!==e.tag){var t=this._entityIndex.byTag.get(e.tag);t&&(t.delete(e),0===t.size&&this._entityIndex.byTag.delete(e.tag))}if(e.name){var n=this._entityIndex.byName.get(e.name);n&&(n.delete(e),0===n.size&&this._entityIndex.byName.delete(e.name))}},t.rebuildIndexes=function(){this._entityIndex.byTag.clear(),this._entityIndex.byName.clear(),this._archetypeSystem.clear();for(var e,t=s(this._entities);!(e=t()).done;){var n=e.value;this.addEntityToIndexes(n),this._archetypeSystem.addEntity(n)}},t.queryAll=function(){var e=performance.now();this._queryStats.totalQueries++;for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];var i=this.getOrCreateReactiveQuery(Xe.ALL,n).getEntities();return this._queryStats.cacheHits++,{entities:i,count:i.length,executionTime:performance.now()-e,fromCache:!0}},t.queryAny=function(){var e=performance.now();this._queryStats.totalQueries++;for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];var i=this.getOrCreateReactiveQuery(Xe.ANY,n).getEntities();return this._queryStats.cacheHits++,{entities:i,count:i.length,executionTime:performance.now()-e,fromCache:!0}},t.queryNone=function(){var e=performance.now();this._queryStats.totalQueries++;for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];var i=this.getOrCreateReactiveQuery(Xe.NONE,n).getEntities();return this._queryStats.cacheHits++,{entities:i,count:i.length,executionTime:performance.now()-e,fromCache:!0}},t.queryByTag=function(e){var t=performance.now();this._queryStats.totalQueries++;var n="tag:"+e,r=this.getFromCache(n);if(r)return this._queryStats.cacheHits++,{entities:r,count:r.length,executionTime:performance.now()-t,fromCache:!0};this._queryStats.indexHits++;var i=Array.from(this._entityIndex.byTag.get(e)||[]);return this.addToCache(n,i),{entities:i,count:i.length,executionTime:performance.now()-t,fromCache:!1}},t.queryByName=function(e){var t=performance.now();this._queryStats.totalQueries++;var n="name:"+e,r=this.getFromCache(n);if(r)return this._queryStats.cacheHits++,{entities:r,count:r.length,executionTime:performance.now()-t,fromCache:!0};this._queryStats.indexHits++;var i=Array.from(this._entityIndex.byName.get(e)||[]);return this.addToCache(n,i),{entities:i,count:i.length,executionTime:performance.now()-t,fromCache:!1}},t.queryByComponent=function(e){var t=performance.now();this._queryStats.totalQueries++;var n=this.generateCacheKey("component",[e]),r=this.getFromCache(n);if(r)return this._queryStats.cacheHits++,{entities:r,count:r.length,executionTime:performance.now()-t,fromCache:!0};this._queryStats.indexHits++;var i=this._archetypeSystem.getEntitiesByComponent(e);return this.addToCache(n,i),{entities:i,count:i.length,executionTime:performance.now()-t,fromCache:!1}},t.getFromCache=function(e){var t=this._queryCache.get(e);return t?Date.now()-t.timestamp>this._cacheTimeout||t.version!==this._version?(this._queryCache.delete(e),null):(t.hitCount++,t.entities):null},t.addToCache=function(e,t){this._queryCache.size>=this._cacheMaxSize&&this.cleanupCache(),this._queryCache.set(e,{entities:t,timestamp:Date.now(),hitCount:0,version:this._version})},t.cleanupCache=function(){for(var e,t=Date.now(),n=s(this._queryCache.entries());!(e=n()).done;){var r=e.value,i=r[0];t-r[1].timestamp>this._cacheTimeout&&this._queryCache.delete(i)}if(this._queryCache.size>=this._cacheMaxSize){for(var o,a=1/0,c="",u=1/0,l=s(this._queryCache.entries());!(o=l()).done;){var h=o.value,f=h[0],d=h[1];(d.hitCount<a||d.hitCount===a&&d.timestamp<u)&&(a=d.hitCount,c=f,u=d.timestamp)}c&&this._queryCache.delete(c)}},t.clearQueryCache=function(){this._queryCache.clear(),this._componentMaskCache.clear()},t.clearReactiveQueries=function(){for(var e,t=s(this._reactiveQueries.values());!(e=t()).done;){e.value.dispose()}this._reactiveQueries.clear(),this._reactiveQueriesByComponent.clear()},t.generateCacheKey=function(e,t){return 1===t.length?e+":"+L(t[0]):e+":"+t.map(function(e){return L(e)}).sort().join(",")},t.clearCache=function(){this.clearQueryCache(),this.clearReactiveQueries()},t.createReactiveQuery=function(e,t){if(!e||0===e.length)throw new Error("组件类型列表不能为空");var n=this.createComponentMask(e),r={type:Xe.ALL,componentTypes:e,mask:n},i=new rt(r,t),o=this.executeTraditionalQuery(Xe.ALL,e);i.initializeWith(o);var a=this.generateCacheKey("all",e);this._reactiveQueries.set(a,i);for(var c,u=s(e);!(c=u()).done;){var l=c.value,h=this._reactiveQueriesByComponent.get(l);h||(h=new Set,this._reactiveQueriesByComponent.set(l,h)),h.add(i)}return i},t.destroyReactiveQuery=function(e){if(e){var t=e.id;this._reactiveQueries.delete(t);for(var n,r=s(e.condition.componentTypes);!(n=r()).done;){var i=n.value,o=this._reactiveQueriesByComponent.get(i);o&&(o.delete(e),0===o.size&&this._reactiveQueriesByComponent.delete(i))}e.dispose()}},t.createComponentMask=function(e){var t=e.map(function(e){return L(e)}).sort().join(","),n=this._componentMaskCache.get(t);if(n)return n;for(var r,i=Be.clone(Be.ZERO),o=s(e);!(r=o()).done;){var a=r.value;Le.isRegistered(a)||Le.register(a);var c=Le.getBitMask(a);Be.orInPlace(i,c)}return this._componentMaskCache.set(t,i),i},t.getAllEntities=function(){return this._entities},t.getStats=function(){return{entityCount:this._entities.length,indexStats:{componentIndexSize:this._archetypeSystem.getAllArchetypes().length,tagIndexSize:this._entityIndex.byTag.size,nameIndexSize:this._entityIndex.byName.size},queryStats:a({},this._queryStats,{cacheHitRate:this._queryStats.totalQueries>0?(this._queryStats.cacheHits/this._queryStats.totalQueries*100).toFixed(2)+"%":"0%"}),optimizationStats:{archetypeSystem:this._archetypeSystem.getAllArchetypes().map(function(e){return{id:e.id,componentTypes:e.componentTypes.map(function(e){return L(e)}),entityCount:e.entities.size}})},cacheStats:{size:this._reactiveQueries.size,hitRate:this._queryStats.totalQueries>0?(this._queryStats.cacheHits/this._queryStats.totalQueries*100).toFixed(2)+"%":"0%"}}},t.getEntityArchetype=function(e){return this._archetypeSystem.getEntityArchetype(e)},t.getOrCreateReactiveQuery=function(e,t){var n=this.generateCacheKey(e,t),r=this._reactiveQueries.get(n);if(!r){var i=this.createComponentMask(t);r=new rt({type:e,componentTypes:t,mask:i},{enableBatchMode:!1,debug:!1});var o=this.executeTraditionalQuery(e,t);r.initializeWith(o),this._reactiveQueries.set(n,r);for(var a,c=s(t);!(a=c()).done;){var u=a.value,l=this._reactiveQueriesByComponent.get(u);l||(l=new Set,this._reactiveQueriesByComponent.set(u,l)),l.add(r)}this._logger.debug("创建内部响应式查询缓存: "+n)}return r},t.executeTraditionalQuery=function(e,t){switch(e){case Xe.ALL:for(var n,r=[],i=s(this._archetypeSystem.queryArchetypes(t,"AND").archetypes);!(n=i()).done;)for(var o,a=s(n.value.entities);!(o=a()).done;){var c=o.value;r.push(c)}return r;case Xe.ANY:for(var u,l=[],h=s(this._archetypeSystem.queryArchetypes(t,"OR").archetypes);!(u=h()).done;)for(var f,d=s(u.value.entities);!(f=d()).done;){var p=f.value;l.push(p)}return l;case Xe.NONE:var m=this.createComponentMask(t);return this._entities.filter(function(e){return Be.hasNone(e.componentMask,m)});default:return[]}},t.notifyReactiveQueriesEntityAdded=function(e){if(0!==this._reactiveQueries.size)for(var t,n=new Set,r=s(e.components);!(t=r()).done;){var i=t.value.constructor,o=this._reactiveQueriesByComponent.get(i);if(o)for(var a,c=s(o);!(a=c()).done;){var u=a.value;n.has(u)||(u.notifyEntityAdded(e),n.add(u))}}},t.notifyReactiveQueriesEntityRemoved=function(e,t){if(0!==this._reactiveQueries.size)for(var n,r=new Set,i=s(t);!(n=i()).done;){var o=n.value,a=this._reactiveQueriesByComponent.get(o);if(a)for(var c,u=s(a);!(c=u()).done;){var l=c.value;r.has(l)||(l.notifyEntityRemoved(e),r.add(l))}}},t.notifyReactiveQueriesEntityRemovedFallback=function(e){if(0!==this._reactiveQueries.size)for(var t,n=s(this._reactiveQueries.values());!(t=n()).done;){t.value.notifyEntityRemoved(e)}},t.notifyReactiveQueriesEntityChanged=function(e){if(0!==this._reactiveQueries.size){for(var t,n=new Set,r=s(e.components);!(t=r()).done;){var i=t.value.constructor,o=this._reactiveQueriesByComponent.get(i);if(o)for(var a,c=s(o);!(a=c()).done;){var u=a.value;n.has(u)||(u.notifyEntityChanged(e),n.add(u))}}for(var l,h=s(this._reactiveQueries.values());!(l=h()).done;){var f=l.value;n.has(f)||f.notifyEntityChanged(e)}}},o(e,[{key:"version",get:function(){return this._version}}])}(),ot=function(){function e(e){this._logger=$("QueryBuilder"),this.conditions=[],this.querySystem=e}var t=e.prototype;return t.withAll=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return this.conditions.push({type:Xe.ALL,componentTypes:t,mask:this.createComponentMask(t)}),this},t.withAny=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return this.conditions.push({type:Xe.ANY,componentTypes:t,mask:this.createComponentMask(t)}),this},t.without=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return this.conditions.push({type:Xe.NONE,componentTypes:t,mask:this.createComponentMask(t)}),this},t.execute=function(){var e,t,n,r=performance.now();if(1===this.conditions.length){var i=this.conditions[0];switch(i.type){case Xe.ALL:return(e=this.querySystem).queryAll.apply(e,i.componentTypes);case Xe.ANY:return(t=this.querySystem).queryAny.apply(t,i.componentTypes);case Xe.NONE:return(n=this.querySystem).queryNone.apply(n,i.componentTypes)}}return{entities:[],count:0,executionTime:performance.now()-r,fromCache:!1}},t.createComponentMask=function(e){for(var t,n=Be.clone(Be.ZERO),r=s(e);!(t=r()).done;){var i=t.value;try{var o=Le.getBitMask(i);Be.orInPlace(n,o)}catch(e){this._logger.warn("组件类型 "+L(i)+" 未注册,跳过")}}return n},t.reset=function(){return this.conditions=[],this},e}(),st=function(){function e(){this.listeners=new Map,this.stats=new Map,this.batchQueue=new Map,this.batchTimers=new Map,this.batchConfigs=new Map,this.nextListenerId=0,this.isEnabled=!0,this.maxListeners=100}var t=e.prototype;return t.on=function(e,t,n){return void 0===n&&(n={}),this.addListener(e,t,n)},t.once=function(e,t,n){return void 0===n&&(n={}),this.addListener(e,t,a({},n,{once:!0}))},t.onAsync=function(e,t,n){return void 0===n&&(n={}),this.addListener(e,t,a({},n,{async:!0}))},t.off=function(e,t){var n=this.listeners.get(e);if(!n)return!1;var r=n.findIndex(function(e){return e.id===t});return-1!==r&&(n.splice(r,1),0===n.length&&(this.listeners.delete(e),this.stats.delete(e)),!0)},t.offAll=function(e){this.listeners.delete(e),this.stats.delete(e),this.clearBatch(e)},t.emit=function(){var e=n(h().m(function e(t,n){var r;return h().w(function(e){for(;;)switch(e.n){case 0:if(this.isEnabled){e.n=1;break}return e.a(2);case 1:if(null==(r=this.batchConfigs.get(t))||!r.enabled){e.n=2;break}return this.addToBatch(t,n),e.a(2);case 2:return e.n=3,this.executeEvent(t,n);case 3:return e.a(2)}},e,this)}));return function(t,n){return e.apply(this,arguments)}}(),t.emitSync=function(t,n){if(this.isEnabled){var r=this.listeners.get(t);if(r&&0!==r.length){for(var i,o=performance.now(),a=[],c=s(this.sortListenersByPriority(r));!(i=c()).done;){var u=i.value;if(!u.config.async)try{u.config.thisArg?u.handler.call(u.config.thisArg,n):u.handler(n),u.config.once&&a.push(u.id)}catch(n){e._logger.error("事件处理器执行错误 "+t+":",n)}}this.removeListeners(t,a),this.updateStats(t,performance.now()-o)}}},t.setBatchConfig=function(e,t){this.batchConfigs.set(e,t)},t.flushBatch=function(e){var t=this.batchQueue.get(e);if(t&&0!==t.length){var n=this.batchTimers.get(e);n&&(clearTimeout(n),this.batchTimers.delete(e)),this.processBatch(e,t),this.batchQueue.delete(e)}},t.getStats=function(e){return e?this.stats.get(e)||this.createEmptyStats(e):new Map(this.stats)},t.resetStats=function(e){e?this.stats.delete(e):this.stats.clear()},t.setEnabled=function(e){this.isEnabled=e},t.hasListeners=function(e){var t=this.listeners.get(e);return!!t&&t.length>0},t.getListenerCount=function(e){var t=this.listeners.get(e);return t?t.length:0},t.clear=function(){this.listeners.clear(),this.stats.clear(),this.clearAllBatches()},t.setMaxListeners=function(e){this.maxListeners=e},t.addListener=function(t,n,r){var i=this.listeners.get(t);if(i||(i=[],this.listeners.set(t,i)),i.length>=this.maxListeners)return e._logger.warn("事件类型 "+t+" 的监听器数量超过最大限制 ("+this.maxListeners+")"),"";var o="listener_"+this.nextListenerId++,s={handler:n,config:a({priority:0},r),id:o};return i.push(s),this.stats.has(t)||this.stats.set(t,this.createEmptyStats(t)),o},t.executeEvent=function(){var t=n(h().m(function t(r,i){var o,a,c,u,l,f,d,p,m,v;return h().w(function(t){for(;;)switch(t.n){case 0:if((o=this.listeners.get(r))&&0!==o.length){t.n=1;break}return t.a(2);case 1:for(a=performance.now(),c=[],u=this.sortListenersByPriority(o),l=u.filter(function(e){return!e.config.async}),f=u.filter(function(e){return e.config.async}),d=s(l);!(p=d()).done;){m=p.value;try{m.config.thisArg?m.handler.call(m.config.thisArg,i):m.handler(i),m.config.once&&c.push(m.id)}catch(t){e._logger.error("同步事件处理器执行错误 "+r+":",t)}}return v=f.map(function(){var t=n(h().m(function t(n){var o;return h().w(function(t){for(;;)switch(t.p=t.n){case 0:if(t.p=0,!n.config.thisArg){t.n=2;break}return t.n=1,n.handler.call(n.config.thisArg,i);case 1:t.n=3;break;case 2:return t.n=3,n.handler(i);case 3:n.config.once&&c.push(n.id),t.n=5;break;case 4:t.p=4,o=t.v,e._logger.error("异步事件处理器执行错误 "+r+":",o);case 5:return t.a(2)}},t,null,[[0,4]])}));return function(e){return t.apply(this,arguments)}}()),t.n=2,Promise.all(v);case 2:this.removeListeners(r,c),this.updateStats(r,performance.now()-a);case 3:return t.a(2)}},t,this)}));return function(e,n){return t.apply(this,arguments)}}(),t.sortListenersByPriority=function(e){return e.slice().sort(function(e,t){return(t.config.priority||0)-(e.config.priority||0)})},t.removeListeners=function(e,t){if(0!==t.length){var n=this.listeners.get(e);if(n){for(var r,i=function(){var e=r.value,t=n.findIndex(function(t){return t.id===e});-1!==t&&n.splice(t,1)},o=s(t);!(r=o()).done;)i();0===n.length&&(this.listeners.delete(e),this.stats.delete(e))}}},t.addToBatch=function(e,t){var n=this,r=this.batchQueue.get(e);r||(r=[],this.batchQueue.set(e,r)),r.push(t);var i=this.batchConfigs.get(e);if(r.length>=i.batchSize)this.flushBatch(e);else if(!this.batchTimers.has(e)){var o=setTimeout(function(){n.flushBatch(e)},i.delay);this.batchTimers.set(e,o)}},t.processBatch=function(){var e=n(h().m(function e(t,n){var r;return h().w(function(e){for(;;)switch(e.n){case 0:return r={type:t,events:n,count:n.length,timestamp:Date.now()},e.n=1,this.executeEvent(t+":batch",r);case 1:return e.a(2)}},e,this)}));return function(t,n){return e.apply(this,arguments)}}(),t.clearBatch=function(e){this.batchQueue.delete(e);var t=this.batchTimers.get(e);t&&(clearTimeout(t),this.batchTimers.delete(e))},t.clearAllBatches=function(){this.batchQueue.clear();for(var e,t=s(this.batchTimers.values());!(e=t()).done;){var n=e.value;clearTimeout(n)}this.batchTimers.clear(),this.batchConfigs.clear()},t.updateStats=function(e,t){var n=this.stats.get(e);n||(n=this.createEmptyStats(e),this.stats.set(e,n)),n.triggerCount++,n.totalExecutionTime+=t,n.averageExecutionTime=n.totalExecutionTime/n.triggerCount,n.lastTriggerTime=Date.now(),n.listenerCount=this.getListenerCount(e)},t.createEmptyStats=function(e){return{eventType:e,listenerCount:0,triggerCount:0,totalExecutionTime:0,averageExecutionTime:0,lastTriggerTime:0}},e}();st._logger=$("EventSystem");var at=function(){function e(e,t){this._entities=e,this._componentTypes=t}var t=e.prototype;return t.forEach=function(e){this._entities.forEach(e)},t.map=function(e){return this._entities.map(e)},t.filter=function(t){return new e(this._entities.filter(t),this._componentTypes)},t.find=function(e){return this._entities.find(e)},t.some=function(e){return this._entities.some(e)},t.every=function(e){return this._entities.every(e)},t.get=function(e){return this._entities[e]},t.toArray=function(){return[].concat(this._entities)},t.getComponentTypes=function(){return this._componentTypes},t[Symbol.iterator]=function(){return this._entities[Symbol.iterator]()},o(e,[{key:"entities",get:function(){return this._entities}},{key:"length",get:function(){return this._entities.length}},{key:"first",get:function(){return this._entities[0]}},{key:"last",get:function(){return this._entities[this._entities.length-1]}},{key:"isEmpty",get:function(){return 0===this._entities.length}}])}(),ct=function(){function e(e,t,n,r,i){this._all=e||[],this._any=t||[],this._none=n||[],void 0!==r&&(this._tag=r),void 0!==i&&(this._name=i)}var t=e.prototype;return t.withAll=function(){for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];return new e([].concat(this._all,n),this._any,this._none,this._tag,this._name)},t.withAny=function(){for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];return new e(this._all,[].concat(this._any,n),this._none,this._tag,this._name)},t.withNone=function(){for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];return new e(this._all,this._any,[].concat(this._none,n),this._tag,this._name)},t.withTag=function(t){return new e(this._all,this._any,this._none,t,this._name)},t.withName=function(t){return new e(this._all,this._any,this._none,this._tag,t)},t.buildMatcher=function(){var e,t,n,r=Se.complex();this._all.length>0&&(r=(e=r).all.apply(e,this._all));this._any.length>0&&(r=(t=r).any.apply(t,this._any));this._none.length>0&&(r=(n=r).none.apply(n,this._none));return void 0!==this._tag&&(r=r.withTag(this._tag)),void 0!==this._name&&(r=r.withName(this._name)),r},t.getCondition=function(){return a({all:[].concat(this._all),any:[].concat(this._any),none:[].concat(this._none)},void 0!==this._tag&&{tag:this._tag},void 0!==this._name&&{name:this._name})},t.getRequiredTypes=function(){return this._all},t.clone=function(){return new e([].concat(this._all),[].concat(this._any),[].concat(this._none),this._tag,this._name)},e}();var ut,lt=function(){function e(){}return e.serialize=function(e){var t=_e(e);if(!t)return null;for(var n,r=e.constructor,i=t.options.typeId||L(r),o={},a=s(t.fields);!(n=a()).done;){var c=n.value,u=c[0],l=c[1],h="symbol"==typeof u?u.toString():u,f=e[u];if(!t.ignoredFields.has(u)){var d=l.serializer?l.serializer(f):this.serializeValue(f);o[l.alias||h]=d}}return{type:i,version:t.options.version,data:o}},e.deserialize=function(e,t){var n=t.get(e.type);if(!n)return console.warn("未找到组件类型: "+e.type),null;var r=_e(n);if(!r)return console.warn("组件 "+e.type+" 不可序列化"),null;for(var i,o=new n,a=s(r.fields);!(i=a()).done;){var c=i.value,u=c[0],l=c[1],h="symbol"==typeof u?u.toString():u,f=l.alias||h,d=e.data[f];if(void 0!==d){var p=l.deserializer?l.deserializer(d):this.deserializeValue(d);o[u]=p}}return o},e.serializeComponents=function(e){for(var t,n=[],r=s(e);!(t=r()).done;){var i=t.value,o=this.serialize(i);o&&n.push(o)}return n},e.deserializeComponents=function(e,t){for(var n,r=[],i=s(e);!(n=i()).done;){var o=n.value,a=this.deserialize(o,t);a&&r.push(a)}return r},e.serializeValue=function(e){var t=this;if(null==e)return e;var n=typeof e;if("string"===n||"number"===n||"boolean"===n)return e;if(e instanceof Date)return{__type:"Date",value:e.toISOString()};if(Array.isArray(e))return e.map(function(e){return t.serializeValue(e)});if(e instanceof Map)return{__type:"Map",value:Array.from(e.entries())};if(e instanceof Set)return{__type:"Set",value:Array.from(e)};if("object"===n&&"object"==typeof e&&!Array.isArray(e)){var r={},i=e;for(var o in i)Object.prototype.hasOwnProperty.call(i,o)&&(r[o]=this.serializeValue(i[o]));return r}},e.deserializeValue=function(e){var t=this;if(null==e)return e;var n=typeof e;if("string"===n||"number"===n||"boolean"===n)return e;if("object"===n&&"object"==typeof e&&"__type"in e){var r=e;switch(r.__type){case"Date":return{__type:"Date",value:"string"==typeof r.value?r.value:String(r.value)};case"Map":return{__type:"Map",value:r.value};case"Set":return{__type:"Set",value:r.value}}}if(Array.isArray(e))return e.map(function(e){return t.deserializeValue(e)});if("object"===n&&"object"==typeof e&&!Array.isArray(e)){var i={},o=e;for(var s in o)Object.prototype.hasOwnProperty.call(o,s)&&(i[s]=this.deserializeValue(o[s]));return i}return e},e.validateVersion=function(e,t){return e.version===t},e.getSerializationInfo=function(e){var t=_e(e);if(!t)return{type:"unknown",version:0,fields:[],ignoredFields:[],isSerializable:!1};var n="function"==typeof e?e:e.constructor;return{type:t.options.typeId||L(n),version:t.options.version,fields:Array.from(t.fields.keys()).map(function(e){return"symbol"==typeof e?e.toString():e}),ignoredFields:Array.from(t.ignoredFields).map(function(e){return"symbol"==typeof e?e.toString():e}),isSerializable:!0}},e}(),ht=function(){function e(){}return e.serialize=function(e,t,n){void 0===t&&(t=!0);var r=lt.serializeComponents(Array.from(e.components)),i={id:e.id,name:e.name,tag:e.tag,active:e.active,enabled:e.enabled,updateOrder:e.updateOrder,components:r,children:[]},o=e.getComponent(exports.HierarchyComponent);if(null!==(null==o?void 0:o.parentId)&&void 0!==(null==o?void 0:o.parentId)&&(i.parentId=o.parentId),t&&o&&o.childIds.length>0){var a,c=null!==(a=null==n?void 0:n.scene)&&void 0!==a?a:e.scene;if(c)for(var u,l=s(o.childIds);!(u=l()).done;){var h=u.value,f=c.findEntityById(h);f&&i.children.push(this.serialize(f,!0,n))}}return i},e.deserialize=function(e,t,n,r,i,o,a){void 0===r&&(r=!1);var c=r?e.id:n(),u=new Ge(e.name,c);null==a||a.set(u.id,u),i&&(u.scene=i),u.tag=e.tag,u.active=e.active,u.enabled=e.enabled,u.updateOrder=e.updateOrder;for(var l,h=s(lt.deserializeComponents(e.components,t));!(l=h()).done;){var f=l.value;u.addComponent(f)}var d=u.getComponent(exports.HierarchyComponent);d&&(d.parentId=null,d.childIds=[]);for(var p,m=s(e.children);!(p=m()).done;){var v=p.value,y=this.deserialize(v,t,n,r,i,o,a);null==o||o.setParent(y,u)}return u},e.serializeEntities=function(e,t,n){void 0===t&&(t=!0);for(var r,i=[],o=s(e);!(r=o()).done;){var a=r.value,c=a.getComponent(exports.HierarchyComponent);null!==(null==c?void 0:c.parentId)&&void 0!==(null==c?void 0:c.parentId)&&t||i.push(this.serialize(a,t,n))}return i},e.deserializeEntities=function(e,t,n,r,i,o){void 0===r&&(r=!1);for(var a,c=[],u=new Map,l=s(e);!(a=l()).done;){var h=a.value,f=this.deserialize(h,t,n,r,i,o,u);c.push(f)}return{rootEntities:c,allEntities:u}},e.clone=function(e,t,n){var r=this.serialize(e,!0);return this.deserialize(r,t,n,!1)},e}(),ft=function(){function e(){}return e.stringToUtf8=function(e){for(var t=e.length,n=0,r=[],i=0;i<t;i++){var o=e.charCodeAt(i);if(o>=55296&&o<=56319&&i+1<t){var s=o,a=e.charCodeAt(i+1);a>=56320&&a<=57343&&(o=65536+(s-55296<<10)+(a-56320),i++)}o<128?r[n++]=o:o<2048?(r[n++]=192|o>>6,r[n++]=128|63&o):o<65536?(r[n++]=224|o>>12,r[n++]=128|o>>6&63,r[n++]=128|63&o):(r[n++]=240|o>>18,r[n++]=128|o>>12&63,r[n++]=128|o>>6&63,r[n++]=128|63&o)}return new Uint8Array(r)},e.utf8ToString=function(e){for(var t=e.length,n="",r=0;r<t;){var i=e[r++];if(void 0===i)break;if(i<128)n+=String.fromCharCode(i);else if(192==(224&i)){var o=e[r++];if(void 0===o)break;n+=String.fromCharCode((31&i)<<6|63&o)}else if(224==(240&i)){var s=e[r++],a=e[r++];if(void 0===s||void 0===a)break;n+=String.fromCharCode((15&i)<<12|(63&s)<<6|63&a)}else if(240==(248&i)){var c=e[r++],u=e[r++],l=e[r++];if(void 0===c||void 0===u||void 0===l)break;var h=(7&i)<<18|(63&c)<<12|(63&u)<<6|63&l;h-=65536,n+=String.fromCharCode(55296+(h>>10),56320+(1023&h))}}return n},e.encode=function(e){var t=JSON.stringify(e);return this.stringToUtf8(t)},e.decode=function(e){var t=this.utf8ToString(e);return JSON.parse(t)},e}(),dt=function(){function e(){}return e.serialize=function(e,t){var n=a({systems:!1,format:"json",pretty:!0,includeMetadata:!0},t),r=this.filterEntities(e,n),i=e.getSystem(Ee),o=ht.serializeEntities(r,!0,null!=i?i:void 0),s=this.buildComponentTypeRegistry(r),c=this.serializeSceneData(e.sceneData),u={name:e.name,version:this.SERIALIZATION_VERSION,entities:o,componentTypeRegistry:s};return c&&Object.keys(c).length>0&&(u.sceneData=c),n.includeMetadata&&(u.timestamp=Date.now(),u.metadata={entityCount:o.length,componentTypeCount:s.length,serializationOptions:n}),"json"===n.format?n.pretty?JSON.stringify(u,null,2):JSON.stringify(u):ft.encode(u)},e.deserialize=function(e,t,n){var r,i=a({strategy:"replace",preserveIds:!1},n);try{r="string"==typeof t?JSON.parse(t):ft.decode(t)}catch(e){throw new Error("Failed to parse save data: "+e)}i.migration&&r.version!==this.SERIALIZATION_VERSION&&(r=i.migration(r.version,this.SERIALIZATION_VERSION,r));var o=i.componentRegistry||this.getGlobalComponentRegistry();"replace"===i.strategy&&e.destroyAllEntities();for(var c,u=e.getSystem(Ee),l=ht.deserializeEntities(r.entities,o,function(){return e.identifierPool.checkOut()},i.preserveIds||!1,e,u),h=l.rootEntities,f=l.allEntities,d=s(h);!(c=d()).done;){var p=c.value;e.addEntity(p,!0),this.addChildrenRecursively(p,e,u,f)}e.querySystem.clearCache(),e.clearSystemEntityCaches(),r.sceneData&&this.deserializeSceneData(r.sceneData,e.sceneData);for(var m,v=[],y=s(f.values());!(m=y()).done;){var g=m.value;this.callOnDeserializedForEntity(g,v)}v.length>0&&Promise.all(v).catch(function(e){console.error("Error in onDeserialized:",e)})},e.callOnDeserializedForEntity=function(e,t){for(var n,r=s(e.components);!(n=r()).done;){var i=n.value;try{var o=i.onDeserialized();o instanceof Promise&&t.push(o)}catch(e){console.error("Error calling onDeserialized on component "+i.constructor.name+":",e)}}},e.addChildrenRecursively=function(e,t,n,r){var i=e.getComponent(exports.HierarchyComponent);if(i&&0!==i.childIds.length)for(var o,a=s(i.childIds);!(o=a()).done;){var c,u=o.value,l=null!==(c=null==r?void 0:r.get(u))&&void 0!==c?c:t.findEntityById(u);l&&(t.addEntity(l,!0),this.addChildrenRecursively(l,t,n,r))}},e.serializeSceneData=function(e){for(var t,n={},r=s(e);!(t=r()).done;){var i=t.value,o=i[0],a=i[1];n[o]=this.serializeValue(a)}return n},e.deserializeSceneData=function(e,t){t.clear();for(var n=0,r=Object.entries(e);n<r.length;n++){var i=r[n],o=i[0],s=i[1];t.set(o,this.deserializeValue(s))}},e.serializeValue=function(e){var t=this;if(null==e)return e;var n=typeof e;if("string"===n||"number"===n||"boolean"===n)return e;if(e instanceof Date)return{__type:"Date",value:e.toISOString()};if(e instanceof Map)return{__type:"Map",value:Array.from(e.entries())};if(e instanceof Set)return{__type:"Set",value:Array.from(e)};if(Array.isArray(e))return e.map(function(e){return t.serializeValue(e)});if("object"===n){var r={};for(var i in e)e.hasOwnProperty(i)&&(r[i]=this.serializeValue(e[i]));return r}},e.deserializeValue=function(e){var t=this;if(null==e)return e;var n=typeof e;if("string"===n||"number"===n||"boolean"===n)return e;if("object"===n&&e.__type)switch(e.__type){case"Date":return new Date(e.value);case"Map":return new Map(e.value);case"Set":return new Set(e.value)}if(Array.isArray(e))return e.map(function(e){return t.deserializeValue(e)});if("object"===n){var r={};for(var i in e)e.hasOwnProperty(i)&&(r[i]=this.deserializeValue(e[i]));return r}return e},e.filterEntities=function(e,t){var n=Array.from(e.entities.buffer);if(t.components&&t.components.length>0){var r=new Set(t.components);return n.filter(function(e){return Array.from(e.components).some(function(e){return r.has(e.constructor)})})}return n},e.buildComponentTypeRegistry=function(e){for(var t,n=new Map,r=s(e);!(t=r()).done;)for(var i,o=s(t.value.components);!(i=o()).done;){var a=i.value,c=L(a.constructor),u=_e(a);u&&!n.has(c)&&n.set(c,u.options.version)}return Array.from(n.entries()).map(function(e){return{typeName:e[0],version:e[1]}})},e.getGlobalComponentRegistry=function(){return Le.getAllComponentNames()},e.validate=function(e){var t=[];try{var n=JSON.parse(e);return n.version||t.push("Missing version field"),n.entities&&Array.isArray(n.entities)||t.push("Missing or invalid entities field"),n.componentTypeRegistry&&Array.isArray(n.componentTypeRegistry)||t.push("Missing or invalid componentTypeRegistry field"),a({valid:0===t.length,version:n.version},t.length>0&&{errors:t})}catch(e){return{valid:!1,errors:["JSON parse error: "+e]}}},e.getInfo=function(e){try{var t,n=JSON.parse(e);return a({name:n.name,version:n.version},void 0!==n.timestamp&&{timestamp:n.timestamp},{entityCount:(null===(t=n.metadata)||void 0===t?void 0:t.entityCount)||n.entities.length,componentTypeCount:n.componentTypeRegistry.length})}catch(e){return null}},e}();dt.SERIALIZATION_VERSION=1,exports.ChangeOperation=void 0,(ut=exports.ChangeOperation||(exports.ChangeOperation={})).EntityAdded="entity_added",ut.EntityRemoved="entity_removed",ut.EntityUpdated="entity_updated",ut.ComponentAdded="component_added",ut.ComponentRemoved="component_removed",ut.ComponentUpdated="component_updated",ut.SceneDataUpdated="scene_data_updated";var pt=function(){function e(){}return e.createSnapshot=function(e,t){for(var n,r=a({deepComponentComparison:!0,trackSceneData:!0,compressSnapshot:!1},t),i={version:++this.snapshotVersion,entityIds:new Set,entities:new Map,components:new Map,sceneData:new Map},o=s(e.entities.buffer);!(n=o()).done;){var c=n.value;i.entityIds.add(c.id);var u=c.getComponent(exports.HierarchyComponent),l=null==u?void 0:u.parentId;if(i.entities.set(c.id,a({name:c.name,tag:c.tag,active:c.active,enabled:c.enabled,updateOrder:c.updateOrder},null!=l&&{parentId:l})),r.deepComponentComparison){for(var h,f=new Map,d=s(c.components);!(h=d()).done;){var p=h.value,m=lt.serialize(p);m&&f.set(m.type,JSON.stringify(m.data))}f.size>0&&i.components.set(c.id,f)}}if(r.trackSceneData)for(var v,y=s(e.sceneData);!(v=y()).done;){var g=v.value,_=g[0],S=g[1];i.sceneData.set(_,JSON.stringify(S))}return i},e.computeIncremental=function(e,t,n){for(var r,i=a({deepComponentComparison:!0,trackSceneData:!0},n),o={version:++this.snapshotVersion,timestamp:Date.now(),sceneName:e.name,baseVersion:t.version,entityChanges:[],componentChanges:[],sceneDataChanges:[]},c=new Set,u=s(e.entities.buffer);!(r=u()).done;){var l=r.value;c.add(l.id);var h=l.getComponent(exports.HierarchyComponent),f=null==h?void 0:h.parentId;if(t.entityIds.has(l.id)){var d=t.entities.get(l.id);(d.name!==l.name||d.tag!==l.tag||d.active!==l.active||d.enabled!==l.enabled||d.updateOrder!==l.updateOrder||d.parentId!==f)&&o.entityChanges.push({operation:exports.ChangeOperation.EntityUpdated,entityId:l.id,entityData:a({name:l.name,tag:l.tag,active:l.active,enabled:l.enabled,updateOrder:l.updateOrder},null!=f&&{parentId:f})}),i.deepComponentComparison&&this.detectComponentChanges(l,t,o.componentChanges)}else{o.entityChanges.push({operation:exports.ChangeOperation.EntityAdded,entityId:l.id,entityName:l.name,entityData:a({id:l.id,name:l.name,tag:l.tag,active:l.active,enabled:l.enabled,updateOrder:l.updateOrder},null!=f&&{parentId:f},{components:[],children:[]})});for(var p,m=s(l.components);!(p=m()).done;){var v=p.value,y=lt.serialize(v);y&&o.componentChanges.push({operation:exports.ChangeOperation.ComponentAdded,entityId:l.id,componentType:y.type,componentData:y})}}}for(var g,_=s(t.entityIds);!(g=_()).done;){var S=g.value;c.has(S)||o.entityChanges.push({operation:exports.ChangeOperation.EntityRemoved,entityId:S})}return i.trackSceneData&&this.detectSceneDataChanges(e,t,o.sceneDataChanges),o},e.detectComponentChanges=function(e,t,n){for(var r,i=t.components.get(e.id),o=new Map,a=s(e.components);!(r=a()).done;){var c=r.value,u=lt.serialize(c);u&&o.set(u.type,u)}for(var l,h=s(o);!(l=h()).done;){var f=l.value,d=f[0],p=f[1],m=JSON.stringify(p.data);i&&i.has(d)?i.get(d)!==m&&n.push({operation:exports.ChangeOperation.ComponentUpdated,entityId:e.id,componentType:d,componentData:p}):n.push({operation:exports.ChangeOperation.ComponentAdded,entityId:e.id,componentType:d,componentData:p})}if(i)for(var v,y=s(i.keys());!(v=y()).done;){var g=v.value;o.has(g)||n.push({operation:exports.ChangeOperation.ComponentRemoved,entityId:e.id,componentType:g})}},e.detectSceneDataChanges=function(e,t,n){for(var r,i=new Set,o=s(e.sceneData);!(r=o()).done;){var a=r.value,c=a[0],u=a[1];i.add(c);var l=JSON.stringify(u),h=t.sceneData.get(c);h&&h===l||n.push({operation:exports.ChangeOperation.SceneDataUpdated,key:c,value:u})}for(var f,d=s(t.sceneData.keys());!(f=d()).done;){var p=f.value;i.has(p)||n.push({operation:exports.ChangeOperation.SceneDataUpdated,key:p,value:void 0,deleted:!0})}},e.applyIncremental=function(e,t,n){for(var r,i=s(t.entityChanges);!(r=i()).done;){var o=r.value;switch(o.operation){case exports.ChangeOperation.EntityAdded:this.applyEntityAdded(e,o);break;case exports.ChangeOperation.EntityRemoved:this.applyEntityRemoved(e,o);break;case exports.ChangeOperation.EntityUpdated:this.applyEntityUpdated(e,o)}}for(var a,c=s(t.componentChanges);!(a=c()).done;){var u=a.value;switch(u.operation){case exports.ChangeOperation.ComponentAdded:this.applyComponentAdded(e,u,n);break;case exports.ChangeOperation.ComponentRemoved:this.applyComponentRemoved(e,u,n);break;case exports.ChangeOperation.ComponentUpdated:this.applyComponentUpdated(e,u,n)}}for(var l,h=s(t.sceneDataChanges);!(l=h()).done;){var f=l.value;f.deleted?e.sceneData.delete(f.key):e.sceneData.set(f.key,f.value)}},e.applyEntityAdded=function(e,t){var n,r;if(t.entityData){var i=new Ge(t.entityName||"Entity",t.entityId);i.tag=t.entityData.tag||0,i.active=null===(n=t.entityData.active)||void 0===n||n,i.enabled=null===(r=t.entityData.enabled)||void 0===r||r,i.updateOrder=t.entityData.updateOrder||0,e.addEntity(i)}},e.applyEntityRemoved=function(e,t){var n=e.entities.findEntityById(t.entityId);n&&n.destroy()},e.applyEntityUpdated=function(e,t){if(t.entityData){var n=e.entities.findEntityById(t.entityId);if(n){void 0!==t.entityData.name&&(n.name=t.entityData.name),void 0!==t.entityData.tag&&(n.tag=t.entityData.tag),void 0!==t.entityData.active&&(n.active=t.entityData.active),void 0!==t.entityData.enabled&&(n.enabled=t.entityData.enabled),void 0!==t.entityData.updateOrder&&(n.updateOrder=t.entityData.updateOrder);var r=e.getSystem(Ee);if(r){var i=n.getComponent(exports.HierarchyComponent),o=null==i?void 0:i.parentId;if(void 0!==t.entityData.parentId){var s=e.entities.findEntityById(t.entityData.parentId);s&&o!==t.entityData.parentId&&r.setParent(n,s)}else null!=o&&r.setParent(n,null)}}}},e.applyComponentAdded=function(e,t,n){if(t.componentData){var r=e.entities.findEntityById(t.entityId);if(r){var i=lt.deserialize(t.componentData,n);i&&r.addComponent(i)}}},e.applyComponentRemoved=function(e,t,n){var r=e.entities.findEntityById(t.entityId);if(r){var i=n.get(t.componentType);i&&r.removeComponentByType(i)}},e.applyComponentUpdated=function(e,t,n){if(t.componentData){var r=e.entities.findEntityById(t.entityId);if(r){var i=n.get(t.componentType);if(i){r.removeComponentByType(i);var o=lt.deserialize(t.componentData,n);o&&r.addComponent(o)}}}},e.serializeIncremental=function(e,t){var n=a({format:"json",pretty:!1},t);return"binary"===n.format?ft.encode(e):n.pretty?JSON.stringify(e,null,2):JSON.stringify(e)},e.deserializeIncremental=function(e){return"string"==typeof e?JSON.parse(e):ft.decode(e)},e.getIncrementalStats=function(e){return{totalChanges:e.entityChanges.length+e.componentChanges.length+e.sceneDataChanges.length,entityChanges:e.entityChanges.length,componentChanges:e.componentChanges.length,sceneDataChanges:e.sceneDataChanges.length,addedEntities:e.entityChanges.filter(function(e){return e.operation===exports.ChangeOperation.EntityAdded}).length,removedEntities:e.entityChanges.filter(function(e){return e.operation===exports.ChangeOperation.EntityRemoved}).length,updatedEntities:e.entityChanges.filter(function(e){return e.operation===exports.ChangeOperation.EntityUpdated}).length,addedComponents:e.componentChanges.filter(function(e){return e.operation===exports.ChangeOperation.ComponentAdded}).length,removedComponents:e.componentChanges.filter(function(e){return e.operation===exports.ChangeOperation.ComponentRemoved}).length,updatedComponents:e.componentChanges.filter(function(e){return e.operation===exports.ChangeOperation.ComponentUpdated}).length}},e.resetVersion=function(){this.snapshotVersion=0},e}();pt.snapshotVersion=0;var mt={enabled:!0,sampleInterval:10,minDuration:.1,trackAsync:!0,excludePatterns:[/^_/,/^get[A-Z]/,/^set[A-Z]/,/^is[A-Z]/,/^has[A-Z]/],maxBufferSize:1e4},vt=function(){function e(e){this.wrappedObjects=new WeakMap,this.samplingProfiler=null,this.registeredClasses=new Map,this.config=a({},mt,e)}e.getInstance=function(t){return e.instance||(e.instance=new e(t)),e.instance},e.resetInstance=function(){e.instance&&(e.instance.dispose(),e.instance=null)},e.setEnabled=function(t){e.getInstance().setEnabled(t)},e.registerClass=function(t,n,r){return void 0===n&&(n=exports.ProfileCategory.Custom),e.getInstance().registerClass(t,n,r)},e.wrapInstance=function(t,n,r){return void 0===r&&(r=exports.ProfileCategory.Custom),e.getInstance().wrapInstance(t,n,r)},e.wrapFunction=function(t,n,r){return void 0===r&&(r=exports.ProfileCategory.Custom),e.getInstance().wrapFunction(t,n,r)},e.startSampling=function(){e.getInstance().startSampling()},e.stopSampling=function(){return e.getInstance().stopSampling()};var t=e.prototype;return t.setEnabled=function(e){this.config.enabled=e,!e&&this.samplingProfiler&&this.samplingProfiler.stop()},t.registerClass=function(e,t,n){void 0===t&&(t=exports.ProfileCategory.Custom);var r=n||e.name;this.registeredClasses.set(r,{constructor:e,category:t});var i=this;return new Proxy(e,{construct:function(e,n,o){var s=Reflect.construct(e,n,o);return i.config.enabled&&i.wrapInstance(s,r,t),s}})},t.wrapInstance=function(e,t,n){if(void 0===n&&(n=exports.ProfileCategory.Custom),!this.config.enabled)return e;if(this.wrappedObjects.has(e))return e;var r=new Map;this.wrappedObjects.set(e,r);for(var i,o=s(this.getAllMethodNames(e));!(i=o()).done;){var a=i.value;if(!this.shouldExcludeMethod(a)){var c=this.getPropertyDescriptor(e,a);if(c&&"function"==typeof c.value){var u=c.value,l=this.createWrappedMethod(u,t,a,n);r.set(a,{className:t,methodName:a,category:n,original:u});try{e[a]=l}catch(e){}}}}return e},t.wrapFunction=function(e,t,n){if(void 0===n&&(n=exports.ProfileCategory.Custom),!this.config.enabled)return e;var r=this,i=function(){var i=Fe.beginSample(t,n);try{for(var o=arguments.length,s=new Array(o),a=0;a<o;a++)s[a]=arguments[a];var c=e.apply(this,s);return r.config.trackAsync&&c instanceof Promise?c.finally(function(){Fe.endSample(i)}):(Fe.endSample(i),c)}catch(e){throw Fe.endSample(i),e}};return Object.defineProperty(i,"name",{value:e.name||t}),Object.defineProperty(i,"length",{value:e.length}),i},t.startSampling=function(){this.samplingProfiler||(this.samplingProfiler=new yt(this.config)),this.samplingProfiler.start()},t.stopSampling=function(){return this.samplingProfiler?this.samplingProfiler.stop():[]},t.dispose=function(){this.samplingProfiler&&(this.samplingProfiler.stop(),this.samplingProfiler=null),this.registeredClasses.clear()},t.createWrappedMethod=function(e,t,n,r){var i=this,o=t+"."+n,s=this.config.minDuration;return function(){for(var t=arguments.length,n=new Array(t),a=0;a<t;a++)n[a]=arguments[a];if(!i.config.enabled||!Fe.isEnabled())return e.apply(this,n);var c=performance.now(),u=Fe.beginSample(o,r);try{var l=e.apply(this,n);return i.config.trackAsync&&l instanceof Promise?l.then(function(e){return performance.now()-c>=s&&Fe.endSample(u),e},function(e){throw Fe.endSample(u),e}):(performance.now()-c>=s&&Fe.endSample(u),l)}catch(e){throw Fe.endSample(u),e}}},t.getAllMethodNames=function(e){for(var t=new Set,n=e;n&&n!==Object.prototype;){for(var r,i=s(Object.getOwnPropertyNames(n));!(r=i()).done;){var o=r.value;"constructor"!==o&&t.add(o)}n=Object.getPrototypeOf(n)}return Array.from(t)},t.getPropertyDescriptor=function(e,t){for(var n=e;n&&n!==Object.prototype;){var r=Object.getOwnPropertyDescriptor(n,t);if(r)return r;n=Object.getPrototypeOf(n)}},t.shouldExcludeMethod=function(e){if("constructor"===e||e.startsWith("__"))return!0;for(var t,n=s(this.config.excludePatterns);!(t=n()).done;){if(t.value.test(e))return!0}return!1},e}();vt.instance=null;var yt=function(){function e(e){this.samples=[],this.intervalId=null,this.isRunning=!1,this.config=e}var t=e.prototype;return t.start=function(){var e=this;if(!this.isRunning){this.isRunning=!0,this.samples=[];var t=function(){if(e.isRunning){var n=e.captureStack();n.length>0&&(e.samples.push({timestamp:performance.now(),stack:n}),e.samples.length>e.config.maxBufferSize&&e.samples.shift()),e.config.sampleInterval,e.intervalId=setTimeout(t,e.config.sampleInterval)}};t()}},t.stop=function(){return this.isRunning=!1,null!==this.intervalId&&(clearTimeout(this.intervalId),this.intervalId=null),[].concat(this.samples)},t.captureStack=function(){try{for(var e,t=((new Error).stack||"").split("\n").slice(3),n=[],r=s(t);!(e=r()).done;){var i=e.value,o=this.parseStackFrame(i);o&&!this.isInternalFrame(o)&&n.push(o)}return n}catch(e){return[]}},t.parseStackFrame=function(e){var t=(e=e.trim()).match(/at\s+(.+?)\s+\(/);if(t&&t[1])return t[1];if((t=e.match(/at\s+(.+)/))&&t[1]){var n=t[1];if(!n.includes("("))return n}return(t=e.match(/^(.+?)@/))&&t[1]?t[1]:null},t.isInternalFrame=function(e){return["SamplingProfiler","AutoProfiler","ProfilerSDK","setTimeout","setInterval","requestAnimationFrame","<anonymous>","eval"].some(function(t){return e.includes(t)})},e}();var gt,_t=$("ServiceContainer");exports.ServiceLifetime=void 0,(gt=exports.ServiceLifetime||(exports.ServiceLifetime={})).Singleton="singleton",gt.Transient="transient";var St=function(){function e(){this._services=new Map,this._resolving=new Set,this._updatableServices=[]}var t=e.prototype;return t.registerSingleton=function(e,t){this._services.has(e)?_t.warn("Service "+e.name+" is already registered"):(this._services.set(e,a({identifier:e,type:e},t&&{factory:t},{lifetime:exports.ServiceLifetime.Singleton})),_t.debug("Registered singleton service: "+e.name))},t.registerTransient=function(e,t){this._services.has(e)?_t.warn("Service "+e.name+" is already registered"):(this._services.set(e,a({identifier:e,type:e},t&&{factory:t},{lifetime:exports.ServiceLifetime.Transient})),_t.debug("Registered transient service: "+e.name))},t.registerInstance=function(e,t){if(this._services.has(e)){var n="symbol"==typeof e?e.description:e.name;_t.warn("Service "+n+" is already registered")}else{if(this._services.set(e,{identifier:e,instance:t,lifetime:exports.ServiceLifetime.Singleton}),"symbol"!=typeof e&&I(e)){var r,i=k(e),o=null!==(r=null==i?void 0:i.priority)&&void 0!==r?r:0;this._updatableServices.push({instance:t,priority:o}),this._updatableServices.sort(function(e,t){return e.priority-t.priority}),_t.debug("Service "+e.name+" is updatable (priority: "+o+"), added to update list")}var s="symbol"==typeof e?e.description:e.name;_t.debug("Registered service instance: "+s)}},t.resolve=function(e){var t=this._services.get(e),n="symbol"==typeof e?e.description:e.name;if(!t)throw new Error("Service "+n+" is not registered");if(this._resolving.has(e)){var r=Array.from(this._resolving).map(function(e){return"symbol"==typeof e?e.description:e.name}).join(" -> ");throw new Error("Circular dependency detected: "+r+" -> "+n)}if(t.lifetime===exports.ServiceLifetime.Singleton&&t.instance)return t.instance;this._resolving.add(e);try{var i;if(t.factory)i=t.factory(this);else{if(!t.type)throw new Error("Service "+n+" has no factory or type to construct");i=new t.type}if(t.lifetime===exports.ServiceLifetime.Singleton&&(t.instance=i,t.type&&I(t.type))){var o,s=k(t.type),a=null!==(o=null==s?void 0:s.priority)&&void 0!==o?o:0;this._updatableServices.push({instance:i,priority:a}),this._updatableServices.sort(function(e,t){return e.priority-t.priority}),_t.debug("Service "+n+" is updatable (priority: "+a+"), added to update list")}return i}finally{this._resolving.delete(e)}},t.tryResolve=function(e){try{return this.resolve(e)}catch(e){return null}},t.isRegistered=function(e){return this._services.has(e)},t.unregister=function(e){var t=this._services.get(e);if(!t)return!1;if(t.instance){var n=this._updatableServices.findIndex(function(e){return e.instance===t.instance});-1!==n&&this._updatableServices.splice(n,1),t.instance.dispose()}this._services.delete(e);var r="symbol"==typeof e?e.description:e.name;return _t.debug("Unregistered service: "+r),!0},t.clear=function(){for(var e,t=s(this._services);!(e=t()).done;){var n=e.value[1];n.instance&&n.instance.dispose()}this._services.clear(),this._updatableServices=[],_t.debug("Cleared all services")},t.getRegisteredServices=function(){return Array.from(this._services.keys())},t.updateAll=function(e){for(var t,n=s(this._updatableServices);!(t=n()).done;){t.value.instance.update(e)}},t.getUpdatableCount=function(){return this._updatableServices.length},t.getAll=function(){for(var e,t=[],n=s(this._services.values());!(e=n()).done;){var r=e.value;r.instance&&t.push(r.instance)}return t},e}(),Ct=function(){function e(e){this.name="",this.sceneData=new Map,this._performanceMonitor=null,this._didSceneBegin=!1,this._cachedSystems=null,this._systemsOrderDirty=!0,this._systemErrorCount=new Map,this._maxErrorCount=10,this._systemAddCounter=0,this._componentIdToSystems=new Map,this._globalNotifySystems=new Set,this.entities=new Ue(this),this.identifierPool=new Qe,this.componentStorageManager=new We,this.querySystem=new it,this.eventSystem=new st,this.referenceTracker=new Y,this._services=new St,this.logger=$("Scene"),null!=e&&e.name&&(this.name=e.name)}var t=e.prototype;return t._rebuildSystemsCache=function(){var e=this._services.getAll(),t=this._filterEntitySystems(e);return this._sortSystemsByUpdateOrder(t)},t._filterEntitySystems=function(e){return e.filter(function(e){return e instanceof be})},t._sortSystemsByUpdateOrder=function(e){return e.sort(function(e,t){var n=e.updateOrder-t.updateOrder;return 0!==n?n:e.addOrder-t.addOrder})},t.getSystem=function(e){return this._services.tryResolve(e)},t.markSystemsOrderDirty=function(){this._systemsOrderDirty=!0},t.initialize=function(){},t.onStart=function(){},t.unload=function(){},t.begin=function(){this._didSceneBegin=!0,this.onStart()},t.end=function(){this._didSceneBegin=!1,this.unload(),this.entities.removeAllEntities(),this.querySystem.setEntities([]),this.componentStorageManager.clear(),this._services.clear(),this._cachedSystems=null,this._systemsOrderDirty=!0,this._componentIdToSystems.clear(),this._globalNotifySystems.clear()},t.update=function(){Fe.beginFrame();var e=Fe.beginSample("Scene.update",exports.ProfileCategory.ECS);try{xe.getInstance().update(),this.entities.updateLists();var t=this.systems,n=Fe.beginSample("Systems.update",exports.ProfileCategory.ECS);try{for(var r,i=s(t);!(r=i()).done;){var o=r.value;if(o.enabled){var a=Fe.beginSample(o.systemName,exports.ProfileCategory.ECS);try{o.update()}catch(e){this._handleSystemError(o,"update",e)}finally{Fe.endSample(a)}}}}finally{Fe.endSample(n)}var c=Fe.beginSample("Systems.lateUpdate",exports.ProfileCategory.ECS);try{for(var u,l=s(t);!(u=l()).done;){var h=u.value;if(h.enabled){var f=Fe.beginSample(h.systemName+".late",exports.ProfileCategory.ECS);try{h.lateUpdate()}catch(e){this._handleSystemError(h,"lateUpdate",e)}finally{Fe.endSample(f)}}}}finally{Fe.endSample(c)}}finally{Fe.endSample(e),Fe.endFrame()}},t._handleSystemError=function(e,t,n){var r=(this._systemErrorCount.get(e)||0)+1;this._systemErrorCount.set(e,r),this.logger.error("Error in system "+e.constructor.name+"."+t+"() ["+r+"/"+this._maxErrorCount+"]:",n),r>=this._maxErrorCount&&(e.enabled=!1,this.logger.error("System "+e.constructor.name+" has been disabled due to excessive errors ("+r+" errors)"))},t.createEntity=function(e){var t=new Ge(e,this.identifierPool.checkOut());return this.eventSystem.emitSync("entity:created",{entityName:e,entity:t,scene:this}),this.addEntity(t)},t.clearSystemEntityCaches=function(){for(var e,t=s(this.systems);!(e=t()).done;){e.value.clearEntityCache()}},t.notifyEntityComponentChanged=function(e,t){var n=new Set;if(t&&Le.isRegistered(t)){var r=Le.getBitIndex(t),i=this._componentIdToSystems.get(r);if(i)for(var o,a=s(i);!(o=a()).done;){var c=o.value;c.handleEntityComponentChanged(e),n.add(c)}}for(var u,l=s(this._globalNotifySystems);!(u=l()).done;){var h=u.value;n.has(h)||(h.handleEntityComponentChanged(e),n.add(h))}if(!t)for(var f,d=s(this.systems);!(f=d()).done;){var p=f.value;n.has(p)||p.handleEntityComponentChanged(e)}},t.indexSystemByComponents=function(e){var t=e.matcher;if(t&&!t.isNothing()){var n=t.getCondition();if((n.none.length>0||void 0!==n.tag||void 0!==n.name)&&this._globalNotifySystems.add(e),t.isEmpty())this._globalNotifySystems.add(e);else{for(var r,i=s(n.all);!(r=i()).done;){var o=r.value;this.addSystemToComponentIndex(o,e)}for(var a,c=s(n.any);!(a=c()).done;){var u=a.value;this.addSystemToComponentIndex(u,e)}n.component&&this.addSystemToComponentIndex(n.component,e)}}},t.addSystemToComponentIndex=function(e,t){Le.isRegistered(e)||Le.register(e);var n=Le.getBitIndex(e),r=this._componentIdToSystems.get(n);r||(r=new Set,this._componentIdToSystems.set(n,r)),r.add(t)},t.removeSystemFromIndex=function(e){this._globalNotifySystems.delete(e);for(var t,n=s(this._componentIdToSystems.values());!(t=n()).done;){t.value.delete(e)}},t.addEntity=function(e,t){return void 0===t&&(t=!1),this.entities.add(e),e.scene=this,this.querySystem.addEntity(e,t),t||this.clearSystemEntityCaches(),this.eventSystem.emitSync("entity:added",{entity:e,scene:this}),e},t.createEntities=function(e,t){void 0===t&&(t="Entity");for(var n=[],r=0;r<e;r++){var i=new Ge(t+"_"+r,this.identifierPool.checkOut());i.scene=this,n.push(i)}for(var o=0,s=n;o<s.length;o++){var a=s[o];this.entities.add(a)}return this.querySystem.addEntitiesUnchecked(n),this.eventSystem.emitSync("entities:batch_added",{entities:n,scene:this,count:e}),n},t.destroyEntities=function(e){if(0!==e.length){for(var t,n=s(e);!(t=n()).done;){t.value.setDestroyedState(!0)}for(var r,i=s(e);!(r=i()).done;){r.value.removeAllComponents()}for(var o,a=s(e);!(o=a()).done;){var c=o.value;this.entities.remove(c),this.querySystem.removeEntity(c)}this.querySystem.clearCache(),this.clearSystemEntityCaches()}},t.destroyAllEntities=function(){this.entities.removeAllEntities(),this.querySystem.setEntities([])},t.findEntity=function(e){return this.entities.findEntity(e)},t.findEntityById=function(e){return this.entities.findEntityById(e)},t.findEntitiesByTag=function(e){for(var t,n=[],r=s(this.entities.buffer);!(t=r()).done;){var i=t.value;i.tag===e&&n.push(i)}return n},t.getEntityByName=function(e){return this.findEntity(e)},t.getEntitiesByTag=function(e){return this.findEntitiesByTag(e)},t.queryAll=function(){var e;return(e=this.querySystem).queryAll.apply(e,arguments)},t.queryAny=function(){var e;return(e=this.querySystem).queryAny.apply(e,arguments)},t.queryNone=function(){var e;return(e=this.querySystem).queryNone.apply(e,arguments)},t.query=function(){return new ct},t.addEntityProcessor=function(e){var t,n;if("function"==typeof e){if(n=e,this._services.isRegistered(n)){var r=this._services.resolve(n);return this.logger.debug("System "+n.name+" already registered, returning existing instance"),r}t=M(n)?A(n,this._services):new n}else if(n=(t=e).constructor,this._services.isRegistered(n)){var i=this._services.resolve(n);return i===t?(this.logger.debug("System "+n.name+" instance already registered, returning it"),t):(this.logger.warn("Attempting to register a different instance of "+n.name+", but type is already registered. Returning existing instance."),i)}t.scene=this,t.addOrder=this._systemAddCounter++,t.setPerformanceMonitor(this.performanceMonitor);var o=B(n);return void 0!==(null==o?void 0:o.updateOrder)&&t.setUpdateOrder(o.updateOrder),void 0!==(null==o?void 0:o.enabled)&&(t.enabled=o.enabled),this._services.registerInstance(n,t),this.markSystemsOrderDirty(),this.indexSystemByComponents(t),x(t,this._services),Fe.isEnabled()&&vt.wrapInstance(t,t.systemName,exports.ProfileCategory.ECS),t.initialize(),this.logger.debug("System "+n.name+" registered and initialized"),t},t.registerSystems=function(e){for(var t,n=[],r=s(e);!(t=r()).done;){var i=t.value,o=this.addEntityProcessor(i);n.push(o)}return n},t.addSystem=function(e){return this.addEntityProcessor(e)},t.removeEntityProcessor=function(e){var t=e.constructor;this._services.unregister(t),this.markSystemsOrderDirty(),this.removeSystemFromIndex(e),e.reset()},t.removeSystem=function(e){this.removeEntityProcessor(e)},t.getEntityProcessor=function(e){return this._services.tryResolve(e)},t.getStats=function(){return{entityCount:this.entities.count,processorCount:this.systems.length,componentStorageStats:this.componentStorageManager.getAllStats()}},t.getDebugInfo=function(){var e=this.systems;return{name:this.name||this.constructor.name,entityCount:this.entities.count,processorCount:e.length,isRunning:this._didSceneBegin,entities:this.entities.buffer.map(function(e){return{name:e.name,id:e.id,componentCount:e.components.length,componentTypes:e.components.map(function(e){return W(e)})}}),processors:e.map(function(e){return{name:j(e),updateOrder:e.updateOrder,entityCount:e.entities.length}}),componentStats:this.componentStorageManager.getAllStats()}},t.serialize=function(e){return dt.serialize(this,e)},t.deserialize=function(e,t){dt.deserialize(this,e,t)},t.createIncrementalSnapshot=function(e){this._incrementalBaseSnapshot=pt.createSnapshot(this,e)},t.serializeIncremental=function(e){if(!this._incrementalBaseSnapshot)throw new Error("必须先调用 createIncrementalSnapshot() 创建基础快照");return pt.computeIncremental(this,this._incrementalBaseSnapshot,e)},t.applyIncremental=function(e,t){var n="string"==typeof e||e instanceof Uint8Array?pt.deserializeIncremental(e):e,r=t||Le.getAllComponentNames();pt.applyIncremental(this,n,r)},t.updateIncrementalSnapshot=function(e){this.createIncrementalSnapshot(e)},t.clearIncrementalSnapshot=function(){this._incrementalBaseSnapshot=void 0},t.hasIncrementalSnapshot=function(){return void 0!==this._incrementalBaseSnapshot},o(e,[{key:"systems",get:function(){return!this._systemsOrderDirty&&this._cachedSystems||(this._cachedSystems=this._rebuildSystemsCache(),this._systemsOrderDirty=!1),this._cachedSystems}},{key:"services",get:function(){return this._services}},{key:"performanceMonitor",get:function(){var e;this._performanceMonitor||(this._performanceMonitor=null!==(e=this._services.tryResolve(O))&&void 0!==e?e:new O);return this._performanceMonitor}}])}(),bt=function(){function e(){this.scene=new Ct}var t=e.prototype;return t.named=function(e){return this.scene.name=e,this},t.withEntity=function(e){return this.scene.addEntity(e),this},t.withEntityBuilder=function(e){var t=e(new qe(this.scene,this.scene.componentStorageManager)).build();return this.scene.addEntity(t),this},t.withEntities=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];for(var r=0,i=t;r<i.length;r++){var o=i[r];this.scene.addEntity(o)}return this},t.withSystem=function(e){return this.scene.addSystem(e),this},t.withSystems=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];for(var r=0,i=t;r<i.length;r++){var o=i[r];this.scene.addSystem(o)}return this},t.build=function(){return this.scene},e}(),Et=function(){function e(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),i=1;i<t;i++)n[i-1]=arguments[i];this.component=r(e,n)}var t=e.prototype;return t.set=function(e,t){return this.component[e]=t,this},t.configure=function(e){return e(this.component),this},t.setIf=function(e,t,n){return e&&(this.component[t]=n),this},t.build=function(){return this.component},e}(),Tt=function(){function e(e){this.entities=e}var t=e.prototype;return t.addComponent=function(e){for(var t,n=s(this.entities);!(t=n()).done;){t.value.addComponent(e)}return this},t.removeComponent=function(e){for(var t,n=s(this.entities);!(t=n()).done;){t.value.removeComponentByType(e)}return this},t.setActive=function(e){for(var t,n=s(this.entities);!(t=n()).done;){t.value.active=e}return this},t.setTag=function(e){for(var t,n=s(this.entities);!(t=n()).done;){t.value.tag=e}return this},t.forEach=function(e){return this.entities.forEach(e),this},t.filter=function(t){return new e(this.entities.filter(t))},t.toArray=function(){return this.entities.slice()},t.count=function(){return this.entities.length},e}(),wt=function(){function e(e,t,n){this.scene=e,this.querySystem=t,this.eventSystem=n}var t=e.prototype;return t.createEntity=function(){return new qe(this.scene,this.scene.componentStorageManager)},t.createScene=function(){return new bt},t.createComponent=function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),i=1;i<t;i++)n[i-1]=arguments[i];return r(Et,[e].concat(n))},t.query=function(){return new ot(this.querySystem)},t.find=function(){var e;return(e=this.querySystem).queryAll.apply(e,arguments).entities},t.findFirst=function(){var e,t=(e=this.querySystem).queryAll.apply(e,arguments);return t.entities.length>0?t.entities[0]:null},t.findByName=function(e){return this.scene.findEntity(e)},t.findByTag=function(e){return this.scene.findEntitiesByTag(e)},t.emit=function(e,t){this.eventSystem.emitSync(e,t)},t.emitAsync=function(){var e=n(h().m(function e(t,n){return h().w(function(e){for(;;)switch(e.n){case 0:return e.n=1,this.eventSystem.emit(t,n);case 1:return e.a(2)}},e,this)}));return function(t,n){return e.apply(this,arguments)}}(),t.on=function(e,t){return this.eventSystem.on(e,t)},t.once=function(e,t){return this.eventSystem.once(e,t)},t.off=function(e,t){this.eventSystem.off(e,t)},t.batch=function(e){return new Tt(e)},t.getStats=function(){return{entityCount:this.scene.entities.count,systemCount:this.scene.systems.length,componentStats:this.scene.componentStorageManager.getAllStats(),queryStats:this.querySystem.getStats(),eventStats:this.eventSystem.getStats()}},e}();function Mt(e,t,n){return new wt(e,t,n)}var At,xt=$("World"),It=function(){function e(e){void 0===e&&(e={}),this._scenes=new Map,this._activeScenes=new Set,this._globalSystems=[],this._isActive=!1,this._config=a({name:"World",debug:!1,maxScenes:10,autoCleanup:!0},e),this.name=this._config.name,this._createdAt=Date.now(),this._services=new St}var t=e.prototype;return t.createScene=function(e,t){if(!e||"string"!=typeof e||""===e.trim())throw new Error("Scene name不能为空");if(this._scenes.has(e))throw new Error("Scene name '"+e+"' 已存在于World '"+this.name+"' 中");if(this._scenes.size>=this._config.maxScenes)throw new Error("World '"+this.name+"' 已达到最大Scene数量限制: "+this._config.maxScenes);var n=t||new Ct;if(this._config.debug){var r=new O;r.enable(),n.services.registerInstance(O,r)}return"id"in n&&(n.id=e),"name"in n&&!n.name&&(n.name=e),this._scenes.set(e,n),n.initialize(),n},t.removeScene=function(e){var t=this._scenes.get(e);return!!t&&(this._activeScenes.has(e)&&this.setSceneActive(e,!1),t.end(),this._scenes.delete(e),xt.info("从World '"+this.name+"' 中移除Scene: "+e),!0)},t.getScene=function(e){return this._scenes.get(e)||null},t.getSceneIds=function(){return Array.from(this._scenes.keys())},t.getAllScenes=function(){return Array.from(this._scenes.values())},t.removeAllScenes=function(){for(var e=0,t=Array.from(this._scenes.keys());e<t.length;e++){var n=t[e];this.removeScene(n)}xt.info("从World '"+this.name+"' 中移除所有Scene")},t.setSceneActive=function(e,t){var n=this._scenes.get(e);n?t?(this._activeScenes.add(e),n.begin&&n.begin(),xt.debug("在World '"+this.name+"' 中激活Scene: "+e)):(this._activeScenes.delete(e),xt.debug("在World '"+this.name+"' 中停用Scene: "+e)):xt.warn("Scene '"+e+"' 不存在于World '"+this.name+"' 中")},t.isSceneActive=function(e){return this._activeScenes.has(e)},t.getActiveSceneCount=function(){return this._activeScenes.size},t.addGlobalSystem=function(e){return this._globalSystems.includes(e)||(this._globalSystems.push(e),e.initialize&&e.initialize(),xt.debug("在World '"+this.name+"' 中添加全局System: "+e.name)),e},t.removeGlobalSystem=function(e){var t=this._globalSystems.indexOf(e);return-1!==t&&(this._globalSystems.splice(t,1),e.reset&&e.reset(),xt.debug("从World '"+this.name+"' 中移除全局System: "+e.name),!0)},t.getGlobalSystem=function(e){for(var t,n=s(this._globalSystems);!(t=n()).done;){var r=t.value;if(r instanceof e)return r}return null},t.start=function(){if(!this._isActive){this._isActive=!0;for(var e,t=s(this._globalSystems);!(e=t()).done;){var n=e.value;n.initialize&&n.initialize()}xt.info("启动World: "+this.name)}},t.stop=function(){if(this._isActive){for(var e,t=s(this._activeScenes);!(e=t()).done;){var n=e.value;this.setSceneActive(n,!1)}for(var r,i=s(this._globalSystems);!(r=i()).done;){var o=r.value;o.reset&&o.reset()}this._isActive=!1,xt.info("停止World: "+this.name)}},t.updateGlobalSystems=function(){if(this._isActive)for(var e,t=s(this._globalSystems);!(e=t()).done;){var n=e.value;n.update&&n.update()}},t.updateScenes=function(){if(this._isActive){for(var e,t=s(this._activeScenes);!(e=t()).done;){var n=e.value,r=this._scenes.get(n);r&&r.update&&r.update()}this._config.autoCleanup&&this.shouldAutoCleanup()&&this.cleanup()}},t.destroy=function(){xt.info("销毁World: "+this.name),this.stop();for(var e=0,t=Array.from(this._scenes.keys());e<t.length;e++){var n=t[e];this.removeScene(n)}for(var r,i=s(this._globalSystems);!(r=i()).done;){var o=r.value;o.destroy?o.destroy():o.reset&&o.reset()}this._globalSystems.length=0,this._services.clear(),this._scenes.clear(),this._activeScenes.clear()},t.getStatus=function(){var e=this;return{name:this.name,isActive:this._isActive,sceneCount:this._scenes.size,activeSceneCount:this._activeScenes.size,globalSystemCount:this._globalSystems.length,createdAt:this._createdAt,config:a({},this._config),scenes:Array.from(this._scenes.keys()).map(function(t){var n;return{id:t,isActive:e._activeScenes.has(t),name:(null===(n=e._scenes.get(t))||void 0===n?void 0:n.name)||t}})}},t.getStats=function(){for(var e,t={totalEntities:0,totalSystems:this._globalSystems.length,memoryUsage:0,performance:{averageUpdateTime:0,maxUpdateTime:0}},n=s(this._scenes.values());!(e=n()).done;){var r=e.value;r.entities&&(t.totalEntities+=r.entities.count),r.systems&&(t.totalSystems+=r.systems.length)}return t},t.shouldAutoCleanup=function(){for(var e,t=Date.now(),n=s(this._scenes);!(e=n()).done;){var r=e.value,i=r[0],o=r[1];if(!this._activeScenes.has(i)&&o.entities&&0===o.entities.count&&t-this._createdAt>3e5)return!0}return!1},t.cleanup=function(){for(var e=Array.from(this._scenes.keys()),t=Date.now(),n=0,r=e;n<r.length;n++){var i=r[n],o=this._scenes.get(i);o&&!this._activeScenes.has(i)&&o.entities&&0===o.entities.count&&t-this._createdAt>3e5&&(this.removeScene(i),xt.debug("自动清理空Scene: "+i+" from World "+this.name))}},o(e,[{key:"services",get:function(){return this._services}},{key:"isActive",get:function(){return this._isActive}},{key:"sceneCount",get:function(){return this._scenes.size}},{key:"createdAt",get:function(){return this._createdAt}}])}(),kt=function(){function e(e){this._nextScene=null,this._ecsAPI=null,this._logger=$("SceneManager"),this._performanceMonitor=null,this._defaultWorld=new It({name:"__default__"}),this._defaultWorld.start(),this._performanceMonitor=e||null}var t=e.prototype;return t.setSceneChangedCallback=function(e){this._onSceneChangedCallback=e},t.setScene=function(t){return this._defaultWorld.removeAllScenes(),this._performanceMonitor&&t.services.registerInstance(O,this._performanceMonitor),this._defaultWorld.createScene(e.DEFAULT_SCENE_ID,t),this._defaultWorld.setSceneActive(e.DEFAULT_SCENE_ID,!0),t.querySystem&&t.eventSystem?this._ecsAPI=Mt(t,t.querySystem,t.eventSystem):this._ecsAPI=null,g.sceneChanged(),this._onSceneChangedCallback&&this._onSceneChangedCallback(),this._logger.info("Scene changed to: "+t.name),t},t.loadScene=function(e){this._nextScene=e,this._logger.info("Scheduled scene load: "+e.name)},t.update=function(){this._nextScene&&(this.setScene(this._nextScene),this._nextScene=null),this._defaultWorld.updateGlobalSystems(),this._defaultWorld.updateScenes()},t.destroy=function(){this._logger.info("SceneManager destroying"),this._defaultWorld.destroy(),this._nextScene=null,this._ecsAPI=null,this._logger.info("SceneManager destroyed")},t.dispose=function(){this.destroy()},o(e,[{key:"currentScene",get:function(){return this._defaultWorld.getScene(e.DEFAULT_SCENE_ID)}},{key:"api",get:function(){return this._ecsAPI}},{key:"hasScene",get:function(){return null!==this._defaultWorld.getScene(e.DEFAULT_SCENE_ID)}},{key:"hasPendingScene",get:function(){return null!==this._nextScene}}])}();kt.DEFAULT_SCENE_ID="__main__",exports.DebugConfigService=function(){function e(){this._config={enabled:!1,websocketUrl:"",debugFrameRate:30,autoReconnect:!0,channels:{entities:!0,systems:!0,performance:!0,components:!0,scenes:!0}}}var t=e.prototype;return t.setConfig=function(e){this._config=e},t.getConfig=function(){return this._config},t.isEnabled=function(){return this._config.enabled},t.dispose=function(){},e}(),exports.DebugConfigService=v([E(),y("design:paramtypes",[])],exports.DebugConfigService),exports.DebugManager=function(){function e(){this.frameCounter=0,this.lastSendTime=0,this.sendInterval=0,this.isRunning=!1,this.originalConsole={log:console.log.bind(console),debug:console.debug.bind(console),info:console.info.bind(console),warn:console.warn.bind(console),error:console.error.bind(console)}}var t=e.prototype;return t.onInitialize=function(){this.config=this.configService.getConfig(),this.entityCollector=new Te,this.systemCollector=new we,this.performanceCollector=new Me,this.componentCollector=new Ie,this.sceneCollector=new Oe,this.advancedProfilerCollector=new Ne,Fe.setEnabled(!0),this.webSocketManager=new De(this.config.websocketUrl,!1!==this.config.autoReconnect),this.webSocketManager.setMessageHandler(this.handleMessage.bind(this));var e=this.config.debugFrameRate||30;this.sendInterval=1e3/e,this.interceptConsole(),this.start()},t.start=function(){this.isRunning||(this.isRunning=!0,this.connectWebSocket())},t.stop=function(){this.isRunning&&(this.isRunning=!1,this.webSocketManager.disconnect())},t.interceptConsole=function(){var e=this;console.log=function(){for(var t,n=arguments.length,r=new Array(n),i=0;i<n;i++)r[i]=arguments[i];e.sendLog("info",e.formatLogMessage(r)),(t=e.originalConsole).log.apply(t,r)},console.debug=function(){for(var t,n=arguments.length,r=new Array(n),i=0;i<n;i++)r[i]=arguments[i];e.sendLog("debug",e.formatLogMessage(r)),(t=e.originalConsole).debug.apply(t,r)},console.info=function(){for(var t,n=arguments.length,r=new Array(n),i=0;i<n;i++)r[i]=arguments[i];e.sendLog("info",e.formatLogMessage(r)),(t=e.originalConsole).info.apply(t,r)},console.warn=function(){for(var t,n=arguments.length,r=new Array(n),i=0;i<n;i++)r[i]=arguments[i];e.sendLog("warn",e.formatLogMessage(r)),(t=e.originalConsole).warn.apply(t,r)},console.error=function(){for(var t,n=arguments.length,r=new Array(n),i=0;i<n;i++)r[i]=arguments[i];e.sendLog("error",e.formatLogMessage(r)),(t=e.originalConsole).error.apply(t,r)}},t.formatLogMessage=function(e){var t=this;return e.map(function(e){if("string"==typeof e)return e;if(e instanceof Error)return e.name+": "+e.message;if(null===e)return"null";if(void 0===e)return"undefined";if("object"==typeof e)try{return t.safeStringify(e,6)}catch(t){return Object.prototype.toString.call(e)}return String(e)}).join(" ")},t.safeStringify=function(e,t){void 0===t&&(t=6);var n=new WeakSet,r=function(e,i){if(null===e)return null;if(void 0!==e){if("object"!=typeof e)return e;if(i>=t)return"[Max Depth Reached]";if(n.has(e))return"[Circular]";if(n.add(e),Array.isArray(e)){var o=e.map(function(e){return r(e,i+1)});return n.delete(e),o}var s={};for(var a in e)Object.prototype.hasOwnProperty.call(e,a)&&(s[a]=r(e[a],i+1));return n.delete(e),s}};return JSON.stringify(r(e,0))},t.sendLog=function(e,t){if(this.webSocketManager.getConnectionStatus())try{this.webSocketManager.send({type:"log",data:{level:e,message:t,timestamp:(new Date).toISOString()}})}catch(e){}},t.updateConfig=function(e){this.config=e;var t=e.debugFrameRate||30;this.sendInterval=1e3/t,this.webSocketManager&&e.websocketUrl&&(this.webSocketManager.disconnect(),this.webSocketManager=new De(e.websocketUrl,!1!==e.autoReconnect),this.webSocketManager.setMessageHandler(this.handleMessage.bind(this)),this.connectWebSocket())},t.update=function(e){if(this.isRunning&&this.config.enabled){this.frameCounter++;var t=Date.now();t-this.lastSendTime>=this.sendInterval&&(this.sendDebugData(),this.lastSendTime=t)}},t.onSceneChanged=function(){this.isRunning&&this.config.enabled&&this.sendDebugData()},t.handleMessage=function(e){try{switch(e.type){case"capture_memory_snapshot":this.handleMemorySnapshotRequest();break;case"config_update":e.config&&this.updateConfig(a({},this.config,e.config));break;case"expand_lazy_object":this.handleExpandLazyObjectRequest(e);break;case"get_component_properties":this.handleGetComponentPropertiesRequest(e);break;case"get_raw_entity_list":this.handleGetRawEntityListRequest(e);break;case"get_entity_details":this.handleGetEntityDetailsRequest(e);break;case"get_advanced_profiler_data":this.handleGetAdvancedProfilerDataRequest(e);break;case"set_profiler_selected_function":this.handleSetProfilerSelectedFunction(e);break;case"ping":this.webSocketManager.send({type:"pong",timestamp:Date.now()})}}catch(t){e.requestId&&this.webSocketManager.send({type:"error_response",requestId:e.requestId,error:t instanceof Error?t.message:String(t)})}},t.handleExpandLazyObjectRequest=function(e){try{var t=e.entityId,n=e.componentIndex,r=e.propertyPath,i=e.requestId;if(void 0===t||void 0===n||!r)return void this.webSocketManager.send({type:"expand_lazy_object_response",requestId:i,error:"缺少必要参数"});var o=this.sceneManager.currentScene,s=this.entityCollector.expandLazyObject(t,n,r,o);this.webSocketManager.send({type:"expand_lazy_object_response",requestId:i,data:s})}catch(t){this.webSocketManager.send({type:"expand_lazy_object_response",requestId:e.requestId,error:t instanceof Error?t.message:String(t)})}},t.handleGetComponentPropertiesRequest=function(e){try{var t=e.entityId,n=e.componentIndex,r=e.requestId;if(void 0===t||void 0===n)return void this.webSocketManager.send({type:"get_component_properties_response",requestId:r,error:"缺少必要参数"});var i=this.sceneManager.currentScene,o=this.entityCollector.getComponentProperties(t,n,i);this.webSocketManager.send({type:"get_component_properties_response",requestId:r,data:o})}catch(t){this.webSocketManager.send({type:"get_component_properties_response",requestId:e.requestId,error:t instanceof Error?t.message:String(t)})}},t.handleGetRawEntityListRequest=function(e){try{var t=e.requestId,n=this.sceneManager.currentScene,r=this.entityCollector.getRawEntityList(n);this.webSocketManager.send({type:"get_raw_entity_list_response",requestId:t,data:r})}catch(t){this.webSocketManager.send({type:"get_raw_entity_list_response",requestId:e.requestId,error:t instanceof Error?t.message:String(t)})}},t.handleGetEntityDetailsRequest=function(e){try{var t=e.entityId,n=e.requestId;if(void 0===t)return void this.webSocketManager.send({type:"get_entity_details_response",requestId:n,error:"缺少实体ID参数"});var r=this.sceneManager.currentScene,i=this.entityCollector.getEntityDetails(t,r);this.webSocketManager.send({type:"get_entity_details_response",requestId:n,data:i})}catch(t){this.webSocketManager.send({type:"get_entity_details_response",requestId:e.requestId,error:t instanceof Error?t.message:String(t)})}},t.handleGetAdvancedProfilerDataRequest=function(e){try{var t=e.requestId,n=Fe.isEnabled()?this.advancedProfilerCollector.collectAdvancedData(this.performanceMonitor):this.advancedProfilerCollector.collectFromLegacyMonitor(this.performanceMonitor);this.webSocketManager.send({type:"get_advanced_profiler_data_response",requestId:t,data:n})}catch(t){this.webSocketManager.send({type:"get_advanced_profiler_data_response",requestId:e.requestId,error:t instanceof Error?t.message:String(t)})}},t.handleSetProfilerSelectedFunction=function(e){try{var t=e.functionName,n=e.requestId;this.advancedProfilerCollector.setSelectedFunction(t||null),this.sendDebugData(),this.webSocketManager.send({type:"set_profiler_selected_function_response",requestId:n,success:!0})}catch(t){this.webSocketManager.send({type:"set_profiler_selected_function_response",requestId:e.requestId,error:t instanceof Error?t.message:String(t)})}},t.handleMemorySnapshotRequest=function(){try{var e=this.captureMemorySnapshot();this.webSocketManager.send({type:"memory_snapshot_response",data:e})}catch(e){this.webSocketManager.send({type:"memory_snapshot_error",error:e instanceof Error?e.message:"内存快照捕获失败"})}},t.captureMemorySnapshot=function(){var e=Date.now(),t=this.collectBaseMemoryInfo(),n=this.sceneManager.currentScene,r=this.entityCollector.collectEntityDataWithMemory(n),i=null!=n&&n.entities?this.collectComponentMemoryStats(n.entities):{totalMemory:0,componentTypes:0,totalInstances:0,breakdown:[]},o=this.collectSystemMemoryStats(),s=this.collectPoolMemoryStats(),a=this.collectPerformanceStats(),c=r.entitiesPerArchetype.reduce(function(e,t){return e+t.memory},0);return{timestamp:e,version:"2.0",summary:{totalEntities:r.totalEntities,totalMemoryUsage:t.usedMemory,totalMemoryLimit:t.totalMemory,memoryUtilization:t.usedMemory/t.totalMemory*100,gcCollections:t.gcCollections,entityMemory:c,componentMemory:i.totalMemory,systemMemory:o.totalMemory,poolMemory:s.totalMemory},baseMemory:t,entities:{totalMemory:c,entityCount:r.totalEntities,archetypes:r.entitiesPerArchetype,largestEntities:r.topEntitiesByComponents},components:i,systems:o,pools:s,performance:a}},t.collectBaseMemoryInfo=function(){var e={totalMemory:0,usedMemory:0,freeMemory:0,gcCollections:0,heapInfo:null,detailedMemory:void 0};try{var t=performance;if(t.memory){var n=t.memory;e.totalMemory=n.jsHeapSizeLimit||536870912,e.usedMemory=n.usedJSHeapSize||0,e.freeMemory=e.totalMemory-e.usedMemory,e.heapInfo={totalJSHeapSize:n.totalJSHeapSize||0,usedJSHeapSize:n.usedJSHeapSize||0,jsHeapSizeLimit:n.jsHeapSizeLimit||0}}else e.totalMemory=536870912,e.freeMemory=536870912;t.measureUserAgentSpecificMemory&&t.measureUserAgentSpecificMemory().then(function(t){e.detailedMemory=t}).catch(function(){})}catch(e){}return e},t.collectComponentMemoryStats=function(e){for(var t,n=new Map,r=0,i=new Map,o=s(e.buffer);!(t=o()).done;){var a=t.value;if(a&&!a.destroyed&&a.components)for(var c,u=s(a.components);!(c=u()).done;){var l=W(c.value);i.set(l,(i.get(l)||0)+1)}}for(var h,f=s(i.entries());!(h=f()).done;){var d=h.value,p=d[0],m=d[1],v=this.componentCollector.calculateDetailedComponentMemory(p),y=v*m;r+=y;for(var g,_=[],S=0,C=s(e.buffer);!(g=C()).done;){var b=g.value;if(b&&!b.destroyed&&b.components){for(var E,T=s(b.components);!(E=T()).done;){if(W(E.value)===p&&(_.push({entityId:b.id,entityName:b.name||"Entity_"+b.id,memory:v}),++S>=100))break}if(S>=100)break}}n.set(p,{count:m,totalMemory:y,instances:_.slice(0,10)})}var w=Array.from(n.entries()).map(function(e){var t=e[0],n=e[1];return{typeName:t,instanceCount:n.count,totalMemory:n.totalMemory,averageMemory:n.totalMemory/n.count,percentage:r>0?n.totalMemory/r*100:0,largestInstances:n.instances.sort(function(e,t){return t.memory-e.memory}).slice(0,3)}}).sort(function(e,t){return t.totalMemory-e.totalMemory});return{totalMemory:r,componentTypes:n.size,totalInstances:Array.from(n.values()).reduce(function(e,t){return e+t.count},0),breakdown:w}},t.collectSystemMemoryStats=function(){var e=this.sceneManager.currentScene,t=0,n=[];try{var r=null==e?void 0:e.systems;if(r)for(var i,o=new Map,a=s(r);!(i=a()).done;){var c=i.value,u=j(c),l=void 0;o.has(u)?l=o.get(u):(l=this.calculateQuickSystemSize(c),o.set(u,l)),t+=l,n.push({name:u,memory:l,enabled:!1!==c.enabled,updateOrder:c.updateOrder||0})}}catch(e){}return{totalMemory:t,systemCount:n.length,breakdown:n.sort(function(e,t){return t.memory-e.memory})}},t.calculateQuickSystemSize=function(e){if(!e||"object"!=typeof e)return 64;var t=128;try{for(var n=Object.keys(e),r=0;r<Math.min(n.length,15);r++){var i=n[r];if(i&&"entities"!==i&&"scene"!==i&&"constructor"!==i){var o=e[i];t+=2*i.length,"string"==typeof o?t+=Math.min(2*o.length,100):"number"==typeof o?t+=8:"boolean"==typeof o?t+=4:Array.isArray(o)?t+=40+Math.min(8*o.length,200):"object"==typeof o&&null!==o&&(t+=64)}}}catch(e){return 128}return Math.max(t,64)},t.collectPoolMemoryStats=function(){var e=0,t=[];try{for(var n,r=s(xe.getInstance().getPoolStats().entries());!(n=r()).done;){var i=n.value,o=i[0],a=i[1],c=32*a.maxSize;e+=c,t.push({typeName:o,maxSize:a.maxSize,currentSize:a.currentSize||0,estimatedMemory:c,utilization:a.currentSize?a.currentSize/a.maxSize*100:0})}}catch(e){}try{for(var u=D.getAllPoolStats(),l=0,h=Object.entries(u);l<h.length;l++){var f=h[l],d=f[0],p=f[1];e+=p.estimatedMemoryUsage,t.push({typeName:"Pool_"+d,maxSize:p.maxSize,currentSize:p.size,estimatedMemory:p.estimatedMemoryUsage,utilization:p.size/p.maxSize*100,hitRate:100*p.hitRate})}}catch(e){}return{totalMemory:e,poolCount:t.length,breakdown:t.sort(function(e,t){return t.estimatedMemory-e.estimatedMemory})}},t.collectPerformanceStats=function(){try{var e;if(!this.performanceMonitor)return{enabled:!1};var t=this.performanceMonitor.getAllSystemStats(),n=this.performanceMonitor.getPerformanceWarnings();return{enabled:null!==(e=this.performanceMonitor.enabled)&&void 0!==e&&e,systemCount:t.size,warnings:n.slice(0,10),topSystems:Array.from(t.entries()).map(function(e){var t=e[0],n=e[1];return{name:t,averageTime:n.averageTime,maxTime:n.maxTime,samples:n.executionCount}}).sort(function(e,t){return t.averageTime-e.averageTime}).slice(0,5)}}catch(e){return{enabled:!1,error:e instanceof Error?e.message:String(e)}}},t.getDebugData=function(){var e=Date.now(),t=this.sceneManager.currentScene,n={timestamp:e,frameworkVersion:"1.0.0",isRunning:this.isRunning,frameworkLoaded:!0,currentScene:(null==t?void 0:t.name)||"Unknown"};return this.config.channels.entities&&(n.entities=this.entityCollector.collectEntityData(t)),this.config.channels.systems&&(n.systems=this.systemCollector.collectSystemData(this.performanceMonitor,t)),this.config.channels.performance&&(n.performance=this.performanceCollector.collectPerformanceData(this.performanceMonitor)),this.config.channels.components&&(n.components=this.componentCollector.collectComponentData(t)),this.config.channels.scenes&&(n.scenes=this.sceneCollector.collectSceneData(t)),n},t.connectWebSocket=function(){var e=n(h().m(function e(){return h().w(function(e){for(;;)switch(e.p=e.n){case 0:return e.p=0,e.n=1,this.webSocketManager.connect();case 1:e.n=3;break;case 2:e.p=2,e.v;case 3:return e.a(2)}},e,this,[[0,2]])}));return function(){return e.apply(this,arguments)}}(),t.sendDebugData=function(){if(this.webSocketManager.getConnectionStatus())try{var e={type:"debug_data",data:this.getDebugData(),advancedProfiler:Fe.isEnabled()?this.advancedProfilerCollector.collectAdvancedData(this.performanceMonitor):null};this.webSocketManager.send(e)}catch(e){}},t.dispose=function(){this.stop(),console.log=this.originalConsole.log,console.debug=this.originalConsole.debug,console.info=this.originalConsole.info,console.warn=this.originalConsole.warn,console.error=this.originalConsole.error},e}(),v([w(kt),y("design:type",kt)],exports.DebugManager.prototype,"sceneManager",void 0),v([w(O),y("design:type",O)],exports.DebugManager.prototype,"performanceMonitor",void 0),v([w(exports.DebugConfigService),y("design:type",exports.DebugConfigService)],exports.DebugManager.prototype,"configService",void 0),exports.DebugManager=v([E(),T()],exports.DebugManager),exports.PluginState=void 0,(At=exports.PluginState||(exports.PluginState={})).NotInstalled="not_installed",At.Installed="installed",At.Failed="failed";var Ot=$("PluginManager"),Dt=function(){function e(){this._plugins=new Map,this._metadata=new Map,this._core=null,this._services=null}var t=e.prototype;return t.initialize=function(e,t){this._core=e,this._services=t,Ot.info("PluginManager initialized")},t.install=function(){var e=n(h().m(function e(t){var n,r;return h().w(function(e){for(;;)switch(e.p=e.n){case 0:if(this._core&&this._services){e.n=1;break}throw new Error("PluginManager not initialized. Call initialize() first.");case 1:if(!this._plugins.has(t.name)){e.n=2;break}return Ot.warn("Plugin "+t.name+" is already installed"),e.a(2);case 2:return t.dependencies&&t.dependencies.length>0&&this._checkDependencies(t),n={name:t.name,version:t.version,state:exports.PluginState.NotInstalled,installedAt:Date.now()},this._metadata.set(t.name,n),e.p=3,Ot.info("Installing plugin: "+t.name+" v"+t.version),e.n=4,t.install(this._core,this._services);case 4:this._plugins.set(t.name,t),n.state=exports.PluginState.Installed,Ot.info("Plugin "+t.name+" installed successfully"),e.n=6;break;case 5:throw e.p=5,r=e.v,n.state=exports.PluginState.Failed,n.error=r instanceof Error?r.message:String(r),Ot.error("Failed to install plugin "+t.name+":",r),r;case 6:return e.a(2)}},e,this,[[3,5]])}));return function(t){return e.apply(this,arguments)}}(),t.uninstall=function(){var e=n(h().m(function e(t){var n,r;return h().w(function(e){for(;;)switch(e.p=e.n){case 0:if(n=this._plugins.get(t)){e.n=1;break}throw new Error("Plugin "+t+" is not installed");case 1:return this._checkDependents(t),e.p=2,Ot.info("Uninstalling plugin: "+t),e.n=3,n.uninstall();case 3:this._plugins.delete(t),this._metadata.delete(t),Ot.info("Plugin "+t+" uninstalled successfully"),e.n=5;break;case 4:throw e.p=4,r=e.v,Ot.error("Failed to uninstall plugin "+t+":",r),r;case 5:return e.a(2)}},e,this,[[2,4]])}));return function(t){return e.apply(this,arguments)}}(),t.getPlugin=function(e){return this._plugins.get(e)},t.getMetadata=function(e){return this._metadata.get(e)},t.getAllPlugins=function(){return Array.from(this._plugins.values())},t.getAllMetadata=function(){return Array.from(this._metadata.values())},t.isInstalled=function(e){return this._plugins.has(e)},t._checkDependencies=function(e){if(e.dependencies){for(var t,n=[],r=s(e.dependencies);!(t=r()).done;){var i=t.value;this._plugins.has(i)||n.push(i)}if(n.length>0)throw new Error("Plugin "+e.name+" has unmet dependencies: "+n.join(", "))}},t._checkDependents=function(e){for(var t,n=[],r=s(this._plugins.values());!(t=r()).done;){var i=t.value;i.dependencies&&i.dependencies.includes(e)&&n.push(i.name)}if(n.length>0)throw new Error("Cannot uninstall plugin "+e+": it is required by "+n.join(", "))},t.dispose=function(){for(var e,t=s(Array.from(this._plugins.values()).reverse());!(e=t()).done;){var n=e.value;try{Ot.info("Disposing plugin: "+n.name),n.uninstall()}catch(e){Ot.error("Error disposing plugin "+n.name+":",e)}}this._plugins.clear(),this._metadata.clear(),this._core=null,this._services=null,Ot.info("PluginManager disposed")},e}(),Pt=$("WorldManager"),Rt=function(){function e(e){void 0===e&&(e={}),this._worlds=new Map,this._isRunning=!1,this._framesSinceCleanup=0,this._config=a({maxWorlds:50,autoCleanup:!0,cleanupFrameInterval:1800,debug:!1},e),this._isRunning=!0,Pt.info("WorldManager已初始化",{maxWorlds:this._config.maxWorlds,autoCleanup:this._config.autoCleanup,cleanupFrameInterval:this._config.cleanupFrameInterval})}var t=e.prototype;return t.createWorld=function(e,t){var n,r;if(!e||"string"!=typeof e||""===e.trim())throw new Error("World name不能为空");if(this._worlds.has(e))throw new Error("World name '"+e+"' 已存在");if(this._worlds.size>=this._config.maxWorlds)throw new Error("已达到最大World数量限制: "+this._config.maxWorlds);var i=a({name:e,debug:null!==(n=null!==(r=null==t?void 0:t.debug)&&void 0!==r?r:this._config.debug)&&void 0!==n&&n},void 0!==(null==t?void 0:t.maxScenes)&&{maxScenes:t.maxScenes},void 0!==(null==t?void 0:t.autoCleanup)&&{autoCleanup:t.autoCleanup}),o=new It(i);return this._worlds.set(e,o),o},t.removeWorld=function(e){var t=this._worlds.get(e);return!!t&&(t.destroy(),this._worlds.delete(e),Pt.info("移除World: "+e),!0)},t.getWorld=function(e){return this._worlds.get(e)||null},t.getWorldIds=function(){return Array.from(this._worlds.keys())},t.getAllWorlds=function(){return Array.from(this._worlds.values())},t.setWorldActive=function(e,t){var n=this._worlds.get(e);n?t?(n.start(),Pt.debug("激活World: "+e)):(n.stop(),Pt.debug("停用World: "+e)):Pt.warn("World '"+e+"' 不存在")},t.isWorldActive=function(e){var t,n=this._worlds.get(e);return null!==(t=null==n?void 0:n.isActive)&&void 0!==t&&t},t.updateAll=function(){if(this._isRunning){for(var e,t=s(this._worlds.values());!(e=t()).done;){var n=e.value;n.isActive&&(n.updateGlobalSystems(),n.updateScenes())}this._config.autoCleanup&&(this._framesSinceCleanup++,this._framesSinceCleanup>=this._config.cleanupFrameInterval&&(this.cleanup(),this._framesSinceCleanup=0,this._config.debug&&Pt.debug("执行定期清理World (间隔: "+this._config.cleanupFrameInterval+" 帧)")))}},t.getActiveWorlds=function(){for(var e,t=[],n=s(this._worlds.values());!(e=n()).done;){var r=e.value;r.isActive&&t.push(r)}return t},t.startAll=function(){this._isRunning=!0;for(var e,t=s(this._worlds.values());!(e=t()).done;){e.value.start()}Pt.info("启动所有World")},t.stopAll=function(){this._isRunning=!1;for(var e,t=s(this._worlds.values());!(e=t()).done;){e.value.stop()}Pt.info("停止所有World")},t.findWorlds=function(e){for(var t,n=[],r=s(this._worlds.values());!(t=r()).done;){var i=t.value;e(i)&&n.push(i)}return n},t.findWorldByName=function(e){for(var t,n=s(this._worlds.values());!(t=n()).done;){var r=t.value;if(r.name===e)return r}return null},t.getStats=function(){for(var e,t={totalWorlds:this._worlds.size,activeWorlds:this.activeWorldCount,totalScenes:0,totalEntities:0,totalSystems:0,memoryUsage:0,isRunning:this._isRunning,config:a({},this._config),worlds:[]},n=s(this._worlds);!(e=n()).done;){var r=e.value,i=r[0],o=r[1],c=o.getStats();t.totalScenes+=c.totalSystems,t.totalEntities+=c.totalEntities,t.totalSystems+=c.totalSystems,t.worlds.push(a({id:i,name:o.name,isActive:o.isActive,sceneCount:o.sceneCount},c))}return t},t.getDetailedStatus=function(){return a({},this.getStats(),{worlds:Array.from(this._worlds.entries()).map(function(e){var t=e[0],n=e[1];return{id:t,isActive:n.isActive,status:n.getStatus()}})})},t.cleanup=function(){for(var e,t=[],n=s(this._worlds);!(e=n()).done;){var r=e.value,i=r[0],o=r[1];this.shouldCleanupWorld(o)&&t.push(i)}for(var a=0,c=t;a<c.length;a++){var u=c[a];this.removeWorld(u)}return t.length>0&&Pt.debug("清理了 "+t.length+" 个World"),t.length},t.destroy=function(){Pt.info("正在销毁WorldManager..."),this.stopAll();for(var e=0,t=Array.from(this._worlds.keys());e<t.length;e++){var n=t[e];this.removeWorld(n)}this._worlds.clear(),this._isRunning=!1,Pt.info("WorldManager已销毁")},t.dispose=function(){this.destroy()},t.shouldCleanupWorld=function(e){if(e.isActive)return!1;var t=Date.now()-e.createdAt>6e5;return(0===e.sceneCount||!e.getAllScenes().some(function(e){return e.entities&&e.entities.count>0}))&&t},o(e,[{key:"worldCount",get:function(){return this._worlds.size}},{key:"activeWorldCount",get:function(){for(var e,t=0,n=s(this._worlds.values());!(e=n()).done;){e.value.isActive&&t++}return t}},{key:"isRunning",get:function(){return this._isRunning}},{key:"config",get:function(){return a({},this._config)}}])}(),Ft=function(){function e(t){var n,r,i=this;if(void 0===t&&(t={}),e._instance=this,this._config=a({debug:!0},t),this._serviceContainer=new St,this._timerManager=new exports.TimerManager,this._serviceContainer.registerInstance(exports.TimerManager,this._timerManager),this._performanceMonitor=new O,this._serviceContainer.registerInstance(O,this._performanceMonitor),this._config.debug&&this._performanceMonitor.enable(),this._poolManager=new P,this._serviceContainer.registerInstance(P,this._poolManager),this._sceneManager=new kt(this._performanceMonitor),this._serviceContainer.registerInstance(kt,this._sceneManager),this._sceneManager.setSceneChangedCallback(function(){i._debugManager&&i._debugManager.onSceneChanged()}),this._worldManager=new Rt(a({debug:!!this._config.debug},this._config.worldManagerConfig)),this._serviceContainer.registerInstance(Rt,this._worldManager),this._pluginManager=new Dt,this._pluginManager.initialize(this,this._serviceContainer),this._serviceContainer.registerInstance(Dt,this._pluginManager),this.debug=null===(n=this._config.debug)||void 0===n||n,null!==(r=this._config.debugConfig)&&void 0!==r&&r.enabled){var o=new exports.DebugConfigService;o.setConfig(this._config.debugConfig),this._serviceContainer.registerInstance(exports.DebugConfigService,o),this._serviceContainer.registerSingleton(exports.DebugManager,function(e){return A(exports.DebugManager,e)}),this._debugManager=this._serviceContainer.resolve(exports.DebugManager),this._debugManager.onInitialize()}this.initialize()}e.create=function(t){if(void 0===t&&(t=!0),null==this._instance){var n="boolean"==typeof t?{debug:t}:t;this._instance=new e(n)}else this._logger.warn("Core实例已创建,返回现有实例");return this._instance},e.setScene=function(t){if(!this._instance)throw e._logger.warn("Core实例未创建,请先调用Core.create()"),new Error("Core实例未创建");return this._instance._sceneManager.setScene(t)},e.loadScene=function(t){this._instance?this._instance._sceneManager.loadScene(t):e._logger.warn("Core实例未创建,请先调用Core.create()")},e.update=function(t){this._instance?this._instance.updateInternal(t):e._logger.warn("Core实例未创建,请先调用Core.create()")},e.schedule=function(e,t,n,r){if(void 0===t&&(t=!1),!this._instance)throw new Error("Core实例未创建,请先调用Core.create()");if(!r)throw new Error("onTime callback is required");return this._instance._timerManager.schedule(e,t,n,r)},e.enableDebug=function(t){if(this._instance){if(this._instance._debugManager)this._instance._debugManager.updateConfig(t);else{var n=new exports.DebugConfigService;n.setConfig(t),this._instance._serviceContainer.registerInstance(exports.DebugConfigService,n),this._instance._serviceContainer.registerSingleton(exports.DebugManager,function(e){return A(exports.DebugManager,e)}),this._instance._debugManager=this._instance._serviceContainer.resolve(exports.DebugManager),this._instance._debugManager.onInitialize()}this._instance._config.debugConfig=t}else e._logger.warn("Core实例未创建,请先调用Core.create()")},e.disableDebug=function(){this._instance&&(this._instance._debugManager&&(this._instance._debugManager.stop(),delete this._instance._debugManager),this._instance._config.debugConfig&&(this._instance._config.debugConfig.enabled=!1))},e.getDebugData=function(){var e;return null!==(e=this._instance)&&void 0!==e&&e._debugManager?this._instance._debugManager.getDebugData():null},e.installPlugin=function(){var e=n(h().m(function e(t){return h().w(function(e){for(;;)switch(e.n){case 0:if(this._instance){e.n=1;break}throw new Error("Core实例未创建,请先调用Core.create()");case 1:return e.n=2,this._instance._pluginManager.install(t);case 2:return e.a(2)}},e,this)}));return function(t){return e.apply(this,arguments)}}(),e.uninstallPlugin=function(){var e=n(h().m(function e(t){return h().w(function(e){for(;;)switch(e.n){case 0:if(this._instance){e.n=1;break}throw new Error("Core实例未创建,请先调用Core.create()");case 1:return e.n=2,this._instance._pluginManager.uninstall(t);case 2:return e.a(2)}},e,this)}));return function(t){return e.apply(this,arguments)}}(),e.getPlugin=function(e){if(this._instance)return this._instance._pluginManager.getPlugin(e)},e.isPluginInstalled=function(e){return!!this._instance&&this._instance._pluginManager.isInstalled(e)};var t=e.prototype;return t.initialize=function(){var t;e._logger.info("Core initialized",{debug:this.debug,debugEnabled:(null===(t=this._config.debugConfig)||void 0===t?void 0:t.enabled)||!1})},t.updateInternal=function(t){if(!e.paused){var n=this._performanceMonitor.startMonitoring("Core.update");g.update(t),"updateFPS"in this._performanceMonitor&&"function"==typeof this._performanceMonitor.updateFPS&&this._performanceMonitor.updateFPS(g.deltaTime);var r=this._performanceMonitor.startMonitoring("Services.update");this._serviceContainer.updateAll(t),this._performanceMonitor.endMonitoring("Services.update",r,this._serviceContainer.getUpdatableCount()),this._poolManager.update(),this._sceneManager.update(),this._worldManager.updateAll(),this._performanceMonitor.endMonitoring("Core.update",n)}},e.destroy=function(){this._instance&&(this._instance._debugManager&&this._instance._debugManager.stop(),this._instance._serviceContainer.clear(),e._logger.info("Core destroyed"),this._instance=null)},o(e,null,[{key:"Instance",get:function(){return this._instance}},{key:"services",get:function(){if(!this._instance)throw new Error("Core实例未创建,请先调用Core.create()");return this._instance._serviceContainer}},{key:"worldManager",get:function(){if(!this._instance)throw new Error("Core实例未创建,请先调用Core.create()");return this._instance._worldManager}},{key:"scene",get:function(){return this._instance?this._instance._sceneManager.currentScene:null}},{key:"ecsAPI",get:function(){return this._instance?this._instance._sceneManager.api:null}},{key:"isDebugEnabled",get:function(){var e;return(null===(e=this._instance)||void 0===e||null===(e=e._config.debugConfig)||void 0===e?void 0:e.enabled)||!1}},{key:"performanceMonitor",get:function(){var e;return(null===(e=this._instance)||void 0===e?void 0:e._performanceMonitor)||null}}])}();Ft.paused=!1,Ft._instance=null,Ft._logger=$("Core");var zt=$("DebugPlugin");exports.DebugPlugin=function(){function e(e){var t,n;this.name="@esengine/debug-plugin",this.version="1.0.0",this.worldManager=null,this.updateTimer=null,this.autoStart=null!==(t=null==e?void 0:e.autoStart)&&void 0!==t&&t,this.updateInterval=null!==(n=null==e?void 0:e.updateInterval)&&void 0!==n?n:1e3}var t=e.prototype;return t.install=function(){var e=n(h().m(function e(t,n){return h().w(function(e){for(;;)switch(e.n){case 0:this.worldManager=n.resolve(Rt),zt.info("ECS Debug Plugin installed"),this.autoStart&&this.start();case 1:return e.a(2)}},e,this)}));return function(t,n){return e.apply(this,arguments)}}(),t.uninstall=function(){var e=n(h().m(function e(){return h().w(function(e){for(;;)switch(e.n){case 0:this.stop(),this.worldManager=null,zt.info("ECS Debug Plugin uninstalled");case 1:return e.a(2)}},e,this)}));return function(){return e.apply(this,arguments)}}(),t.dispose=function(){this.stop(),this.worldManager=null},t.start=function(){var e=this;this.updateTimer?zt.warn("Debug monitoring already started"):(zt.info("Starting debug monitoring"),this.updateTimer=setInterval(function(){e.logStats()},this.updateInterval))},t.stop=function(){this.updateTimer&&(clearInterval(this.updateTimer),this.updateTimer=null,zt.info("Debug monitoring stopped"))},t.getStats=function(){if(!this.worldManager)throw new Error("Plugin not installed");for(var e,t=[],n=0,r=0,i=s(this.worldManager.getAllWorlds());!(e=i()).done;)for(var o,a=s(e.value.getAllScenes());!(o=a()).done;){var c=o.value,u=this.getSceneInfo(c);t.push(u),n+=u.entityCount,r+=u.systems.length}return{scenes:t,totalEntities:n,totalSystems:r,timestamp:Date.now()}},t.getSceneInfo=function(e){var t=this,n=e.entities.buffer,r=e.systems;return{name:e.name,entityCount:n.length,systems:r.map(function(e){return t.getSystemInfo(e)}),entities:n.map(function(e){return t.getEntityInfo(e)})}},t.getSystemInfo=function(e){var t=e.getPerformanceStats(),n=t?{avgExecutionTime:t.averageTime,maxExecutionTime:t.maxTime,totalCalls:t.executionCount}:void 0;return a({name:e.constructor.name,enabled:e.enabled,updateOrder:e.updateOrder,entityCount:e.entities.length},void 0!==n&&{performance:n})},t.getEntityInfo=function(e){var t=this,n=e.components;return{id:e.id,name:e.name,enabled:e.enabled,tag:e.tag,componentCount:n.length,components:n.map(function(e){return t.getComponentInfo(e)})}},t.getComponentInfo=function(e){for(var t=e.constructor.name,n={},r=0,i=Object.keys(e);r<i.length;r++){var o=i[r];if(!o.startsWith("_")){var s=e[o];"function"!=typeof s&&(n[o]=s)}}return{type:t,data:n}},t.queryEntities=function(e){if(!this.worldManager)throw new Error("Plugin not installed");for(var t,n=[],r=s(this.worldManager.getAllWorlds());!(t=r()).done;)for(var i,o=s(t.value.getAllScenes());!(i=o()).done;){var a=i.value;if(!e.sceneName||a.name===e.sceneName)for(var c,u=s(a.entities.buffer);!(c=u()).done;){var l=c.value;if((void 0===e.tag||l.tag===e.tag)&&(!e.name||l.name.includes(e.name))){if(e.hasComponent)if(!l.components.some(function(t){return t.constructor.name===e.hasComponent}))continue;n.push(this.getEntityInfo(l))}}}return n},t.logStats=function(){var e=this.getStats();zt.info("=== ECS Debug Stats ==="),zt.info("Total Entities: "+e.totalEntities),zt.info("Total Systems: "+e.totalSystems),zt.info("Scenes: "+e.scenes.length);for(var t,n=s(e.scenes);!(t=n()).done;){var r=t.value;zt.info("\n[Scene: "+r.name+"]"),zt.info(" Entities: "+r.entityCount),zt.info(" Systems: "+r.systems.length);for(var i,o=s(r.systems);!(i=o()).done;){var a=i.value,c=a.performance?" | Avg: "+a.performance.avgExecutionTime.toFixed(2)+"ms, Max: "+a.performance.maxExecutionTime.toFixed(2)+"ms":"";zt.info(" - "+a.name+" ("+(a.enabled?"enabled":"disabled")+") | Entities: "+a.entityCount+c)}}zt.info("========================\n")},t.exportJSON=function(){var e=this.getStats();return JSON.stringify(e,null,2)},e}(),exports.DebugPlugin=v([E(),y("design:paramtypes",[Object])],exports.DebugPlugin);var Nt,Bt,Lt=function(e,t){this.func=e,this.context=t},Ht=function(){function e(){this._messageTable=new Map}var t=e.prototype;return t.addObserver=function(e,t,n){var r=this._messageTable.get(e);r||(r=[],this._messageTable.set(e,r)),this.hasObserver(e,t)||r.push(new Lt(t,n))},t.removeObserver=function(e,t){var n=this._messageTable.get(e);if(n){var r=n.findIndex(function(e){return e.func==t});-1!=r&&n.splice(r,1)}},t.emit=function(e){var t=this._messageTable.get(e);if(t){for(var n=arguments.length,r=new Array(n>1?n-1:0),i=1;i<n;i++)r[i-1]=arguments[i];for(var o,a=s(t);!(o=a()).done;){var c,u=o.value;(c=u.func).call.apply(c,[u.context].concat(r))}}},t.hasObserver=function(e,t){var n=this._messageTable.get(e);return!!n&&n.some(function(e){return e.func===t})},t.removeAllObservers=function(e){void 0!==e?this._messageTable.delete(e):this._messageTable.clear()},t.dispose=function(){this._messageTable.clear()},t.getEventTypeCount=function(){return this._messageTable.size},t.getObserverCount=function(e){var t=this._messageTable.get(e);return t?t.length:0},e}(),Wt=function(){function e(){this._enabled=!1}var t=e.prototype;return t.setEnabled=function(e){this._enabled!=e&&(this._enabled=e,this._enabled?this.onEnabled():this.onDisabled())},t.onEnabled=function(){},t.onDisabled=function(){},t.update=function(){},o(e,[{key:"enabled",get:function(){return this._enabled},set:function(e){this.setEnabled(e)}}])}();exports.ECSEventType=void 0,(Nt=exports.ECSEventType||(exports.ECSEventType={})).ENTITY_CREATED="entity:created",Nt.ENTITY_DESTROYED="entity:destroyed",Nt.ENTITY_ENABLED="entity:enabled",Nt.ENTITY_DISABLED="entity:disabled",Nt.ENTITY_TAG_ADDED="entity:tag:added",Nt.ENTITY_TAG_REMOVED="entity:tag:removed",Nt.ENTITY_NAME_CHANGED="entity:name:changed",Nt.COMPONENT_ADDED="component:added",Nt.COMPONENT_REMOVED="component:removed",Nt.COMPONENT_MODIFIED="component:modified",Nt.COMPONENT_ENABLED="component:enabled",Nt.COMPONENT_DISABLED="component:disabled",Nt.SYSTEM_ADDED="system:added",Nt.SYSTEM_REMOVED="system:removed",Nt.SYSTEM_ENABLED="system:enabled",Nt.SYSTEM_DISABLED="system:disabled",Nt.SYSTEM_PROCESSING_START="system:processing:start",Nt.SYSTEM_PROCESSING_END="system:processing:end",Nt.SYSTEM_ERROR="system:error",Nt.SCENE_CREATED="scene:created",Nt.SCENE_DESTROYED="scene:destroyed",Nt.SCENE_ACTIVATED="scene:activated",Nt.SCENE_DEACTIVATED="scene:deactivated",Nt.SCENE_PAUSED="scene:paused",Nt.SCENE_RESUMED="scene:resumed",Nt.QUERY_EXECUTED="query:executed",Nt.QUERY_CACHE_HIT="query:cache:hit",Nt.QUERY_CACHE_MISS="query:cache:miss",Nt.QUERY_OPTIMIZED="query:optimized",Nt.PERFORMANCE_WARNING="performance:warning",Nt.PERFORMANCE_CRITICAL="performance:critical",Nt.MEMORY_USAGE_HIGH="memory:usage:high",Nt.FRAME_RATE_DROP="frame:rate:drop",Nt.INDEX_CREATED="index:created",Nt.INDEX_UPDATED="index:updated",Nt.INDEX_OPTIMIZED="index:optimized",Nt.ARCHETYPE_CREATED="archetype:created",Nt.ARCHETYPE_ENTITY_ADDED="archetype:entity:added",Nt.ARCHETYPE_ENTITY_REMOVED="archetype:entity:removed",Nt.DIRTY_MARK_ADDED="dirty:mark:added",Nt.DIRTY_BATCH_PROCESSED="dirty:batch:processed",Nt.ERROR_OCCURRED="error:occurred",Nt.WARNING_ISSUED="warning:issued",Nt.FRAMEWORK_INITIALIZED="framework:initialized",Nt.FRAMEWORK_SHUTDOWN="framework:shutdown",Nt.DEBUG_INFO="debug:info",Nt.DEBUG_STATS_UPDATED="debug:stats:updated",exports.EventPriority=void 0,(Bt=exports.EventPriority||(exports.EventPriority={}))[Bt.LOWEST=0]="LOWEST",Bt[Bt.LOW=25]="LOW",Bt[Bt.NORMAL=50]="NORMAL",Bt[Bt.HIGH=75]="HIGH",Bt[Bt.HIGHEST=100]="HIGHEST",Bt[Bt.CRITICAL=200]="CRITICAL";var jt={ENTITY:{CREATED:exports.ECSEventType.ENTITY_CREATED,DESTROYED:exports.ECSEventType.ENTITY_DESTROYED,ENABLED:exports.ECSEventType.ENTITY_ENABLED,DISABLED:exports.ECSEventType.ENTITY_DISABLED,TAG_ADDED:exports.ECSEventType.ENTITY_TAG_ADDED,TAG_REMOVED:exports.ECSEventType.ENTITY_TAG_REMOVED,NAME_CHANGED:exports.ECSEventType.ENTITY_NAME_CHANGED},COMPONENT:{ADDED:exports.ECSEventType.COMPONENT_ADDED,REMOVED:exports.ECSEventType.COMPONENT_REMOVED,MODIFIED:exports.ECSEventType.COMPONENT_MODIFIED,ENABLED:exports.ECSEventType.COMPONENT_ENABLED,DISABLED:exports.ECSEventType.COMPONENT_DISABLED},SYSTEM:{ADDED:exports.ECSEventType.SYSTEM_ADDED,REMOVED:exports.ECSEventType.SYSTEM_REMOVED,ENABLED:exports.ECSEventType.SYSTEM_ENABLED,DISABLED:exports.ECSEventType.SYSTEM_DISABLED,PROCESSING_START:exports.ECSEventType.SYSTEM_PROCESSING_START,PROCESSING_END:exports.ECSEventType.SYSTEM_PROCESSING_END,ERROR:exports.ECSEventType.SYSTEM_ERROR},PERFORMANCE:{WARNING:exports.ECSEventType.PERFORMANCE_WARNING,CRITICAL:exports.ECSEventType.PERFORMANCE_CRITICAL,MEMORY_HIGH:exports.ECSEventType.MEMORY_USAGE_HIGH,FRAME_DROP:exports.ECSEventType.FRAME_RATE_DROP}},Gt=function(){function e(){}return e.isValid=function(e){return this.validTypes.has(e)},e.getAllValidTypes=function(){return Array.from(this.validTypes)},e.addCustomType=function(e){this.validTypes.add(e)},e.removeCustomType=function(e){this.validTypes.delete(e)},e}();Gt.validTypes=new Set([].concat(Object.values(exports.ECSEventType),Object.values(jt.ENTITY),Object.values(jt.COMPONENT),Object.values(jt.SYSTEM),Object.values(jt.PERFORMANCE)));var qt=function(e){function t(t){return e.call(this,t)||this}return u(t,e),t.prototype.process=function(e){this.processSystem()},t}(be),Ut=function(e){function t(t){return e.call(this,t)||this}return u(t,e),t.prototype.process=function(e){},t}(be),Qt=function(e){function t(t,n){var r;return(r=e.call(this,n)||this).acc=0,r.intervalRemainder=0,r.interval=t,r}u(t,e);var n=t.prototype;return n.onCheckProcessing=function(){return this.acc+=g.deltaTime,this.acc>=this.interval&&(this.intervalRemainder=this.acc-this.interval,this.acc=0,!0)},n.getIntervalDelta=function(){return this.interval+this.intervalRemainder},t}(be),Vt=function(){function e(){this.adapter=null,this.logger=$("PlatformManager")}e.getInstance=function(){return e.instance||(e.instance=new e),e.instance};var t=e.prototype;return t.getAdapter=function(){if(!this.adapter)throw new Error("平台适配器未注册,请调用 registerAdapter() 注册适配器");return this.adapter},t.registerAdapter=function(e){this.adapter=e,this.logger.info("平台适配器已注册: "+e.name,{name:e.name,version:e.version,supportsWorker:e.isWorkerSupported(),supportsSharedArrayBuffer:e.isSharedArrayBufferSupported(),hardwareConcurrency:e.getHardwareConcurrency()})},t.hasAdapter=function(){return null!==this.adapter},t.getAdapterInfo=function(){return this.adapter?{name:this.adapter.name,version:this.adapter.version,config:this.adapter.getPlatformConfig()}:null},t.supportsFeature=function(e){if(!this.adapter)return!1;var t=this.adapter.getPlatformConfig();switch(e){case"worker":return this.adapter.isWorkerSupported();case"shared-array-buffer":return this.adapter.isSharedArrayBufferSupported();case"transferable-objects":return t.supportsTransferableObjects;case"module-worker":return t.supportsModuleWorker;default:return!1}},t.getBasicWorkerConfig=function(){if(!this.adapter)return{platformSupportsWorker:!1,platformSupportsSharedArrayBuffer:!1,platformMaxWorkerCount:1,platformLimitations:{}};var e=this.adapter.getPlatformConfig();return{platformSupportsWorker:this.adapter.isWorkerSupported(),platformSupportsSharedArrayBuffer:this.adapter.isSharedArrayBufferSupported(),platformMaxWorkerCount:e.maxWorkerCount,platformLimitations:e.limitations||{}}},t.getFullPlatformConfig=function(){var e=n(h().m(function e(){return h().w(function(e){for(;;)switch(e.n){case 0:if(this.adapter){e.n=1;break}throw new Error("平台适配器未注册");case 1:if("function"!=typeof this.adapter.getPlatformConfigAsync){e.n=3;break}return e.n=2,this.adapter.getPlatformConfigAsync();case 2:return e.a(2,e.v);case 3:return e.a(2,this.adapter.getPlatformConfig())}},e,this)}));return function(){return e.apply(this,arguments)}}(),e}(),Yt=function(e){function t(t,n){var r,i,o,s,c,u;void 0===n&&(n={}),(u=e.call(this,t)||this).workerPool=null,u.isProcessing=!1,u.sharedBuffer=null,u.sharedFloatArray=null,u.hasLoggedSyncMode=!1,u.platformAdapter=Vt.getInstance().getAdapter();var l=null!==(r=n.workerCount)&&void 0!==r?r:u.getMaxSystemWorkerCount(),h=u.getMaxSystemWorkerCount(),f=Math.min(l,h);return l>h&&u.logger.warn("请求 "+l+" 个Worker,但系统最多支持 "+h+" 个。实际使用 "+f+" 个Worker。"),u.config=a({enableWorker:null===(i=n.enableWorker)||void 0===i||i,workerCount:f,systemConfig:n.systemConfig},void 0!==n.entitiesPerWorker&&{entitiesPerWorker:n.entitiesPerWorker},{useSharedArrayBuffer:null!==(o=n.useSharedArrayBuffer)&&void 0!==o?o:u.isSharedArrayBufferSupported(),entityDataSize:null!==(s=n.entityDataSize)&&void 0!==s?s:u.getDefaultEntityDataSize(),maxEntities:null!==(c=n.maxEntities)&&void 0!==c?c:1e4}),u.config.enableWorker&&u.isWorkerSupported()&&(u.config.useSharedArrayBuffer&&u.initializeSharedArrayBuffer(),u.initializeWorkerPool()),u}u(t,e);var r=t.prototype;return r.isWorkerSupported=function(){return this.platformAdapter.isWorkerSupported()},r.isSharedArrayBufferSupported=function(){return this.platformAdapter.isSharedArrayBufferSupported()},r.getMaxSystemWorkerCount=function(){return this.platformAdapter.getPlatformConfig().maxWorkerCount},r.initializeSharedArrayBuffer=function(){try{if(!this.isSharedArrayBufferSupported())return this.logger.warn(this.systemName+": 平台不支持SharedArrayBuffer,降级到单Worker模式以保证数据处理完整性"),this.config.useSharedArrayBuffer=!1,void(this.config.workerCount=1);var e=this.config.maxEntities*this.config.entityDataSize*4;this.sharedBuffer=this.platformAdapter.createSharedArrayBuffer(e),this.sharedBuffer&&(this.sharedFloatArray=new Float32Array(this.sharedBuffer)),this.logger.info(this.systemName+": SharedArrayBuffer初始化成功 ("+e+" 字节)")}catch(e){this.logger.warn(this.systemName+": SharedArrayBuffer初始化失败,降级到单Worker模式以保证数据处理完整性",e),this.config.useSharedArrayBuffer=!1,this.sharedBuffer=null,this.sharedFloatArray=null,this.config.workerCount=1}},r.initializeWorkerPool=function(){try{for(var e=this.createWorkerScript(),t=[],n=(this.platformAdapter.getPlatformConfig().workerScriptPrefix||"")+e,r=0;r<this.config.workerCount;r++)try{var i=this.platformAdapter.createWorker(n,{name:"WorkerEntitySystem-"+r});t.push(i)}catch(e){throw this.logger.error("创建Worker "+r+" 失败:",e),e}this.workerPool=new Jt(t)}catch(e){this.logger.error(this.systemName+": Worker池初始化失败",e),this.config.enableWorker=!1}},r.createWorkerScript=function(){var e,t=this.workerProcess.toString().match(/\{([\s\S]*)\}/);if(!t)throw new Error("无法解析workerProcess方法");var n=t[1],r=this.config.entityDataSize,i=(null===(e=this.getSharedArrayBufferProcessFunction)||void 0===e?void 0:e.call(this))||null,o="";if(i){var s,a=i.toString().match(/\{([\s\S]*)\}/);if(a)o=null!==(s=a[1])&&void 0!==s?s:""}return"\n // Worker脚本 - 支持SharedArrayBuffer\n let sharedFloatArray = null;\n const ENTITY_DATA_SIZE = "+r+";\n\n self.onmessage = function(e) {\n const { type, id, entities, deltaTime, systemConfig, startIndex, endIndex, sharedBuffer } = e.data;\n\n\n try {\n // 处理SharedArrayBuffer初始化\n if (type === 'init' && sharedBuffer) {\n sharedFloatArray = new Float32Array(sharedBuffer);\n self.postMessage({ type: 'init', success: true });\n return;\n }\n\n // 处理SharedArrayBuffer数据\n if (type === 'shared' && sharedFloatArray) {\n processSharedArrayBuffer(startIndex, endIndex, deltaTime, systemConfig);\n self.postMessage({ id, result: null }); // SharedArrayBuffer不需要返回数据\n return;\n }\n\n // 传统处理方式\n if (entities) {\n // 定义处理函数\n function workerProcess(entities, deltaTime, systemConfig) {\n "+n+"\n }\n\n // 执行处理\n const result = workerProcess(entities, deltaTime, systemConfig);\n\n // 处理Promise返回值\n if (result && typeof result.then === 'function') {\n result.then(finalResult => {\n self.postMessage({ id, result: finalResult });\n }).catch(error => {\n self.postMessage({ id, error: error.message });\n });\n } else {\n self.postMessage({ id, result });\n }\n }\n } catch (error) {\n self.postMessage({ id, error: error.message });\n }\n };\n\n // SharedArrayBuffer处理函数 - 由子类定义\n function processSharedArrayBuffer(startIndex, endIndex, deltaTime, systemConfig) {\n if (!sharedFloatArray) return;\n\n "+(o?"\n // 用户定义的处理函数\n const userProcessFunction = function(sharedFloatArray, startIndex, endIndex, deltaTime, systemConfig) {\n "+o+"\n };\n userProcessFunction(sharedFloatArray, startIndex, endIndex, deltaTime, systemConfig);\n ":"")+"\n }\n "},r.process=function(e){var t=this;if(!this.isProcessing){this.isProcessing=!0;try{this.config.enableWorker&&this.workerPool?this.config.useSharedArrayBuffer&&this.sharedFloatArray&&this.isSharedArrayBufferSupported()?this.processWithSharedArrayBuffer(e).finally(function(){t.isProcessing=!1}):(this.config.useSharedArrayBuffer&&this.logger.info(this.systemName+": 本帧降级到传统Worker模式"),this.processWithWorker(e).finally(function(){t.isProcessing=!1})):(this.hasLoggedSyncMode||(this.logger.info(this.systemName+": Worker不可用,使用同步处理"),this.hasLoggedSyncMode=!0),this.processSynchronously(e),this.isProcessing=!1)}catch(e){throw this.isProcessing=!1,this.logger.error(this.systemName+": 处理失败",e),e}}},r.processWithSharedArrayBuffer=function(){var e=n(h().m(function e(t){var n;return h().w(function(e){for(;;)switch(e.n){case 0:if(this.sharedFloatArray){e.n=1;break}throw new Error("SharedArrayBuffer not initialized");case 1:return this.writeEntitiesToSharedBuffer(t),n=this.createSharedArrayBufferTasks(t.length),e.n=2,Promise.all(n);case 2:this.readResultsFromSharedBuffer(t);case 3:return e.a(2)}},e,this)}));return function(t){return e.apply(this,arguments)}}(),r.processWithWorker=function(){var e=n(h().m(function e(t){var n,r,i,o,a,c,u,l,f,d,p,m,v,y,_=this;return h().w(function(e){for(;;)switch(e.n){case 0:for(n=[],r=0;r<t.length;r++)n[r]=this.extractEntityData(t[r]);return i=this.createBatches(n),o=g.deltaTime,a=i.map(function(e){return _.workerPool.execute({entities:e,deltaTime:o,systemConfig:_.config.systemConfig})}),e.n=1,Promise.all(a);case 1:for(c=e.v,u=0,l=s(c);!(f=l()).done;)for(d=f.value,p=s(d);!(m=p()).done;)v=m.value,u<t.length&&(y=t[u])&&v&&this.applyResult(y,v),u++;case 2:return e.a(2)}},e,this)}));return function(t){return e.apply(this,arguments)}}(),r.processSynchronously=function(e){var t=this,n=e.map(function(e){return t.extractEntityData(e)}),r=g.deltaTime,i=this.workerProcess(n,r,this.config.systemConfig);i&&"function"==typeof i.then?i.then(function(n){e.forEach(function(e,r){t.applyResult(e,n[r])})}):e.forEach(function(e,n){t.applyResult(e,i[n])})},r.createBatches=function(e){var t=this.config.workerCount,n=[];if(this.config.entitiesPerWorker){for(var r=this.config.entitiesPerWorker,i=0;i<e.length;i+=r){var o=Math.min(i+r,e.length);n.push(e.slice(i,o))}n.length>t&&this.logger.warn(this.systemName+": 创建了 "+n.length+" 个批次,但只有 "+t+" 个Worker。某些Worker将依次处理多个批次。")}else for(var s=Math.ceil(e.length/t),a=0;a<t;a++){var c=a*s,u=Math.min(c+s,e.length);c<e.length&&n.push(e.slice(c,u))}return n},r.writeEntitiesToSharedBuffer=function(e){if(this.sharedFloatArray)for(var t=0;t<e.length&&t<this.config.maxEntities;t++){var n=e[t],r=this.extractEntityData(n),i=t*this.config.entityDataSize;this.writeEntityToBuffer(r,i)}},r.createSharedArrayBufferTasks=function(e){var t=[];if(this.config.entitiesPerWorker){var n=this.config.entitiesPerWorker,r=Math.ceil(e/n),i=this.config.workerCount;r>i&&this.logger.warn(this.systemName+": 需要 "+r+" 个任务处理 "+e+" 个实体(每任务 "+n+" 个),但只有 "+i+" 个Worker。某些Worker将依次处理多个任务。");for(var o=0;o<e;o+=n){var s=o,a=Math.min(o+n,e),c=this.workerPool.executeSharedBuffer({startIndex:s,endIndex:a,deltaTime:g.deltaTime,systemConfig:this.config.systemConfig});t.push(c)}}else for(var u=Math.ceil(e/this.config.workerCount),l=0;l<this.config.workerCount;l++){var h=l*u,f=Math.min(h+u,e);if(h<e){var d=this.workerPool.executeSharedBuffer({startIndex:h,endIndex:f,deltaTime:g.deltaTime,systemConfig:this.config.systemConfig});t.push(d)}}return t},r.readResultsFromSharedBuffer=function(e){if(this.sharedFloatArray)for(var t=0;t<e.length&&t<this.config.maxEntities;t++){var n=e[t],r=t*this.config.entityDataSize,i=this.readEntityFromBuffer(r);i&&this.applyResult(n,i)}},r.updateConfig=function(e){var t=a({},this.config);if(void 0!==e.workerCount){var n=this.getMaxSystemWorkerCount(),r=Math.min(e.workerCount,n);e.workerCount>n&&this.logger.warn("请求 "+e.workerCount+" 个Worker,但系统最多支持 "+n+" 个。实际使用 "+r+" 个Worker。"),e.workerCount=r}Object.assign(this.config,e),t.useSharedArrayBuffer===this.config.useSharedArrayBuffer?t.workerCount===this.config.workerCount?(!this.config.enableWorker&&this.workerPool&&(this.workerPool.destroy(),this.workerPool=null),this.config.enableWorker&&!this.workerPool&&this.isWorkerSupported()&&this.initializeWorkerPool()):this.reinitializeWorkerPool():this.reinitializeWorkerSystem()},r.reinitializeWorkerSystem=function(){this.workerPool&&(this.workerPool.destroy(),this.workerPool=null),this.sharedBuffer=null,this.sharedFloatArray=null,this.config.useSharedArrayBuffer||(this.config.workerCount=1),this.config.enableWorker&&this.isWorkerSupported()&&(this.config.useSharedArrayBuffer&&this.initializeSharedArrayBuffer(),this.initializeWorkerPool())},r.reinitializeWorkerPool=function(){this.workerPool&&(this.workerPool.destroy(),this.workerPool=null),this.config.enableWorker&&this.isWorkerSupported()&&this.initializeWorkerPool()},r.getWorkerInfo=function(){var e="sync";return this.config.enableWorker&&this.workerPool&&(e=this.config.useSharedArrayBuffer&&this.sharedFloatArray&&this.isSharedArrayBufferSupported()?"shared-buffer":"worker"),a({enabled:this.config.enableWorker,workerCount:this.config.workerCount},void 0!==this.config.entitiesPerWorker&&{entitiesPerWorker:this.config.entitiesPerWorker},{maxSystemWorkerCount:this.getMaxSystemWorkerCount(),isProcessing:this.isProcessing,sharedArrayBufferSupported:this.isSharedArrayBufferSupported(),sharedArrayBufferEnabled:this.config.useSharedArrayBuffer,currentMode:e})},r.onDestroy=function(){e.prototype.onDestroy.call(this),this.workerPool&&(this.workerPool.destroy(),this.workerPool=null)},r.getLoggerName=function(){return j(this)},t}(be),Jt=function(){function e(e){var t=this;this.workers=[],this.taskQueue=[],this.busyWorkers=new Set,this.taskCounter=0,this.workers=e;for(var n=function(n){var r=e[n];if(!r)return 1;r.onMessage(function(e){return t.handleWorkerMessage(n,e.data)}),r.onError(function(e){return t.handleWorkerError(n,e)})},r=0;r<e.length;r++)n(r)}var t=e.prototype;return t.executeSharedBuffer=function(e){var t=this;return new Promise(function(n,r){var i={id:"shared-task-"+ ++t.taskCounter,data:a({},e,{type:"shared"}),resolve:function(){return n()},reject:r};t.taskQueue.push(i),t.processQueue()})},t.execute=function(e){var t=this;return new Promise(function(n,r){var i={id:"task-"+ ++t.taskCounter,data:e,resolve:function(e){n(e)},reject:r};t.taskQueue.push(i),t.processQueue()})},t.processQueue=function(){if(0!==this.taskQueue.length)for(var e=0;e<this.workers.length;e++)if(!this.busyWorkers.has(e)&&this.taskQueue.length>0){var t=this.taskQueue.shift();this.busyWorkers.add(e);var n=this.workers[e];n.postMessage(a({id:t.id},t.data)),n._currentTask=t}},t.handleWorkerMessage=function(e,t){var n=this.workers[e],r=n._currentTask;r&&(this.busyWorkers.delete(e),n._currentTask=null,t.error?r.reject(new Error(t.error)):r.resolve(t.result),this.processQueue())},t.handleWorkerError=function(e,t){var n=this.workers[e],r=n._currentTask;r&&(this.busyWorkers.delete(e),n._currentTask=null,r.reject(new Error(t.message))),this.processQueue()},t.destroy=function(){for(var e,t=s(this.workers);!(e=t()).done;){e.value.terminate()}this.workers.length=0,this.taskQueue.length=0,this.busyWorkers.clear()},e}(),Kt=function(){function e(e){void 0===e&&(e=!1),this.eventIdCounter=0,this.isDebugMode=!1,this.eventSystem=new st,this.isDebugMode=e}var t=e.prototype;return t.emit=function(t,n,r){void 0===r&&(r=!1),this.validateEventType(t);var i=r?this.enhanceEventData(t,n):n;this.isDebugMode&&e._logger.info("发射事件: "+t,i),this.eventSystem.emitSync(t,i)},t.emitAsync=function(){var t=n(h().m(function t(n,r,i){var o;return h().w(function(t){for(;;)switch(t.n){case 0:return void 0===i&&(i=!1),this.validateEventType(n),o=i?this.enhanceEventData(n,r):r,this.isDebugMode&&e._logger.info("发射异步事件: "+n,o),t.n=1,this.eventSystem.emit(n,o);case 1:return t.a(2)}},t,this)}));return function(e,n,r){return t.apply(this,arguments)}}(),t.on=function(t,n,r){void 0===r&&(r={}),this.validateEventType(t);var i={once:r.once||!1,priority:r.priority||exports.EventPriority.NORMAL,async:r.async||!1};return r.thisArg&&(i.thisArg=r.thisArg),this.isDebugMode&&e._logger.info("添加监听器: "+t,i),this.eventSystem.on(t,n,i)},t.once=function(e,t,n){return void 0===n&&(n={}),this.on(e,t,a({},n,{once:!0}))},t.onAsync=function(e,t,n){return void 0===n&&(n={}),this.on(e,t,a({},n,{async:!0}))},t.off=function(t,n){return this.isDebugMode&&e._logger.info("移除监听器: "+n+" 事件: "+t),this.eventSystem.off(t,n)},t.offAll=function(t){this.isDebugMode&&e._logger.info("移除所有监听器: "+t),this.eventSystem.offAll(t)},t.hasListeners=function(e){return this.eventSystem.hasListeners(e)},t.getStats=function(e){var t=this,n=this.eventSystem.getStats(e);if(n instanceof Map){var r=new Map;return n.forEach(function(e,n){r.set(n,t.convertEventStats(e))}),r}return this.convertEventStats(n)},t.clear=function(){this.isDebugMode&&e._logger.info("清空所有监听器"),this.eventSystem.clear()},t.setEnabled=function(e){this.eventSystem.setEnabled(e)},t.setDebugMode=function(e){this.isDebugMode=e},t.setMaxListeners=function(e){this.eventSystem.setMaxListeners(e)},t.getListenerCount=function(e){return this.eventSystem.getListenerCount(e)},t.setBatchConfig=function(e,t,n){this.eventSystem.setBatchConfig(e,{batchSize:t,delay:n,enabled:!0})},t.flushBatch=function(e){this.eventSystem.flushBatch(e)},t.resetStats=function(e){this.eventSystem.resetStats(e)},t.emitEntityCreated=function(e){this.emit(exports.ECSEventType.ENTITY_CREATED,e)},t.emitEntityDestroyed=function(e){this.emit(exports.ECSEventType.ENTITY_DESTROYED,e)},t.emitComponentAdded=function(e){this.emit(exports.ECSEventType.COMPONENT_ADDED,e)},t.emitComponentRemoved=function(e){this.emit(exports.ECSEventType.COMPONENT_REMOVED,e)},t.emitSystemAdded=function(e){this.emit(exports.ECSEventType.SYSTEM_ADDED,e)},t.emitSystemRemoved=function(e){this.emit(exports.ECSEventType.SYSTEM_REMOVED,e)},t.emitSceneChanged=function(e){this.emit(exports.ECSEventType.SCENE_ACTIVATED,e)},t.emitPerformanceWarning=function(e){this.emit(exports.ECSEventType.PERFORMANCE_WARNING,e)},t.onEntityCreated=function(e,t){return this.on(exports.ECSEventType.ENTITY_CREATED,e,t)},t.onComponentAdded=function(e,t){return this.on(exports.ECSEventType.COMPONENT_ADDED,e,t)},t.onSystemError=function(e,t){return this.on(exports.ECSEventType.SYSTEM_ERROR,e,t)},t.onPerformanceWarning=function(e,t){return this.on(exports.ECSEventType.PERFORMANCE_WARNING,e,t)},t.validateEventType=function(t){this.isDebugMode&&(Gt.isValid(t)||(e._logger.warn("未知事件类型: "+t),Gt.addCustomType(t)))},t.enhanceEventData=function(e,t){if(null==t)return{timestamp:Date.now(),eventId:e+"_"+ ++this.eventIdCounter,source:"EventBus"};var n=t;return n.timestamp||(n.timestamp=Date.now()),n.eventId||(n.eventId=e+"_"+ ++this.eventIdCounter),n.source||(n.source="EventBus"),n},t.convertEventStats=function(e){return{eventType:e.eventType,listenerCount:e.listenerCount,triggerCount:e.triggerCount,totalExecutionTime:e.totalExecutionTime,averageExecutionTime:e.averageExecutionTime,lastTriggerTime:e.lastTriggerTime}},e}();Kt._logger=$("EventBus");var Zt=function(){function e(){}return e.getInstance=function(e){return void 0===e&&(e=!1),this.instance||(this.instance=new Kt(e)),this.instance},e.reset=function(e){return void 0===e&&(e=!1),this.instance&&this.instance.clear(),this.instance=new Kt(e),this.instance},e}(),Xt=function(){function e(){}return e.registerComponentMigration=function(e,t,n,r){this.componentMigrations.has(e)||this.componentMigrations.set(e,new Map),this.componentMigrations.get(e).set(t,r)},e.registerSceneMigration=function(e,t,n){this.sceneMigrations.set(e,n)},e.migrateComponent=function(e,t){var n=e.version;if(n===t)return e;var r=this.componentMigrations.get(e.type);if(!r)return console.warn("No migration path found for component "+e.type),e;for(var i=a({},e),o=n;o<t;){var s=r.get(o);if(!s){console.warn("Missing migration from version "+o+" to "+(o+1)+" for "+e.type);break}i.data=s(i.data,o,o+1),o++}return i.version=o,i},e.migrateScene=function(e,t){var n=e.version;if(n===t)return e;for(var r=a({},e),i=n;i<t;){var o=this.sceneMigrations.get(i);if(!o){console.warn("Missing scene migration from version "+i+" to "+(i+1));break}r=o(r,i,i+1),i++}return r.version=i,r=this.migrateSceneComponents(r)},e.migrateSceneComponents=function(e){var t=this,n=a({},e);return n.entities=e.entities.map(function(n){return a({},n,{components:n.components.map(function(n){var r=e.componentTypeRegistry.find(function(e){return e.typeName===n.type});return r&&r.version!==n.version?t.migrateComponent(n,r.version):n}),children:t.migrateEntitiesComponents(n.children,e.componentTypeRegistry)})}),n},e.migrateEntitiesComponents=function(e,t){var n=this;return e.map(function(e){return a({},e,{components:e.components.map(function(e){var r=t.find(function(t){return t.typeName===e.type});return r&&r.version!==e.version?n.migrateComponent(e,r.version):e}),children:n.migrateEntitiesComponents(e.children,t)})})},e.clearMigrations=function(){this.componentMigrations.clear(),this.sceneMigrations.clear()},e.getComponentMigrationPath=function(e){var t=this.componentMigrations.get(e);return t?Array.from(t.keys()).sort(function(e,t){return e-t}):[]},e.getSceneMigrationPath=function(){return Array.from(this.sceneMigrations.keys()).sort(function(e,t){return e-t})},e.canMigrateComponent=function(e,t,n){if(t===n)return!0;var r=this.componentMigrations.get(e);if(!r)return!1;for(var i=t;i<n;i++)if(!r.has(i))return!1;return!0},e.canMigrateScene=function(e,t){if(e===t)return!0;for(var n=e;n<t;n++)if(!this.sceneMigrations.has(n))return!1;return!0},e}();Xt.componentMigrations=new Map,Xt.sceneMigrations=new Map;var $t=function(){function e(){this.fromVersion=1,this.toVersion=2}var t=e.prototype;return t.forComponent=function(e){return this.componentType=e,this},t.fromVersionToVersion=function(e,t){return this.fromVersion=e,this.toVersion=t,this},t.migrate=function(e){this.componentType?Xt.registerComponentMigration(this.componentType,this.fromVersion,this.toVersion,e):Xt.registerSceneMigration(this.fromVersion,this.toVersion,e)},e}(),en={NONE:0,FOLDER:4096,HIDDEN:8192,LOCKED:16384,EDITOR_ONLY:32768,PREFAB_INSTANCE:256,PREFAB_ROOT:512};function tn(e,t){return 0!==(e&t)}var nn=function(){function e(e){this._entity=e}var t=e.prototype;return t.with=function(e){return this._entity.addComponent(e),this},t.withConfigured=function(e,t){return this._entity.addComponent(e),t(e),this},t.withTag=function(e){return this._entity.tag=e,this},t.withName=function(e){return this._entity.name=e,this},t.withActive=function(e){return this._entity.active=e,this},t.withEnabled=function(e){return this._entity.enabled=e,this},t.withUpdateOrder=function(e){return this._entity.updateOrder=e,this},t.withChild=function(e){var t,n=null===(t=this._entity.scene)||void 0===t?void 0:t.getSystem(Ee);return null==n||n.setParent(e,this._entity),this},t.build=function(){return this._entity},o(e,[{key:"entity",get:function(){return this._entity}}])}();var rn=function(){function e(){}return e.getType=function(e){return e.constructor},e}(),on=function(){function e(){}return e.toNumber=function(e){return null==e?0:Number(e)},e}();function sn(e){return"function"==typeof e&&e.prototype instanceof de}var an=function(){function e(){}return e.detect=function(){var e,t=[],n="unknown",r=!1;return"undefined"!=typeof globalThis&&t.push("globalThis"),"undefined"!=typeof window&&t.push("window"),"undefined"!=typeof self&&t.push("self"),this.isNodeJS()?(n="nodejs",r=!0,e="NodeAdapter",t.push("nodejs","process","require")):this.isWeChatMiniGame()?(n="wechat-minigame",r=!0,e="WeChatMiniGameAdapter",t.push("wx","wechat-minigame")):this.isByteDanceMiniGame()?(n="bytedance-minigame",r=!0,e="ByteDanceMiniGameAdapter",t.push("tt","bytedance-minigame")):this.isAlipayMiniGame()?(n="alipay-minigame",r=!0,e="AlipayMiniGameAdapter",t.push("my","alipay-minigame")):this.isBaiduMiniGame()?(n="baidu-minigame",r=!0,e="BaiduMiniGameAdapter",t.push("swan","baidu-minigame")):this.isBrowser()&&(n="browser",r=!0,e="BrowserAdapter",t.push("browser")),"undefined"!=typeof Worker&&t.push("Worker"),"undefined"!=typeof SharedArrayBuffer&&t.push("SharedArrayBuffer"),"undefined"!=typeof navigator&&navigator.hardwareConcurrency&&t.push("hardwareConcurrency"),"undefined"!=typeof performance&&"function"==typeof performance.now&&t.push("performance.now"),"undefined"!=typeof Blob&&t.push("Blob"),"undefined"!=typeof URL&&"function"==typeof URL.createObjectURL&&t.push("URL.createObjectURL"),a({platform:n,confident:r,features:t},e&&{adapterClass:e})},e.isWeChatMiniGame=function(){if(void 0!==globalThis.wx){var e=globalThis.wx;return!!(e.getSystemInfo&&e.createCanvas&&e.createImage)}return!1},e.isByteDanceMiniGame=function(){if(void 0!==globalThis.tt){var e=globalThis.tt;return!!(e.getSystemInfo&&e.createCanvas&&e.createImage)}return!1},e.isNodeJS=function(){try{return!("undefined"==typeof process||!process.versions||!process.versions.node||"undefined"==typeof require||"undefined"==typeof module||"undefined"==typeof exports||"undefined"!=typeof window||"undefined"!=typeof document)}catch(e){return!1}},e.isAlipayMiniGame=function(){if(void 0!==globalThis.my){var e=globalThis.my;return!(!e.getSystemInfo||!e.createCanvas)}return!1},e.isBaiduMiniGame=function(){if(void 0!==globalThis.swan){var e=globalThis.swan;return!(!e.getSystemInfo||!e.createCanvas)}return!1},e.isBrowser=function(){return"undefined"!=typeof window&&"undefined"!=typeof document&&"undefined"!=typeof navigator&&void 0!==window.location},e.getDetailedInfo=function(){var e={};return e.userAgent="undefined"!=typeof navigator?navigator.userAgent:"unknown",e.platform="undefined"!=typeof navigator?navigator.platform:"unknown",e.globalObjects={window:"undefined"!=typeof window,document:"undefined"!=typeof document,navigator:"undefined"!=typeof navigator,wx:void 0!==globalThis.wx,tt:void 0!==globalThis.tt,my:void 0!==globalThis.my,swan:void 0!==globalThis.swan},e.workerSupport={Worker:"undefined"!=typeof Worker,SharedWorker:"undefined"!=typeof SharedWorker,ServiceWorker:"undefined"!=typeof navigator&&"serviceWorker"in navigator,SharedArrayBuffer:"undefined"!=typeof SharedArrayBuffer,crossOriginIsolated:"undefined"!=typeof self&&self.crossOriginIsolated},e.performance={performanceNow:"undefined"!=typeof performance&&"function"==typeof performance.now,hardwareConcurrency:"undefined"!=typeof navigator?navigator.hardwareConcurrency:void 0},e.apiSupport={Blob:"undefined"!=typeof Blob,URL:"undefined"!=typeof URL,createObjectURL:"undefined"!=typeof URL&&"function"==typeof URL.createObjectURL,ArrayBuffer:"undefined"!=typeof ArrayBuffer,TypedArrays:"undefined"!=typeof Float32Array},e},e}();exports.AdvancedProfilerCollector=Ne,exports.AutoProfiler=vt,exports.BinarySerializer=ft,exports.BitMask64Utils=Be,exports.Bits=Ye,exports.COMPONENT_DEPENDENCIES=F,exports.COMPONENT_TYPE_NAME=R,exports.Colors=J,exports.Component=de,exports.ComponentDataCollector=Ie,exports.ComponentPool=Ae,exports.ComponentPoolManager=xe,exports.ComponentRegistry=Le,exports.ComponentSerializer=lt,exports.ComponentSparseSet=Ze,exports.ComponentStorage=He,exports.ConsoleLogger=K,exports.Core=Ft,exports.DEFAULT_PROFILER_CONFIG=Pe,exports.DeepCopy=function(e,t){var n=String(t);e.constructor.__deepCopyFields||(e.constructor.__deepCopyFields=new Set),e.constructor.__deepCopyFields.add(n)},exports.ECSComponent=N,exports.ECSFluentAPI=wt,exports.ECSSystem=function(e,t){return function(n){if(!e||"string"!=typeof e)throw new Error("ECSSystem装饰器必须提供有效的类型名称");return n[z]=e,t&&(n.__systemMetadata__=t),n}},exports.ENTITY_REF_METADATA=te,exports.EVENT_TYPES=jt,exports.Emitter=Ht,exports.EnableSoA=function(e){return e.__enableSoA=!0,e},exports.Entity=Ge,exports.EntityDataCollector=Te,exports.EntityList=Ue,exports.EntityProcessorList=Ve,exports.EntityRef=function(){return function(e,t){var n=e.constructor,r=n[te];r||(r={properties:new Set},n[te]=r);var i="symbol"==typeof t?t.toString():t;r.properties.add(i),Object.defineProperty(e,t,{get:function(){return re(this).get(i)||null},set:function(e){var t=re(this),n=t.get(i)||null;if(n!==e){var r=null!==this.entityId?Q(this.entityId):null;if(r&&r.referenceTracker){var o=r.referenceTracker;if(n&&o.unregisterReference(n,this,i),e){var s;if(e.scene!==r)return void ee.error("Cannot reference Entity from different Scene. Entity: "+e.name+", Scene: "+((null===(s=e.scene)||void 0===s?void 0:s.name)||"null"));if(e.isDestroyed)return ee.warn("Cannot reference destroyed Entity: "+e.name),void t.set(i,null);o.registerReference(e,this,i)}t.set(i,e)}else t.set(i,e)}},enumerable:!0,configurable:!0})}},exports.EntitySerializer=ht,exports.EntitySystem=be,exports.EntityTags=en,exports.EventBus=Kt,exports.EventTypeValidator=Gt,exports.Float32=function(e,t){var n=String(t);e.constructor.__float32Fields||(e.constructor.__float32Fields=new Set),e.constructor.__float32Fields.add(n)},exports.Float64=function(e,t){var n=String(t);e.constructor.__float64Fields||(e.constructor.__float64Fields=new Set),e.constructor.__float64Fields.add(n)},exports.FuncPack=Lt,exports.GlobalEventBus=Zt,exports.GlobalManager=Wt,exports.HierarchySystem=Ee,exports.IdentifierPool=Qe,exports.IgnoreSerialization=function(){return function(e,t){var n,r=e.constructor;if(Object.prototype.hasOwnProperty.call(r,pe))n=r[pe];else{var i=r[pe];n={options:i?a({},i.options):{version:1},fields:i?new Map(i.fields):new Map,ignoredFields:i?new Set(i.ignoredFields):new Set},r[pe]=n}n.ignoredFields.add(t)}},exports.IncrementalSerializer=pt,exports.InjectProperty=w,exports.Injectable=E,exports.Int16=function(e,t){var n=String(t);e.constructor.__int16Fields||(e.constructor.__int16Fields=new Set),e.constructor.__int16Fields.add(n)},exports.Int32=he,exports.Int8=function(e,t){var n=String(t);e.constructor.__int8Fields||(e.constructor.__int8Fields=new Set),e.constructor.__int8Fields.add(n)},exports.IntervalSystem=Qt,exports.Logger=X,exports.LoggerManager=Z,exports.Matcher=Se,exports.MigrationBuilder=$t,exports.NumberExtension=on,exports.PROPERTY_METADATA=ce,exports.PassiveSystem=Ut,exports.PerformanceDataCollector=Me,exports.PerformanceMonitor=O,exports.PlatformDetector=an,exports.PlatformManager=Vt,exports.PluginManager=Dt,exports.Pool=D,exports.PoolManager=P,exports.ProcessingSystem=qt,exports.Profile=function(e,t){return void 0===t&&(t=exports.ProfileCategory.Custom),function(n,r,i){var o=i.value,s=e||n.constructor.name+"."+String(r);return i.value=function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];if(!Fe.isEnabled())return o.apply(this,n);var i=Fe.beginSample(s,t);try{var a=o.apply(this,n);return a instanceof Promise?a.finally(function(){Fe.endSample(i)}):(Fe.endSample(i),a)}catch(e){throw Fe.endSample(i),e}},i}},exports.ProfileClass=function(e){return void 0===e&&(e=exports.ProfileCategory.Custom),function(t){return vt.registerClass(t,e)}},exports.ProfilerSDK=Fe,exports.Property=function(e){return function(t,n){var r=t.constructor,i=Reflect.getMetadata(ce,r)||{};i[n]=e,Reflect.defineMetadata(ce,i,r)}},exports.QuerySystem=it,exports.ReactiveQuery=rt,exports.ReferenceTracker=Y,exports.SERIALIZABLE_METADATA=pe,exports.SERIALIZE_FIELD=me,exports.SERIALIZE_OPTIONS=ve,exports.SYSTEM_TYPE_NAME=z,exports.Scene=Ct,exports.SceneDataCollector=Oe,exports.SceneManager=kt,exports.SceneSerializer=dt,exports.Serializable=ye,exports.Serialize=ge,exports.SerializeArray=function(e,t){var n=String(t);e.constructor.__serializeArrayFields||(e.constructor.__serializeArrayFields=new Set),e.constructor.__serializeArrayFields.add(n)},exports.SerializeAsMap=function(){return function(e,t){ge({serializer:function(e){return e instanceof Map?Array.from(e.entries()):null},deserializer:function(e){return Array.isArray(e)?new Map(e):new Map}})(e,t)}},exports.SerializeAsSet=function(){return function(e,t){ge({serializer:function(e){return e instanceof Set?Array.from(e):null},deserializer:function(e){return Array.isArray(e)?new Set(e):new Set}})(e,t)}},exports.SerializeMap=function(e,t){var n=String(t);e.constructor.__serializeMapFields||(e.constructor.__serializeMapFields=new Set),e.constructor.__serializeMapFields.add(n)},exports.SerializeSet=function(e,t){var n=String(t);e.constructor.__serializeSetFields||(e.constructor.__serializeSetFields=new Set),e.constructor.__serializeSetFields.add(n)},exports.ServiceContainer=St,exports.SoAStorage=fe,exports.SparseSet=Je,exports.SystemDataCollector=we,exports.Time=g,exports.Timer=S,exports.TypeSafeEventSystem=st,exports.TypeUtils=rn,exports.TypedEntityBuilder=nn,exports.TypedQueryBuilder=ct,exports.TypedQueryResult=at,exports.Uint16=function(e,t){var n=String(t);e.constructor.__uint16Fields||(e.constructor.__uint16Fields=new Set),e.constructor.__uint16Fields.add(n)},exports.Uint32=function(e,t){var n=String(t);e.constructor.__uint32Fields||(e.constructor.__uint32Fields=new Set),e.constructor.__uint32Fields.add(n)},exports.Uint8=function(e,t){var n=String(t);e.constructor.__uint8Fields||(e.constructor.__uint8Fields=new Set),e.constructor.__uint8Fields.add(n)},exports.Uint8Clamped=function(e,t){var n=String(t);e.constructor.__uint8ClampedFields||(e.constructor.__uint8ClampedFields=new Set),e.constructor.__uint8ClampedFields.add(n)},exports.Updatable=T,exports.VersionMigrationManager=Xt,exports.WebSocketManager=De,exports.WorkerEntitySystem=Yt,exports.World=It,exports.WorldManager=Rt,exports.addAndConfigure=function(e,t,n){return e.addComponent(t),n(t),e},exports.addEntityTag=function(e,t){return e|t},exports.buildEntity=function(e){return new nn(e)},exports.createECSAPI=Mt,exports.createInstance=A,exports.createLogger=$,exports.createQuery=function(){return new ct},exports.getBasicWorkerConfig=function(){return Vt.getInstance().getBasicWorkerConfig()},exports.getComponentDependencies=function(e){return e[F]},exports.getComponentInstanceTypeName=W,exports.getComponentTypeName=L,exports.getComponents=function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];return n.map(function(t){return e.getComponent(t)})},exports.getCurrentAdapter=function(){return Vt.getInstance().getAdapter()},exports.getEntityRefMetadata=ie,exports.getFullPlatformConfig=function(){return Vt.getInstance().getFullPlatformConfig()},exports.getOrAddComponent=function(e,t,n){var r=e.getComponent(t);return r||(r=n(),e.addComponent(r)),r},exports.getPropertyInjectMetadata=function(e){var t=C.get(e);return(null==t?void 0:t.properties)||new Map},exports.getPropertyMetadata=function(e){return Reflect.getMetadata(ce,e)},exports.getSceneByEntityId=Q,exports.getSerializationMetadata=_e,exports.getSystemInstanceTypeName=j,exports.getSystemMetadata=B,exports.getSystemTypeName=H,exports.getUpdatableMetadata=k,exports.hasAdapter=function(){return Vt.getInstance().hasAdapter()},exports.hasAnyComponent=function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];return n.some(function(t){return e.hasComponent(t)})},exports.hasComponents=function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];return n.every(function(t){return e.hasComponent(t)})},exports.hasEntityRef=function(e){return null!==ie(e)},exports.hasEntityTag=tn,exports.hasPropertyMetadata=function(e){return Reflect.hasMetadata(ce,e)},exports.injectProperties=x,exports.isComponentArray=function(e){return e.every(sn)},exports.isComponentType=sn,exports.isFolder=function(e){return tn(e,en.FOLDER)},exports.isHidden=function(e){return tn(e,en.HIDDEN)},exports.isLocked=function(e){return tn(e,en.LOCKED)},exports.isSerializable=function(e){return null!==_e(e)},exports.isUpdatable=I,exports.queryFor=function(e){return new ct([e])},exports.queryForAll=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return new ct(t)},exports.registerInjectable=function(e,t,n){if(void 0===n&&(n=!0),!M(t))throw new Error(t.name+" is not marked as @Injectable(). Please add @Injectable() decorator to the class.");var r=function(e){return A(t,e)};n?e.registerSingleton(t,r):e.registerTransient(t,r)},exports.registerPlatformAdapter=function(e){return Vt.getInstance().registerAdapter(e)},exports.removeEntityTag=function(e,t){return e&~t},exports.requireComponent=function(e,t){var n=e.getComponent(t);if(!n)throw new Error("Component "+t.name+" not found on entity "+e.name+" (id: "+e.id+")");return n},exports.resetLoggerColors=function(){Z.getInstance().resetColors()},exports.setGlobalLogLevel=function(e){Z.getInstance().setGlobalLevel(e)},exports.setLoggerColors=function(e){Z.getInstance().setGlobalColors(e)},exports.setLoggerFactory=function(e){Z.getInstance().setLoggerFactory(e)},exports.supportsFeature=function(e){return Vt.getInstance().supportsFeature(e)},exports.tryGetComponent=function(e,t){var n=e.getComponent(t);return null!==n?n:void 0},exports.updateComponent=function(e,t,n){var r=e.getComponent(t);return!!r&&(Object.assign(r,n),!0)};
4
- //# sourceMappingURL=index.es5.js.map