mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
86 lines
3.2 KiB
C#
86 lines
3.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using UnityEngine;
|
|
|
|
namespace RimWorldAnimationStudio
|
|
{
|
|
public class Workspace : Singleton<Workspace>
|
|
{
|
|
public static AnimationDef animationDef;
|
|
public static int stageID = 0;
|
|
public static int actorID = 0;
|
|
public static int keyframeID = 0;
|
|
public static bool isDirty = false;
|
|
|
|
public static List<string> defNames = new List<string>() { "Human" };
|
|
public static List<string> bodyParts = new List<string>() { "Penis", "Vagina", "Anus", "Breasts", "Mouth" };
|
|
public static List<string> bodyDefTypes = new List<string>() { "Human" };
|
|
public static List<string> sexTypes = new List<string>() { "None", "Vaginal", "Anal", "Oral", "Masturbation", "DoublePenetration", "Boobjob", "Handjob", "Footjob", "Fingering", "Scissoring", "MutualMasturbation", "Fisting", "MechImplant", "Rimming", "Fellatio", "Cunnilingus", "Sixtynine" };
|
|
public static List<string> interactionDefTypes = new List<string>();
|
|
|
|
private static List<WorkspaceSnapShot> workspaceHistory = new List<WorkspaceSnapShot>();
|
|
private static int maxHistoryDepth = 100;
|
|
private static int historyIndex = 0;
|
|
|
|
public static ActorManipulationMode actorManipulationMode = ActorManipulationMode.Pan;
|
|
public static int animationClipWindowSize = 600;
|
|
|
|
|
|
|
|
//public int? GetCurrentKeyframe()
|
|
//{
|
|
// return animationDef?.animationStages[stageID]?.animationClips[actorID]?.keyframes.FirstOrDefault(x => x.keyframeID == keyframeID)?.keyframeID;
|
|
//}
|
|
|
|
public PawnAnimationClip GetPawnAnimationClip(int actorID)
|
|
{
|
|
return animationDef.animationStages[stageID].animationClips[actorID];
|
|
}
|
|
|
|
public PawnKeyframe GetPawnKeyframe(int actorID, int keyframeID)
|
|
{
|
|
return animationDef.animationStages[stageID].animationClips[actorID].keyframes.FirstOrDefault(x => x.keyframeID == keyframeID);
|
|
}
|
|
|
|
public void TrackChanges()
|
|
{
|
|
if (historyIndex < workspaceHistory.Count - 1)
|
|
{ workspaceHistory.RemoveRange(historyIndex + 1, workspaceHistory.Count - historyIndex); }
|
|
|
|
if (workspaceHistory.Any() && workspaceHistory.Count >= maxHistoryDepth)
|
|
{ workspaceHistory.RemoveAt(0); }
|
|
|
|
WorkspaceSnapShot workspaceSnapShot = new WorkspaceSnapShot();
|
|
workspaceSnapShot.animationDef = animationDef;
|
|
workspaceSnapShot.stageID = stageID;
|
|
|
|
workspaceHistory.Add(workspaceSnapShot);
|
|
|
|
// track bType for actors, stageID, isdirty
|
|
|
|
historyIndex++;
|
|
}
|
|
|
|
public void Undo()
|
|
{
|
|
historyIndex = Mathf.Clamp(historyIndex - 1, 0, workspaceHistory.Count - 1);
|
|
LoadHistoricState();
|
|
}
|
|
|
|
public void Redo()
|
|
{
|
|
historyIndex = Mathf.Clamp(historyIndex - 1, 0, workspaceHistory.Count - 1);
|
|
LoadHistoricState();
|
|
}
|
|
|
|
public void LoadHistoricState()
|
|
{
|
|
animationDef = workspaceHistory[historyIndex].animationDef;
|
|
|
|
// All other data
|
|
}
|
|
}
|
|
}
|