mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-01 13:20:50 +01:00
94 lines
5.7 KiB
C#
94 lines
5.7 KiB
C#
using Microsoft.Xna.Framework;
|
|
using MLEM.Maths;
|
|
using MonoGame.Extended;
|
|
using MlemRectangleF = MLEM.Maths.RectangleF;
|
|
using ExtRectangleF = MonoGame.Extended.RectangleF;
|
|
|
|
namespace MLEM.Extended.Maths {
|
|
/// <summary>
|
|
/// A set of extension methods that convert MLEM types to MonoGame.Extended types and vice versa.
|
|
/// </summary>
|
|
public static class NumberExtensions {
|
|
|
|
/// <summary>
|
|
/// Converts a MLEM <see cref="MlemRectangleF"/> to a MonoGame.Extended <see cref="ExtRectangleF"/>.
|
|
/// </summary>
|
|
/// <param name="rect">The rectangle to convert</param>
|
|
/// <returns>The converted rectangle</returns>
|
|
public static ExtRectangleF ToExtended(this MlemRectangleF rect) {
|
|
return new ExtRectangleF(rect.X, rect.Y, rect.Width, rect.Height);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Converts a MonoGame.Extended <see cref="ExtRectangleF"/> to a MLEM <see cref="MlemRectangleF"/>.
|
|
/// </summary>
|
|
/// <param name="rect">The rectangle to convert</param>
|
|
/// <returns>The converted rectangle</returns>
|
|
public static MlemRectangleF ToMlem(this ExtRectangleF rect) {
|
|
return new MlemRectangleF(rect.X, rect.Y, rect.Width, rect.Height);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Calculates the amount that the rectangle <paramref name="rect"/> is penetrating the rectangle <paramref name="other"/> by.
|
|
/// If a penetration on both axes is occuring, the one with the lower value is returned.
|
|
/// This is useful for collision detection, as it can be used to push colliding objects out of each other.
|
|
/// </summary>
|
|
/// <param name="rect">The rectangle to do the penetration</param>
|
|
/// <param name="other">The rectangle that should be penetrated</param>
|
|
/// <param name="normal">The direction that the penetration occured in</param>
|
|
/// <param name="penetration">The amount that the penetration occured by, in the direction of <paramref name="normal"/></param>
|
|
/// <returns>Whether or not a penetration occured</returns>
|
|
public static bool Penetrate(this ExtRectangleF rect, ExtRectangleF other, out Vector2 normal, out float penetration) {
|
|
return rect.ToMlem().Penetrate(other.ToMlem(), out normal, out penetration);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns how far between the given <paramref name="range"/>'s <see cref="Range{T}.Min"/> and <see cref="Range{T}.Max"/> value the given <paramref name="value"/> is, as a number between 0 and 1.
|
|
/// Note that, if the <paramref name="value"/> is outside the given <paramref name="range"/>, a correct proportional value outside the 0 to 1 range will still be returned.
|
|
/// This method is the reverse action of <see cref="FromPercentage(MonoGame.Extended.Range{float},float)"/>.
|
|
/// </summary>
|
|
/// <param name="range">The range to query.</param>
|
|
/// <param name="value">The value to query.</param>
|
|
/// <returns>The percentage.</returns>
|
|
public static float GetPercentage(this Range<float> range, float value) {
|
|
return (value - range.Min) / (range.Max - range.Min);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns how far between the given <paramref name="range"/>'s <see cref="Range{T}.Min"/> and <see cref="Range{T}.Max"/> value the given <paramref name="value"/> is, as a number between 0 and 1.
|
|
/// Note that, if the <paramref name="value"/> is outside the given <paramref name="range"/>, a correct proportional value outside the 0 to 1 range will still be returned.
|
|
/// This method is the reverse action of <see cref="FromPercentage(MonoGame.Extended.Range{int},float)"/>.
|
|
/// </summary>
|
|
/// <param name="range">The range to query.</param>
|
|
/// <param name="value">The value to query.</param>
|
|
/// <returns>The percentage.</returns>
|
|
public static float GetPercentage(this Range<int> range, float value) {
|
|
return (value - range.Min) / (range.Max - range.Min);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns a value within the given <paramref name="range"/>'s <see cref="Range{T}.Min"/> and <see cref="Range{T}.Max"/> values based on the given <paramref name="percentage"/> into the range.
|
|
/// Note that, if the <paramref name="percentage"/> is outside the 0 to 1 range, a correct value outside the <paramref name="range"/> will still be returned.
|
|
/// This method is the reverse action of <see cref="GetPercentage(MonoGame.Extended.Range{float},float)"/>.
|
|
/// </summary>
|
|
/// <param name="range">The range to query.</param>
|
|
/// <param name="percentage">The percentage to query.</param>
|
|
/// <returns>The value.</returns>
|
|
public static float FromPercentage(this Range<float> range, float percentage) {
|
|
return (range.Max - range.Min) * percentage + range.Min;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns a value within the given <paramref name="range"/>'s <see cref="Range{T}.Min"/> and <see cref="Range{T}.Max"/> values based on the given <paramref name="percentage"/> into the range.
|
|
/// Note that, if the <paramref name="percentage"/> is outside the 0 to 1 range, a correct value outside the <paramref name="range"/> will still be returned.
|
|
/// This method is the reverse action of <see cref="GetPercentage(MonoGame.Extended.Range{int},float)"/>.
|
|
/// </summary>
|
|
/// <param name="range">The range to query.</param>
|
|
/// <param name="percentage">The percentage to query.</param>
|
|
/// <returns>The value.</returns>
|
|
public static float FromPercentage(this Range<int> range, float percentage) {
|
|
return (range.Max - range.Min) * percentage + range.Min;
|
|
}
|
|
|
|
}
|
|
}
|