using HeuristicLab.Common; using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding; using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; namespace HeuristicLab.Problems.Robocode { [StorableClass] public class Ahead : 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 Ahead(bool deserializing) : base(deserializing) { } private Ahead(Ahead original, Cloner cloner) : base(original, cloner) { } public Ahead() : base("Ahead", "Immediately moves your robot ahead (forward) by distance measured in pixels.") { this.Prefix = "setAhead("; this.Suffix = ");"; } public override IDeepCloneable Clone(Cloner cloner) { return new Ahead(this, cloner); } public override string Interpret(ISymbolicExpressionTreeNode node, System.Collections.Generic.IEnumerable children) { var enumerator = children.GetEnumerator(); if (!enumerator.MoveNext()) throw new System.Exception("Ahead was not given a child."); var symbol = enumerator.Current.Symbol; if (!(symbol is Number || symbol is NumericalOperation || symbol is NumericalExpression)) throw new System.Exception("Ahead 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("Ahead was given more than one child."); return this.Prefix + result + this.Suffix; } } }