Rev | Line | |
---|
[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 Run : CodeNode {
|
---|
| 8 | public override int MinimumArity { get { return 2; } }
|
---|
| 9 | public override int MaximumArity { get { return 10; } }
|
---|
[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 Run(bool deserializing) : base(deserializing) { }
|
---|
| 19 | private Run(Run original, Cloner cloner)
|
---|
| 20 | : base(original, cloner) {
|
---|
| 21 | }
|
---|
[9565] | 22 |
|
---|
[9630] | 23 | public Run()
|
---|
| 24 | : base("Run", "The main method in every robot.") {
|
---|
| 25 | this.Prefix = "\r\npublic void run() {\r\n\tsetAdjustGunForRobotTurn(true);\r\n\tturnRadarRightRadians(Double.POSITIVE_INFINITY);";
|
---|
| 26 | this.Suffix = "\r\nexecute();\r\n}\r\n";
|
---|
[9565] | 27 | }
|
---|
[9630] | 28 |
|
---|
| 29 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 30 | return new Run(this, cloner);
|
---|
| 31 | }
|
---|
| 32 |
|
---|
| 33 | public override string Interpret(ISymbolicExpressionTreeNode node, System.Collections.Generic.IEnumerable<ISymbolicExpressionTreeNode> children) {
|
---|
| 34 | string result = "";
|
---|
| 35 | foreach (ISymbolicExpressionTreeNode c in children)
|
---|
| 36 | result += "\r\n" + ((CodeNode)c.Symbol).Interpret(c, c.Subtrees);
|
---|
| 37 | return this.Prefix + "\r\n" + result + "\r\n" + this.Suffix;
|
---|
| 38 | }
|
---|
| 39 | }
|
---|
[9565] | 40 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.