2020-04-30 21:15:28 +02:00
|
|
|
using System.Globalization;
|
2019-08-06 14:20:11 +02:00
|
|
|
using Microsoft.Xna.Framework;
|
|
|
|
|
|
|
|
namespace MLEM.Extensions {
|
2020-05-21 12:53:42 +02:00
|
|
|
/// <summary>
|
2021-12-22 14:24:37 +01:00
|
|
|
/// A set of extensions for dealing with <see cref="Color"/> objects.
|
2020-05-21 12:53:42 +02:00
|
|
|
/// </summary>
|
2019-08-06 14:20:11 +02:00
|
|
|
public static class ColorExtensions {
|
|
|
|
|
2020-05-20 23:59:40 +02:00
|
|
|
/// <summary>
|
2021-12-22 14:24:37 +01:00
|
|
|
/// Copies the alpha value from another color into this color and returns the result.
|
2020-05-20 23:59:40 +02:00
|
|
|
/// </summary>
|
2021-12-22 14:24:37 +01:00
|
|
|
/// <param name="color">The color.</param>
|
|
|
|
/// <param name="other">The color to copy the alpha from.</param>
|
|
|
|
/// <returns>The first color with the second color's alpha value.</returns>
|
2019-08-09 22:04:26 +02:00
|
|
|
public static Color CopyAlpha(this Color color, Color other) {
|
|
|
|
return color * (other.A / 255F);
|
|
|
|
}
|
|
|
|
|
2021-07-13 22:34:32 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Returns an inverted version of this color.
|
|
|
|
/// </summary>
|
2021-12-22 14:24:37 +01:00
|
|
|
/// <param name="color">The color to invert.</param>
|
|
|
|
/// <returns>The inverted color.</returns>
|
2021-07-13 22:34:32 +02:00
|
|
|
public static Color Invert(this Color color) {
|
2021-12-11 00:38:28 +01:00
|
|
|
return new Color(255 - color.R, 255 - color.G, 255 - color.B, color.A);
|
2021-07-13 22:34:32 +02:00
|
|
|
}
|
|
|
|
|
2021-12-22 14:24:37 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Multiplies this color with another color and returns the result.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="color">The first color.</param>
|
|
|
|
/// <param name="other">The second color.</param>
|
|
|
|
/// <returns>The two colors multiplied together.</returns>
|
|
|
|
public static Color Multiply(this Color color, Color other) {
|
|
|
|
return new Color(color.ToVector4() * other.ToVector4());
|
|
|
|
}
|
|
|
|
|
2019-08-06 14:20:11 +02:00
|
|
|
}
|
2020-11-04 23:44:41 +01:00
|
|
|
|
|
|
|
/// <summary>
|
2021-12-22 14:24:37 +01:00
|
|
|
/// A set of utility methods for dealing with <see cref="Color"/> objects.
|
2020-11-04 23:44:41 +01:00
|
|
|
/// </summary>
|
|
|
|
public static class ColorHelper {
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Parses a hexadecimal number into an rgba color.
|
|
|
|
/// The number should be in the format <c>0xaarrggbb</c>.
|
|
|
|
/// </summary>
|
2021-12-22 14:24:37 +01:00
|
|
|
/// <param name="value">The number to parse.</param>
|
|
|
|
/// <returns>The resulting color.</returns>
|
2020-11-04 23:44:41 +01:00
|
|
|
public static Color FromHexRgba(int value) {
|
2022-06-15 11:38:11 +02:00
|
|
|
return new Color(value >> 16 & 0xFF, value >> 8 & 0xFF, value >> 0 & 0xFF, value >> 24 & 0xFF);
|
2020-11-04 23:44:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Parses a hexadecimal number into an rgb color with 100% alpha.
|
|
|
|
/// The number should be in the format <c>0xrrggbb</c>.
|
|
|
|
/// </summary>
|
2021-12-22 14:24:37 +01:00
|
|
|
/// <param name="value">The number to parse.</param>
|
|
|
|
/// <returns>The resulting color.</returns>
|
2020-11-04 23:44:41 +01:00
|
|
|
public static Color FromHexRgb(int value) {
|
2022-06-15 11:38:11 +02:00
|
|
|
return new Color(value >> 16 & 0xFF, value >> 8 & 0xFF, value >> 0 & 0xFF);
|
2020-11-04 23:44:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Parses a hexadecimal string into a color.
|
|
|
|
/// The string can either be formatted as RRGGBB or AARRGGBB and can optionally start with a <c>#</c>.
|
|
|
|
/// </summary>
|
2021-12-22 14:24:37 +01:00
|
|
|
/// <param name="value">The string to parse.</param>
|
|
|
|
/// <returns>The resulting color.</returns>
|
2020-11-04 23:44:41 +01:00
|
|
|
public static Color FromHexString(string value) {
|
|
|
|
if (value.StartsWith("#"))
|
|
|
|
value = value.Substring(1);
|
|
|
|
var val = int.Parse(value, NumberStyles.HexNumber);
|
2022-06-15 11:38:11 +02:00
|
|
|
return value.Length > 6 ? ColorHelper.FromHexRgba(val) : ColorHelper.FromHexRgb(val);
|
2020-11-04 23:44:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2022-06-17 18:23:47 +02:00
|
|
|
}
|