Files
FlaxEngine/Source/Engine/Render2D/SpriteAtlas.cs
2024-09-20 18:33:08 +02:00

161 lines
5.0 KiB
C#

// Copyright (c) 2012-2024 Wojciech Figat. All rights reserved.
using System;
using System.Runtime.CompilerServices;
namespace FlaxEngine
{
partial struct SpriteHandle : IEquatable<SpriteHandle>
{
/// <summary>
/// Invalid sprite handle.
/// </summary>
public static SpriteHandle Invalid;
/// <summary>
/// Initializes a new instance of the <see cref="Sprite"/> struct.
/// </summary>
/// <param name="atlas">The atlas.</param>
/// <param name="index">The index.</param>
public SpriteHandle(SpriteAtlas atlas, int index)
{
Atlas = atlas;
Index = index;
}
/// <summary>
/// Returns true if sprite is valid.
/// </summary>
public bool IsValid => Atlas != null && Index != -1;
/// <summary>
/// Gets or sets the sprite name.
/// </summary>
[NoSerialize]
public string Name
{
get
{
if (Atlas == null)
throw new InvalidOperationException("Cannot use invalid sprite.");
return Atlas.GetSprite(Index).Name;
}
set
{
if (Atlas == null)
throw new InvalidOperationException("Cannot use invalid sprite.");
var sprite = Atlas.GetSprite(Index);
sprite.Name = value;
Atlas.SetSprite(Index, ref sprite);
}
}
/// <summary>
/// Gets or sets the sprite location (in pixels).
/// </summary>
[NoSerialize]
public Float2 Location
{
get => Area.Location * Atlas.Size;
set
{
var area = Area;
area.Location = value / Atlas.Size;
Area = area;
}
}
/// <summary>
/// Gets or sets the sprite size (in pixels).
/// </summary>
[NoSerialize]
public Float2 Size
{
get
{
if (Atlas == null)
throw new InvalidOperationException("Cannot use invalid sprite.");
Atlas.GetSpriteArea(Index, out var area);
return area.Size * Atlas.Size;
}
set
{
var area = Area;
area.Size = value / Atlas.Size;
Area = area;
}
}
/// <summary>
/// Gets or sets the sprite area in atlas (in normalized atlas coordinates [0;1]).
/// </summary>
[NoSerialize]
public Rectangle Area
{
get
{
if (Atlas == null)
throw new InvalidOperationException("Cannot use invalid sprite.");
Atlas.GetSpriteArea(Index, out var area);
return area;
}
set
{
if (Atlas == null)
throw new InvalidOperationException("Cannot use invalid sprite.");
var sprite = Atlas.GetSprite(Index);
sprite.Area = value;
Atlas.SetSprite(Index, ref sprite);
}
}
/// <summary>
/// Tests for equality between two objects.
/// </summary>
/// <param name="left">The first value to compare.</param>
/// <param name="right">The second value to compare.</param>
/// <returns><c>true</c> if <paramref name="left" /> has the same value as <paramref name="right" />; otherwise, <c>false</c>.</returns>
public static bool operator ==(SpriteHandle left, SpriteHandle right)
{
return left.Index == right.Index && left.Atlas == right.Atlas;
}
/// <summary>
/// Tests for inequality between two objects.
/// </summary>
/// <param name="left">The first value to compare.</param>
/// <param name="right">The second value to compare.</param>
/// <returns><c>true</c> if <paramref name="left" /> has a different value than <paramref name="right" />; otherwise, <c>false</c>.</returns>
public static bool operator !=(SpriteHandle left, SpriteHandle right)
{
return left.Index != right.Index || left.Atlas != right.Atlas;
}
/// <inheritdoc />
public bool Equals(SpriteHandle other)
{
return Index == other.Index && Atlas == other.Atlas;
}
/// <inheritdoc />
public override bool Equals(object obj)
{
return obj is SpriteHandle other && Equals(other);
}
/// <inheritdoc />
public override int GetHashCode()
{
return HashCode.Combine(Atlas, Index);
}
/// <inheritdoc />
public override string ToString()
{
if (Atlas)
return $"{System.IO.Path.GetFileNameWithoutExtension(Atlas.Path)}[{Index}]";
return "Invalid";
}
}
}