mirror of
https://github.com/vegapnk/RJW-Genes.git
synced 2026-06-18 19:25:57 +00:00
- Updated Breeding Pulse c# with more debugging information. - Updated Vanilla Genes Expanded Genie with updated function call. - Removed Licentia XML & method calls from Gene_Elasticity.cs - Fixed MatingCall Ability & checked to make sure Pheromone Spit was still functional. - Fixed incorrect mod requirement for sex curiosity Gene.
85 lines
No EOL
3.2 KiB
C#
85 lines
No EOL
3.2 KiB
C#
using Verse;
|
|
|
|
namespace RJW_Genes
|
|
{
|
|
/// <summary>
|
|
/// Parent Gene for Genitalia Resizing. All Resizing genes should inherit for this class.
|
|
/// There is a companion-patch `Patch_ResizingOnAdulthood`.
|
|
///
|
|
/// This helps with some functions (e.g. "hasGenitaliaResizingGenes(pawn)") but also to fire genitalia resizing later in life for Pawns.
|
|
/// (No Children with huge ding dongs, and I don't want kids with tight anuses I am not that degenerate)
|
|
///
|
|
///
|
|
/// There was an Issue (#34) that re-sized the genitalia over multiple birthdays.
|
|
/// Before the addition of `ExposeData`, it lost track whether the resizing was already run,
|
|
/// leading to a change with every birthday over multiple game starts.
|
|
///
|
|
/// Issue #138 lead to male pawns having breasts, fixed by a "should have breasts" check in the relevant genes.
|
|
///
|
|
/// There is an ongoing issue with Resizing resitting after the first day (#151) which is likely from up-stream.
|
|
/// </summary>
|
|
public abstract class Gene_GenitaliaResizingGene : RJW_Gene
|
|
{
|
|
|
|
/// <summary>
|
|
/// Whether or not the gene was already applied.
|
|
/// If not, it is checked on every birthday and will be applied accordingly.
|
|
/// </summary>
|
|
private bool resizingWasApplied = false;
|
|
public bool ResizingWasApplied { get => resizingWasApplied; set => resizingWasApplied = value; }
|
|
|
|
|
|
public override void PostMake()
|
|
{
|
|
base.PostMake();
|
|
if (pawn.ageTracker.AgeBiologicalYears >= RJW_Genes_Settings.rjw_genes_resizing_age)
|
|
{
|
|
Resize();
|
|
ResizingWasApplied = true;
|
|
}
|
|
}
|
|
|
|
public override void PostAdd()
|
|
{
|
|
if (pawn.kindDef == null) return; //Added to catch Rimworld creating statues of pawns.
|
|
base.PostAdd();
|
|
if (pawn.ageTracker.AgeBiologicalYears >= RJW_Genes_Settings.rjw_genes_resizing_age)
|
|
{
|
|
Resize();
|
|
ResizingWasApplied = true;
|
|
}
|
|
}
|
|
|
|
public override void ExposeData()
|
|
{
|
|
base.ExposeData();
|
|
Scribe_Values.Look(ref resizingWasApplied, "wasApplied");
|
|
}
|
|
|
|
/// <summary>
|
|
/// Used to resize the pawns genitalia.
|
|
/// All Logic should be put here:
|
|
/// 1. Filters for Gender
|
|
/// 2. Filters for Genitalia Existence
|
|
/// 3. Selection of right Genitalia
|
|
/// 4. Adjustment of Size
|
|
///
|
|
/// I kept it intentionally broad, so that e.g. the Penis Resize can resize multiple penises and or futas,
|
|
/// while the breast-gene is female only.
|
|
/// </summary>
|
|
public abstract void Resize();
|
|
|
|
public (float,float) GetResizingBounds()
|
|
{
|
|
|
|
BoundedExtension bounds = def.GetModExtension<BoundedExtension>();
|
|
if (bounds != null )
|
|
return (bounds.minimum,bounds.maximum);
|
|
else
|
|
{
|
|
ModLog.Warning($"Tried to read BoundedExtension for {this.def} but failed - going default values.");
|
|
}
|
|
return (0.0f, 1.0f);
|
|
}
|
|
}
|
|
} |