mirror of
https://gitgud.io/c0ffeeeeeeee/rimworld-animations.git
synced 2024-08-15 00:43:45 +00:00
115 lines
4.9 KiB
C#
115 lines
4.9 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using RimWorld;
|
|||
|
using UnityEngine;
|
|||
|
using Verse;
|
|||
|
using Verse.AI;
|
|||
|
|
|||
|
namespace Rimworld_Animations {
|
|||
|
public static class AnimationUtility {
|
|||
|
/*
|
|||
|
Note: always make the list in this order:
|
|||
|
Female pawns, animal female pawns, male pawns, animal male pawns
|
|||
|
*/
|
|||
|
public static AnimationDef tryFindAnimation(ref List<Pawn> participants) {
|
|||
|
|
|||
|
//aggressors first
|
|||
|
participants = participants.OrderByDescending(p => p.jobs.curDriver is rjw.JobDriver_SexBaseInitiator).ToList();
|
|||
|
|
|||
|
//fucked first, fucking second
|
|||
|
participants = participants.OrderBy(p => rjw.xxx.can_fuck(p)).ToList();
|
|||
|
|
|||
|
List<Pawn> localParticipants = new List<Pawn>(participants);
|
|||
|
|
|||
|
IEnumerable<AnimationDef> options = DefDatabase<AnimationDef>.AllDefs.Where((AnimationDef x) => {
|
|||
|
|
|||
|
if (x.actors.Count != localParticipants.Count) {
|
|||
|
return false;
|
|||
|
}
|
|||
|
for (int i = 0; i < x.actors.Count; i++) {
|
|||
|
|
|||
|
|
|||
|
if(x.actors[i].defNames.Contains("Human")) {
|
|||
|
if (!rjw.xxx.is_human(localParticipants[i])) {
|
|||
|
if(rjw.RJWSettings.DevMode) {
|
|||
|
Log.Message(x.defName.ToStringSafe() + " not selected -- " + localParticipants[i].def.defName.ToStringSafe() + " " + localParticipants[i].Name.ToStringSafe() + " is not human");
|
|||
|
}
|
|||
|
|
|||
|
return false;
|
|||
|
}
|
|||
|
|
|||
|
} else {
|
|||
|
|
|||
|
if (!x.actors[i].defNames.Contains(localParticipants[i].def.defName)) {
|
|||
|
|
|||
|
if (rjw.RJWSettings.DevMode) {
|
|||
|
Log.Message(x.defName.ToStringSafe() + " not selected -- " + localParticipants[i].def.defName.ToStringSafe() + " " + localParticipants[i].Name.ToStringSafe() + " is not ");
|
|||
|
foreach(String defname in x.actors[i].defNames) {
|
|||
|
Log.Message(defname + ", ");
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
return false;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
if(x.actors[i].requiredGenitals != null && x.actors[i].requiredGenitals.Contains("Vagina")) {
|
|||
|
|
|||
|
if (!rjw.Genital_Helper.has_vagina(localParticipants[i])) {
|
|||
|
Log.Message(x.defName.ToStringSafe() + " not selected -- " + localParticipants[i].def.defName.ToStringSafe() + " " + localParticipants[i].Name.ToStringSafe() + " doesn't have vagina");
|
|||
|
return false;
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
//TESTING ANIMATIONS ONLY REMEMBER TO COMMENT OUT BEFORE PUSH
|
|||
|
/*
|
|||
|
if (x.defName != "Tribadism")
|
|||
|
return false;
|
|||
|
*/
|
|||
|
|
|||
|
if (x.actors[i].isFucking && !rjw.xxx.can_fuck(localParticipants[i])) {
|
|||
|
Log.Message(x.defName.ToStringSafe() + " not selected -- " + localParticipants[i].def.defName.ToStringSafe() + " " + localParticipants[i].Name.ToStringSafe() + " can't fuck");
|
|||
|
return false;
|
|||
|
}
|
|||
|
|
|||
|
if (x.actors[i].isFucked && !rjw.xxx.can_be_fucked(localParticipants[i])) {
|
|||
|
Log.Message(x.defName.ToStringSafe() + " not selected -- " + localParticipants[i].def.defName.ToStringSafe() + " " + localParticipants[i].Name.ToStringSafe() + " can't be fucked");
|
|||
|
return false;
|
|||
|
}
|
|||
|
}
|
|||
|
return true;
|
|||
|
});
|
|||
|
|
|||
|
if (options != null && options.Any()) {
|
|||
|
Log.Message("Randomly selecting animation...");
|
|||
|
return options.RandomElement();
|
|||
|
}
|
|||
|
|
|||
|
else
|
|||
|
return null;
|
|||
|
}
|
|||
|
|
|||
|
public static void RenderPawnHeadMeshInAnimation(Mesh mesh, Vector3 loc, Quaternion quaternion, Material material, bool portrait, Pawn pawn) {
|
|||
|
|
|||
|
if(pawn == null) {
|
|||
|
GenDraw.DrawMeshNowOrLater(mesh, loc, quaternion, material, portrait);
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
CompBodyAnimator pawnAnimator = pawn.TryGetComp<CompBodyAnimator>();
|
|||
|
|
|||
|
if (pawnAnimator == null || !pawnAnimator.isAnimating || portrait) {
|
|||
|
GenDraw.DrawMeshNowOrLater(mesh, loc, quaternion, material, portrait);
|
|||
|
} else {
|
|||
|
Vector3 pawnHeadPosition = pawnAnimator.getPawnHeadPosition();
|
|||
|
pawnHeadPosition.y = loc.y;
|
|||
|
GenDraw.DrawMeshNowOrLater(mesh, pawnHeadPosition, Quaternion.AngleAxis(pawnAnimator.headAngle, Vector3.up), material, portrait);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|