Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Robocode/HeuristicLab.Problems.Robocode/Symbols/Void Methods/TurnGunRight.cs @ 9630

Last change on this file since 9630 was 9630, checked in by ascheibe, 11 years ago

#2069 fixed cloning constructors and formatting

File size: 2.1 KB
RevLine 
[9565]1using HeuristicLab.Common;
2using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
3using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
4
[9630]5namespace HeuristicLab.Problems.Robocode {
6  [StorableClass]
7  public class TurnGunRight : CodeNode {
8    public override int MinimumArity { get { return 1; } }
9    public override int MaximumArity { get { return 1; } }
[9565]10
[9630]11    [Storable]
12    public override string Prefix { get; set; }
[9565]13
[9630]14    [Storable]
15    public override string Suffix { get; set; }
[9565]16
[9630]17    [StorableConstructor]
18    private TurnGunRight(bool deserializing) : base(deserializing) { }
19    private TurnGunRight(TurnGunRight original, Cloner cloner)
20      : base(original, cloner) {
[9565]21
[9630]22    }
[9565]23
[9630]24    public TurnGunRight()
25      : base("TurnGunRight", "Immediately turns the robot's gun to the right by degrees.") {
26      this.Prefix = "setTurnGunRight(";
27      this.Suffix = ");";
28    }
[9565]29
[9630]30    public override IDeepCloneable Clone(Cloner cloner) {
31      return new TurnGunRight(this, cloner);
32    }
[9565]33
[9630]34    public override string Interpret(ISymbolicExpressionTreeNode node, System.Collections.Generic.IEnumerable<ISymbolicExpressionTreeNode> children) {
35      var enumerator = children.GetEnumerator();
[9565]36
[9630]37      if (!enumerator.MoveNext()) throw new System.Exception("TurnGunRight was not given a child.");
38      var symbol = enumerator.Current.Symbol;
[9565]39
[9630]40      if (!(symbol is Number || symbol is NumericalOperation || symbol is NumericalExpression))
41        throw new System.Exception("TurnGunRight was given a child of type " + symbol.GetType().ToString() +
42            ". The expected child must be of type " + typeof(Number).ToString() + " or " +
43            typeof(NumericalOperation).ToString() + " or " +
44            typeof(NumericalExpression).ToString() + ".");
[9565]45
[9630]46      string result = ((CodeNode)symbol).Interpret(enumerator.Current, enumerator.Current.Subtrees);
47      if (enumerator.MoveNext()) throw new System.Exception("TurnGunRight was given more than one child.");
48
49      return this.Prefix + result + this.Suffix;
[9565]50    }
[9630]51  }
[9565]52}
Note: See TracBrowser for help on using the repository browser.