view FrmUnit.cs @ 150:0e3837170637

Re #269: Handle multiple stat lines * Add initial rebuild with multiple possible statlines - only tested with one stat line type
author IBBoard <dev@ibboard.co.uk>
date Sun, 02 May 2010 15:46:24 +0000
parents 51463bc1fb21
children 540c8aa6e565
line wrap: on
line source

// This file (FrmUnit.cs) is a part of the IBBoard.WarFoundry.GUI.WinForms project and is copyright 2007, 2008, 2009 IBBoard.
//
// The file and the library/program it is in are licensed and distributed, without warranty, under the GNU Affero GPL license, either version 3 of the License or (at your option) any later version. Please see COPYING for more information and the full license.

using System;
using System.Drawing;
using System.Data;
using System.Collections.Generic;
using System.ComponentModel;
using System.Windows.Forms;
using IBBoard.Commands;
using IBBoard.Lang;
using IBBoard.Windows.Forms;
using IBBoard.Windows.Forms.I18N;
using IBBoard.WarFoundry.API;
using IBBoard.WarFoundry.API.Commands;
using IBBoard.WarFoundry.API.Objects;
using IBBoard.WarFoundry.GUI.WinForms.UI;
using IBBoard.WarFoundry.GUI.WinForms.Util;

namespace IBBoard.WarFoundry.GUI.WinForms
{
	/// <summary>
	/// Summary description for FrmUnit.
	/// </summary>
	public class FrmUnit : IBBoard.Windows.Forms.IBBForm
	{
		private Unit unit;
		private Dictionary<UnitEquipmentItem, UnitEquipmentChoice> equipmentChoices = new Dictionary<UnitEquipmentItem, UnitEquipmentChoice>();
		private Dictionary<string, DataGrid> dataGrids = new Dictionary<string, DataGrid>();
		private CommandStack commandStack;
		private System.Windows.Forms.TextBox tbUnitName;
		private System.Windows.Forms.NumericUpDown unitSize;
		private IBBLabel lblUnitSize;
		private IBBButton bttnAddWeapon;
		private IBBButton bttnRemoveWeapon;
		private IBBLabel lblEquip;
		private System.Windows.Forms.ListBox equipmentList;
		private IBBButton bttnReplaceWeapon;
		private IBBButton bttnEditWeapon;
		private Label lblPoints;
		private IBBLabel lblNotes;
		private TextBox notes;
		private ListBox abilitiesList;
		private IBBLabel lblAbilities;
		private Panel statsPanel;
		/// <summary>
		/// Required designer variable.
		/// </summary>
		private System.ComponentModel.Container components = null;

		public FrmUnit(Unit toDisplay, CommandStack cmdStack)
		{
			unit = toDisplay;
			commandStack = cmdStack;
			//
			// Required for Windows Form Designer support
			//
			InitializeComponent();
			TranslateForm();
			Translation.TranslationChanged += new MethodInvoker(TranslateForm);
			unit.NameChanged += new StringValChangedDelegate(unit_NameChanged);
			unit.UnitSizeChanged += new IntValChangedDelegate(unit_UnitSizeChanged);
			unit.UnitEquipmentAmountChanged += new DoubleValChangedDelegate(unit_UnitEquipmentAmountChanged);
			unit.PointsValueChanged += new DoubleValChangedDelegate(unit_PointsValueChanged);

			unitSize.Value = unit.Size;
			unitSize.Maximum = (unit.UnitType.MaxSize == WarFoundryCore.INFINITY ? int.MaxValue : unit.UnitType.MaxSize);
			unitSize.Minimum = unit.UnitType.MinSize;
			unitSize.Enabled = (unitSize.Maximum != unitSize.Minimum);

			notes.Text = unit.UnitType.Notes;
			abilitiesList.DataSource = new List<Ability>(unit.UnitType.GetRequiredAbilities());
			abilitiesList.DisplayMember = "Name";
			SetPointsValueText();
			SetStats();
			SetWeapons();
		}

