You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public static void{{Generator.GetInvokerName(callback)}}<T, {{Generator.TypeParameters[i]}}>(ref T iterable, {{Generator.GetCallbackType(callback,i)}} callback)
270
+
public static Entity{{Generator.GetInvokerName(callback)}}<T, {{Generator.TypeParameters[i]}}>(ref T iterable, {{Generator.GetCallbackType(callback,i)}} callback)
public static Entity {{Generator.GetInvokerName(callback)}}<T, {{Generator.TypeParameters[i]}}>(ref T iterable, {{Generator.GetCallbackType(callback,i)}} callback)
public static void {{Generator.GetInvokerName(callback)}}Job<T, {{Generator.TypeParameters[i]}}>(ref T iterable, {{Generator.GetCallbackType(callback,i)}} callback) where T : unmanaged, IIterableBase
301
303
{
302
-
Entity result = default;
303
-
304
-
ecs_iter_t iter = iterable.GetIter();
305
-
while (result == 0 && iterable.GetNext(&iter))
306
-
result = {{Generator.GetInvokerName(callback)}}(&iter, callback);
307
-
308
-
if (result != 0)
309
-
ecs_iter_fini(&iter);
310
-
311
-
return result;
304
+
World world = iterable.World;
305
+
306
+
Ecs.Assert(!world.IsDeferred() && !world.IsReadOnly(), "Cannot run multi-threaded query when world is already in deferred or readonly mode.");
307
+
308
+
ecs_readonly_begin(world, true);
309
+
310
+
int stageCount = world.GetStageCount();
311
+
312
+
using CountdownEvent countdown = new(stageCount);
313
+
314
+
for (int i = 0; i < stageCount; i++)
315
+
{
316
+
ThreadPool.QueueUserWorkItem(Work, new {{Generator.GetTypeName(Type.WorkerState,i)}}.{{callback}}
317
+
{
318
+
Countdown = countdown,
319
+
Worker = new {{Generator.GetTypeName(Type.WorkerIterable,i)}}(iterable.GetIter(world.GetStage(i)), i, stageCount),
0 commit comments