Syntriax.Engine/Engine.Core/Abstract/ITransform.cs

85 lines
2.8 KiB
C#
Raw Normal View History

2023-11-23 22:07:49 +03:00
using System;
2024-02-06 12:34:18 +03:00
using System.Collections.Generic;
2023-11-23 22:07:49 +03:00
namespace Syntriax.Engine.Core.Abstract;
2024-02-01 12:14:53 +03:00
/// <summary>
/// Represents the transformation properties of an object such as position, scale, and rotation.
/// </summary>
2024-02-06 12:34:18 +03:00
public interface ITransform : IEnumerable<ITransform>
2023-11-23 22:07:49 +03:00
{
2024-02-01 12:14:53 +03:00
/// <summary>
/// Event triggered when the <see cref="Position"/> of the <see cref="ITransform"/> changes.
/// </summary>
2023-11-23 22:07:49 +03:00
Action<ITransform>? OnPositionChanged { get; set; }
2024-02-01 12:14:53 +03:00
/// <summary>
/// Event triggered when the <see cref="Scale"/> of the <see cref="ITransform"/> changes.
/// </summary>
2023-11-23 22:07:49 +03:00
Action<ITransform>? OnScaleChanged { get; set; }
2024-02-01 12:14:53 +03:00
/// <summary>
/// Event triggered when the <see cref="Rotation"/> of the <see cref="ITransform"/> changes.
/// </summary>
2023-11-23 22:07:49 +03:00
Action<ITransform>? OnRotationChanged { get; set; }
2024-02-01 12:14:53 +03:00
/// <summary>
2024-02-06 12:34:18 +03:00
/// Event triggered when the <see cref="Parent"/> of the <see cref="ITransform"/> changes. The second parameter is the old <see cref="ITransform"/>.
/// </summary>
Action<ITransform, ITransform?>? OnParentChanged { get; set; }
/// <summary>
/// Event triggered when a new <see cref="ITransform"/> is added to the <see cref="Children"/>.
/// </summary>
Action<ITransform, ITransform>? OnChildrenAdded { get; set; }
/// <summary>
/// Event triggered when an <see cref="ITransform"/> is removed from the <see cref="Children"/>.
/// </summary>
Action<ITransform, ITransform>? OnChildrenRemoved { get; set; }
/// <summary>
/// The world position of the <see cref="ITransform"/> in 2D space.
2024-02-01 12:14:53 +03:00
/// </summary>
Vector2D Position { get; set; }
2024-02-01 12:14:53 +03:00
/// <summary>
2024-02-06 12:34:18 +03:00
/// The world scale of the <see cref="ITransform"/>.
2024-02-01 12:14:53 +03:00
/// </summary>
Vector2D Scale { get; set; }
2023-11-23 22:07:49 +03:00
2024-02-01 12:14:53 +03:00
/// <summary>
2024-02-06 12:34:18 +03:00
/// The world rotation of the <see cref="ITransform"/> in degrees.
2024-02-01 12:14:53 +03:00
/// </summary>
2023-11-23 22:07:49 +03:00
float Rotation { get; set; }
2024-02-06 12:34:18 +03:00
/// <summary>
/// The local position of the <see cref="ITransform"/> in 2D space.
/// </summary>
Vector2D LocalPosition { get; set; }
/// <summary>
/// The local scale of the <see cref="ITransform"/>.
/// </summary>
Vector2D LocalScale { get; set; }
/// <summary>
/// The local rotation of the <see cref="ITransform"/> in degrees.
/// </summary>
float LocalRotation { get; set; }
/// <summary>
/// The parent <see cref="ITransform"/> of the <see cref="ITransform"/>.
/// </summary>
ITransform? Parent { get; }
/// <summary>
/// The <see cref="ITransform"/>s that have this <see cref="ITransform"/> as their <see cref="Parent"/>.
/// </summary>
IReadOnlyList<ITransform> Children { get; }
void SetParent(ITransform? transform);
void AddChild(ITransform transform);
void RemoveChild(ITransform transform);
2023-11-23 22:07:49 +03:00
}