using RimWorld; using System.Diagnostics.CodeAnalysis; using Verse; namespace RJWSexperience.Ideology.Precepts { public class PreceptComp_SelfTookThoughtTagged : PreceptComp_SelfTookMemoryThought { [SuppressMessage("Minor Code Smell", "S1104:Fields should not have public accessibility", Justification = "Field value loaded from XML")] public string tag; [SuppressMessage("Minor Code Smell", "S1104:Fields should not have public accessibility", Justification = "Field value loaded from XML")] public bool exclusive = false; public PreceptComp_SelfTookThoughtTagged() { } public override void Notify_MemberTookAction(HistoryEvent ev, Precept precept, bool canApplySelfTookThoughts) { if (tag != null) { if (ev.args.TryGetArg(HistoryEventArgsNamesCustom.Tag, out string tags)) { if (IdeoUtility.ContainAll(tags, tag.Replace(" ", "").Split(',')) ^ exclusive) { TookThought(ev, precept, canApplySelfTookThoughts); } } else if (exclusive) { TookThought(ev, precept, canApplySelfTookThoughts); } } else { TookThought(ev, precept, canApplySelfTookThoughts); } } protected virtual void TookThought(HistoryEvent ev, Precept precept, bool canApplySelfTookThoughts) { if (ev.def != this.eventDef || !canApplySelfTookThoughts) { return; } Pawn arg = ev.args.GetArg(HistoryEventArgsNames.Doer); Pawn partner = ev.args.GetArg(HistoryEventArgsNamesCustom.Partner); if (arg.needs?.mood != null && (!this.onlyForNonSlaves || !arg.IsSlave)) { if (this.thought.minExpectationForNegativeThought != null && ExpectationsUtility.CurrentExpectationFor(arg).order < this.thought.minExpectationForNegativeThought.order) { return; } Thought_Memory thought_Memory = ThoughtMaker.MakeThought(this.thought, precept); if (thought_Memory is Thought_KilledInnocentAnimal thought_KilledInnocentAnimal && ev.args.TryGetArg(HistoryEventArgsNames.Victim, out Pawn animal)) { thought_KilledInnocentAnimal.SetAnimal(animal); } if (thought_Memory is Thought_MemoryObservation thought_MemoryObservation && ev.args.TryGetArg(HistoryEventArgsNames.Subject, out Corpse target)) { thought_MemoryObservation.Target = target; } arg.needs.mood.thoughts.memories.TryGainMemory(thought_Memory, partner); } } } }