#region License /* MoonWorks - Game Development Framework * Copyright 2021 Evan Hemsley */ /* Derived from code by Ethan Lee (Copyright 2009-2021). * Released under the Microsoft Public License. * See fna.LICENSE for details. * Derived from code by the Mono.Xna Team (Copyright 2006). * Released under the MIT License. See monoxna.LICENSE for details. */ #endregion #region Using Statements using System; using MoonWorks.Math; #endregion namespace MoonWorks.Graphics { /// /// Packed vector type containing unsigned normalized values ranging from 0 to 1. /// The x and z components use 5 bits, and the y component uses 6 bits. /// public struct Alpha8 : IPackedVector, IEquatable, IPackedVector { #region Public Properties /// /// Gets and sets the packed value. /// public byte PackedValue { get { return packedValue; } set { packedValue = value; } } #endregion #region Private Variables private byte packedValue; #endregion #region Public Constructor /// /// Creates a new instance of Alpha8. /// /// The alpha component public Alpha8(float alpha) { packedValue = Pack(alpha); } #endregion #region Public Methods /// /// Gets the packed vector in float format. /// /// The packed vector in Vector3 format public float ToAlpha() { return (float) (packedValue / 255.0f); } #endregion #region IPackedVector Methods /// /// Sets the packed vector from a Vector4. /// /// Vector containing the components. void IPackedVector.PackFromVector4(Vector4 vector) { packedValue = Pack(vector.W); } /// /// Gets the packed vector in Vector4 format. /// /// The packed vector in Vector4 format Vector4 IPackedVector.ToVector4() { return new Vector4( 0.0f, 0.0f, 0.0f, (float) (packedValue / 255.0f) ); } #endregion #region Public Static Operators and Override Methods /// /// Compares an object with the packed vector. /// /// The object to compare. /// True if the object is equal to the packed vector. public override bool Equals(object obj) { return (obj is Alpha8) && Equals((Alpha8) obj); } /// /// Compares another Bgra5551 packed vector with the packed vector. /// /// The Bgra5551 packed vector to compare. /// True if the packed vectors are equal. public bool Equals(Alpha8 other) { return packedValue == other.packedValue; } /// /// Gets a string representation of the packed vector. /// /// A string representation of the packed vector. public override string ToString() { return packedValue.ToString("X"); } /// /// Gets a hash code of the packed vector. /// /// The hash code for the packed vector. public override int GetHashCode() { return packedValue.GetHashCode(); } public static bool operator ==(Alpha8 lhs, Alpha8 rhs) { return lhs.packedValue == rhs.packedValue; } public static bool operator !=(Alpha8 lhs, Alpha8 rhs) { return lhs.packedValue != rhs.packedValue; } #endregion #region Private Static Pack Method private static byte Pack(float alpha) { return (byte) System.Math.Round( MathHelper.Clamp(alpha, 0, 1) * 255.0f ); } #endregion } }