31 lines
858 B
C#
31 lines
858 B
C#
using System.Text.Json.Serialization;
|
|
|
|
using MultiversalDiplomacy.Orders;
|
|
|
|
namespace MultiversalDiplomacy.Model;
|
|
|
|
public class OrderHistory
|
|
{
|
|
public List<UnitOrder> Orders { get; }
|
|
|
|
/// <summary>
|
|
/// Map from unit designation to dislodge outcome.
|
|
/// </summary>
|
|
public Dictionary<string, bool> IsDislodgedOutcomes { get; }
|
|
|
|
/// <summary>
|
|
/// Map from designation of the ordered unit to move outcome.
|
|
/// </summary>
|
|
public Dictionary<string, bool> DoesMoveOutcomes { get; }
|
|
|
|
[JsonConstructor]
|
|
public OrderHistory(
|
|
List<UnitOrder> orders,
|
|
Dictionary<string, bool> isDislodgedOutcomes,
|
|
Dictionary<string, bool> doesMoveOutcomes)
|
|
{
|
|
this.Orders = new(orders);
|
|
this.IsDislodgedOutcomes = new(isDislodgedOutcomes);
|
|
this.DoesMoveOutcomes = new(doesMoveOutcomes);
|
|
}
|
|
} |