-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDropableAlteration.cs
592 lines (519 loc) · 22.4 KB
/
DropableAlteration.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
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
using SideLoader;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Collections.Specialized;
using System.ComponentModel;
using System.Linq;
using System.Xml.Serialization;
using UnityEngine;
namespace Nm1fiOutward.Drops
{
// Abstract classes
[SL_Serialized]
public abstract class DropableAlteration : ITemplateListItem
{
public virtual void ApplyActualTemplate() { }
public abstract IList<string> Validate();
}
public abstract class ItemDropperAlteration : DropableAlteration
{
[XmlArray("ItemDropperMatchAny"), DefaultValue(null)]
[XmlArrayItem("ItemGenatorName", typeof(ItemGenatorNameMatcher))]
public List<ItemDropperMatcher> ItemDropperMatcher = null;
[XmlElement("ModifyFirstMatchOnly"), DefaultValue(true)]
public bool ModifyFirstMatchOnly = true;
public string ItemDropperMatcherToString()
{
if (ItemDropperMatcher == null || !ItemDropperMatcher.Any())
return ModifyFirstMatchOnly ? "first changed dropper" : "all droppers";
else if (ItemDropperMatcher.Count == 1)
return $"{(ModifyFirstMatchOnly ? "first" : "all")} matching '{ItemDropperMatcher[0]}'";
else
return $"{(ModifyFirstMatchOnly ? "first" : "all")} matching {ItemDropperMatcher.Count} matchers";
}
public virtual bool IsMatch(DropableWrapper dropable, ItemDropperWrapper dropper)
=> ItemDropperMatcher == null
|| !ItemDropperMatcher.Any()
|| ItemDropperMatcher.Any(matcher => matcher.IsMatch(dropper));
public abstract bool Apply(DropableWrapper dropable, ItemDropperWrapper dropper);
public bool TryApply(DropableWrapper dropable, ItemDropperWrapper dropper)
{
if (IsMatch(dropable, dropper))
return Apply(dropable, dropper);
return false;
}
public override void ApplyActualTemplate()
{
ItemDropperMatcher = ItemDropperMatcher.Distinct(new ItemDropperMatcherSameComparer()).ToList();
base.ApplyActualTemplate();
foreach (var matcher in ItemDropperMatcher)
matcher.ApplyActualTemplate();
}
public override IList<string> Validate()
{
var errors = new List<string>();
foreach (var matcher in ItemDropperMatcher)
if (matcher.Validate() is IList<string> matcherErrors)
errors.AddRange(matcherErrors);
return errors.Any() ? errors : null;
}
}
public abstract class GuaranteedDropperAlteration : ItemDropperAlteration
{
public override string ToString()
=> $"Guaranteed: {ItemDropperMatcherToString()}";
}
public abstract class ChanceDropperAlteration : ItemDropperAlteration
{
public override string ToString()
=> $"Chance: {ItemDropperMatcherToString()}";
}
public abstract class AdditionalDropperAlteration : DropableAlteration
{
public override string ToString()
=> $"Additional:";
public abstract void GenerateAdditionalItems(Dropable dropable, Transform container);
public abstract void AddAdditionalDroppers(DropableWrapper dropable);
}
// Concrete classes: GuaranteedDrop dropper alteration
public class AddGuaranteedDrops : GuaranteedDropperAlteration
{
[XmlArray("Drops")]
[XmlArrayItem("GuaranteedDrop", typeof(GuaranteedDrop))]
public List<GuaranteedDrop> Drops = new List<GuaranteedDrop>();
public override string ToString()
=> $"{base.ToString()}, {Drops.Count} added drops";
public override bool Apply(DropableWrapper dropable, ItemDropperWrapper itemDropper)
{
if (itemDropper is GuaranteedDropWrapper dropper
&& Drops != null
&& Drops.Any())
{
var changes = false;
foreach (var drop in Drops)
if (!dropper.Contains(drop.ItemID))
{
dropper.Drops.Add(drop.New());
changes = true;
}
if (changes)
dropper.SetHasChanges();
return true;
}
return false;
}
public override IList<string> Validate()
{
var errors = new List<string>();
if (base.Validate() is IList<string> baseErrors)
errors.AddRange(baseErrors);
if (Drops == null || !Drops.Any())
errors.Add($"Empty list of Drops for {GetType().Name}!");
return errors.Any() ? errors : null;
}
}
public class AddGuaranteedFromDropTable : GuaranteedDropperAlteration
{
[XmlArray("DropTableUIDsToAdd")]
[XmlArrayItem("UID")]
public ObservableCollection<string> DropTableUIDsToAdd = new ObservableCollection<string>();
private IList<GuaranteedDrop> m_cachedDrops;
private void ClearCache(object sender, NotifyCollectionChangedEventArgs e)
{
m_cachedDrops = null;
DropTableUIDsToAdd.CollectionChanged -= ClearCache;
}
private IList<string> UpdateCache()
{
var errors = new List<string>();
var seenItems = new HashSet<int>();
m_cachedDrops = new List<GuaranteedDrop>();
DropTableUIDsToAdd.CollectionChanged += ClearCache;
if (DropTableUIDsToAdd != null
&& DropTableUIDsToAdd.Any()
&& At.GetField<SL_DropTable>("s_registeredTables") is Dictionary<string, SL_DropTable> dropTables)
{
foreach (var uid in DropTableUIDsToAdd)
{
if (dropTables.TryGetValue(uid, out SL_DropTable table))
{
if (table.GuaranteedDrops != null)
foreach (var drop in table.GuaranteedDrops)
if (!seenItems.Contains(drop.DroppedItemID))
{
m_cachedDrops.Add(new GuaranteedDrop {
ItemID = drop.DroppedItemID,
MinDropCount = drop.MinQty,
MaxDropCount = drop.MaxQty
});
seenItems.Add(drop.DroppedItemID);
}
}
else
{
errors.Add($"Unable to find SL_DropTable with UID '{uid}'!");
}
}
}
return errors;
}
private IList<GuaranteedDrop> Drops {
get {
if (m_cachedDrops == null)
UpdateCache();
return m_cachedDrops;
}
}
public override string ToString()
=> $"{base.ToString()}, {DropTableUIDsToAdd.Count} DropTables -> {Drops.Count} drops";
public override bool Apply(DropableWrapper dropable, ItemDropperWrapper itemDropper)
{
if (itemDropper is GuaranteedDropWrapper dropper
&& Drops != null
&& Drops.Any())
{
var changes = false;
foreach (var drop in Drops)
if (!dropper.Contains(drop.ItemID))
{
dropper.Drops.Add(drop.New());
changes = true;
}
if (changes)
dropper.SetHasChanges();
return true;
}
return false;
}
public override IList<string> Validate()
{
var errors = new List<string>();
if (base.Validate() is IList<string> baseErrors)
errors.AddRange(baseErrors);
if (UpdateCache() is IList<string> cacheErrors)
errors.AddRange(cacheErrors);
if (Drops == null || !Drops.Any())
errors.Add($"Empty list of Drops for {GetType().Name}!");
return errors.Any() ? errors : null;
}
}
public class ModifyGuaranteedDrops : GuaranteedDropperAlteration
{
[XmlArray("ModifiedDrops")]
[XmlArrayItem("GuaranteedDrop", typeof(GuaranteedDrop))]
public List<GuaranteedDrop> ModifiedDrops = new List<GuaranteedDrop>();
public override string ToString()
=> $"{base.ToString()}, {ModifiedDrops.Count} modified drops";
public override bool IsMatch(DropableWrapper dropable, ItemDropperWrapper itemDropper)
=> itemDropper is GuaranteedDropWrapper dropper
&& ModifiedDrops != null && ModifiedDrops.Any()
&& base.IsMatch(dropable, itemDropper)
&& dropper.HasDrops
&& dropper.Items.Overlaps(ModifiedDrops.Select(x => x.ItemID));
public override bool Apply(DropableWrapper dropable, ItemDropperWrapper itemDropper)
{
if (itemDropper is GuaranteedDropWrapper dropper
&& ModifiedDrops.Any()
&& dropper.HasDrops)
{
var modifications = ModifiedDrops.ToDictionary(x => x.ItemID);
var changes = false;
foreach (var drop in dropper.Drops)
if (modifications.TryGetValue(drop, out var modification))
if (modification.Modify(drop))
changes = true;
if (changes)
dropper.SetHasChanges();
return changes;
}
return false;
}
public override IList<string> Validate()
{
var errors = new List<string>();
if (base.Validate() is IList<string> baseErrors)
errors.AddRange(baseErrors);
if (ModifiedDrops == null || !ModifiedDrops.Any())
errors.Add($"Empty list of ModifiedDrops for {GetType().Name}!");
return errors.Any() ? errors : null;
}
}
public class RemoveGuaranteedDrops : GuaranteedDropperAlteration
{
[XmlArray("ItemsToRemove")]
[XmlArrayItem("ItemID", typeof(int))]
public List<int> ItemsToRemove = new List<int>();
private HashSet<int> m_removedItemsHashSet;
private HashSet<int> RemovedItemsAsSet {
get {
if (m_removedItemsHashSet == null)
m_removedItemsHashSet = new HashSet<int>(ItemsToRemove);
return m_removedItemsHashSet;
}
}
public override string ToString()
=> $"{base.ToString()}, {ItemsToRemove.Count} items to remove";
public override bool IsMatch(DropableWrapper dropable, ItemDropperWrapper itemDropper)
=> itemDropper is GuaranteedDropWrapper
&& ItemsToRemove != null && ItemsToRemove.Any()
&& base.IsMatch(dropable, itemDropper);
public override bool Apply(DropableWrapper dropable, ItemDropperWrapper itemDropper)
{
if (itemDropper is GuaranteedDropWrapper dropper
&& ItemsToRemove.Any()
&& dropper.HasDrops)
{
var removeItems = RemovedItemsAsSet;
var removedCount = dropper.Drops.RemoveAll(drop => removeItems.Contains(drop));
if (removedCount > 0)
{
dropper.SetHasChanges();
return true;
}
}
return false;
}
public override void ApplyActualTemplate()
{
base.ApplyActualTemplate();
m_removedItemsHashSet = null;
}
public override IList<string> Validate()
{
var errors = new List<string>();
if (base.Validate() is IList<string> baseErrors)
errors.AddRange(baseErrors);
if (ItemsToRemove == null || !ItemsToRemove.Any())
errors.Add($"Empty list of ItemsToRemove for {GetType().Name}!");
// TODO: check that item ids exist in the game
return errors.Any() ? errors : null;
}
}
// Concrete classes: DropTable dropper alteration
public class AddChanceDrops : ChanceDropperAlteration
{
[XmlArray("Drops")]
[XmlArrayItem("Absolute", typeof(AbsoluteRandomDrop))]
[XmlArrayItem("Relative", typeof(RelativeRandomDrop))]
public List<RandomDrop> Drops = new List<RandomDrop>();
public override string ToString()
=> $"{base.ToString()}, {Drops.Count} added drops";
public override bool Apply(DropableWrapper dropable, ItemDropperWrapper itemDropper)
{
if (itemDropper is DropTableWrapper dropper
&& Drops != null
&& Drops.Any())
{
var changes = false;
foreach (var drop in Drops)
if (!dropper.Contains(drop.ItemID))
{
dropper.Drops.Add(drop.New(dropper.AverageDropChance));
changes = true;
}
if (changes)
dropper.SetHasChanges();
return changes;
}
return false;
}
public override IList<string> Validate()
{
var errors = new List<string>();
if (base.Validate() is IList<string> baseErrors)
errors.AddRange(baseErrors);
if (Drops == null || !Drops.Any())
errors.Add($"Empty list of Drops for {GetType().Name}!");
return errors.Any() ? errors : null;
}
}
public class ModifyChanceDrops : ChanceDropperAlteration
{
[XmlArray("ModifiedDrops")]
[XmlArrayItem("Absolute", typeof(AbsoluteRandomDrop))]
public List<AbsoluteRandomDrop> ModifiedDrops = new List<AbsoluteRandomDrop>();
public override string ToString()
=> $"{base.ToString()}, {ModifiedDrops.Count} modified drops";
public override bool IsMatch(DropableWrapper dropable, ItemDropperWrapper itemDropper)
=> itemDropper is DropTableWrapper dropper
&& ModifiedDrops != null && ModifiedDrops.Any()
&& base.IsMatch(dropable, itemDropper)
&& dropper.HasDrops
&& dropper.Items.Overlaps(ModifiedDrops.Select(x => x.ItemID));
public override bool Apply(DropableWrapper dropable, ItemDropperWrapper itemDropper)
{
if (itemDropper is DropTableWrapper dropper
&& ModifiedDrops != null && ModifiedDrops.Any()
&& dropper.HasDrops)
{
var modifications = ModifiedDrops.ToDictionary(x => x.ItemID);
var changes = false;
foreach (var drop in dropper.Drops)
if (modifications.TryGetValue(drop, out var modification))
if (modification.Modify(drop))
changes = true;
if (changes)
dropper.SetHasChanges();
return changes;
}
return false;
}
public override IList<string> Validate()
{
var errors = new List<string>();
if (base.Validate() is IList<string> baseErrors)
errors.AddRange(baseErrors);
if (ModifiedDrops == null || !ModifiedDrops.Any())
errors.Add($"Empty list of ModifiedDrops for {GetType().Name}!");
return errors.Any() ? errors : null;
}
}
public class RemoveChanceDrops : ChanceDropperAlteration
{
[XmlArray("ItemsToRemove")]
[XmlArrayItem("ItemID", typeof(int))]
public List<int> ItemsToRemove = new List<int>();
private HashSet<int> m_removedItemsHashSet;
private HashSet<int> RemovedItemsAsSet {
get {
if (m_removedItemsHashSet == null)
m_removedItemsHashSet = new HashSet<int>(ItemsToRemove);
return m_removedItemsHashSet;
}
}
public override string ToString()
=> $"{base.ToString()}, {ItemsToRemove.Count} items to remove";
public override bool IsMatch(DropableWrapper dropable, ItemDropperWrapper itemDropper)
=> itemDropper is DropTableWrapper
&& ItemsToRemove != null && ItemsToRemove.Any()
&& base.IsMatch(dropable, itemDropper);
public override bool Apply(DropableWrapper dropable, ItemDropperWrapper itemDropper)
{
if (itemDropper is DropTableWrapper dropper
&& ItemsToRemove != null && ItemsToRemove.Any()
&& dropper.HasDrops)
{
var removeItems = RemovedItemsAsSet;
var removedCount = dropper.Drops.RemoveAll(drop => removeItems.Contains(drop));
if (removedCount > 0)
{
dropper.SetHasChanges();
return true;
}
}
return false;
}
public override void ApplyActualTemplate()
{
base.ApplyActualTemplate();
m_removedItemsHashSet = null;
}
public override IList<string> Validate()
{
var errors = new List<string>();
if (base.Validate() is IList<string> baseErrors)
errors.AddRange(baseErrors);
if (ItemsToRemove == null || !ItemsToRemove.Any())
errors.Add($"Empty list of ItemsToRemove for {GetType().Name}!");
// TODO: check that item ids exist in the game
return errors.Any() ? errors : null;
}
}
// Concrete classes, additional ItemDroppers
public class AdditionalDropTablesByUID : AdditionalDropperAlteration
{
[XmlElement("UID")]
public List<string> DropTableUIDs = new List<string>();
public override string ToString()
{
if (DropTableUIDs == null || !DropTableUIDs.Any())
return $"{base.ToString()} no SL_DropTable references";
else if (DropTableUIDs.Count == 1)
return $"{base.ToString()} SL_DropTable {DropTableUIDs[0]}";
else
return $"{base.ToString()} {DropTableUIDs.Count} SL_DropTable referencess";
}
public override void GenerateAdditionalItems(Dropable dropable, Transform container)
{
if (DropTableUIDs != null
&& DropTableUIDs.Any()
&& At.GetField<SL_DropTable>("s_registeredTables") is Dictionary<string, SL_DropTable> dropTables
&& dropTables.Any())
{
foreach (var uid in DropTableUIDs)
{
if (dropTables.TryGetValue(uid, out var table))
table.GenerateDrops(container);
else
DropsPlugin.LogError($"Unable to find SL_DropTable with UID '{uid}'!");
}
}
}
public override void AddAdditionalDroppers(DropableWrapper dropable)
{
if (DropTableUIDs != null
&& DropTableUIDs.Any()
&& At.GetField<SL_DropTable>("s_registeredTables") is Dictionary<string, SL_DropTable> dropTables
&& dropTables.Any())
{
foreach (var uid in DropTableUIDs)
{
if (dropTables.TryGetValue(uid, out var table))
{
if (table.GuaranteedDrops != null && table.GuaranteedDrops.Any())
{
var guaranteed = dropable.NewGuaranteedDropper($"SL_DropTable - {uid}");
foreach (var drop in table.GuaranteedDrops)
guaranteed.Drops.Add(new BasicItemDrop {
ItemID = drop.DroppedItemID,
MinDropCount = drop.MinQty,
MaxDropCount = drop.MaxQty,
});
guaranteed.SetHasChanges();
}
if (table.RandomTables != null && table.RandomTables.Any())
{
var i = 0;
foreach (var randomGenerator in table.RandomTables)
{
var chance = dropable.NewChanceDropper($"SL_DropTable Random {i} - {uid}");
foreach (var drop in randomGenerator.Drops)
chance.Drops.Add(new ItemDropChance {
ItemID = drop.DroppedItemID,
MinDropCount = drop.MinQty,
MaxDropCount = drop.MaxQty,
DropChance = drop.DiceValue,
});
chance.SetHasChanges();
i++;
}
}
}
else
DropsPlugin.LogError($"Unable to find SL_DropTable with UID '{uid}'!");
}
}
}
public override IList<string> Validate()
{
if (DropTableUIDs != null
&& DropTableUIDs.Any()
&& At.GetField<SL_DropTable>("s_registeredTables") is Dictionary<string, SL_DropTable> dropTables)
{
var errors = new List<string>();
var i = 0;
foreach (var uid in DropTableUIDs)
{
if (!dropTables.TryGetValue(uid, out var table))
errors.Add($"string[{i}] Unable to find SL_DropTable with UID '{uid}'!");
else if (!(table.GuaranteedDrops != null && table.GuaranteedDrops.Any())
&& !(table.RandomTables != null && table.RandomTables.Any()))
errors.Add($"string[{i}] SL_DropTable with UID '{uid}' does not contain any drops!");
i++;
}
return errors.Any() ? errors : null;
}
return null;
}
}
}