2023-07-20 23:54:20 +02:00

43 lines
1.3 KiB
C#

using System.Text.Json.Serialization;
namespace pacMan.GameStuff;
public class Character : IEquatable<Character>
{
[JsonPropertyName("colour")] public required string Colour { get; init; }
[JsonPropertyName("position")] public MovePath? Position { get; set; }
[JsonInclude]
[JsonPropertyName("isEatable")]
public bool IsEatable { get; set; } = true;
[JsonPropertyName("spawnPosition")] public DirectionalPosition? SpawnPosition { get; set; }
[JsonPropertyName("type")] public required CharacterType? Type { get; init; }
public bool Equals(Character? other)
{
if (ReferenceEquals(null, other)) return false;
if (ReferenceEquals(this, other)) return true;
return Colour == other.Colour && Equals(Position, other.Position) && IsEatable == other.IsEatable &&
Equals(SpawnPosition, other.SpawnPosition) && Type == other.Type;
}
public override bool Equals(object? obj)
{
if (ReferenceEquals(null, obj)) return false;
if (ReferenceEquals(this, obj)) return true;
return obj.GetType() == GetType() && Equals((Character)obj);
}
public override int GetHashCode() => HashCode.Combine(Colour, Position, IsEatable, SpawnPosition, (int?)Type);
}
public enum CharacterType
{
PacMan,
Ghost,
Dummy
}