An easy to use Unity 3D library for creating illustrated Interactive Fiction games and more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.4 KiB

using UnityEngine;
namespace Fungus
{
/// <summary>
/// Map a value that exists in 1 range of numbers to another.
/// </summary>
[CommandInfo("Math",
"Map",
"Map a value that exists in 1 range of numbers to another.")]
[AddComponentMenu("")]
public class Map : Command
{
//[Tooltip("LHS Value ")]
[SerializeField]
protected FloatData initialRangeLower = new FloatData(0), initialRangeUpper = new FloatData(1), value;
[SerializeField]
protected FloatData newRangeLower = new FloatData(0), newRangeUpper = new FloatData(1);
[SerializeField]
protected FloatData outValue;
public override void OnEnter()
{
var p = value.Value - initialRangeLower.Value;
p /= initialRangeUpper.Value - initialRangeLower.Value;
var res = p * (newRangeUpper.Value - newRangeLower.Value);
res += newRangeLower.Value;
outValue.Value = res;
Continue();
}
public override string GetSummary()
{
return "Map [" + initialRangeLower.Value.ToString() + "-" + initialRangeUpper.Value.ToString() + "] to [" +
newRangeLower.Value.ToString() + "-" + newRangeUpper.Value.ToString() + "]";
}
public override Color GetButtonColor()
{
return new Color32(235, 191, 217, 255);
}
}
}