-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCrateCreatorSystem.cs
64 lines (50 loc) · 2.07 KB
/
CrateCreatorSystem.cs
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
using Kitchen;
using KitchenMods;
using Unity.Collections;
using Unity.Entities;
namespace KitchenOverstocked
{
class CrateCreatorSystem : FranchiseSystem, IModSystem
{
private EntityQuery garageItemHolders;
private EntityQuery createCrates;
protected override void Initialise()
{
base.Initialise();
garageItemHolders = GetEntityQuery(new QueryHelper().All(typeof(CPersistentItemStorageLocation), typeof(CItemHolder)));
createCrates = GetEntityQuery(typeof(CCreateCrate));
RequireForUpdate(createCrates);
}
protected override void OnUpdate()
{
using var currentCreateCreates = createCrates.ToComponentDataArray<CCreateCrate>(Allocator.Temp);
foreach (var item in currentCreateCreates)
{
using var currentGarageItemHolders = this.garageItemHolders.ToComponentDataArray<CItemHolder>(Allocator.Temp);
CItemHolder? unUsedItemHolder = null;
foreach (var pedastle in currentGarageItemHolders)
{
if (pedastle.HeldItem == default)
{
unUsedItemHolder = pedastle;
break;
}
}
if (unUsedItemHolder == null)
{
Mod.LogInfo("Skipping generate the crate because an empty garage pedastle does not exist.");
break;
}
var applianceId = item.applianceId;
Mod.LogInfo($"Generating crate with applianceId {applianceId}");
// We create it similarly to how the TriggerWorkshopCrafting works, the garage seems to just pickup the new crate and put it on a shelf
var entity = EntityManager.CreateEntity();
Set(entity, new CUpgrade { ID = applianceId });
}
if (currentCreateCreates.Length > 0)
{
EntityManager.DestroyEntity(createCrates);
}
}
}
}