mirror of
https://gitgud.io/amevarashi/rjw-sexperience-ideology.git
synced 2024-08-15 00:43:19 +00:00
Refactor genital size ThoughtWorkers to use ThoughtDefExtension_StageFromValue
This commit is contained in:
parent
5db34c0c1f
commit
8da97c4833
8 changed files with 124 additions and 129 deletions
|
@ -0,0 +1,34 @@
|
|||
using RimWorld;
|
||||
using rjw;
|
||||
using Verse;
|
||||
|
||||
namespace RJWSexperience.Ideology.PreceptWorkers
|
||||
{
|
||||
public class ThoughtWorker_Precept_GenitalSize : ThoughtWorker_Precept
|
||||
{
|
||||
private ThoughtDefExtension_StageFromValue stageFromValue;
|
||||
|
||||
protected ThoughtDefExtension_StageFromValue StageFromValue
|
||||
{
|
||||
get
|
||||
{
|
||||
if (stageFromValue == null)
|
||||
{
|
||||
stageFromValue = def.GetModExtension<ThoughtDefExtension_StageFromValue>();
|
||||
}
|
||||
return stageFromValue;
|
||||
}
|
||||
}
|
||||
|
||||
protected override ThoughtState ShouldHaveThought(Pawn p)
|
||||
{
|
||||
if (p != null && Genital_Helper.get_AllPartsHediffList(p).Count > 0)
|
||||
{
|
||||
float bestSize = IdeoUtility.getGenitalSize(p);
|
||||
return ThoughtState.ActiveAtStage(StageFromValue.GetStageIndex(bestSize));
|
||||
}
|
||||
// This might can happen if the pawn has no genitalia ... maybe?
|
||||
return ThoughtState.Inactive;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,31 +0,0 @@
|
|||
using RimWorld;
|
||||
using rjw;
|
||||
using Verse;
|
||||
|
||||
namespace RJWSexperience.Ideology
|
||||
{
|
||||
public class ThoughtWorker_Precept_GenitalSize_Approved : ThoughtWorker_Precept
|
||||
{
|
||||
protected override ThoughtState ShouldHaveThought(Pawn p)
|
||||
{
|
||||
// We have 5 stages, which map directly to genitalia severity:
|
||||
// Micro(<0.2), Small(>0.2&&<0.4), Normal(>0.4&&<0.6), Big(>0.6&&<0.8), Huge(>0.8)
|
||||
if (p != null && Genital_Helper.get_AllPartsHediffList(p).Count > 0)
|
||||
{
|
||||
float best_size = IdeoUtility.getGenitalSize(p);
|
||||
if (best_size < 0.2f)
|
||||
return ThoughtState.ActiveAtStage(0);
|
||||
else if (best_size < 0.4f)
|
||||
return ThoughtState.ActiveAtStage(1);
|
||||
else if (best_size < 0.6f)
|
||||
return ThoughtState.ActiveAtStage(2);
|
||||
else if (best_size < 0.8f)
|
||||
return ThoughtState.ActiveAtStage(3);
|
||||
else if (best_size > 0.8f)
|
||||
return ThoughtState.ActiveAtStage(4);
|
||||
}
|
||||
// This might can happen if the pawn has no genitalia ... maybe?
|
||||
return ThoughtState.Inactive;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,29 +0,0 @@
|
|||
using RimWorld;
|
||||
using rjw;
|
||||
using Verse;
|
||||
|
||||
namespace RJWSexperience.Ideology
|
||||
{
|
||||
public class ThoughtWorker_Precept_GenitalSize_Approved_Social : ThoughtWorker_Precept_Social
|
||||
{
|
||||
|
||||
// Important Note: For the Social Worker, we measure otherPawns genitalia
|
||||
protected override ThoughtState ShouldHaveThought(Pawn p, Pawn otherPawn)
|
||||
{
|
||||
// We have 3 stages, which map directly to genitalia severity:
|
||||
// Unfavorable(<0.4), Normal(>0.4&&<0.6), Favorable(>0.6)
|
||||
if (otherPawn != null && Genital_Helper.get_AllPartsHediffList(otherPawn).Count > 0)
|
||||
{
|
||||
float best_size = IdeoUtility.getGenitalSize(otherPawn);
|
||||
if (best_size < 0.4f)
|
||||
return ThoughtState.ActiveAtStage(0);
|
||||
else if (best_size < 0.6f)
|
||||
return ThoughtState.ActiveAtStage(1);
|
||||
else if (best_size > 0.6f)
|
||||
return ThoughtState.ActiveAtStage(2);
|
||||
}
|
||||
// This might can happen if the pawn has no genitalia ... maybe?
|
||||
return ThoughtState.Inactive;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,32 +0,0 @@
|
|||
using RimWorld;
|
||||
using rjw;
|
||||
using Verse;
|
||||
|
||||
namespace RJWSexperience.Ideology
|
||||
{
|
||||
public class ThoughtWorker_Precept_GenitalSize_Disapproved : ThoughtWorker_Precept
|
||||
{
|
||||
protected override ThoughtState ShouldHaveThought(Pawn p)
|
||||
{
|
||||
// We have 5 stages, which map directly to genitalia severity:
|
||||
// Micro(<0.2), Small(>0.2&&<0.4), Normal(>0.4&&<0.6), Big(>0.6&&<0.8), Huge(>0.8)
|
||||
if (p != null && Genital_Helper.get_AllPartsHediffList(p).Count > 0)
|
||||
{
|
||||
float best_size = IdeoUtility.getGenitalSize(p);
|
||||
if (best_size < 0.2f)
|
||||
return ThoughtState.ActiveAtStage(0);
|
||||
else if (best_size < 0.4f)
|
||||
return ThoughtState.ActiveAtStage(1);
|
||||
else if (best_size < 0.6f)
|
||||
return ThoughtState.ActiveAtStage(2);
|
||||
else if (best_size < 0.8f)
|
||||
return ThoughtState.ActiveAtStage(3);
|
||||
else if (best_size > 0.8f)
|
||||
return ThoughtState.ActiveAtStage(4);
|
||||
}
|
||||
// This might can happen if the pawn has no genitalia ... maybe?
|
||||
return ThoughtState.Inactive;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
|
@ -1,28 +0,0 @@
|
|||
using RimWorld;
|
||||
using rjw;
|
||||
using Verse;
|
||||
|
||||
namespace RJWSexperience.Ideology
|
||||
{
|
||||
public class ThoughtWorker_Precept_GenitalSize_Disapproved_Social : ThoughtWorker_Precept_Social
|
||||
{
|
||||
// Important Note: For the Social Worker, we measure otherPawns genitalia
|
||||
protected override ThoughtState ShouldHaveThought(Pawn p, Pawn otherPawn)
|
||||
{
|
||||
// We have 3 stages, which map directly to genitalia severity:
|
||||
// Unfavorable(<0.4), Normal(>0.4&&<0.6), Favorable(>0.6)
|
||||
if (otherPawn != null && Genital_Helper.get_AllPartsHediffList(otherPawn).Count > 0)
|
||||
{
|
||||
float best_size = IdeoUtility.getGenitalSize(otherPawn);
|
||||
if (best_size < 0.4f)
|
||||
return ThoughtState.ActiveAtStage(0);
|
||||
else if (best_size < 0.6f)
|
||||
return ThoughtState.ActiveAtStage(1);
|
||||
else if (best_size > 0.6f)
|
||||
return ThoughtState.ActiveAtStage(2);
|
||||
}
|
||||
// This might can happen if the pawn has no genitalia ... maybe?
|
||||
return ThoughtState.Inactive;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
using RimWorld;
|
||||
using rjw;
|
||||
using Verse;
|
||||
|
||||
namespace RJWSexperience.Ideology.PreceptWorkers
|
||||
{
|
||||
public class ThoughtWorker_Precept_GenitalSize_Social : ThoughtWorker_Precept_Social
|
||||
{
|
||||
private ThoughtDefExtension_StageFromValue stageFromValue;
|
||||
|
||||
protected ThoughtDefExtension_StageFromValue StageFromValue
|
||||
{
|
||||
get
|
||||
{
|
||||
if (stageFromValue == null)
|
||||
{
|
||||
stageFromValue = def.GetModExtension<ThoughtDefExtension_StageFromValue>();
|
||||
}
|
||||
return stageFromValue;
|
||||
}
|
||||
}
|
||||
|
||||
// Important Note: For the Social Worker, we measure otherPawns genitalia
|
||||
protected override ThoughtState ShouldHaveThought(Pawn p, Pawn otherPawn)
|
||||
{
|
||||
if (otherPawn != null && Genital_Helper.get_AllPartsHediffList(otherPawn).Count > 0)
|
||||
{
|
||||
float bestSize = IdeoUtility.getGenitalSize(otherPawn);
|
||||
return ThoughtState.ActiveAtStage(StageFromValue.GetStageIndex(bestSize));
|
||||
}
|
||||
// This might can happen if the pawn has no genitalia ... maybe?
|
||||
return ThoughtState.Inactive;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -52,10 +52,8 @@
|
|||
<Compile Include="Harmony.cs" />
|
||||
<Compile Include="Ideology\HistoryEvents\ArgsNamesCustom.cs" />
|
||||
<Compile Include="Ideology\Keyed.cs" />
|
||||
<Compile Include="Ideology\PreceptWorkers\ThoughtWorker_Precept_GenitalSize_Approved.cs" />
|
||||
<Compile Include="Ideology\PreceptWorkers\ThoughtWorker_Precept_GenitalSize_Approved_Social.cs" />
|
||||
<Compile Include="Ideology\PreceptWorkers\ThoughtWorker_Precept_GenitalSize_Disapproved.cs" />
|
||||
<Compile Include="Ideology\PreceptWorkers\ThoughtWorker_Precept_GenitalSize_Disapproved_Social.cs" />
|
||||
<Compile Include="Ideology\PreceptWorkers\ThoughtWorker_Precept_GenitalSize.cs" />
|
||||
<Compile Include="Ideology\PreceptWorkers\ThoughtWorker_Precept_GenitalSize_Social.cs" />
|
||||
<Compile Include="Ideology\PreceptWorkers\ThoughtWorker_Precept_NonPregnant.cs" />
|
||||
<Compile Include="Ideology\PreceptWorkers\ThoughtWorker_Precept_NonPregnant_Social.cs" />
|
||||
<Compile Include="Ideology\PreceptWorkers\ThoughtWorker_Precept_Pregnant.cs" />
|
||||
|
@ -89,7 +87,7 @@
|
|||
<Compile Include="Ideology\StatParts.cs" />
|
||||
<Compile Include="Ideology\IdeoUtility.cs" />
|
||||
<Compile Include="Thoughts\ThoughtDefExtension_IncreaseRecord.cs" />
|
||||
<Compile Include="Thoughts\ThoughtDefExtension_StageFromOpinion.cs" />
|
||||
<Compile Include="Thoughts\ThoughtDefExtension_StageFromValue.cs" />
|
||||
<Compile Include="Thoughts\Thought_IncreaseRecord.cs" />
|
||||
<Compile Include="Thoughts\Thought_Opinionbased.cs" />
|
||||
<Compile Include="Ideology\VariousDefOf.cs" />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue