1 | using HeuristicLab.Common;
|
---|
2 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
3 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
4 |
|
---|
5 | namespace HeuristicLab.Problems.Robocode {
|
---|
6 | [StorableClass]
|
---|
7 | public class WhileLoop : CodeNode {
|
---|
8 | public override int MinimumArity { get { return 2; } }
|
---|
9 | public override int MaximumArity { get { return 2; } }
|
---|
10 |
|
---|
11 | [Storable]
|
---|
12 | public override string Prefix { get; set; }
|
---|
13 |
|
---|
14 | [Storable]
|
---|
15 | public override string Suffix { get; set; }
|
---|
16 |
|
---|
17 | [StorableConstructor]
|
---|
18 | private WhileLoop(bool deserializing) : base(deserializing) { }
|
---|
19 | private WhileLoop(WhileLoop original, Cloner cloner)
|
---|
20 | : base(original, cloner) {
|
---|
21 |
|
---|
22 | }
|
---|
23 |
|
---|
24 | public WhileLoop()
|
---|
25 | : base("WhileLoop", "A WhileLoop.") {
|
---|
26 | this.Prefix = "while(";
|
---|
27 | this.Suffix = ")";
|
---|
28 | }
|
---|
29 |
|
---|
30 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
31 | return new WhileLoop(this, cloner);
|
---|
32 | }
|
---|
33 |
|
---|
34 | public override string Interpret(ISymbolicExpressionTreeNode node, System.Collections.Generic.IEnumerable<ISymbolicExpressionTreeNode> children) {
|
---|
35 | string condition = "", ifTrue = "";
|
---|
36 | foreach (ISymbolicExpressionTreeNode c in children) {
|
---|
37 | if (c.Symbol is LogicalExpression)
|
---|
38 | condition = ((CodeNode)c.Symbol).Interpret(c, c.Subtrees);
|
---|
39 | else if (c.Symbol is Block)
|
---|
40 | ifTrue = ((CodeNode)c.Symbol).Interpret(c, c.Subtrees);
|
---|
41 | else
|
---|
42 | throw new System.Exception("Unexpected Child node.");
|
---|
43 | }
|
---|
44 | return this.Prefix + " " + condition + " " + this.Suffix +
|
---|
45 | "\r\n" + ifTrue + "\r\n";
|
---|
46 | }
|
---|
47 | }
|
---|
48 | }
|
---|