mirror of
https://gitgud.io/amevarashi/rjw-sexperience-ideology.git
synced 2024-08-15 00:43:19 +00:00
75 lines
2.3 KiB
C#
75 lines
2.3 KiB
C#
using RimWorld;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using Verse;
|
|
|
|
namespace RJWSexperience.Ideology
|
|
{
|
|
public class RelationFilter
|
|
{
|
|
[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")]
|
|
public bool? isAlien;
|
|
[SuppressMessage("Minor Code Smell", "S1104:Fields should not have public accessibility", Justification = "Field value loaded from XML")]
|
|
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;
|
|
|
|
private bool initialized = false;
|
|
private HashSet<PawnRelationDef> hasOneOfRelationsHashed;
|
|
private HashSet<PawnRelationDef> hasNoneOfRelationsHashed;
|
|
|
|
public bool Applies(Pawn pawn, Pawn partner)
|
|
{
|
|
if (isVeneratedAnimal != null && isVeneratedAnimal != pawn.Ideo.IsVeneratedAnimal(partner))
|
|
return false;
|
|
|
|
//if (isAlien != null && isAlien != partner)
|
|
// return false;
|
|
|
|
if (!CheckRelations(pawn, partner))
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
private bool CheckRelations(Pawn pawn, Pawn partner)
|
|
{
|
|
if (!initialized)
|
|
Initialize();
|
|
|
|
if (hasNoneOfRelationsHashed == null && hasOneOfRelationsHashed == null)
|
|
return true;
|
|
|
|
IEnumerable<PawnRelationDef> relations = pawn.GetRelations(partner);
|
|
|
|
if (hasOneOfRelationsHashed != null)
|
|
{
|
|
if (relations.EnumerableNullOrEmpty())
|
|
return false;
|
|
|
|
if (!hasOneOfRelationsHashed.Overlaps(relations))
|
|
return false;
|
|
}
|
|
|
|
if (hasNoneOfRelationsHashed != null && !relations.EnumerableNullOrEmpty() && hasNoneOfRelationsHashed.Overlaps(relations))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
private void Initialize()
|
|
{
|
|
if (!hasNoneOfRelations.NullOrEmpty())
|
|
hasNoneOfRelationsHashed = new HashSet<PawnRelationDef>(hasNoneOfRelations);
|
|
|
|
if (!hasOneOfRelations.NullOrEmpty())
|
|
hasOneOfRelationsHashed = new HashSet<PawnRelationDef>(hasOneOfRelations);
|
|
|
|
initialized = true;
|
|
}
|
|
}
|
|
}
|