[9565] | 1 | using HeuristicLab.Common;
|
---|
| 2 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
| 3 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 4 |
|
---|
[9630] | 5 | namespace HeuristicLab.Problems.Robocode {
|
---|
| 6 | [StorableClass]
|
---|
| 7 | public class Back : 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 Back(bool deserializing) : base(deserializing) { }
|
---|
| 19 | private Back(Back original, Cloner cloner)
|
---|
| 20 | : base(original, cloner) { }
|
---|
[9565] | 21 |
|
---|
[9630] | 22 | public Back()
|
---|
| 23 | : base("Back", "Immediately moves your robot backward by distance measured in pixels.") {
|
---|
| 24 | this.Prefix = "setBack(";
|
---|
| 25 | this.Suffix = ");";
|
---|
| 26 | }
|
---|
[9565] | 27 |
|
---|
[9630] | 28 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 29 | return new Back(this, cloner);
|
---|
| 30 | }
|
---|
[9565] | 31 |
|
---|
[9630] | 32 | public override string Interpret(ISymbolicExpressionTreeNode node, System.Collections.Generic.IEnumerable<ISymbolicExpressionTreeNode> children) {
|
---|
| 33 | var enumerator = children.GetEnumerator();
|
---|
[9565] | 34 |
|
---|
[9630] | 35 | if (!enumerator.MoveNext()) throw new System.Exception("Back was not given a child.");
|
---|
| 36 | var symbol = enumerator.Current.Symbol;
|
---|
[9565] | 37 |
|
---|
[9630] | 38 | if (!(symbol is Number || symbol is NumericalOperation || symbol is NumericalExpression))
|
---|
| 39 | throw new System.Exception("Back was given a child of type " + symbol.GetType().ToString() +
|
---|
| 40 | ". The expected child must be of type " + typeof(Number).ToString() + " or " +
|
---|
| 41 | typeof(NumericalOperation).ToString() + " or " +
|
---|
| 42 | typeof(NumericalExpression).ToString() + ".");
|
---|
[9565] | 43 |
|
---|
[9630] | 44 | string result = ((CodeNode)symbol).Interpret(enumerator.Current, enumerator.Current.Subtrees);
|
---|
| 45 | if (enumerator.MoveNext()) throw new System.Exception("Back was given more than one child.");
|
---|
[9565] | 46 |
|
---|
[9630] | 47 | return this.Prefix + result + this.Suffix;
|
---|
[9565] | 48 | }
|
---|
[9630] | 49 | }
|
---|
[9565] | 50 | } |
---|