@ecsframework/core 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/flamework.build +2 -1
- package/out/framework/base-system.d.ts +8 -8
- package/out/framework/base-system.luau +32 -8
- package/out/framework/decorators/tagged.d.ts +1 -1
- package/out/framework/systems/roblox-instance-system.luau +20 -2
- package/out/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/flamework.build
CHANGED
|
@@ -13,7 +13,8 @@
|
|
|
13
13
|
"@ecsframework/core:out/framework/flamecs/registry@Wildcard": "$ecsframework:core:framework/flamecs/registry@Wildcard",
|
|
14
14
|
"@ecsframework/core:out/framework/components/destroyed-component@DestroyComponent": "$ecsframework:core:framework/components/destroyed-component@DestroyComponent",
|
|
15
15
|
"@ecsframework/core:out/framework/decorators/inject-type@InjectType": "$ecsframework:core:framework/decorators/inject-type@InjectType",
|
|
16
|
-
"@ecsframework/core:out/framework/decorators/tagged@TaggedInstance": "$ecsframework:core:framework/decorators/tagged@TaggedInstance"
|
|
16
|
+
"@ecsframework/core:out/framework/decorators/tagged@TaggedInstance": "$ecsframework:core:framework/decorators/tagged@TaggedInstance",
|
|
17
|
+
"@ecsframework/core:out/framework/flamecs/registry@Tag": "$ecsframework:core:framework/flamecs/registry@Tag"
|
|
17
18
|
},
|
|
18
19
|
"metadata": {},
|
|
19
20
|
"identifierPrefix": "$ecsframework:core",
|
|
@@ -22,7 +22,7 @@ export declare abstract class BaseSystem {
|
|
|
22
22
|
* @param key - Flamework autogenerated key.
|
|
23
23
|
* @metadata macro
|
|
24
24
|
*/
|
|
25
|
-
|
|
25
|
+
AddPairRuntime<T extends Pair<Tag>>(entity: Entity, object: Entity, key?: ComponentKey<ExtractPredicate<T>> | string): void;
|
|
26
26
|
/**
|
|
27
27
|
* Adds a fully defined pair to an entity. This is used when both the predicate
|
|
28
28
|
* and object of the pair are known at compile-time.
|
|
@@ -32,7 +32,7 @@ export declare abstract class BaseSystem {
|
|
|
32
32
|
* @param key - Flamework autogenerated key.
|
|
33
33
|
* @metadata macro
|
|
34
34
|
*/
|
|
35
|
-
|
|
35
|
+
AddPairStatic<T extends Pair<Tag, defined>>(entity: Entity, key?: ResolveKey<T> | string): void;
|
|
36
36
|
/**
|
|
37
37
|
* Adds a component to an entity.
|
|
38
38
|
*
|
|
@@ -52,7 +52,7 @@ export declare abstract class BaseSystem {
|
|
|
52
52
|
* @param key - Flamework autogenerated key.
|
|
53
53
|
* @metadata macro
|
|
54
54
|
*/
|
|
55
|
-
|
|
55
|
+
SetPairRuntime<T extends Pair<defined>>(entity: Entity, object: Entity, value: ResolveValue<T>, key?: ComponentKey<ExtractPredicate<T>> | string): void;
|
|
56
56
|
/**
|
|
57
57
|
* Sets a value for a fully defined pair on an entity. This is used when both
|
|
58
58
|
* the predicate and object of the pair are known at compile-time.
|
|
@@ -63,7 +63,7 @@ export declare abstract class BaseSystem {
|
|
|
63
63
|
* @param key - Flamework autogenerated key.
|
|
64
64
|
* @metadata macro
|
|
65
65
|
*/
|
|
66
|
-
|
|
66
|
+
SetPairStatic<T extends Pair<defined, defined>>(entity: Entity, value: ResolveValue<T>, key?: ResolveKey<T>): void;
|
|
67
67
|
/**
|
|
68
68
|
* Sets a value for a component on an entity.
|
|
69
69
|
*
|
|
@@ -114,7 +114,7 @@ export declare abstract class BaseSystem {
|
|
|
114
114
|
* @param key - Flamework autogenerated key.
|
|
115
115
|
* @metadata macro
|
|
116
116
|
*/
|
|
117
|
-
|
|
117
|
+
RemovePairRuntime<T extends Pair<defined>>(entity: Entity, object: Entity, key?: ComponentKey<ExtractPredicate<T>> | string): void;
|
|
118
118
|
/**
|
|
119
119
|
* Removes a fully defined pair from an entity. This is used when both the
|
|
120
120
|
* predicate and object of the pair are known at compile-time.
|
|
@@ -124,7 +124,7 @@ export declare abstract class BaseSystem {
|
|
|
124
124
|
* @param key - Flamework autogenerated key.
|
|
125
125
|
* @metadata macro
|
|
126
126
|
*/
|
|
127
|
-
|
|
127
|
+
RemovePairStatic<T extends Pair<defined, defined>>(entity: Entity, key?: ResolveKey<T>): void;
|
|
128
128
|
/**
|
|
129
129
|
* Removes a component from an entity.
|
|
130
130
|
*
|
|
@@ -144,7 +144,7 @@ export declare abstract class BaseSystem {
|
|
|
144
144
|
* @returns The value associated with the pair relationship.
|
|
145
145
|
* @metadata macro
|
|
146
146
|
*/
|
|
147
|
-
|
|
147
|
+
GetPairRuntime<T extends Pair<defined>>(entity: Entity, object: Entity, key?: ComponentKey<ExtractPredicate<T>> | string): ResolveValue<T> | undefined;
|
|
148
148
|
/**
|
|
149
149
|
* Retrieves the value of a component or pair for a specific entity.
|
|
150
150
|
*
|
|
@@ -165,7 +165,7 @@ export declare abstract class BaseSystem {
|
|
|
165
165
|
* @returns True if the pair relationship exists, false otherwise.
|
|
166
166
|
* @metadata macro
|
|
167
167
|
*/
|
|
168
|
-
|
|
168
|
+
HasPairRuntime<T extends Pair<defined>>(entity: Entity, object: Entity, key?: ComponentKey<ExtractPredicate<T>> | string): boolean;
|
|
169
169
|
/**
|
|
170
170
|
* Checks if a component or pair exists for a specific entity.
|
|
171
171
|
*
|
|
@@ -25,8 +25,20 @@ do
|
|
|
25
25
|
function BaseSystem:constructor()
|
|
26
26
|
self.__hookStates = {}
|
|
27
27
|
end
|
|
28
|
-
function BaseSystem:
|
|
29
|
-
return add(self.world, entity,
|
|
28
|
+
function BaseSystem:AddPairRuntime(entity, object, key)
|
|
29
|
+
return add(self.world, entity, object, key)
|
|
30
|
+
end
|
|
31
|
+
function BaseSystem:AddPairStatic(entity, key)
|
|
32
|
+
return add(self.world, entity, key, "$ecsframework:core:framework/flamecs/registry@Tag")
|
|
33
|
+
end
|
|
34
|
+
function BaseSystem:AddComponent(entity, key)
|
|
35
|
+
return add(self.world, entity, key, "$ecsframework:core:framework/flamecs/registry@Tag")
|
|
36
|
+
end
|
|
37
|
+
function BaseSystem:SetPairRuntime(entity, object, value, key)
|
|
38
|
+
return set(self.world, entity, object, value, key)
|
|
39
|
+
end
|
|
40
|
+
function BaseSystem:SetPairStatic(entity, value, key)
|
|
41
|
+
return set(self.world, entity, value, key, "$p:never")
|
|
30
42
|
end
|
|
31
43
|
function BaseSystem:SetComponent(entity, argument1, argument2, argument3)
|
|
32
44
|
local classComponent = self:GetClassComponent(argument2)
|
|
@@ -79,14 +91,26 @@ do
|
|
|
79
91
|
end
|
|
80
92
|
return insert(self.world, entity, argument1, argument2)
|
|
81
93
|
end
|
|
82
|
-
function BaseSystem:
|
|
83
|
-
return remove(self.world, entity,
|
|
94
|
+
function BaseSystem:RemovePairRuntime(entity, object, key)
|
|
95
|
+
return remove(self.world, entity, object, key)
|
|
96
|
+
end
|
|
97
|
+
function BaseSystem:RemovePairStatic(entity, key)
|
|
98
|
+
return remove(self.world, entity, key, "@rbxts/compiler-types:types/core@$p:error")
|
|
99
|
+
end
|
|
100
|
+
function BaseSystem:RemoveComponent(entity, key)
|
|
101
|
+
return remove(self.world, entity, key, "@rbxts/compiler-types:types/core@$p:error")
|
|
102
|
+
end
|
|
103
|
+
function BaseSystem:GetPairRuntime(entity, object, key)
|
|
104
|
+
return get(self.world, entity, object, key)
|
|
105
|
+
end
|
|
106
|
+
function BaseSystem:GetComponent(entity, key)
|
|
107
|
+
return get(self.world, entity, key, "@rbxts/compiler-types:types/core@$p:error")
|
|
84
108
|
end
|
|
85
|
-
function BaseSystem:
|
|
86
|
-
return
|
|
109
|
+
function BaseSystem:HasPairRuntime(entity, object, key)
|
|
110
|
+
return has(self.world, entity, object, key)
|
|
87
111
|
end
|
|
88
|
-
function BaseSystem:HasComponent(entity,
|
|
89
|
-
return has(self.world, entity,
|
|
112
|
+
function BaseSystem:HasComponent(entity, key)
|
|
113
|
+
return has(self.world, entity, key, "@rbxts/compiler-types:types/core@$p:error")
|
|
90
114
|
end
|
|
91
115
|
function BaseSystem:TargetComponent(entity, key)
|
|
92
116
|
return target(self.world, entity, key)
|
|
@@ -3,6 +3,6 @@ import { World } from "@rbxts/jecs";
|
|
|
3
3
|
import { DependenciesContainer } from "../dependencies-container";
|
|
4
4
|
export interface TaggedInstance<T> {
|
|
5
5
|
Tag: string;
|
|
6
|
-
OnCreateData
|
|
6
|
+
OnCreateData?: (instance: Instance, world: World, container: DependenciesContainer) => Partial<T>;
|
|
7
7
|
}
|
|
8
8
|
export declare function Tagged<T>(options: TaggedInstance<T>): (target: Constructor<T>) => void;
|
|
@@ -51,7 +51,16 @@ do
|
|
|
51
51
|
_condition = self.world:entity()
|
|
52
52
|
end
|
|
53
53
|
local entity = _condition
|
|
54
|
-
|
|
54
|
+
local _self = self
|
|
55
|
+
local _result = options.OnCreateData
|
|
56
|
+
if _result ~= nil then
|
|
57
|
+
_result = _result(instance, self.world, self.container)
|
|
58
|
+
end
|
|
59
|
+
local _condition_1 = _result
|
|
60
|
+
if _condition_1 == nil then
|
|
61
|
+
_condition_1 = {}
|
|
62
|
+
end
|
|
63
|
+
_self:SetComponent(entity, _condition_1, key)
|
|
55
64
|
self:SetComponent(entity, {
|
|
56
65
|
Instance = instance,
|
|
57
66
|
}, "$ecsframework:core:framework/components/roblox-instance-component@RobloxInstanceComponent")
|
|
@@ -75,7 +84,16 @@ do
|
|
|
75
84
|
_condition = self.world:entity()
|
|
76
85
|
end
|
|
77
86
|
local entity = _condition
|
|
78
|
-
|
|
87
|
+
local _self = self
|
|
88
|
+
local _result = options.OnCreateData
|
|
89
|
+
if _result ~= nil then
|
|
90
|
+
_result = _result(instance, self.world, self.container)
|
|
91
|
+
end
|
|
92
|
+
local _condition_1 = _result
|
|
93
|
+
if _condition_1 == nil then
|
|
94
|
+
_condition_1 = {}
|
|
95
|
+
end
|
|
96
|
+
_self:SetComponent(entity, _condition_1, key)
|
|
79
97
|
self:SetComponent(entity, {
|
|
80
98
|
Instance = instance,
|
|
81
99
|
}, "$ecsframework:core:framework/components/roblox-instance-component@RobloxInstanceComponent")
|
package/out/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../node_modules/@rbxts/t/lib/t.d.ts","../node_modules/@flamework/core/out/modding.d.ts","../node_modules/@flamework/core/out/utility.d.ts","../node_modules/@flamework/core/out/reflect.d.ts","../node_modules/@flamework/core/out/flamework.d.ts","../node_modules/@flamework/core/out/index.d.ts","../node_modules/@rbxts/jecs/jecs.d.ts","../node_modules/@rbxts/services/index.d.ts","../src/framework/flamecs/signal.ts","../src/framework/flamecs/registry.ts","../src/framework/flamecs/query.ts","../src/framework/flamecs/topo.ts","../src/framework/flamecs/index.ts","../src/framework/components/destroyed-component.ts","../src/framework/decorators/inject-type.ts","../src/framework/utilities.ts","../src/framework/hooks/query-change.ts","../node_modules/@rbxts/immut/src/none.d.ts","../node_modules/@rbxts/immut/src/makedraftsafe.d.ts","../node_modules/@rbxts/immut/src/makedraftsafereadonly.d.ts","../node_modules/@rbxts/immut/src/table.d.ts","../node_modules/@rbxts/immut/src/types-internal.d.ts","../node_modules/@rbxts/immut/src/types-external.d.ts","../node_modules/@rbxts/immut/src/index.d.ts","../src/framework/base-system.ts","../src/framework/decorators/component.ts","../src/framework/decorators/system.ts","../src/framework/dependencies-container.ts","../node_modules/@rbxts/planck/out/utils.d.ts","../node_modules/@rbxts/planck/out/conditions.d.ts","../node_modules/@rbxts/planck/out/phase.d.ts","../node_modules/@rbxts/planck/out/pipeline.d.ts","../node_modules/@rbxts/planck/out/scheduler.d.ts","../node_modules/@rbxts/planck/out/index.d.ts","../node_modules/@rbxts/planck-runservice/out/index.d.ts","../src/framework/index.ts","../src/framework/decorators/unaffectable.ts","../src/framework/decorators/tagged.ts","../src/framework/components/roblox-instance-component.ts","../src/framework/systems/roblox-instance-system.ts","../src/framework/hooks/use-added.ts","../src/framework/hooks/use-removed.ts","../src/framework/hooks/use-changed.ts","../src/framework/hooks/use-event.ts","../src/framework/hooks/use-throttle.ts","../src/index.ts","../node_modules/@rbxts/types/include/generated/enums.d.ts","../node_modules/@rbxts/types/include/generated/none.d.ts","../node_modules/@rbxts/types/include/lua.d.ts","../node_modules/@rbxts/types/include/macro_math.d.ts","../node_modules/@rbxts/types/include/roblox.d.ts","../node_modules/@rbxts/compiler-types/types/array.d.ts","../node_modules/@rbxts/compiler-types/types/callmacros.d.ts","../node_modules/@rbxts/compiler-types/types/iterable.d.ts","../node_modules/@rbxts/compiler-types/types/map.d.ts","../node_modules/@rbxts/compiler-types/types/promise.d.ts","../node_modules/@rbxts/compiler-types/types/set.d.ts","../node_modules/@rbxts/compiler-types/types/string.d.ts","../node_modules/@rbxts/compiler-types/types/symbol.d.ts","../node_modules/@rbxts/compiler-types/types/typeutils.d.ts","../node_modules/@rbxts/compiler-types/types/eslintignore.d.ts","../node_modules/@rbxts/compiler-types/types/core.d.ts","../node_modules/@rbxts/maid/maid.d.ts","../node_modules/@rbxts/object-utils/index.d.ts","../node_modules/@rbxts/signal/index.d.ts"],"fileInfos":[{"version":"429178068cb844a452dad87eb0a7a02466f3509fff9e7f1187fdb0595e66b8df","signature":false},{"version":"f984bb5cbefabad3e6279516673ca0cb2098304225cfe61987f2af81daf3f99a","signature":false},{"version":"5ed7aeb5909b9e1607087690870addc6df2d3d7e6e3e16f389fe21da53915526","signature":false},{"version":"1fe834c2d906a0d49917ce932bb495bfbb58912d49ad6b03f66ae0be14ad9def","signature":false},{"version":"99709374cb8bf64c65dad5350c88a805af91e107545e18af91e4839d4336a441","signature":false},{"version":"a1a226a8d6b1039d7d0613381c2f4dec614c30305cf96ee973cc49973d9745e4","signature":false},{"version":"1f0f6e103444aad5f544988f7a8390e351b30481ce6eac8ad7765911c56dda6e","signature":false},{"version":"9e6c13e0c00f23d1e9a40e4652ef4e604bdf6747feab7d7b7ca66b5d6bcfa330","signature":false},{"version":"cff894ef201eb519e33e59b861ceb3766076e4f371734218d331157a3b307a11","signature":false},{"version":"047c564d81915ef34ed7d437bd154ad73052e755277872da34479b77330e0f08","signature":false},{"version":"cf75483180e62aa81e878d688cdd40b6d86b120cd84ea4acff735b13c9a81406","signature":false},{"version":"c2b615b7c60bf38930966af14e64cc1ef33ed23ba0a77bdd8ea09fdc4f5e2683","signature":false},{"version":"3800f61fdda8762cb1f766f6badbc560a94853c8c6a21b67d8e0f746eb15926c","signature":false},{"version":"a3adf1732167824c54869e10749d1d5529167a6dbe6fca946e572fb871d40779","signature":false},{"version":"d067a12923433fce55f6f0a6c1d9cb940845dc0f65b1bc9285e83caa622256d5","signature":false},{"version":"4988bac9e48fcefb7dbc164a2aa624d33600eb53f57ed911208c94e1a3f1a871","signature":false},{"version":"f63d7cdd778a7ea18b0d61359ab48023b001d45096dfb759dc09a101c0c41a72","signature":false},{"version":"d9d14150234c32bc0bf772d69182b166d8de600e0e5207924867da19351aca53","signature":false},{"version":"1a73eb921b7aa92d4c2d86ec95a39f5f73cf170b939314394d1b87bd06ae707b","signature":false},{"version":"5e5db3fb2f4f1a4d5276b9ba8f78df1f5f73754eeae5e2c23028f7830a2b66f9","signature":false},{"version":"3a36f6c843d1b4e91f80d6ff3ef8b5e25e1948fae24b8c62631c5df1faf82e41","signature":false},{"version":"dba94b73dbbe23c5066eeafc9f4f8dbf4430a4ab73d2d0d251fe4c1cd029d90b","signature":false},{"version":"564a52d0f974d976d982a2385ac5b353329f2dadab4f7616ee303678a7f64134","signature":false},{"version":"ff329383f830b2ba7578f67a374e2b8077f0b3d7036bf4d1a24edcc95de45c5d","signature":false},{"version":"d154551505359f56c6cd9d43926435dd86edb5ce5c29b26b5f22230910d4e9d9","signature":false},{"version":"006a579b2cba5f46bed75e9eeee7bdb50455232fa1bb585e0420ad9ddef4a683","signature":false},{"version":"afa4bcb1c950e70212cc4ccf83a6096a25bc4280fb03bf94157f2eea853fad15","signature":false},{"version":"d836c32683f074ffd9a72ef601846fae421827220ccd6a4256bbe6f9f46f6b4e","signature":false},{"version":"6012a8d5986c48029756e1c9ad5153f50af540e8aaa76ddf26ca860835857ce9","signature":false},{"version":"499ab101952e35989d138b092f00c4af72eeecbfc8e8f5cf66bedce4b6ad8d95","signature":false},{"version":"901e5e72e5541e609f179f0ac44db1a057a04c13b535504eb3ea9d59b44d7d1b","signature":false},{"version":"81e5cefd5ad881498e2a6ae98eabd1eae22432f569cf96e7d82dab79fd8399f5","signature":false},{"version":"008dae8f3575ffbef098e31624a1da2b0d5defe667df587db66401c3f8f686dc","signature":false},{"version":"c46bd205c2482e6063d0e411e9425b2a27954a700af9e40fc9b60d121951ad21","signature":false},{"version":"00c835dad309d5d7471f0e55193c146cf5fa5f03107c012e63b4d8f122acba34","signature":false},{"version":"d79cde4c87a511f7219963cdbd32ec32bc3de93b2ca943d6046c1c31e2a3ee62","signature":false},{"version":"531c125862ac8e801bca17eaacc89b21e0d49ef80a76bf7dbd09b006f3e27a4a","signature":false},{"version":"f703bdd004e873c241b6fc448c94f61153d98cf1c332026624655034b118caa8","signature":false},{"version":"be4e6ec9fe788d72a70afbdc4c297ea31d842a9ea301559f5ca42cdf13db1383","signature":false},{"version":"ee38938a23ea98b25d086d346d41061bf2d25b4c266a32656138f7e45e4d463a","signature":false},{"version":"8d1395d7fa6381cf71368706cf815130a32895fddd44acb047751072801f90bb","signature":false},{"version":"cdeedec78d8c66fc7522d13e9a2150edda98b18fd3bb95d0f556b6678d0c3739","signature":false},{"version":"7e8bf6cb0c7e13b34a8b40c4b36e633d639b8c4a3b5dec3a55a08bf26caf9a6b","signature":false},{"version":"27b0c41f2f485e59eaaab0d65c192ca022d7fcea87b2c24c9405a91e8b7a4a79","signature":false},{"version":"20d034b52037a7e5b0268fde45a111ffa9f0ae2e04819549d677262711d9dcf2","signature":false},{"version":"f341311f710d466f9ca2585a6828874bb0f902b121fffaf6f4c68d89b6562986","signature":false},{"version":"6eb7fae75c4a1a6bdee1d48700000f43f9d5cff7987f08bd49f21ed1ac0b7c4b","signature":false,"affectsGlobalScope":true},{"version":"3a5626be0c9a1aae6f75d0d38bcea4d070e5d1381a843a9b4eafd3eab6ed7ef7","signature":false,"affectsGlobalScope":true},{"version":"f6c97e5b3403d6f8683372fff53430b8d93728a60f04623bd3de9e470fe71259","signature":false,"affectsGlobalScope":true},{"version":"bfb3f3bd1d89a54d975a7554c8d12209188d7b849d00b9345fd0d41d79858e38","signature":false,"affectsGlobalScope":true},{"version":"22f424c221d557a69d83386550a272558bfef6f81b1dbacd3d35b4651b128d2b","signature":false,"affectsGlobalScope":true},{"version":"d1461f750f98ba938cf3b43f1095774f6007b92a4550bbfde87451dccc32b3bd","signature":false,"affectsGlobalScope":true},{"version":"c30a7a2198451431d80de5f9ba7197a0c8a56d52b29373e7270115776a28f3f3","signature":false,"affectsGlobalScope":true},{"version":"d4d6595aca02f63e2107a842fdd8f79e147fd802acd0e60900f16bee4f861173","signature":false,"affectsGlobalScope":true},{"version":"2070e277f4e874747a7706f000f19f2f512f9829f65f4caf634a908c07f45117","signature":false,"affectsGlobalScope":true},{"version":"7f53343307db666fa6a82bf5165f961d4b70e268ffb7e4e108f06d953c10c679","signature":false,"affectsGlobalScope":true},{"version":"8d10b5097dc2692979a984b4c56deaa0ad77c3a7b036a066ea0a72ec8c514830","signature":false,"affectsGlobalScope":true},{"version":"a252fd9c3a3e55eab45c1c78d376e7a8d82e736d55a5d95a1b285290881d5f88","signature":false,"affectsGlobalScope":true},{"version":"dde6ecc6409a17b372382192ca43c78c52015f34f49547ead38194c63127793a","signature":false,"affectsGlobalScope":true},{"version":"ed7b23f234388de62c9f86bcecd4608a854067fc20f2b4698b9f14ce0d92f4f2","signature":false,"affectsGlobalScope":true},{"version":"85ce7d3110c6652c276ea4d027bc1887176d97a5b7494f288cbbdfb2b48a11ee","signature":false,"affectsGlobalScope":true},{"version":"52535c5f6ea63e76c537e39df77b0720827e3f8d0fac9e2386352f0b6110a211","signature":false,"affectsGlobalScope":true},{"version":"abfe7c34c18ff9a242d5b7e4aba61dfb14b2db55ce5edce1798aaae365fa9cfe","signature":false},{"version":"7b9707d4934d0b63c71920058db2bd6f815b90c4ace1100ea24915c14c9af895","signature":false},{"version":"f73b1d7270a91ed30c71075ee5e0472465931a37ecdb5834c9d8ebe828847b45","signature":false}],"root":[[9,17],[25,28],[36,46]],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"downlevelIteration":true,"experimentalDecorators":true,"jsx":2,"module":1,"outDir":"./","rootDir":"../src","strict":true,"target":99,"tsBuildInfoFile":"./tsconfig.tsbuildinfo"},"fileIdsList":[[1,2,3],[2,4,5],[1,3],[3],[2],[51],[51,52,53,54,55,56,57,58,59,60,61],[18,21,22,23],[19,20],[22],[34],[29],[30,31,32,33],[31],[29,30,31,32,34],[47,51],[48,62],[47,48,49,50,62],[3,6,7,9,10,13,14,15,17,23,24,36],[13],[26],[3,6,7,16,25],[1,6],[3,6,16,25],[3,7,13,16,28],[6],[3,6,15,16],[10,11,12],[7,10],[6,7,9],[7,25],[6,7,10,13,14,16],[6,10,13,16],[6,13],[3,6,7,8,9,10,13,16,25,26,27,28,34,35],[7,8,10,15,16,25,27,28,38,39],[3,6,7,8,10,13,25],[13,14,15,16,17,25,26,27,28,36,37,38,39,40,41,42,43,44,45]],"referencedMap":[[5,1],[6,2],[2,3],[4,4],[3,5],[52,6],[53,6],[62,7],[61,6],[54,6],[55,6],[56,6],[57,6],[58,6],[59,6],[60,6],[24,8],[21,9],[23,10],[35,11],[30,12],[34,13],[32,14],[33,15],[47,6],[48,16],[49,17],[51,18],[25,19],[14,20],[39,21],[26,22],[15,23],[27,24],[38,25],[37,26],[28,27],[13,28],[11,29],[10,30],[12,31],[17,32],[41,33],[43,33],[44,34],[42,33],[45,34],[36,35],[40,36],[16,37],[46,38]],"semanticDiagnosticsPerFile":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65]},"version":"5.5.3"}
|
|
1
|
+
{"program":{"fileNames":["../node_modules/@rbxts/t/lib/t.d.ts","../node_modules/@flamework/core/out/modding.d.ts","../node_modules/@flamework/core/out/utility.d.ts","../node_modules/@flamework/core/out/reflect.d.ts","../node_modules/@flamework/core/out/flamework.d.ts","../node_modules/@flamework/core/out/index.d.ts","../node_modules/@rbxts/jecs/jecs.d.ts","../node_modules/@rbxts/services/index.d.ts","../src/framework/flamecs/signal.ts","../src/framework/flamecs/registry.ts","../src/framework/flamecs/query.ts","../src/framework/flamecs/topo.ts","../src/framework/flamecs/index.ts","../src/framework/components/destroyed-component.ts","../src/framework/decorators/inject-type.ts","../src/framework/utilities.ts","../src/framework/hooks/query-change.ts","../node_modules/@rbxts/immut/src/none.d.ts","../node_modules/@rbxts/immut/src/makedraftsafe.d.ts","../node_modules/@rbxts/immut/src/makedraftsafereadonly.d.ts","../node_modules/@rbxts/immut/src/table.d.ts","../node_modules/@rbxts/immut/src/types-internal.d.ts","../node_modules/@rbxts/immut/src/types-external.d.ts","../node_modules/@rbxts/immut/src/index.d.ts","../src/framework/base-system.ts","../src/framework/decorators/component.ts","../src/framework/decorators/system.ts","../src/framework/dependencies-container.ts","../node_modules/@rbxts/planck/out/utils.d.ts","../node_modules/@rbxts/planck/out/conditions.d.ts","../node_modules/@rbxts/planck/out/phase.d.ts","../node_modules/@rbxts/planck/out/pipeline.d.ts","../node_modules/@rbxts/planck/out/scheduler.d.ts","../node_modules/@rbxts/planck/out/index.d.ts","../node_modules/@rbxts/planck-runservice/out/index.d.ts","../src/framework/index.ts","../src/framework/decorators/unaffectable.ts","../src/framework/decorators/tagged.ts","../src/framework/components/roblox-instance-component.ts","../src/framework/systems/roblox-instance-system.ts","../src/framework/hooks/use-added.ts","../src/framework/hooks/use-removed.ts","../src/framework/hooks/use-changed.ts","../src/framework/hooks/use-event.ts","../src/framework/hooks/use-throttle.ts","../src/index.ts","../node_modules/@rbxts/types/include/generated/enums.d.ts","../node_modules/@rbxts/types/include/generated/none.d.ts","../node_modules/@rbxts/types/include/lua.d.ts","../node_modules/@rbxts/types/include/macro_math.d.ts","../node_modules/@rbxts/types/include/roblox.d.ts","../node_modules/@rbxts/compiler-types/types/array.d.ts","../node_modules/@rbxts/compiler-types/types/callmacros.d.ts","../node_modules/@rbxts/compiler-types/types/iterable.d.ts","../node_modules/@rbxts/compiler-types/types/map.d.ts","../node_modules/@rbxts/compiler-types/types/promise.d.ts","../node_modules/@rbxts/compiler-types/types/set.d.ts","../node_modules/@rbxts/compiler-types/types/string.d.ts","../node_modules/@rbxts/compiler-types/types/symbol.d.ts","../node_modules/@rbxts/compiler-types/types/typeutils.d.ts","../node_modules/@rbxts/compiler-types/types/eslintignore.d.ts","../node_modules/@rbxts/compiler-types/types/core.d.ts","../node_modules/@rbxts/maid/maid.d.ts","../node_modules/@rbxts/object-utils/index.d.ts","../node_modules/@rbxts/signal/index.d.ts"],"fileInfos":[{"version":"429178068cb844a452dad87eb0a7a02466f3509fff9e7f1187fdb0595e66b8df","signature":false},{"version":"f984bb5cbefabad3e6279516673ca0cb2098304225cfe61987f2af81daf3f99a","signature":false},{"version":"5ed7aeb5909b9e1607087690870addc6df2d3d7e6e3e16f389fe21da53915526","signature":false},{"version":"1fe834c2d906a0d49917ce932bb495bfbb58912d49ad6b03f66ae0be14ad9def","signature":false},{"version":"99709374cb8bf64c65dad5350c88a805af91e107545e18af91e4839d4336a441","signature":false},{"version":"a1a226a8d6b1039d7d0613381c2f4dec614c30305cf96ee973cc49973d9745e4","signature":false},{"version":"1f0f6e103444aad5f544988f7a8390e351b30481ce6eac8ad7765911c56dda6e","signature":false},{"version":"9e6c13e0c00f23d1e9a40e4652ef4e604bdf6747feab7d7b7ca66b5d6bcfa330","signature":false},{"version":"cff894ef201eb519e33e59b861ceb3766076e4f371734218d331157a3b307a11","signature":false},{"version":"047c564d81915ef34ed7d437bd154ad73052e755277872da34479b77330e0f08","signature":false},{"version":"cf75483180e62aa81e878d688cdd40b6d86b120cd84ea4acff735b13c9a81406","signature":false},{"version":"c2b615b7c60bf38930966af14e64cc1ef33ed23ba0a77bdd8ea09fdc4f5e2683","signature":false},{"version":"3800f61fdda8762cb1f766f6badbc560a94853c8c6a21b67d8e0f746eb15926c","signature":false},{"version":"a3adf1732167824c54869e10749d1d5529167a6dbe6fca946e572fb871d40779","signature":false},{"version":"d067a12923433fce55f6f0a6c1d9cb940845dc0f65b1bc9285e83caa622256d5","signature":false},{"version":"4988bac9e48fcefb7dbc164a2aa624d33600eb53f57ed911208c94e1a3f1a871","signature":false},{"version":"f63d7cdd778a7ea18b0d61359ab48023b001d45096dfb759dc09a101c0c41a72","signature":false},{"version":"d9d14150234c32bc0bf772d69182b166d8de600e0e5207924867da19351aca53","signature":false},{"version":"1a73eb921b7aa92d4c2d86ec95a39f5f73cf170b939314394d1b87bd06ae707b","signature":false},{"version":"5e5db3fb2f4f1a4d5276b9ba8f78df1f5f73754eeae5e2c23028f7830a2b66f9","signature":false},{"version":"3a36f6c843d1b4e91f80d6ff3ef8b5e25e1948fae24b8c62631c5df1faf82e41","signature":false},{"version":"dba94b73dbbe23c5066eeafc9f4f8dbf4430a4ab73d2d0d251fe4c1cd029d90b","signature":false},{"version":"564a52d0f974d976d982a2385ac5b353329f2dadab4f7616ee303678a7f64134","signature":false},{"version":"ff329383f830b2ba7578f67a374e2b8077f0b3d7036bf4d1a24edcc95de45c5d","signature":false},{"version":"5b8471ea543b03b65f75b09061c9745095801ee51340b6031dd2d47c310248e0","signature":false},{"version":"006a579b2cba5f46bed75e9eeee7bdb50455232fa1bb585e0420ad9ddef4a683","signature":false},{"version":"afa4bcb1c950e70212cc4ccf83a6096a25bc4280fb03bf94157f2eea853fad15","signature":false},{"version":"d836c32683f074ffd9a72ef601846fae421827220ccd6a4256bbe6f9f46f6b4e","signature":false},{"version":"6012a8d5986c48029756e1c9ad5153f50af540e8aaa76ddf26ca860835857ce9","signature":false},{"version":"499ab101952e35989d138b092f00c4af72eeecbfc8e8f5cf66bedce4b6ad8d95","signature":false},{"version":"901e5e72e5541e609f179f0ac44db1a057a04c13b535504eb3ea9d59b44d7d1b","signature":false},{"version":"81e5cefd5ad881498e2a6ae98eabd1eae22432f569cf96e7d82dab79fd8399f5","signature":false},{"version":"008dae8f3575ffbef098e31624a1da2b0d5defe667df587db66401c3f8f686dc","signature":false},{"version":"c46bd205c2482e6063d0e411e9425b2a27954a700af9e40fc9b60d121951ad21","signature":false},{"version":"00c835dad309d5d7471f0e55193c146cf5fa5f03107c012e63b4d8f122acba34","signature":false},{"version":"d79cde4c87a511f7219963cdbd32ec32bc3de93b2ca943d6046c1c31e2a3ee62","signature":false},{"version":"531c125862ac8e801bca17eaacc89b21e0d49ef80a76bf7dbd09b006f3e27a4a","signature":false},{"version":"6acaf4af108a108b505c278208684baba2846a7187a713ce312d68f547c103e3","signature":false},{"version":"be4e6ec9fe788d72a70afbdc4c297ea31d842a9ea301559f5ca42cdf13db1383","signature":false},{"version":"fb6f1b9cefef803d680a42968a3b57fefdb28e84f82450489278f78b74d74a81","signature":false},{"version":"8d1395d7fa6381cf71368706cf815130a32895fddd44acb047751072801f90bb","signature":false},{"version":"cdeedec78d8c66fc7522d13e9a2150edda98b18fd3bb95d0f556b6678d0c3739","signature":false},{"version":"7e8bf6cb0c7e13b34a8b40c4b36e633d639b8c4a3b5dec3a55a08bf26caf9a6b","signature":false},{"version":"27b0c41f2f485e59eaaab0d65c192ca022d7fcea87b2c24c9405a91e8b7a4a79","signature":false},{"version":"20d034b52037a7e5b0268fde45a111ffa9f0ae2e04819549d677262711d9dcf2","signature":false},{"version":"f341311f710d466f9ca2585a6828874bb0f902b121fffaf6f4c68d89b6562986","signature":false},{"version":"6eb7fae75c4a1a6bdee1d48700000f43f9d5cff7987f08bd49f21ed1ac0b7c4b","signature":false,"affectsGlobalScope":true},{"version":"3a5626be0c9a1aae6f75d0d38bcea4d070e5d1381a843a9b4eafd3eab6ed7ef7","signature":false,"affectsGlobalScope":true},{"version":"f6c97e5b3403d6f8683372fff53430b8d93728a60f04623bd3de9e470fe71259","signature":false,"affectsGlobalScope":true},{"version":"bfb3f3bd1d89a54d975a7554c8d12209188d7b849d00b9345fd0d41d79858e38","signature":false,"affectsGlobalScope":true},{"version":"22f424c221d557a69d83386550a272558bfef6f81b1dbacd3d35b4651b128d2b","signature":false,"affectsGlobalScope":true},{"version":"d1461f750f98ba938cf3b43f1095774f6007b92a4550bbfde87451dccc32b3bd","signature":false,"affectsGlobalScope":true},{"version":"c30a7a2198451431d80de5f9ba7197a0c8a56d52b29373e7270115776a28f3f3","signature":false,"affectsGlobalScope":true},{"version":"d4d6595aca02f63e2107a842fdd8f79e147fd802acd0e60900f16bee4f861173","signature":false,"affectsGlobalScope":true},{"version":"2070e277f4e874747a7706f000f19f2f512f9829f65f4caf634a908c07f45117","signature":false,"affectsGlobalScope":true},{"version":"7f53343307db666fa6a82bf5165f961d4b70e268ffb7e4e108f06d953c10c679","signature":false,"affectsGlobalScope":true},{"version":"8d10b5097dc2692979a984b4c56deaa0ad77c3a7b036a066ea0a72ec8c514830","signature":false,"affectsGlobalScope":true},{"version":"a252fd9c3a3e55eab45c1c78d376e7a8d82e736d55a5d95a1b285290881d5f88","signature":false,"affectsGlobalScope":true},{"version":"dde6ecc6409a17b372382192ca43c78c52015f34f49547ead38194c63127793a","signature":false,"affectsGlobalScope":true},{"version":"ed7b23f234388de62c9f86bcecd4608a854067fc20f2b4698b9f14ce0d92f4f2","signature":false,"affectsGlobalScope":true},{"version":"85ce7d3110c6652c276ea4d027bc1887176d97a5b7494f288cbbdfb2b48a11ee","signature":false,"affectsGlobalScope":true},{"version":"52535c5f6ea63e76c537e39df77b0720827e3f8d0fac9e2386352f0b6110a211","signature":false,"affectsGlobalScope":true},{"version":"abfe7c34c18ff9a242d5b7e4aba61dfb14b2db55ce5edce1798aaae365fa9cfe","signature":false},{"version":"7b9707d4934d0b63c71920058db2bd6f815b90c4ace1100ea24915c14c9af895","signature":false},{"version":"f73b1d7270a91ed30c71075ee5e0472465931a37ecdb5834c9d8ebe828847b45","signature":false}],"root":[[9,17],[25,28],[36,46]],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"downlevelIteration":true,"experimentalDecorators":true,"jsx":2,"module":1,"outDir":"./","rootDir":"../src","strict":true,"target":99,"tsBuildInfoFile":"./tsconfig.tsbuildinfo"},"fileIdsList":[[1,2,3],[2,4,5],[1,3],[3],[2],[51],[51,52,53,54,55,56,57,58,59,60,61],[18,21,22,23],[19,20],[22],[34],[29],[30,31,32,33],[31],[29,30,31,32,34],[47,51],[48,62],[47,48,49,50,62],[3,6,7,9,10,13,14,15,17,23,24,36],[13],[26],[3,6,7,16,25],[1,6],[3,6,16,25],[3,7,13,16,28],[6],[3,6,15,16],[10,11,12],[7,10],[6,7,9],[7,25],[6,7,10,13,14,16],[6,10,13,16],[6,13],[3,6,7,8,9,10,13,16,25,26,27,28,34,35],[7,8,10,15,16,25,27,28,38,39],[3,6,7,8,10,13,25],[13,14,15,16,17,25,26,27,28,36,37,38,39,40,41,42,43,44,45]],"referencedMap":[[5,1],[6,2],[2,3],[4,4],[3,5],[52,6],[53,6],[62,7],[61,6],[54,6],[55,6],[56,6],[57,6],[58,6],[59,6],[60,6],[24,8],[21,9],[23,10],[35,11],[30,12],[34,13],[32,14],[33,15],[47,6],[48,16],[49,17],[51,18],[25,19],[14,20],[39,21],[26,22],[15,23],[27,24],[38,25],[37,26],[28,27],[13,28],[11,29],[10,30],[12,31],[17,32],[41,33],[43,33],[44,34],[42,33],[45,34],[36,35],[40,36],[16,37],[46,38]],"semanticDiagnosticsPerFile":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65]},"version":"5.5.3"}
|