-
-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathRitualData.cs
50 lines (44 loc) · 1.66 KB
/
RitualData.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
using Multiplayer.API;
using RimWorld;
using System.Collections.Generic;
using Verse;
using static RimWorld.Dialog_BeginRitual;
namespace Multiplayer.Client.Persistent
{
public class MpRitualAssignments : RitualRoleAssignments
{
public RitualSession session;
}
public class RitualData : ISynchronizable
{
public Precept_Ritual ritual;
public TargetInfo target;
public RitualObligation obligation;
public RitualOutcomeEffectDef outcome;
public List<string> extraInfos;
public ActionCallback action;
public string ritualLabel;
public string confirmText;
public Pawn organizer;
public MpRitualAssignments assignments;
public void Sync(SyncWorker sync)
{
sync.Bind(ref ritual);
sync.Bind(ref target);
sync.Bind(ref obligation);
sync.Bind(ref outcome);
sync.Bind(ref extraInfos);
if (sync is WritingSyncWorker writer1)
DelegateSerialization.WriteDelegate(writer1.Writer, action);
else if (sync is ReadingSyncWorker reader)
action = (ActionCallback)DelegateSerialization.ReadDelegate(reader.Reader);
sync.Bind(ref ritualLabel);
sync.Bind(ref confirmText);
sync.Bind(ref organizer);
if (sync is WritingSyncWorker writer2)
writer2.Bind(ref assignments, new SyncType(typeof(MpRitualAssignments)) { expose = true });
else if (sync is ReadingSyncWorker reader)
reader.Bind(ref assignments, new SyncType(typeof(MpRitualAssignments)) { expose = true });
}
}
}