mirror of
https://github.com/PorktoberRevolution/ReStocked
synced 2024-09-01 17:34:42 +00:00
Convert ModuleRestockLookAtConstrain into ModuleRestockConstraints
New module is extendable and modular, allowing constraints to be run in the expected order without relying on possibly undefined behavior
This commit is contained in:
40
Source/Restock/Constraints/CopyPositionConstraint.cs
Normal file
40
Source/Restock/Constraints/CopyPositionConstraint.cs
Normal file
@ -0,0 +1,40 @@
|
||||
using UnityEngine;
|
||||
|
||||
namespace Restock.Constraints
|
||||
{
|
||||
[System.Serializable]
|
||||
public class CopyPositionConstraint : IConstraint
|
||||
{
|
||||
private readonly string moversName;
|
||||
private readonly string targetName;
|
||||
|
||||
private readonly bool local = false;
|
||||
|
||||
// Cached components
|
||||
private readonly Transform mover;
|
||||
private readonly Transform target;
|
||||
|
||||
public CopyPositionConstraint(ConfigNode node, Part p)
|
||||
{
|
||||
node.TryGetValue("rotatorsName", ref moversName);
|
||||
node.TryGetValue("targetName", ref targetName);
|
||||
|
||||
mover = p.FindModelTransform(moversName);
|
||||
target = p.FindModelTransform(targetName);
|
||||
}
|
||||
|
||||
public void Update()
|
||||
{
|
||||
if (mover == null || target == null) return;
|
||||
|
||||
if (local)
|
||||
{
|
||||
mover.localPosition = target.localPosition;
|
||||
}
|
||||
else
|
||||
{
|
||||
mover.position = target.position;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
40
Source/Restock/Constraints/CopyRotationConstraint.cs
Normal file
40
Source/Restock/Constraints/CopyRotationConstraint.cs
Normal file
@ -0,0 +1,40 @@
|
||||
using UnityEngine;
|
||||
|
||||
namespace Restock.Constraints
|
||||
{
|
||||
[System.Serializable]
|
||||
public class CopyRotationConstraint : IConstraint
|
||||
{
|
||||
private readonly string rotatorsName;
|
||||
private readonly string targetName;
|
||||
|
||||
private readonly bool local = false;
|
||||
|
||||
// Cached components
|
||||
private readonly Transform target;
|
||||
private readonly Transform rotator;
|
||||
|
||||
public CopyRotationConstraint(ConfigNode node, Part p)
|
||||
{
|
||||
node.TryGetValue("rotatorsName", ref rotatorsName);
|
||||
node.TryGetValue("targetName", ref targetName);
|
||||
|
||||
rotator = p.FindModelTransform(rotatorsName);
|
||||
target = p.FindModelTransform(targetName);
|
||||
}
|
||||
|
||||
public void Update()
|
||||
{
|
||||
if (rotator == null || target == null) return;
|
||||
|
||||
if (local)
|
||||
{
|
||||
rotator.localRotation = target.localRotation;
|
||||
}
|
||||
else
|
||||
{
|
||||
rotator.rotation = target.rotation;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
10
Source/Restock/Constraints/IConstraint.cs
Normal file
10
Source/Restock/Constraints/IConstraint.cs
Normal file
@ -0,0 +1,10 @@
|
||||
using System;
|
||||
using UnityEngine;
|
||||
|
||||
namespace Restock.Constraints
|
||||
{
|
||||
public interface IConstraint
|
||||
{
|
||||
void Update();
|
||||
}
|
||||
}
|
33
Source/Restock/Constraints/LookAtConstraint.cs
Normal file
33
Source/Restock/Constraints/LookAtConstraint.cs
Normal file
@ -0,0 +1,33 @@
|
||||
using UnityEngine;
|
||||
|
||||
namespace Restock.Constraints
|
||||
{
|
||||
[System.Serializable]
|
||||
public class LookAtConstraint : IConstraint
|
||||
{
|
||||
private readonly string rotatorsName;
|
||||
private readonly string targetName;
|
||||
|
||||
// Cached components
|
||||
private readonly Transform target;
|
||||
private readonly Transform rotator;
|
||||
|
||||
public LookAtConstraint(ConfigNode node, Part p)
|
||||
{
|
||||
node.TryGetValue("rotatorsName", ref rotatorsName);
|
||||
node.TryGetValue("targetName", ref targetName);
|
||||
|
||||
rotator = p.FindModelTransform(rotatorsName);
|
||||
target = p.FindModelTransform(targetName);
|
||||
}
|
||||
|
||||
public void Update()
|
||||
{
|
||||
if (rotator == null || target == null) return;
|
||||
|
||||
var lookPos = target.position - rotator.position;
|
||||
var rotation = Quaternion.LookRotation(lookPos, target.up);
|
||||
rotator.rotation = rotation;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user