view api/Commands/SetUnitSizeCommand.cs @ 232:f5009a00a50d

Re #236: Handle null game system in race * Fix error message text no-open-ticket
author IBBoard <dev@ibboard.co.uk>
date Thu, 24 Dec 2009 14:57:32 +0000
parents 391446c9b250
children 650bbe79b884
line wrap: on
line source

// This file (SetUnitSizeCommand.cs) is a part of the IBBoard.WarFoundry.API 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 IBBoard.Commands;
using IBBoard.Lang;
using IBBoard.WarFoundry.API.Objects;

namespace IBBoard.WarFoundry.API.Commands
{
	/// <summary>
	/// Summary description for SetNameCommand.
	/// </summary>
	public class SetUnitSizeCommand : Command
	{
		private Unit unit;
		private int newSize, oldSize;
		private string description;
		private string undoDescription;

		public SetUnitSizeCommand(Unit toResize, int size)
		{
			unit = toResize;
			newSize = size;
			oldSize = unit.Size;
		}

		public override bool CanExecute()
		{
			return (unit!=null && newSize >0 && oldSize > 0);
		}

		public override string Description
		{
			get
			{
				if (description == null)
				{
					description = Translation.GetTranslation("setUnitSizeCommandDescription", "set size of {0} to {1}", unit.Name, newSize);
				}
				
				return description;
			}
		}

		public override string UndoDescription
		{
			get
			{
				if (undoDescription == null)
				{
					undoDescription = Translation.GetTranslation("setUnitSizeCommandUndoDescription", "set size of {0} to {1}", unit.Name, oldSize);
				}
				
				return undoDescription;
			}
		}

		public override bool Execute()
		{
			this.Redo();
			return true;
		}

		public override void Redo()
		{
			unit.Size = newSize;
		}

		public override void Undo()
		{
			unit.Size = oldSize;
		}

		public override string Name
		{
			get { return "Change unit size"; }
		}
	}
}