2022-02-19 00:58:16 +00:00
|
|
|
using MultiversalDiplomacy.Model;
|
|
|
|
|
|
|
|
namespace MultiversalDiplomacy.Orders;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// An order for a unit to move to another province.
|
|
|
|
/// </summary>
|
|
|
|
public class MoveOrder : UnitOrder
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The destination season to which the unit should move.
|
|
|
|
/// </summary>
|
|
|
|
public Season Season { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The destination location to which the unit should move.
|
|
|
|
/// </summary>
|
|
|
|
public Location Location { get; }
|
|
|
|
|
2022-03-29 00:41:38 +00:00
|
|
|
/// <summary>
|
|
|
|
/// The destination's spatiotemporal location as a province-season tuple.
|
|
|
|
/// </summary>
|
|
|
|
public (Province province, Season season) Point => (this.Location.Province, this.Season);
|
|
|
|
|
2022-02-19 00:58:16 +00:00
|
|
|
public MoveOrder(Power power, Unit unit, Season season, Location location)
|
|
|
|
: base (power, unit)
|
|
|
|
{
|
|
|
|
this.Season = season;
|
|
|
|
this.Location = location;
|
|
|
|
}
|
2022-03-24 15:12:11 +00:00
|
|
|
|
|
|
|
public bool IsOpposing(MoveOrder other)
|
|
|
|
=> this.Season == other.Unit.Season
|
|
|
|
&& other.Season == this.Unit.Season
|
|
|
|
&& this.Location.Province == other.Unit.Location.Province
|
|
|
|
&& other.Location.Province == this.Unit.Location.Province;
|
2022-02-19 00:58:16 +00:00
|
|
|
}
|