2022-06-19 12:40:38 +00:00
|
|
|
|
using RimWorld;
|
|
|
|
|
using rjw;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Diagnostics.CodeAnalysis;
|
|
|
|
|
using Verse;
|
|
|
|
|
|
2022-06-19 13:26:35 +00:00
|
|
|
|
namespace RJWSexperience.Ideology.Precepts
|
2022-06-19 12:40:38 +00:00
|
|
|
|
{
|
2022-06-19 13:26:35 +00:00
|
|
|
|
public class DefExtension_ModifyPreference : DefModExtension
|
2022-06-19 12:40:38 +00:00
|
|
|
|
{
|
|
|
|
|
[SuppressMessage("Minor Code Smell", "S1104:Fields should not have public accessibility", Justification = "Field value loaded from XML")]
|
|
|
|
|
public List<Rule> rules;
|
|
|
|
|
|
|
|
|
|
public void Apply(Pawn pawn, Pawn partner, ref float preference)
|
|
|
|
|
{
|
|
|
|
|
foreach (Rule rule in rules)
|
|
|
|
|
{
|
|
|
|
|
if (rule.Applies(pawn, partner))
|
|
|
|
|
preference *= rule.multiplier;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class Rule
|
|
|
|
|
{
|
|
|
|
|
[SuppressMessage("Minor Code Smell", "S1104:Fields should not have public accessibility", Justification = "Field value loaded from XML")]
|
|
|
|
|
public float multiplier = 1f;
|
|
|
|
|
[SuppressMessage("Minor Code Smell", "S1104:Fields should not have public accessibility", Justification = "Field value loaded from XML")]
|
|
|
|
|
public Filter filter;
|
|
|
|
|
|
|
|
|
|
public bool Applies(Pawn pawn, Pawn partner)
|
|
|
|
|
{
|
|
|
|
|
if (filter == null)
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
if (filter.isAnimal != null && filter.isAnimal != partner.IsAnimal())
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (filter.isVeneratedAnimal != null && filter.isVeneratedAnimal != pawn.Ideo.IsVeneratedAnimal(partner))
|
|
|
|
|
return false;
|
|
|
|
|
|
2022-06-21 04:00:17 +00:00
|
|
|
|
if (filter.isSlave != null && filter.isSlave != partner.IsSlave)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
//if (filter.isAlien != null && filter.isAlien != partner)
|
|
|
|
|
// return false;
|
|
|
|
|
|
2022-06-19 12:40:38 +00:00
|
|
|
|
if (!filter.hasOneOfRelations.NullOrEmpty())
|
|
|
|
|
{
|
|
|
|
|
if (pawn.relations == null)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
bool found = false;
|
|
|
|
|
foreach (PawnRelationDef relationDef in filter.hasOneOfRelations)
|
|
|
|
|
{
|
|
|
|
|
if (pawn.relations?.DirectRelationExists(relationDef, partner) == true)
|
|
|
|
|
{
|
|
|
|
|
found = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!found)
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!filter.hasNoneOfRelations.NullOrEmpty() && pawn.relations != null)
|
|
|
|
|
{
|
|
|
|
|
foreach (PawnRelationDef relationDef in filter.hasNoneOfRelations)
|
|
|
|
|
{
|
|
|
|
|
if (pawn.relations.DirectRelationExists(relationDef, partner))
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class Filter
|
|
|
|
|
{
|
|
|
|
|
[SuppressMessage("Minor Code Smell", "S1104:Fields should not have public accessibility", Justification = "Field value loaded from XML")]
|
|
|
|
|
public bool? isAnimal;
|
|
|
|
|
[SuppressMessage("Minor Code Smell", "S1104:Fields should not have public accessibility", Justification = "Field value loaded from XML")]
|
|
|
|
|
public bool? isVeneratedAnimal;
|
|
|
|
|
[SuppressMessage("Minor Code Smell", "S1104:Fields should not have public accessibility", Justification = "Field value loaded from XML")]
|
2022-06-21 04:00:17 +00:00
|
|
|
|
public bool? isSlave;
|
|
|
|
|
[SuppressMessage("Minor Code Smell", "S1104:Fields should not have public accessibility", Justification = "Field value loaded from XML")]
|
|
|
|
|
public bool? isAlien;
|
|
|
|
|
[SuppressMessage("Minor Code Smell", "S1104:Fields should not have public accessibility", Justification = "Field value loaded from XML")]
|
2022-06-19 12:40:38 +00:00
|
|
|
|
public List<PawnRelationDef> hasOneOfRelations;
|
|
|
|
|
[SuppressMessage("Minor Code Smell", "S1104:Fields should not have public accessibility", Justification = "Field value loaded from XML")]
|
|
|
|
|
public List<PawnRelationDef> hasNoneOfRelations;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|