view FrmNewUnit.cs @ 5:65279b85446f

Re #1 - LGPL license all code * Add LGPL header to all files * Add COPYING.LGPL and COPYING.GPL with content of license Also * Moved all classes from IBBoard.WarFoundry to IBBoard.WarFoundry.GTK
author IBBoard <dev@ibboard.co.uk>
date Sun, 25 Jan 2009 14:52:18 +0000
parents 1bb28f84d567
children 6b2c8e55564a
line wrap: on
line source

// This file (FrmNewUnit.cs) is a part of the IBBoard.WarFoundry.GTK project and is copyright 2009 IBBoard.
//
// The file and the library/program it is in are licensed under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING.LGPL for more information and the full license.

using System;
using System.Collections.Generic;
using IBBoard.WarFoundry.API.Objects;
using IBBoard.WarFoundry.API.Requirements;
using Gtk;
using log4net;

namespace IBBoard.WarFoundry.GTK
{
	public partial class FrmNewUnit : Gtk.Dialog
	{
		private ILog logger = LogManager.GetLogger(typeof(FrmNewUnit));
		
		private UnitType unitType;
		private Army unitArmy;
		
		public FrmNewUnit(Race race, Category cat, Army army)
		{
			this.Build();
			unitArmy = army;
			
			TreeViewColumn unitTypeColumn = new TreeViewColumn ();
			unitTypeColumn.Title = "Unit Type";
			CellRendererText unitTypeCell = new CellRendererText ();
			unitTypeColumn.PackStart(unitTypeCell, true);
			lstUnitTypes.AppendColumn(unitTypeColumn);
			unitTypeColumn.SetCellDataFunc (unitTypeCell, new TreeCellDataFunc(RenderUnitTypeName));
			ListStore store = new ListStore(typeof(UnitType));
			UnitType[] types = race.GetUnitTypes(cat);
			logger.DebugFormat("Listing {0} unit types in {1}", types.Length, cat.Name);
			
			foreach (UnitType type in types)
			{
				logger.DebugFormat("Adding unit type {0}", type.Name);
				store.AppendValues(type);
			}
			
			lstUnitTypes.Model = store;
			lstUnitTypes.Selection.Changed+= new EventHandler(OnSelectionChanged);
		}
		
		private void RenderUnitTypeName(TreeViewColumn column, CellRenderer cell, TreeModel model, TreeIter iter)
		{
			UnitType type = (UnitType)model.GetValue(iter, 0);
			(cell as CellRendererText).Text = type.Name;
		}
		
		protected virtual void OnSelectionChanged(object o, EventArgs e)
		{
			SetSelectUnitEnabledVal();
		}
		
		public UnitType SelectedUnit
		{
			get { return unitType; }
		}
		
		private UnitType GetSelectedUnitType()
		{		
			TreeModel model;
			TreeIter iter;
			lstUnitTypes.Selection.GetSelected (out model, out iter);
			UnitType toReturn = null;
			
			if (model!=null)
			{
				toReturn = (UnitType) model.GetValue(iter, 0);
			}
			
			return toReturn;
		}
		
		private void SetSelectUnitEnabledVal()
		{
			UnitType type = GetSelectedUnitType();
			
			if (type!=null)
			{
				buttonOk.Sensitive = true;
				List<FailedUnitRequirement> fails = unitArmy.CanAddUnitType(type);
				lblNewUnitWarning.Visible = (fails != null);

				if (fails.Count > 0)
				{
					//FIXME: currently only show the first error
					lblNewUnitWarning.Text = fails[0].Description;
				}
			}
			else
			{
				buttonOk.Sensitive = false;
				lblNewUnitWarning.Visible = false;
			}
		}

		protected virtual void OnButtonCancelActivated (object sender, System.EventArgs e)
		{
			Respond(ResponseType.Cancel);
		}

		protected virtual void OnRowActivated (object o, Gtk.RowActivatedArgs args)
		{
			unitType = GetSelectedUnitType();
			Respond(ResponseType.Ok);
		}

		protected virtual void OnButtonOkClicked (object sender, System.EventArgs e)
		{
			unitType = GetSelectedUnitType();
			Respond(ResponseType.Ok);
		}
	}
}