[8059] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[9456] | 3 | * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[8059] | 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | using System;
|
---|
[8131] | 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Linq;
|
---|
[8059] | 25 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
| 26 |
|
---|
| 27 | namespace HeuristicLab.Problems.LawnMower {
|
---|
| 28 | public class Interpreter {
|
---|
| 29 | private enum Heading {
|
---|
| 30 | South,
|
---|
| 31 | East,
|
---|
| 32 | North,
|
---|
| 33 | West
|
---|
| 34 | };
|
---|
| 35 |
|
---|
| 36 | private class MowerState {
|
---|
| 37 | public Heading Heading { get; set; }
|
---|
| 38 | public Tuple<uint, uint> Position { get; set; }
|
---|
| 39 | public int Energy { get; set; }
|
---|
| 40 | public MowerState() {
|
---|
| 41 | Heading = Heading.South;
|
---|
| 42 | Position = new Tuple<uint, uint>(0, 0);
|
---|
| 43 | Energy = 0;
|
---|
| 44 | }
|
---|
| 45 | }
|
---|
| 46 |
|
---|
| 47 |
|
---|
| 48 | public static bool[,] EvaluateLawnMowerProgram(int length, int width, ISymbolicExpressionTree tree) {
|
---|
| 49 |
|
---|
| 50 | bool[,] lawn = new bool[length, width];
|
---|
| 51 | var mowerState = new MowerState();
|
---|
| 52 | mowerState.Heading = Heading.South;
|
---|
| 53 | mowerState.Energy = length * width * 2;
|
---|
| 54 | lawn[mowerState.Position.Item1, mowerState.Position.Item2] = true;
|
---|
[8163] | 55 | EvaluateLawnMowerProgram(tree.Root, mowerState, lawn, tree.Root.Subtrees.Skip(1).ToArray());
|
---|
[8059] | 56 |
|
---|
| 57 | return lawn;
|
---|
| 58 | }
|
---|
| 59 |
|
---|
| 60 |
|
---|
[8163] | 61 | private static Tuple<int, int> EvaluateLawnMowerProgram(ISymbolicExpressionTreeNode node, MowerState mowerState, bool[,] lawn, IEnumerable<ISymbolicExpressionTreeNode> adfs) {
|
---|
[8059] | 62 | if (mowerState.Energy <= 0) return new Tuple<int, int>(0, 0);
|
---|
| 63 |
|
---|
| 64 | if (node.Symbol is ProgramRootSymbol) {
|
---|
[8163] | 65 | return EvaluateLawnMowerProgram(node.GetSubtree(0), mowerState, lawn, adfs);
|
---|
[8059] | 66 | } else if (node.Symbol is StartSymbol) {
|
---|
[8163] | 67 | return EvaluateLawnMowerProgram(node.GetSubtree(0), mowerState, lawn, adfs);
|
---|
[8059] | 68 | } else if (node.Symbol is Left) {
|
---|
| 69 | switch (mowerState.Heading) {
|
---|
| 70 | case Heading.East: mowerState.Heading = Heading.North;
|
---|
| 71 | break;
|
---|
| 72 | case Heading.North: mowerState.Heading = Heading.West;
|
---|
| 73 | break;
|
---|
| 74 | case Heading.West: mowerState.Heading = Heading.South;
|
---|
| 75 | break;
|
---|
| 76 | case Heading.South:
|
---|
| 77 | mowerState.Heading = Heading.East;
|
---|
| 78 | break;
|
---|
| 79 | }
|
---|
| 80 | return new Tuple<int, int>(0, 0);
|
---|
| 81 | } else if (node.Symbol is Forward) {
|
---|
| 82 | int dRow = 0;
|
---|
| 83 | int dCol = 0;
|
---|
| 84 | switch (mowerState.Heading) {
|
---|
| 85 | case Heading.East:
|
---|
| 86 | dCol++;
|
---|
| 87 | break;
|
---|
| 88 | case Heading.North:
|
---|
| 89 | dRow--;
|
---|
| 90 | break;
|
---|
| 91 | case Heading.West:
|
---|
| 92 | dCol--;
|
---|
| 93 | break;
|
---|
| 94 | case Heading.South:
|
---|
| 95 | dRow++;
|
---|
| 96 | break;
|
---|
| 97 | }
|
---|
| 98 | uint newRow = (uint)((mowerState.Position.Item1 + lawn.GetLength(0) + dRow) % lawn.GetLength(0));
|
---|
| 99 | uint newColumn = (uint)((mowerState.Position.Item2 + lawn.GetLength(1) + dCol) % lawn.GetLength(1));
|
---|
| 100 | mowerState.Position = new Tuple<uint, uint>(newRow, newColumn);
|
---|
| 101 | mowerState.Energy = mowerState.Energy - 1;
|
---|
| 102 | lawn[newRow, newColumn] = true;
|
---|
| 103 | return new Tuple<int, int>(0, 0);
|
---|
| 104 | } else if (node.Symbol is Constant) {
|
---|
| 105 | var constNode = node as ConstantTreeNode;
|
---|
| 106 | return constNode.Value;
|
---|
| 107 | } else if (node.Symbol is Sum) {
|
---|
[8163] | 108 | var p = EvaluateLawnMowerProgram(node.GetSubtree(0), mowerState, lawn, adfs);
|
---|
| 109 | var q = EvaluateLawnMowerProgram(node.GetSubtree(1), mowerState, lawn, adfs);
|
---|
[8059] | 110 | return new Tuple<int, int>(p.Item1 + q.Item1,
|
---|
| 111 | p.Item2 + q.Item2);
|
---|
| 112 | } else if (node.Symbol is Prog) {
|
---|
[8163] | 113 | EvaluateLawnMowerProgram(node.GetSubtree(0), mowerState, lawn, adfs);
|
---|
| 114 | return EvaluateLawnMowerProgram(node.GetSubtree(1), mowerState, lawn, adfs);
|
---|
[8059] | 115 | } else if (node.Symbol is Frog) {
|
---|
[8163] | 116 | var p = EvaluateLawnMowerProgram(node.GetSubtree(0), mowerState, lawn, adfs);
|
---|
[8059] | 117 |
|
---|
| 118 | uint newRow = (uint)((mowerState.Position.Item1 + lawn.GetLength(0) + p.Item1 % lawn.GetLength(0)) % lawn.GetLength(0));
|
---|
| 119 | uint newCol = (uint)((mowerState.Position.Item2 + lawn.GetLength(1) + p.Item2 % lawn.GetLength(1)) % lawn.GetLength(1));
|
---|
| 120 | mowerState.Position = new Tuple<uint, uint>(newRow, newCol);
|
---|
| 121 | mowerState.Energy = mowerState.Energy - 1;
|
---|
| 122 | lawn[newRow, newCol] = true;
|
---|
| 123 | return new Tuple<int, int>(0, 0);
|
---|
[8131] | 124 | } else if (node.Symbol is InvokeFunction) {
|
---|
| 125 | var invokeNode = node as InvokeFunctionTreeNode;
|
---|
| 126 |
|
---|
| 127 | // find the function definition for the invoke call
|
---|
| 128 | var functionDefinition = (from adf in adfs.Cast<DefunTreeNode>()
|
---|
| 129 | where adf.FunctionName == invokeNode.Symbol.FunctionName
|
---|
| 130 | select adf).Single();
|
---|
| 131 | // clone the function definition because we are replacing the argument nodes
|
---|
| 132 | functionDefinition = (DefunTreeNode) functionDefinition.Clone();
|
---|
| 133 | // find the argument tree nodes and their parents in the original function definition
|
---|
| 134 | // toList is necessary to prevent that newly inserted branches are iterated
|
---|
| 135 | var argumentCutPoints = (from parent in functionDefinition.IterateNodesPrefix()
|
---|
| 136 | from subtree in parent.Subtrees
|
---|
| 137 | where subtree is ArgumentTreeNode
|
---|
| 138 | select new { Parent = parent, Argument = subtree.Symbol as Argument, ChildIndex = parent.IndexOfSubtree(subtree) })
|
---|
| 139 | .ToList();
|
---|
| 140 | // replace all argument tree ndoes with the matching argument of the invoke node
|
---|
| 141 | foreach (var cutPoint in argumentCutPoints) {
|
---|
| 142 | cutPoint.Parent.RemoveSubtree(cutPoint.ChildIndex);
|
---|
| 143 | cutPoint.Parent.InsertSubtree(cutPoint.ChildIndex, (SymbolicExpressionTreeNode)invokeNode.GetSubtree(cutPoint.Argument.ArgumentIndex).Clone());
|
---|
| 144 | }
|
---|
[8163] | 145 | return EvaluateLawnMowerProgram(functionDefinition.GetSubtree(0), mowerState, lawn, adfs);
|
---|
[8059] | 146 | } else {
|
---|
| 147 | throw new ArgumentException("Invalid symbol in the lawn mower program.");
|
---|
| 148 | }
|
---|
| 149 | }
|
---|
| 150 | }
|
---|
| 151 | }
|
---|