-
-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathTransporterLoadingSession.cs
124 lines (99 loc) · 3.41 KB
/
TransporterLoadingSession.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
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
using System.Collections.Generic;
using System.Linq;
using Multiplayer.API;
using RimWorld;
using Verse;
namespace Multiplayer.Client
{
public class TransporterLoading : ExposableSession, ISessionWithTransferables
{
public override Map Map => map;
public Map map;
public List<CompTransporter> transporters;
public List<ThingWithComps> pods;
public List<TransferableOneWay> transferables;
public bool uiDirty;
public TransporterLoading(Map map) : base(map)
{
this.map = map;
}
public TransporterLoading(Map map, List<CompTransporter> transporters) : this(map)
{
this.transporters = transporters;
pods = transporters.Select(t => t.parent).ToList();
AddItems();
}
private void AddItems()
{
var dialog = new TransporterLoadingProxy(map, transporters);
// Init code taken from Dialog_LoadTransporters.PostOpen
dialog.CalculateAndRecacheTransferables();
if (dialog.CanChangeAssignedThingsAfterStarting && dialog.LoadingInProgressOrReadyToLaunch)
dialog.SetLoadedItemsToLoad();
transferables = dialog.transferables;
}
[SyncMethod]
public void TryAccept()
{
if (PrepareDummyDialog().TryAccept())
Remove();
}
[SyncMethod(debugOnly = true)]
public void DebugTryLoadInstantly()
{
if (PrepareDummyDialog().DebugTryLoadInstantly())
Remove();
}
[SyncMethod]
public void Reset()
{
transferables.ForEach(t => t.CountToTransfer = 0);
uiDirty = true;
}
[SyncMethod]
public void Remove()
{
map.MpComp().sessionManager.RemoveSession(this);
}
public void OpenWindow(bool sound = true)
{
var dialog = PrepareDummyDialog();
if (!sound)
dialog.soundAppear = null;
Find.WindowStack.Add(dialog);
}
private TransporterLoadingProxy PrepareDummyDialog()
{
return new TransporterLoadingProxy(map, transporters)
{
itemsReady = true,
transferables = transferables
};
}
public override void ExposeData()
{
base.ExposeData();
Scribe_Collections.Look(ref transferables, "transferables", LookMode.Deep);
Scribe_Collections.Look(ref pods, "transporters", LookMode.Reference);
if (Scribe.mode == LoadSaveMode.ResolvingCrossRefs)
transporters = pods.Select(t => t.GetComp<CompTransporter>()).ToList();
}
public Transferable GetTransferableByThingId(int thingId)
{
return transferables.Find(tr => tr.things.Any(t => t.thingIDNumber == thingId));
}
public void Notify_CountChanged(Transferable tr)
{
uiDirty = true;
}
public override bool IsCurrentlyPausing(Map map) => map == this.map;
public override FloatMenuOption GetBlockingWindowOptions(ColonistBar.Entry entry)
{
return new FloatMenuOption("MpTransportLoadingSession".Translate(), () =>
{
SwitchToMapOrWorld(entry.map);
OpenWindow();
});
}
}
}