Mercurial > repos > IBBoard.WarFoundry.API
view api/Commands/SetUnitSizeCommand.cs @ 269:51d7b2b26882
Re #290: Migrate to using key/keyref definitions instead of ID/IDREF type
* Remove unused keyrefs
* Make ability uses key/keyref instead of ID/IDREF
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 12 Jun 2010 20:32:49 +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"; } } } }