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