Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/01/13 12:08:25 (11 years ago)
Author:
jkarder
Message:

#2069:

  • refactored grammar and symbols
  • fixed cloning and storable ctors
  • fixed plugin dependencies
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/Robocode.TrunkInt/HeuristicLab.Problems.Robocode/3.3/Symbols/Event Methods/Run.cs

    r9790 r10011  
    2020#endregion
    2121
     22using System;
     23using System.Collections.Generic;
     24using System.Linq;
    2225using HeuristicLab.Common;
    2326using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
     
    2730  [StorableClass]
    2831  public class Run : CodeNode {
    29     public override int MinimumArity { get { return 2; } }
     32    public override int MinimumArity { get { return 1; } }
    3033    public override int MaximumArity { get { return 10; } }
    3134
     
    3740
    3841    [StorableConstructor]
    39     private Run(bool deserializing) : base(deserializing) { }
    40     private Run(Run original, Cloner cloner)
    41       : base(original, cloner) {
    42     }
     42    protected Run(bool deserializing) : base(deserializing) { }
     43    protected Run(Run original, Cloner cloner) : base(original, cloner) { }
    4344
    4445    public Run()
    4546      : base("Run", "The main method in every robot.") {
    46       this.Prefix = "\r\npublic void run() {\r\n\tsetAdjustGunForRobotTurn(true);\r\n\tturnRadarRightRadians(Double.POSITIVE_INFINITY);";
    47       this.Suffix = "\r\nexecute();\r\n}\r\n";
     47      Prefix =
     48@"public void run() {
     49setAdjustGunForRobotTurn(true);
     50turnRadarRightRadians(Double.POSITIVE_INFINITY);";
     51      Suffix =
     52@"execute();
     53}";
    4854    }
    4955
     
    5258    }
    5359
    54     public override string Interpret(ISymbolicExpressionTreeNode node, System.Collections.Generic.IEnumerable<ISymbolicExpressionTreeNode> children) {
    55       string result = "";
    56       foreach (ISymbolicExpressionTreeNode c in children)
    57         result += "\r\n" + ((CodeNode)c.Symbol).Interpret(c, c.Subtrees);
    58       return this.Prefix + "\r\n" + result + "\r\n" + this.Suffix;
     60    public override string Interpret(ISymbolicExpressionTreeNode node, IEnumerable<ISymbolicExpressionTreeNode> children) {
     61      string result = children.Aggregate(string.Empty, (current, c) => current + (Environment.NewLine + ((CodeNode)c.Symbol).Interpret(c, c.Subtrees)));
     62      return Prefix + result + Environment.NewLine + Suffix;
    5963    }
    6064  }
Note: See TracChangeset for help on using the changeset viewer.