using HeuristicLab.Common; using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding; using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; namespace HeuristicLab.Problems.Robocode { [StorableClass] public class TurnGunRight : CodeNode { public override int MinimumArity { get { return 1; } } public override int MaximumArity { get { return 1; } } [Storable] public override string Prefix { get; set; } [Storable] public override string Suffix { get; set; } [StorableConstructor] private TurnGunRight(bool deserializing) : base(deserializing) { } private TurnGunRight(TurnGunRight original, Cloner cloner) : base(original, cloner) { } public TurnGunRight() : base("TurnGunRight", "Immediately turns the robot's gun to the right by degrees.") { this.Prefix = "setTurnGunRight("; this.Suffix = ");"; } public override IDeepCloneable Clone(Cloner cloner) { return new TurnGunRight(this, cloner); } public override string Interpret(ISymbolicExpressionTreeNode node, System.Collections.Generic.IEnumerable children) { var enumerator = children.GetEnumerator(); if (!enumerator.MoveNext()) throw new System.Exception("TurnGunRight was not given a child."); var symbol = enumerator.Current.Symbol; if (!(symbol is Number || symbol is NumericalOperation || symbol is NumericalExpression)) throw new System.Exception("TurnGunRight was given a child of type " + symbol.GetType().ToString() + ". The expected child must be of type " + typeof(Number).ToString() + " or " + typeof(NumericalOperation).ToString() + " or " + typeof(NumericalExpression).ToString() + "."); string result = ((CodeNode)symbol).Interpret(enumerator.Current, enumerator.Current.Subtrees); if (enumerator.MoveNext()) throw new System.Exception("TurnGunRight was given more than one child."); return this.Prefix + result + this.Suffix; } } }