[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 IfStatement : CodeNode {
|
---|
| 8 | public override int MinimumArity { get { return 2; } }
|
---|
| 9 | public override int MaximumArity { get { return 3; } }
|
---|
[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 IfStatement(bool deserializing) : base(deserializing) { }
|
---|
| 19 | private IfStatement(IfStatement original, Cloner cloner)
|
---|
| 20 | : base(original, cloner) {
|
---|
| 21 | }
|
---|
[9565] | 22 |
|
---|
[9630] | 23 | public IfStatement()
|
---|
| 24 | : base("IfStatement", "An IfStatement.") {
|
---|
| 25 | this.Prefix = "if(";
|
---|
| 26 | this.Suffix = ")";
|
---|
| 27 | }
|
---|
[9565] | 28 |
|
---|
[9630] | 29 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 30 | return new IfStatement(this, cloner);
|
---|
| 31 | }
|
---|
[9565] | 32 |
|
---|
[9630] | 33 | public override string Interpret(ISymbolicExpressionTreeNode node, System.Collections.Generic.IEnumerable<ISymbolicExpressionTreeNode> children) {
|
---|
| 34 | string condition = "", ifTrue = "", ifElse = "";
|
---|
| 35 | foreach (ISymbolicExpressionTreeNode c in children) {
|
---|
| 36 | if (c.Symbol is LogicalExpression)
|
---|
| 37 | condition = ((CodeNode)c.Symbol).Interpret(c, c.Subtrees);
|
---|
| 38 | else if (c.Symbol is Block)
|
---|
| 39 | ifTrue = ((CodeNode)c.Symbol).Interpret(c, c.Subtrees);
|
---|
| 40 | else if (c.Symbol is ElseStatement || c.Symbol is DoNothing)
|
---|
| 41 | ifElse = ((CodeNode)c.Symbol).Interpret(c, c.Subtrees);
|
---|
| 42 | else
|
---|
| 43 | throw new System.Exception("Unexpected Child node.");
|
---|
| 44 | }
|
---|
| 45 | return this.Prefix + " " + condition + " " + this.Suffix +
|
---|
| 46 | "\r\n" + ifTrue + "\r\n" + ifElse + "\r\n";
|
---|
[9565] | 47 | }
|
---|
[9630] | 48 | }
|
---|
[9565] | 49 | }
|
---|