mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-04-30 12:37:23 -05:00
Refer to pull request notes and the eventual changelog for a high-level summary. Co-authored-by: Matt <17801814+sora10pls@users.noreply.github.com> Co-authored-by: Lusamine <30205550+Lusamine@users.noreply.github.com> Co-authored-by: SciresM <8676005+SciresM@users.noreply.github.com>
72 lines
1.9 KiB
C#
72 lines
1.9 KiB
C#
using System;
|
|
using System.Windows.Forms;
|
|
using PKHeX.Core;
|
|
using PKHeX.Drawing.Misc;
|
|
|
|
namespace PKHeX.WinForms.Controls;
|
|
|
|
public partial class MoveChoice : UserControl
|
|
{
|
|
private EntityContext Context;
|
|
|
|
public MoveChoice()
|
|
{
|
|
InitializeComponent();
|
|
CB_Move.InitializeBinding();
|
|
}
|
|
|
|
public ushort SelectedMove { get => (ushort)WinFormsUtil.GetIndex(CB_Move); set => CB_Move.SelectedValue = (int)value; }
|
|
public int PP { get => SelectedMove == 0 ? 0 : Util.ToInt32(TB_PP.Text); set => TB_PP.Text = value.ToString(); }
|
|
public int PPUps { get => SelectedMove == 0 ? 0 : CB_PPUps.SelectedIndex; set => LoadClamp(CB_PPUps, value); }
|
|
public bool HideLegality { private get; set; }
|
|
public void SetContext(EntityContext context) => Context = context;
|
|
|
|
private void UpdateTypeSprite(int value)
|
|
{
|
|
if (value <= 0)
|
|
{
|
|
PB_Type.Image = null;
|
|
return;
|
|
}
|
|
|
|
var type = MoveInfo.GetType((ushort)value, Context);
|
|
PB_Type.Image = TypeSpriteUtil.GetTypeSpriteIconSmall(type);
|
|
}
|
|
|
|
private static void LoadClamp(ComboBox cb, int value)
|
|
{
|
|
var max = cb.Items.Count - 1;
|
|
if (value > max)
|
|
value = max;
|
|
else if (value < -1)
|
|
value = 0;
|
|
cb.SelectedIndex = value;
|
|
}
|
|
|
|
public void UpdateLegality(MoveResult move, PKM entity, int i)
|
|
{
|
|
if (HideLegality)
|
|
{
|
|
PB_Triangle.Visible = false;
|
|
return;
|
|
}
|
|
PB_Triangle.Visible = true;
|
|
PB_Triangle.Image = MoveDisplayState.GetMoveImage(!move.Valid, entity, i);
|
|
}
|
|
|
|
public void HealPP(PKM pk)
|
|
{
|
|
var move = SelectedMove;
|
|
var up = PPUps;
|
|
if (move == 0)
|
|
PPUps = up = 0;
|
|
PP = pk.GetMovePP(move, up);
|
|
}
|
|
|
|
private void CB_Move_SelectedIndexChanged(object sender, EventArgs e)
|
|
{
|
|
var value = WinFormsUtil.GetIndex(CB_Move);
|
|
UpdateTypeSprite(value);
|
|
}
|
|
}
|