		private void TranslateForm()
		{
			ControlTranslator.TranslateControl(this);
			tbUnitName.Text = unit.Name;
			Text = Translation.GetTranslation("FrmUnit", "{0}", unit.Name);
			RefreshUnitEquipment();
		}

		void unit_PointsValueChanged(WarFoundryObject obj, double oldValue, double newValue)
		{
			SetPointsValueText();
		}

		private void SetPointsValueText()
		{
			lblPoints.Text = "(" + unit.Points + " pts)";
		}

		private void SetStats()
		{
			Stat[][] stats = unit.UnitStatsArraysWithName;
			string[] statsIDs = unit.UnitStatsArrayIDs;
			int statsCount = stats.Length;

			for (int i = 0; i < statsCount; i++)
			{
				DataGrid statsGrid = GetDataGrid(statsIDs[i]);
				DataTable dt = (DataTable)statsGrid.DataSource;
				DataRow dr = dt.NewRow();
				dr.ItemArray = stats[i];
				dt.Rows.Add(dr);
			}
		}

		private DataGrid GetDataGrid(string statsID)
		{
			DataGrid grid;

			if (dataGrids.ContainsKey(statsID))
			{
				grid = DictionaryUtils.GetValue(dataGrids, statsID);
			}
			else
			{
				grid = CreateDataGrid(statsID);
				dataGrids[statsID] = grid;
			}

			return grid;
		}

		private DataGrid CreateDataGrid(string statsID)
		{
			SystemStats sysStats = unit.Race.GameSystem.GetSystemStatsForID(statsID);
			StatSlot[] sysStatSlots = sysStats.StatSlots;
			StatSlot[] stats = new StatSlot[sysStatSlots.Length + 1];
			stats[0] = new StatSlot("Name");
			sysStatSlots.CopyTo(stats, 1);
			DataColumn[] dc = new DataColumn[stats.Length];
			DataGridTableStyle dgStyle = new DataGridTableStyle();
			dgStyle.RowHeadersVisible = false;
			DataTable dt = new DataTable();
			int statsCount = stats.Length;

			for (int i = 0; i < statsCount; i++)
			{
				StatSlot stat = stats[i];
				string slotName = stat.Name;
				dc[i] = CreateDataColumn(slotName);
				dgStyle.GridColumnStyles.Add(CreateColumnStyle(slotName));
			}

			DataGridColumnStyle nameColStyle = dgStyle.GridColumnStyles[0];
			nameColStyle.HeaderText = Translation.GetTranslation("UnitName", "Name");
			nameColStyle.Alignment = HorizontalAlignment.Left;
			DataGrid statsGrid = CreateDataGrid();
			nameColStyle.Width = statsGrid.ClientSize.Width - ((stats.Length) * 40) - 4;

			dt.Columns.AddRange(dc);
			statsGrid.DataSource = dt;
			statsGrid.TableStyles.Add(dgStyle);
			return statsGrid;
		}

		private static DataColumn CreateDataColumn(string slotName)
		{
			DataColumn tempCol = new DataColumn(slotName);
			tempCol.DataType = typeof(Stat);
			return tempCol;
		}

		private static DataGridColumnStyle CreateColumnStyle(string slotName)
		{
			DataGridColumnStyle colStyle = new StatColumnStyle();
			colStyle.Width = 40;
			colStyle.MappingName = slotName;
			colStyle.HeaderText = slotName;
			colStyle.Alignment = HorizontalAlignment.Center;
			colStyle.ReadOnly = true;
			return colStyle;
		}

