-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathecs.pas
More file actions
987 lines (855 loc) · 20.9 KB
/
ecs.pas
File metadata and controls
987 lines (855 loc) · 20.9 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
unit ecs;
{$IFDEF FPC}
{$mode Delphi}{$H+}
{$ENDIF}
{$Q-}
interface
uses Generics.Collections, SysUtils;
const
NO_ENTITY = UInt32(-1);
type
TEntityID = UInt32;
TECSWorld = class;
{ TECSEntity }
TECSEntity = record
World: TECSWorld;
Id: TEntityID;
function Get<T>: T;
function TryGet<T>(out comp: T): Boolean;
function GetPtr<T>: Pointer;
function Has<T>: Boolean;
procedure Add<T>(item: T); overload;
procedure Add<T>(); overload;
procedure Update<T>(item: T);
procedure AddOrUpdate<T>(item: T); overload;
procedure AddOrUpdate<T>(); overload;
procedure Remove<T>();
procedure RemoveIfPresent<T>();
procedure RemoveAll;
function ToString: string;
function Pack: Pointer;
end;
TGenericECSStorage = class
protected type
TStorageEntityEnumerator = record
Parent: TGenericECSStorage;
Index: Integer;
LastID: TEntityID;
private
function GetCurrent: TECSEntity;
public
function MoveNext: Boolean;
property Current: TECSEntity read GetCurrent;
constructor Create(aParent: TGenericECSStorage);
end;
var
DenseUsed: Integer;
World: TECSWorld;
Dense: array of TEntityID;
Sparse: array of Integer;
CacheIndex: Integer;
CacheID: TEntityID;
procedure vRemoveIfExists(Id: TEntityID); virtual; abstract;
class function ComponentName: string;
function TryFindIndex(Id: TEntityID; out i: Integer): Boolean;
function FindIndex(Id: TEntityID): Integer;
function GetEnumerator: TStorageEntityEnumerator;
function Has(Id: TEntityID): Boolean;
procedure Clear;
end;
{ TECSStorage }
TECSStorage<T> = class(TGenericECSStorage)
protected
Payload: array of T;
constructor Create(aWorld: TECSWorld);
procedure vRemoveIfExists(Id: TEntityID); override;
procedure AddDontCheck(Id: TEntityID; item: T);
{$IFNDEF FPC}
// doesn't work due to [bug](https://gitlab.com/freepascal.org/fpc/source/-/issues/40155)
function Get(Id: TEntityID): T;
{$ENDIF}
function TryGet(Id: TEntityID; out comp: T): Boolean;
function GetPtr(Id: TEntityID): Pointer;
procedure Update(Id: TEntityID; item: T);
procedure AddOrUpdate(Id: TEntityID; item: T);
procedure Add(Id: TEntityID; item: T);
procedure Remove(Id: TEntityID);
end;
TStorageClass = class of TGenericECSStorage;
TECSFilter = class;
{ TECSWorld }
TECSWorld = class
protected
CurId: TEntityID;
Storages: TDictionary<TStorageClass, TGenericECSStorage>;
CountComponents: array of Integer;
FreeItems: array of TEntityID;
NFreeItems: Integer;
SparseSize: Integer;
function GetStorage<T>: TECSStorage<T>;
procedure AddFreeItem(it: TEntityID);
type
TWorldEntityEnumerator = record
World: TECSWorld;
NextItem: TEntityID;
private
function GetCurrent: TECSEntity;
public
function MoveNext: Boolean;
property Current: TECSEntity read GetCurrent;
constructor Create(aWorld: TECSWorld);
end;
public type
TStorageWrapper = record
Storage: TGenericECSStorage;
constructor Create(aStorage: TGenericECSStorage);
function GetEnumerator: TGenericECSStorage.TStorageEntityEnumerator;
end;
TStatsPair = record
key: String;
value: Integer;
end;
TStatsArray = array of TStatsPair;
function Filter: TECSFilter;
function NewEntity: TECSEntity;
constructor Create;
destructor Destroy; override;
procedure Clear;
function GetEnumerator: TWorldEntityEnumerator;
function Query<T>: TStorageWrapper;
function Singleton<T>: TECSEntity;
function SingletonComp<T>: T;
function Count<T>: Integer;
function Exists<T>: Boolean;
function Stats: TStatsArray; overload;
procedure Stats(var list: TStatsArray); overload;
function EntitiesCount: Integer;
function Unpack(p : Pointer): TECSEntity;
end;
TECSFilter = class
protected
Included: array of TGenericECSStorage;
Excluded: array of TGenericECSStorage;
// TODO - Optional: array of array of TGenericECSStorage;
World: TECSWorld;
type
TFilterEntityEnumerator = record
Filter: TECSFilter;
Inner: TGenericECSStorage.TStorageEntityEnumerator;
private
function GetCurrent: TECSEntity;
public
function MoveNext: Boolean;
property Current: TECSEntity read GetCurrent;
constructor Create(aFilter: TECSFilter;
aInner: TGenericECSStorage.TStorageEntityEnumerator);
end;
function SatisfiedExcept(Entity: TECSEntity;
ExceptStore: TGenericECSStorage): Boolean;
public
function Include<T>: TECSFilter;
function Exclude<T>: TECSFilter;
// TODO - procedure Either<T1, T2>;overload;
// TODO - procedure Either<T1, T2, T3>;overload;
function GetEnumerator: TFilterEntityEnumerator;
function Satisfied(Entity: TECSEntity): Boolean;
constructor Create(aWorld: TECSWorld);
end;
{ TECSSystem }
TECSSystem = class
private
FWorld: TECSWorld;
public
property World: TECSWorld read FWorld;
constructor Create(AOwner: TECSWorld); virtual;
procedure Init; virtual;
function Filter: TECSFilter; virtual;
procedure Execute; virtual;
procedure PreProcess; virtual;
procedure Process(e: TECSEntity); virtual;
procedure Teardown; virtual;
end;
TECSSystemClass = class of TECSSystem;
TECSSystems = class(TECSSystem)
private type
TState = (Created, Initialized, TearedDown);
var
State: TState;
Items: array of TECSSystem;
Filters: array of TECSFilter;
public
constructor Create(AOwner: TECSWorld); override;
procedure Init; override;
procedure Execute; override;
procedure Teardown; override;
function Add(sys: TECSSystem): TECSSystems; overload;
function Add(sys: TECSSystemClass): TECSSystems; overload;
destructor Destroy; override;
end;
TRemoveAll<T> = class(TECSSystem)
procedure Execute; override;
end;
implementation
const
DEFAULT_ENTITY_POOL_SIZE = 1024;
{ TECSStorage }
procedure TGenericECSStorage.Clear;
begin
DenseUsed := 0;
CacheIndex := -1;
CacheID := NO_ENTITY;
end;
constructor TECSStorage<T>.Create(aWorld: TECSWorld);
begin
World := aWorld;
SetLength(Dense, 1);
SetLength(Payload, 1);
SetLength(Sparse, World.SparseSize);
CacheIndex := -1;
CacheID := NO_ENTITY;
end;
function TGenericECSStorage.FindIndex(Id: TEntityID): Integer;
var
Wrong: TECSEntity;
begin
if Id = CacheID then
Result := CacheIndex
else
begin
Result := Sparse[Id];
if (Result >= DenseUsed) or (Dense[Result] <> Id) then
begin
Wrong.World := World;
Wrong.Id := Id;
raise Exception.Create('Component '+ComponentName+' not found in '+Wrong.ToString);
end;
CacheIndex := Result;
CacheID := Id;
end;
end;
{$IFNDEF FPC}
function TECSStorage<T>.Get(Id: TEntityID): T;
begin
Result := Payload[FindIndex(Id)]
end;
{$ENDIF}
function TGenericECSStorage.GetEnumerator: TStorageEntityEnumerator;
begin
Result := TStorageEntityEnumerator.Create(Self);
end;
function TGenericECSStorage.TryFindIndex(Id: TEntityID; out i: Integer)
: Boolean;
begin
if Id = CacheID then
begin
Result := True;
i := CacheIndex;
exit;
end;
i := Sparse[Id];
Result := (i < DenseUsed) and (Dense[i] = Id);
if Result then
begin
CacheIndex := i;
CacheID := Id;
end;
end;
function TECSStorage<T>.TryGet(Id: TEntityID; out comp: T): Boolean;
var
i: Integer;
begin
Result := TryFindIndex(Id, i);
if Result then
comp := Payload[i];
end;
function TECSStorage<T>.GetPtr(Id: TEntityID): Pointer;
begin
Result := @(Payload[FindIndex(Id)])
end;
function TGenericECSStorage.Has(Id: TEntityID): Boolean;
var
i: Integer;
begin
Result := TryFindIndex(Id, i)
end;
procedure TECSStorage<T>.Add(Id: TEntityID; item: T);
var
i: Integer;
ent: TECSEntity;
begin
if TryFindIndex(Id, i) then
begin
ent.World := World;
ent.Id := Id;
raise Exception.Create('Component ' + ComponentName + ' already added to ' +
ent.ToString)
end
else
AddDontCheck(Id, item)
end;
procedure TECSStorage<T>.AddDontCheck(Id: TEntityID; item: T);
begin
if DenseUsed >= length(Dense) then
begin
SetLength(Dense, length(Dense) * 2);
SetLength(Payload, length(Payload) * 2);
end;
inc(DenseUsed);
Payload[DenseUsed - 1] := item;
Dense[DenseUsed - 1] := Id;
Sparse[Id] := DenseUsed - 1;
CacheIndex := DenseUsed - 1;
CacheID := Id;
World.CountComponents[Id] := World.CountComponents[Id] + 1
end;
procedure TECSStorage<T>.Update(Id: TEntityID; item: T);
begin
Payload[FindIndex(Id)] := item;
end;
procedure TECSStorage<T>.AddOrUpdate(Id: TEntityID; item: T);
var
i: Integer;
begin
if TryFindIndex(Id, i) then
Payload[i] := item
else
AddDontCheck(Id, item)
end;
procedure TECSStorage<T>.Remove(Id: TEntityID);
var
i: Integer;
begin
i := FindIndex(Id);
if i <> DenseUsed - 1 then
begin
Payload[i] := Payload[DenseUsed - 1];
Dense[i] := Dense[DenseUsed - 1];
Sparse[Dense[i]] := i;
end;
dec(DenseUsed);
CacheIndex := -1;
CacheID := NO_ENTITY;
World.CountComponents[Id] := World.CountComponents[Id] - 1;
if World.CountComponents[Id] = 0 then
World.AddFreeItem(id);
end;
procedure TECSStorage<T>.vRemoveIfExists(Id: TEntityID);
begin
if Has(Id) then
Remove(Id)
end;
{ TECSEntity }
procedure TECSEntity.AddOrUpdate<T>(item: T);
begin
World.GetStorage<T>.AddOrUpdate(Id, item);
end;
procedure TECSEntity.AddOrUpdate<T>;
var
x: T;
begin
assert(sizeof(T) = 0);
AddOrUpdate<T>(x);
end;
{$IFDEF FPC}
// TStorage<T>.Get doesn't work due to [bug](https://gitlab.com/freepascal.org/fpc/source/-/issues/40155)
// so use GetPtr here
function TECSEntity.Get<T>: T;
begin
Result := T(World.GetStorage<T>.GetPtr(Id)^);
end;
{$ELSE}
function TECSEntity.Get<T>: T;
begin
Result := World.GetStorage<T>.Get(Id);
end;
{$ENDIF}
function TECSEntity.TryGet<T>(out comp: T): Boolean;
begin
Result := World.GetStorage<T>.TryGet(Id, comp);
end;
function TECSEntity.GetPtr<T>: Pointer;
begin
Result := World.GetStorage<T>.GetPtr(Id);
end;
function TECSEntity.Has<T>: Boolean;
begin
Result := World.GetStorage<T>.Has(Id);
end;
procedure TECSEntity.Add<T>(item: T);
begin
World.GetStorage<T>.Add(Id, item);
end;
procedure TECSEntity.Add<T>;
var
x: T;
begin
assert(sizeof(T) = 0);
Add<T>(x);
end;
procedure TECSEntity.Update<T>(item: T);
begin
World.GetStorage<T>.Update(Id, item);
end;
procedure TECSEntity.Remove<T>;
begin
World.GetStorage<T>.Remove(Id);
end;
procedure TECSEntity.RemoveIfPresent<T>;
begin
World.GetStorage<T>.vRemoveIfExists(Id);
end;
procedure TECSEntity.RemoveAll;
var
store: TGenericECSStorage;
begin
for store in World.Storages.Values do
store.vRemoveIfExists(Id);
end;
function TECSEntity.ToString: string;
var
store: TGenericECSStorage;
begin
if Id = NO_ENTITY then
Result := 'Incorrect entity'
else
begin
Result := Format('Entity(%d): [', [Id]);
for store in World.Storages.Values do
if store.Has(Id) then
Result := Result + store.ComponentName + ',';
if Result[length(Result)] = ',' then
Result[length(Result)] := ']'
else
Result := Result + ']'
end;
end;
function TECSEntity.Pack : Pointer;
begin
Result := Pointer(Id); //TODO - 32-bit systems with 64-bit id
end;
{ TECSWorld }
function TECSWorld.GetEnumerator: TWorldEntityEnumerator;
begin
Result := TWorldEntityEnumerator.Create(Self);
end;
function TECSWorld.GetStorage<T>: TECSStorage<T>;
var
store: TGenericECSStorage;
begin
if not Storages.TryGetValue(TECSStorage<T>, store) then
begin
store := TECSStorage<T>.Create(Self);
Storages.Add(TECSStorage<T>, store);
end;
Result := TECSStorage<T>(store);
end;
function TECSWorld.NewEntity: TECSEntity;
var
store: TGenericECSStorage;
begin
Result.World := Self;
if NFreeItems > 0 then
begin
Result.Id := FreeItems[NFreeItems-1];
Dec(NFreeItems);
exit;
end;
Result.Id := CurId;
inc(CurId);
// if CurId = NO_ENTITY then
// CurId := 0;
if CurId >= SparseSize then
begin
SparseSize := SparseSize * 2;
SetLength(CountComponents, SparseSize);
SetLength(FreeItems, SparseSize);
for store in Storages.Values do
SetLength(store.Sparse, SparseSize);
end;
// CountComponents[Result.Id] := 0;
end;
function TECSWorld.Query<T>: TStorageWrapper;
begin
Result := TStorageWrapper.Create(GetStorage<T>);
end;
procedure TECSWorld.AddFreeItem(it: TEntityID);
begin
Inc(NFreeItems);
FreeItems[NFreeItems-1] := it
end;
procedure TECSWorld.Clear;
var
store: TGenericECSStorage;
begin
for store in Storages.Values do
store.Clear;
SetLength(CountComponents, 0);
SetLength(CountComponents, SparseSize);
NFreeItems := 0;
CurId := 0;
end;
function TECSWorld.Count<T>: Integer;
var
store: TGenericECSStorage;
begin
if not Storages.TryGetValue(TECSStorage<T>, store) then
Result := 0
else
Result := store.DenseUsed;
end;
constructor TECSWorld.Create;
begin
Storages := TDictionary<TStorageClass, TGenericECSStorage>.Create();
SparseSize := DEFAULT_ENTITY_POOL_SIZE;
SetLength(CountComponents, SparseSize);
SetLength(FreeItems, SparseSize)
end;
destructor TECSWorld.Destroy;
var
store: TGenericECSStorage;
begin
for store in Storages.Values do
store.Free;
Storages.Free;
inherited Destroy;
end;
function TECSWorld.Exists<T>: Boolean;
begin
Result := Count<T> > 0
end;
function TECSWorld.Filter: TECSFilter;
begin
Result := TECSFilter.Create(Self)
end;
function TECSWorld.Stats: TStatsArray;
begin
Stats(Result);
end;
procedure TECSWorld.Stats(var list: TStatsArray);
var
i: Integer;
store: TGenericECSStorage;
begin
SetLength(list, Storages.Count+1);
list[0].key := '#Entities';
list[0].value := EntitiesCount;
i := 1;
for store in Storages.Values do
begin
list[i].Key := store.ComponentName;
list[i].Value := store.DenseUsed;
inc(i);
end;
end;
function TECSWorld.EntitiesCount: Integer;
begin
Result := CurId - NFreeItems;
end;
function TECSWorld.Singleton<T>: TECSEntity;
var
found: Boolean;
e: TECSEntity;
begin
found := False;
for e in Self.Query<T> do
begin
if found then
raise Exception.Create('Singleton component present on more than one entity');
found := true;
Result := e;
end;
if not found then
raise Exception.Create('Singleton component not found');
end;
function TECSWorld.SingletonComp<T>: T;
begin
Result := Singleton<T>.Get<T>
end;
function TECSWorld.Unpack(p: Pointer): TECSEntity;
begin
Result.World := self;
Result.Id := TEntityId(p);
end;
{ TGenericECSStorage }
class function TGenericECSStorage.ComponentName: string;
var
i: Integer;
begin
// make TTT from ...TECSStorage<TTT>
Result := ClassName;
i := Pos('TECSStorage<', Result);
Delete(Result, 1, i + length('TECSStorage<'));
Delete(Result, length(Result), 1);
end;
{ TECSStorage<T>.TStorageEntityEnumerator }
constructor TGenericECSStorage.TStorageEntityEnumerator.Create
(aParent: TGenericECSStorage);
begin
Parent := aParent;
index := -1;
end;
function TGenericECSStorage.TStorageEntityEnumerator.GetCurrent: TECSEntity;
begin
Result.World := Parent.World;
Result.Id := Parent.Dense[index];
Parent.CacheIndex := index;
Parent.CacheID := Result.Id;
end;
function TGenericECSStorage.TStorageEntityEnumerator.MoveNext: Boolean;
begin
if (index < 0) or (Parent.Dense[index] = LastID) then
inc(Index);
Result := index < Parent.DenseUsed;
if Result then
LastID := Parent.Dense[index];
end;
{ TECSWorld.TWorldEntityEnumerator }
constructor TECSWorld.TWorldEntityEnumerator.Create(aWorld: TECSWorld);
begin
World := aWorld;
NextItem := 0;
end;
function TECSWorld.TWorldEntityEnumerator.GetCurrent: TECSEntity;
begin
Result.World := World;
Result.Id := NextItem-1
end;
function TECSWorld.TWorldEntityEnumerator.MoveNext: Boolean;
begin
Result := True;
while NextItem <= World.CurId do
begin
inc(NextItem);
if World.CountComponents[NextItem-1] > 0 then
exit;
end;
Result := False;
end;
{ TECSFilter }
{ TECSFilter }
constructor TECSFilter.Create(aWorld: TECSWorld);
begin
World := aWorld;
end;
function TECSFilter.Exclude<T>: TECSFilter;
var
check, store: TGenericECSStorage;
begin
store := World.GetStorage<T>;
for check in Included do
if check = store then
raise Exception.Create('Same type' + (TECSStorage<T>.ComponentName) +
' cannot be included and excluded to filter');
SetLength(Excluded, length(Excluded) + 1);
Excluded[length(Excluded) - 1] := store;
Result := Self;
end;
function TECSFilter.GetEnumerator: TFilterEntityEnumerator;
var
min: Integer;
store, min_storage: TGenericECSStorage;
begin
min_storage := nil;
min := MaxInt;
for store in Included do
begin
if store.DenseUsed < min then
begin
min := store.DenseUsed;
min_storage := store;
end;
end;
if not Assigned(min_storage) then
raise Exception.Create('Include list for filter cannot be empty');
Result := TFilterEntityEnumerator.Create(Self, min_storage.GetEnumerator)
end;
function TECSFilter.Include<T>: TECSFilter;
var
check, store: TGenericECSStorage;
begin
store := World.GetStorage<T>;
for check in Excluded do
if check = store then
raise Exception.Create('Same type' + (TECSStorage<T>.ComponentName) +
' cannot be included and excluded to filter');
SetLength(Included, length(Included) + 1);
Included[length(Included) - 1] := store;
Result := Self;
end;
function TECSFilter.Satisfied(Entity: TECSEntity): Boolean;
var
store: TGenericECSStorage;
begin
Result := False;
if World.CountComponents[Entity.Id] < Length(Included) then
exit;
for store in Included do
begin
if not store.Has(Entity.Id) then
exit;
end;
for store in Excluded do
begin
if store.Has(Entity.Id) then
exit;
end;
Result := True;
end;
function TECSFilter.SatisfiedExcept(Entity: TECSEntity;
ExceptStore: TGenericECSStorage): Boolean;
var
store: TGenericECSStorage;
begin
Result := False;
if World.CountComponents[Entity.Id] < Length(Included) then
exit;
for store in Included do
begin
if store = ExceptStore then
continue;
if not store.Has(Entity.Id) then
exit;
end;
for store in Excluded do
begin
if store.Has(Entity.Id) then
exit;
end;
Result := True;
end;
{ TECSFilter.TFilterEntityEnumerator }
constructor TECSFilter.TFilterEntityEnumerator.Create(aFilter: TECSFilter;
aInner: TGenericECSStorage.TStorageEntityEnumerator);
begin
Filter := aFilter;
Inner := aInner;
end;
function TECSFilter.TFilterEntityEnumerator.GetCurrent: TECSEntity;
begin
Result := Inner.GetCurrent
end;
function TECSFilter.TFilterEntityEnumerator.MoveNext: Boolean;
begin
Result := Inner.MoveNext;
while Result and not Filter.SatisfiedExcept(Inner.Current, Inner.Parent) do
Result := Inner.MoveNext;
end;
{ TECSSystem }
constructor TECSSystem.Create(AOwner: TECSWorld);
begin
FWorld := AOwner;
end;
procedure TECSSystem.Execute;
begin
// does nothing
end;
procedure TECSSystem.PreProcess;
begin
// does nothing
end;
function TECSSystem.Filter: TECSFilter;
begin
Result := nil;
end;
procedure TECSSystem.Init;
begin
// does nothing
end;
procedure TECSSystem.Process(e: TECSEntity);
begin
// does nothing
end;
procedure TECSSystem.Teardown;
begin
// does nothing
end;
{ TECSSystems }
function TECSSystems.Add(sys: TECSSystem): TECSSystems;
begin
assert(State = Created);
SetLength(Items, length(Items) + 1);
Items[length(Items) - 1] := sys;
Result := Self;
end;
function TECSSystems.Add(sys: TECSSystemClass): TECSSystems;
begin
Result := Add(sys.Create(World));
end;
constructor TECSSystems.Create(AOwner: TECSWorld);
begin
inherited;
State := Created;
end;
destructor TECSSystems.Destroy;
var
sys: TECSSystem;
begin
assert(State = TearedDown);
for sys in Items do
sys.Free;
inherited;
end;
procedure TECSSystems.Execute;
var
sys: TECSSystem;
flt: TECSFilter;
ent: TECSEntity;
i: Integer;
begin
assert(State = Initialized);
for i := 0 to length(Items) - 1 do
begin
sys := Items[i];
sys.PreProcess;
flt := Filters[i];
if Assigned(flt) then
for ent in flt do
sys.Process(ent);
sys.Execute;
end;
end;
procedure TECSSystems.Init;
var
i: Integer;
sys: TECSSystem;
begin
assert(State = Created);
SetLength(Filters, length(Items));
for i := 0 to length(Items) - 1 do
begin
sys := Items[i];
sys.Init;
Filters[i] := sys.Filter
end;
State := Initialized;
end;
procedure TECSSystems.Teardown;
var
sys: TECSSystem;
flt: TECSFilter;
begin
assert(State = Initialized);
for sys in Items do
sys.Teardown;
for flt in Filters do
flt.Free;
State := TearedDown;
end;
{ TECSWorld.TStorageWrapper }
constructor TECSWorld.TStorageWrapper.Create(aStorage: TGenericECSStorage);
begin
Storage := aStorage
end;
function TECSWorld.TStorageWrapper.GetEnumerator
: TGenericECSStorage.TStorageEntityEnumerator;
begin
Result := Storage.GetEnumerator
end;
{ TRemoveAll<T> }
procedure TRemoveAll<T>.Execute;
var e: TECSEntity;
begin
for e in world.Query<T> do
e.Remove<T>
end;
end.