ModernUO/Projects/UOContent/Items/Games/Mahjong/MahjongWallBreakIndicator.cs
Kamron Batman 3551d962f7
C# 9 Cleanup (#325)
- [X] Removes EventArgs - not needed
- [X] Merges sequential checks
- [X] Removes redundant type declarations
2020-11-27 00:29:21 -08:00

49 lines
1.1 KiB
C#

namespace Server.Engines.Mahjong
{
public class MahjongWallBreakIndicator
{
public MahjongWallBreakIndicator(MahjongGame game, Point2D position)
{
Game = game;
Position = position;
}
public MahjongWallBreakIndicator(MahjongGame game, IGenericReader reader)
{
Game = game;
var version = reader.ReadInt();
Position = reader.ReadPoint2D();
}
public MahjongGame Game { get; }
public Point2D Position { get; private set; }
public MahjongPieceDim Dimensions => GetDimensions(Position);
public static MahjongPieceDim GetDimensions(Point2D position) => new(position, 20, 20);
public void Move(Point2D position)
{
var dim = GetDimensions(position);
if (!dim.IsValid())
{
return;
}
Position = position;
Game.Players.SendGeneralPacket(true, true);
}
public void Save(IGenericWriter writer)
{
writer.Write(0); // version
writer.Write(Position);
}
}
}