		public DataGrid CreateDataGrid()
		{
			DataGrid statsGrid = new DataGrid();
			statsGrid.AllowNavigation = false;
			statsGrid.AllowSorting = false;
			statsGrid.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
						| System.Windows.Forms.AnchorStyles.Right)));
			statsGrid.CaptionVisible = false;
			statsGrid.CausesValidation = false;
			statsGrid.PreferredColumnWidth = 40;
			statsGrid.ReadOnly = true;
			statsGrid.RowHeadersVisible = false;
			statsGrid.Size = new System.Drawing.Size(600, 88);
			statsGrid.TabStop = false;
			statsPanel.Controls.Add(statsGrid);
			statsGrid.Width = statsPanel.Width;
			return statsGrid;
		}

		private void SetWeapons()
		{
			foreach (UnitEquipmentItem item in unit.GetEquipment())
			{
				equipmentList.Items.Add(GetEquipmentChoice(item));
			}
		}

		private UnitEquipmentChoice GetEquipmentChoice(UnitEquipmentItem item)
		{
			UnitEquipmentChoice choice = null;
			equipmentChoices.TryGetValue(item, out choice);

			if (choice == null)
			{
				choice = new UnitEquipmentChoice(Unit, item);
				equipmentChoices[item] = choice;
			}

			return choice;
		}

		/// <summary>
		/// Clean up any resources being used.
		/// </summary>
		protected override void Dispose(bool disposing)
		{
			//remove our leave events so that disposing doesn't trigger them
			tbUnitName.Leave -= new System.EventHandler(this.tbUnitName_Leave);
			unitSize.Leave -= new System.EventHandler(this.unitSize_Leave);

			if (disposing)
			{
				if (components != null)
				{
					components.Dispose();
				}
			}
			base.Dispose(disposing);
		}

		#region Windows Form Designer generated code
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.tbUnitName = new System.Windows.Forms.TextBox();
			this.unitSize = new System.Windows.Forms.NumericUpDown();
			this.lblUnitSize = new IBBoard.Windows.Forms.IBBLabel();
			this.lblEquip = new IBBoard.Windows.Forms.IBBLabel();
			this.bttnAddWeapon = new IBBoard.Windows.Forms.IBBButton();
			this.bttnRemoveWeapon = new IBBoard.Windows.Forms.IBBButton();
			this.equipmentList = new System.Windows.Forms.ListBox();
			this.bttnReplaceWeapon = new IBBoard.Windows.Forms.IBBButton();
			this.bttnEditWeapon = new IBBoard.Windows.Forms.IBBButton();
			this.lblPoints = new System.Windows.Forms.Label();
			this.lblNotes = new IBBoard.Windows.Forms.IBBLabel();
			this.notes = new System.Windows.Forms.TextBox();
			this.abilitiesList = new System.Windows.Forms.ListBox();
			this.lblAbilities = new IBBoard.Windows.Forms.IBBLabel();
			this.statsPanel = new System.Windows.Forms.Panel();
			((System.ComponentModel.ISupportInitialize)(this.unitSize)).BeginInit();
			this.SuspendLayout();
			// 
			// tbUnitName
			// 
			this.tbUnitName.Location = new System.Drawing.Point(8, 8);
			this.tbUnitName.Name = "tbUnitName";
			this.tbUnitName.Size = new System.Drawing.Size(344, 20);
			this.tbUnitName.TabIndex = 1;
			this.tbUnitName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tbUnitName_KeyDown);
			this.tbUnitName.Leave += new System.EventHandler(this.tbUnitName_Leave);
			// 
			// unitSize
			// 
			this.unitSize.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.unitSize.Location = new System.Drawing.Point(528, 8);
			this.unitSize.Name = "unitSize";
			this.unitSize.Size = new System.Drawing.Size(80, 20);
			this.unitSize.TabIndex = 1;
			this.unitSize.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.unitSize.Value = new decimal(new int[] {
            1,
            0,
            0,
            0});
			this.unitSize.Leave += new System.EventHandler(this.unitSize_Leave);
			this.unitSize.KeyDown += new System.Windows.Forms.KeyEventHandler(this.unitSize_KeyDown);
			// 
			// lblUnitSize
			// 
			this.lblUnitSize.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.lblUnitSize.Location = new System.Drawing.Point(426, 8);
			this.lblUnitSize.Name = "lblUnitSize";
			this.lblUnitSize.Size = new System.Drawing.Size(98, 23);
			this.lblUnitSize.TabIndex = 0;
			this.lblUnitSize.Text = "unit size";
			this.lblUnitSize.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// lblEquip
			// 
			this.lblEquip.Location = new System.Drawing.Point(15, 126);
			this.lblEquip.Name = "lblEquip";
			this.lblEquip.Size = new System.Drawing.Size(81, 108);
			this.lblEquip.TabIndex = 3;
			this.lblEquip.Text = "equipment";
			this.lblEquip.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// bttnAddWeapon
			// 
			this.bttnAddWeapon.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.bttnAddWeapon.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.bttnAddWeapon.Location = new System.Drawing.Point(516, 126);
			this.bttnAddWeapon.Name = "bttnAddWeapon";
			this.bttnAddWeapon.Size = new System.Drawing.Size(88, 22);
			this.bttnAddWeapon.TabIndex = 4;
			this.bttnAddWeapon.Text = "add";
			this.bttnAddWeapon.Click += new System.EventHandler(this.bttnAddWeapon_Click);
			// 
			// bttnRemoveWeapon
			// 
			this.bttnRemoveWeapon.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.bttnRemoveWeapon.Enabled = false;
			this.bttnRemoveWeapon.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.bttnRemoveWeapon.Location = new System.Drawing.Point(516, 210);
			this.bttnRemoveWeapon.Name = "bttnRemoveWeapon";
			this.bttnRemoveWeapon.Size = new System.Drawing.Size(88, 22);
			this.bttnRemoveWeapon.TabIndex = 5;
			this.bttnRemoveWeapon.Text = "remove";
			this.bttnRemoveWeapon.Click += new System.EventHandler(this.bttnRemoveWeapon_Click);
			// 
			// equipmentList
			// 
			this.equipmentList.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
						| System.Windows.Forms.AnchorStyles.Right)));
			this.equipmentList.Location = new System.Drawing.Point(102, 126);
			this.equipmentList.Name = "equipmentList";
			this.equipmentList.Size = new System.Drawing.Size(408, 108);
			this.equipmentList.TabIndex = 6;
			this.equipmentList.SelectedIndexChanged += new System.EventHandler(this.equipmentList_SelectedIndexChanged);
			this.equipmentList.DoubleClick += new System.EventHandler(this.equipmentList_DoubleClick);
			// 
			// bttnReplaceWeapon
			// 
			this.bttnReplaceWeapon.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.bttnReplaceWeapon.Enabled = false;
			this.bttnReplaceWeapon.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.bttnReplaceWeapon.Location = new System.Drawing.Point(516, 182);
			this.bttnReplaceWeapon.Name = "bttnReplaceWeapon";
			this.bttnReplaceWeapon.Size = new System.Drawing.Size(88, 22);
			this.bttnReplaceWeapon.TabIndex = 10;
			this.bttnReplaceWeapon.Text = "replace";
			this.bttnReplaceWeapon.Click += new System.EventHandler(this.bttnReplaceWeapon_Click);
			// 
			// bttnEditWeapon
			// 
			this.bttnEditWeapon.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.bttnEditWeapon.Enabled = false;
			this.bttnEditWeapon.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.bttnEditWeapon.Location = new System.Drawing.Point(516, 154);
			this.bttnEditWeapon.Name = "bttnEditWeapon";
			this.bttnEditWeapon.Size = new System.Drawing.Size(88, 22);
			this.bttnEditWeapon.TabIndex = 11;
			this.bttnEditWeapon.Text = "edit";
			this.bttnEditWeapon.Click += new System.EventHandler(this.bttnEditWeapon_Click);
			// 
			// lblPoints
			// 
			this.lblPoints.Location = new System.Drawing.Point(358, 8);
			this.lblPoints.Name = "lblPoints";
			this.lblPoints.Size = new System.Drawing.Size(77, 21);
			this.lblPoints.TabIndex = 12;
			this.lblPoints.Text = "(points)";
			// 
			// lblNotes
			// 
			this.lblNotes.Location = new System.Drawing.Point(13, 317);
			this.lblNotes.Name = "lblNotes";
			this.lblNotes.Size = new System.Drawing.Size(84, 62);
			this.lblNotes.TabIndex = 13;
			this.lblNotes.Text = "notes";
			this.lblNotes.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// notes
			// 
			this.notes.Location = new System.Drawing.Point(102, 317);
			this.notes.Multiline = true;
			this.notes.Name = "notes";
			this.notes.ReadOnly = true;
			this.notes.Size = new System.Drawing.Size(408, 62);
			this.notes.TabIndex = 14;
			// 
			// abilitiesList
			// 
			this.abilitiesList.FormattingEnabled = true;
			this.abilitiesList.Location = new System.Drawing.Point(102, 240);
			this.abilitiesList.Name = "abilitiesList";
			this.abilitiesList.Size = new System.Drawing.Size(408, 69);
			this.abilitiesList.TabIndex = 15;
			// 
			// lblAbilities
			// 
			this.lblAbilities.Location = new System.Drawing.Point(13, 240);
			this.lblAbilities.Name = "lblAbilities";
			this.lblAbilities.Size = new System.Drawing.Size(84, 62);
			this.lblAbilities.TabIndex = 16;
			this.lblAbilities.Text = "abilities";
			this.lblAbilities.TextAlign = System.Drawing.ContentAlignment.TopRight;
			// 
			// statsPanel
			// 
			this.statsPanel.AutoScroll = true;
			this.statsPanel.Location = new System.Drawing.Point(8, 35);
			this.statsPanel.Name = "statsPanel";
			this.statsPanel.Size = new System.Drawing.Size(600, 85);
			this.statsPanel.TabIndex = 17;
			// 
			// FrmUnit
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(616, 391);
			this.Controls.Add(this.statsPanel);
			this.Controls.Add(this.lblAbilities);
			this.Controls.Add(this.abilitiesList);
			this.Controls.Add(this.notes);
			this.Controls.Add(this.lblNotes);
			this.Controls.Add(this.lblPoints);
			this.Controls.Add(this.bttnEditWeapon);
			this.Controls.Add(this.bttnReplaceWeapon);
			this.Controls.Add(this.equipmentList);
			this.Controls.Add(this.bttnRemoveWeapon);
			this.Controls.Add(this.bttnAddWeapon);
			this.Controls.Add(this.lblEquip);
			this.Controls.Add(this.lblUnitSize);
			this.Controls.Add(this.unitSize);
			this.Controls.Add(this.tbUnitName);
			this.Name = "FrmUnit";
			this.ShowIcon = false;
			this.ShowInTaskbar = false;
			this.Text = "FrmUnit";
			this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FrmUnit_FormClosing);
			((System.ComponentModel.ISupportInitialize)(this.unitSize)).EndInit();
			this.ResumeLayout(false);
			this.PerformLayout();

		}
		#endregion

		public Unit Unit
		{
			get { return unit; }
		}

		private void tbUnitName_Leave(object sender, System.EventArgs e)
		{
			UpdateUnitName();
		}

		private void tbUnitName_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e)
		{
			if (e.KeyCode == Keys.Enter)
			{
				UpdateUnitName();
			}
		}

		private void UpdateUnitName()
		{
			if (unit.Name != tbUnitName.Text)
			{
				commandStack.Execute(new SetNameCommand(unit, tbUnitName.Text));
			}
		}

		private void unitSize_Leave(object sender, System.EventArgs e)
		{
			UpdateUnitSize();
		}

		private void unitSize_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e)
		{
			if (e.KeyCode == Keys.Enter)
			{
				UpdateUnitSize();
			}
		}

		private void UpdateUnitSize()
		{
			if (unit.Size != unitSize.Value)
			{
				commandStack.Execute(new SetUnitSizeCommand(unit, (int) unitSize.Value));
			}
		}

		private void unit_NameChanged(WarFoundryObject obj, string oldValue, string newValue)
		{
			if (obj is Unit && obj.Equals(unit))
			{
				Unit u = (Unit) obj;
				tbUnitName.Text = obj.Name;
				Text = obj.Name;
			}
		}

		private void unit_UnitSizeChanged(WarFoundryObject obj, int oldValue, int newValue)
		{
			if (obj is Unit && obj.Equals(unit))
			{
				unitSize.Value = newValue;

				RefreshUnitEquipment();
			}
		}

		private void RefreshUnitEquipment()
		{
			foreach (UnitEquipmentChoice choice in equipmentChoices.Values)
			{
				SetEquipmentListValue(choice);
			}
		}

		private void equipmentList_SelectedIndexChanged(object sender, System.EventArgs e)
		{
			SetButtonsEnabledState();
		}

		private void SetButtonsEnabledState()
		{

			UnitEquipmentItem equipItem = GetSelectedUnitEquipmentItem();
			bttnReplaceWeapon.Enabled = (equipItem != null && equipItem.HasAlternatives());
			bttnEditWeapon.Enabled = (equipItem != null);
			bttnRemoveWeapon.Enabled = (equipItem != null && !equipItem.IsRequired);
		}

		private void unit_UnitEquipmentAmountChanged(WarFoundryObject obj, double oldValue, double newValue)
		{
			if (obj is UnitEquipmentItem)
			{
				UnitEquipmentItem equip = (UnitEquipmentItem) obj;
				UnitEquipmentChoice equipChoice = GetEquipmentChoice(equip);

				if (newValue == 0)
				{
					equipmentList.Items.Remove(equipChoice);
				}
				else
				{
					SetEquipmentListValue(equipChoice);
				}
			}
		}

		private void SetEquipmentListValue(UnitEquipmentChoice equipChoice)
		{
			int idx = equipmentList.Items.IndexOf(equipChoice);

			if (idx > -1)
			{
				equipmentList.Items[idx] = equipChoice;
			}
			else
			{
				equipmentList.Items.Add(equipChoice);
			}
		}

		private void EditWeapon()
		{
			UnitEquipmentItem item = GetSelectedUnitEquipmentItem();

			if (item != null)
			{
				FrmEditUnitEquipment editEquip = new FrmEditUnitEquipment(Unit, item, commandStack);
				editEquip.ShowDialog(this);
			}
		}

		private UnitEquipmentItem GetSelectedUnitEquipmentItem()
		{
			UnitEquipmentChoice selectedItem = GetSelectedUnitEquipmentChoice();
			UnitEquipmentItem equipItem = null;

			if (selectedItem!=null)
			{
				equipItem = selectedItem.Item;
			}

			return equipItem;
		}

		private UnitEquipmentChoice GetSelectedUnitEquipmentChoice()
		{
			return (UnitEquipmentChoice) equipmentList.SelectedItem;
		}

		private void bttnEditWeapon_Click(object sender, System.EventArgs e)
		{
			EditWeapon();
		}

		private void equipmentList_DoubleClick(object sender, System.EventArgs e)
		{
			EditWeapon();
		}

		private void AddWeapon()
		{
			FrmNewUnitEquipment newEquip = new FrmNewUnitEquipment(Unit, commandStack);
			newEquip.ShowDialog(this);
		}

		private void bttnAddWeapon_Click(object sender, System.EventArgs e)
		{
			AddWeapon();
		}

		private void RemoveWeapon()
		{
			commandStack.Execute(new SetUnitEquipmentNumericAmountCommand(unit, GetSelectedUnitEquipmentItem(), 0));
		}

		private void bttnRemoveWeapon_Click(object sender, System.EventArgs e)
		{
			RemoveWeapon();
		}

		private void bttnReplaceWeapon_Click(object sender, System.EventArgs e)
		{
			FrmReplaceUnitEquipment replace = new FrmReplaceUnitEquipment(unit, GetSelectedUnitEquipmentItem(), commandStack);
			replace.ShowDialog(this);
		}

		private void FrmUnit_FormClosing(object sender, FormClosingEventArgs e)
		{
			UpdateUnitName();
			UpdateUnitSize();
		}
	}
}