2019-10-04 01:29:53 +00:00
|
|
|
|
using PKHeX.Core;
|
|
|
|
|
|
|
|
|
|
namespace PKHeX.WinForms.Controls
|
|
|
|
|
{
|
2020-10-18 18:02:39 +00:00
|
|
|
|
public sealed class SlotChangeInfo<TCursor, TImageSource> where TCursor : class
|
2019-10-04 01:29:53 +00:00
|
|
|
|
{
|
|
|
|
|
public bool LeftMouseIsDown { get; set; }
|
|
|
|
|
public bool DragDropInProgress { get; set; }
|
|
|
|
|
|
2020-10-18 18:02:39 +00:00
|
|
|
|
public TCursor? Cursor { get; set; }
|
|
|
|
|
public string? CurrentPath { get; set; }
|
2019-10-04 01:29:53 +00:00
|
|
|
|
|
2020-10-18 18:02:39 +00:00
|
|
|
|
public SlotViewInfo<TImageSource>? Source { get; set; }
|
|
|
|
|
public SlotViewInfo<TImageSource>? Destination { get; set; }
|
2019-10-04 01:29:53 +00:00
|
|
|
|
|
|
|
|
|
public void Reset()
|
|
|
|
|
{
|
|
|
|
|
LeftMouseIsDown = DragDropInProgress = false;
|
|
|
|
|
CurrentPath = null;
|
|
|
|
|
Cursor = default;
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-18 18:02:39 +00:00
|
|
|
|
public bool SameLocation => (Destination != null) && (Source?.Equals(Destination) ?? false);
|
2021-12-05 01:56:56 +00:00
|
|
|
|
|
|
|
|
|
private bool SourceIsParty => Source?.Slot is SlotInfoParty;
|
|
|
|
|
private bool DestinationIsParty => Destination?.Slot is SlotInfoParty;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Used to indicate if the changes will alter the player's party data state.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool DragIsParty => SourceIsParty || DestinationIsParty;
|
2022-02-07 23:03:26 +00:00
|
|
|
|
|
|
|
|
|
public bool DragIsSwap => Source is not null && Destination is not null;
|
2019-10-04 01:29:53 +00:00
|
|
|
|
}
|
2022-02-07 23:03:26 +00:00
|
|
|
|
}
|