-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRimLanguageHotReload.TemplateDefs.cs
99 lines (80 loc) · 3.2 KB
/
RimLanguageHotReload.TemplateDefs.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
using System.Collections.Generic;
using Verse;
namespace LordFanger
{
public static partial class RimLanguageHotReload
{
private abstract class TemplateDefs
{
public abstract bool TryRegisterImpliedDef(Def def);
public abstract void NotifyChanged(Def def);
public abstract void ReleaseChanges();
protected static void TryAddToList<TKey, TValue>(IDictionary<TKey, IList<TValue>> dictionary, TKey key, TValue value)
{
if (key == null) return;
if (!dictionary.TryGetValue(key, out var list))
{
list = new List<TValue>();
dictionary[key] = list;
}
list.Add(value);
}
protected static bool TryAddChangedToSet<TKey, TValue>(ISet<TKey> changedSet, IDictionary<TKey, TValue> dictionary, Def def)
{
if (def is TKey key) return TryAddChangedToSet(changedSet, dictionary, key);
return false;
}
protected static bool TryAddChangedToSet<TKey, TValue>(ISet<TKey> changedSet, IDictionary<TKey, TValue> dictionary, TKey key)
{
if (dictionary.ContainsKey(key)) return changedSet.Add(key);
return false;
}
}
private abstract class TemplateDefs<TTemplate, TImplied> : TemplateDefs
where TTemplate : Def
where TImplied : Def
{
private bool _anyChange;
public override bool TryRegisterImpliedDef(Def def)
{
if (!IsImpliedDef(def, out var impliedDef)) return false;
RegisterImpliedDef(impliedDef);
return true;
}
public override void NotifyChanged(Def def)
{
if (IsTemplateDef(def, out var templateDef))
{
NotifyTemplateChanged(templateDef);
_anyChange = true;
}
if (TryNotifyChanged(def)) _anyChange = true;
}
public override void ReleaseChanges()
{
if (!_anyChange) return;
ReleaseAllChanges();
_anyChange = false;
}
private bool IsImpliedDef(Def def, out TImplied impliedDef)
{
impliedDef = default;
if (!def.generated) return false;
impliedDef = def as TImplied;
if (impliedDef == null) return false;
if (!CanRegisterImpliedDef(impliedDef)) return false;
return true;
}
private bool IsTemplateDef(Def def, out TTemplate templateDef)
{
templateDef = def as TTemplate;
return templateDef != null;
}
protected abstract bool CanRegisterImpliedDef(TImplied def);
protected abstract void RegisterImpliedDef(TImplied def);
protected abstract bool TryNotifyChanged(Def def);
protected abstract void NotifyTemplateChanged(TTemplate def);
protected abstract void ReleaseAllChanges();
}
}
}