[8409] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[11205] | 3 | * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[8409] | 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;
|
---|
| 23 | using System.Drawing;
|
---|
| 24 | using System.Linq;
|
---|
| 25 | using System.Windows.Forms;
|
---|
| 26 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
| 27 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views;
|
---|
| 28 |
|
---|
| 29 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views {
|
---|
[9006] | 30 | internal delegate void
|
---|
[9043] | 31 | ModifyTree(ISymbolicExpressionTree tree, ISymbolicExpressionTreeNode node, ISymbolicExpressionTreeNode oldChild, ISymbolicExpressionTreeNode newChild, bool removeSubtree = true);
|
---|
[9006] | 32 |
|
---|
| 33 | internal sealed partial class InteractiveSymbolicExpressionTreeChart : SymbolicExpressionTreeChart {
|
---|
[8980] | 34 | private ISymbolicExpressionTreeNode tempNode; // node in clipboard (to be cut/copy/pasted etc)
|
---|
[11205] | 35 | private VisualTreeNode<ISymbolicExpressionTreeNode> currSelected; // currently selected node
|
---|
[9043] | 36 | private enum EditOp { NoOp, CopySubtree, CutSubtree }
|
---|
[8409] | 37 | private EditOp lastOp = EditOp.NoOp;
|
---|
| 38 |
|
---|
[9006] | 39 | // delegate to notify the parent container (the view) about the tree edit operations that it needs to perform
|
---|
| 40 | public ModifyTree ModifyTree { get; set; }
|
---|
[8980] | 41 |
|
---|
[8409] | 42 | public InteractiveSymbolicExpressionTreeChart() {
|
---|
| 43 | InitializeComponent();
|
---|
| 44 | currSelected = null;
|
---|
| 45 | tempNode = null;
|
---|
| 46 | }
|
---|
| 47 |
|
---|
| 48 | private void contextMenuStrip_Opened(object sender, EventArgs e) {
|
---|
[8980] | 49 | var menuStrip = (ContextMenuStrip)sender;
|
---|
| 50 | var point = menuStrip.SourceControl.PointToClient(Cursor.Position);
|
---|
| 51 | var ea = new MouseEventArgs(MouseButtons.Left, 1, point.X, point.Y, 0);
|
---|
[9006] | 52 | var visualNode = FindVisualSymbolicExpressionTreeNodeAt(ea.X, ea.Y);
|
---|
[9043] | 53 | if (visualNode != null) {
|
---|
| 54 | OnSymbolicExpressionTreeNodeClicked(visualNode, ea);
|
---|
| 55 | } else {
|
---|
| 56 | currSelected = null;
|
---|
| 57 | }
|
---|
[8980] | 58 |
|
---|
[8935] | 59 | if (currSelected == null) {
|
---|
| 60 | insertNodeToolStripMenuItem.Visible = false;
|
---|
[8991] | 61 | changeNodeToolStripMenuItem.Visible = false;
|
---|
[8935] | 62 | copyToolStripMenuItem.Visible = false;
|
---|
| 63 | cutToolStripMenuItem.Visible = false;
|
---|
[8991] | 64 | removeToolStripMenuItem.Visible = false;
|
---|
[8935] | 65 | pasteToolStripMenuItem.Visible = false;
|
---|
[8409] | 66 | } else {
|
---|
[11205] | 67 | var node = currSelected.Content;
|
---|
[8991] | 68 | insertNodeToolStripMenuItem.Visible = true;
|
---|
| 69 | changeNodeToolStripMenuItem.Visible = true;
|
---|
| 70 | changeNodeToolStripMenuItem.Enabled = (node is SymbolicExpressionTreeTerminalNode);
|
---|
| 71 | insertNodeToolStripMenuItem.Enabled = !changeNodeToolStripMenuItem.Enabled;
|
---|
[8935] | 72 | copyToolStripMenuItem.Visible = true;
|
---|
| 73 | cutToolStripMenuItem.Visible = true;
|
---|
[8991] | 74 | removeToolStripMenuItem.Visible = true;
|
---|
[9056] | 75 |
|
---|
[8991] | 76 | pasteToolStripMenuItem.Visible = true;
|
---|
[9056] | 77 | pasteToolStripMenuItem.Enabled = tempNode != null && insertNodeToolStripMenuItem.Enabled
|
---|
[11205] | 78 | && !(lastOp == EditOp.CutSubtree && tempNode.IterateNodesBreadth().Contains(node))
|
---|
| 79 | && node.SubtreeCount < node.Symbol.MaximumArity;
|
---|
[8409] | 80 | }
|
---|
| 81 | }
|
---|
| 82 |
|
---|
[8935] | 83 | protected override void OnSymbolicExpressionTreeNodeClicked(object sender, MouseEventArgs e) {
|
---|
[11205] | 84 | currSelected = (VisualTreeNode<ISymbolicExpressionTreeNode>)sender; ;
|
---|
[9055] | 85 | base.OnSymbolicExpressionTreeNodeClicked(sender, e);
|
---|
[8409] | 86 | }
|
---|
| 87 |
|
---|
[8980] | 88 | protected override void OnSymbolicExpressionTreeNodeDoubleClicked(object sender, MouseEventArgs e) {
|
---|
[9006] | 89 | currSelected = null;
|
---|
| 90 | base.OnSymbolicExpressionTreeNodeDoubleClicked(sender, e);
|
---|
[8980] | 91 | }
|
---|
| 92 |
|
---|
[8409] | 93 | private void insertNodeToolStripMenuItem_Click(object sender, EventArgs e) {
|
---|
[11205] | 94 | if (currSelected == null || currSelected.Content is SymbolicExpressionTreeTerminalNode) return;
|
---|
| 95 | var parent = currSelected.Content;
|
---|
[8409] | 96 |
|
---|
[8935] | 97 | using (var dialog = new InsertNodeDialog()) {
|
---|
[11205] | 98 | dialog.SetAllowedSymbols(parent.Grammar.Symbols.Where(s => !(s is ProgramRootSymbol || s is StartSymbol || s is Defun || s is GroupSymbol))); // allow everything
|
---|
[8935] | 99 | dialog.ShowDialog(this);
|
---|
[9006] | 100 | if (dialog.DialogResult != DialogResult.OK) return;
|
---|
[8980] | 101 |
|
---|
[9006] | 102 | var symbol = dialog.SelectedSymbol();
|
---|
| 103 | var node = symbol.CreateTreeNode();
|
---|
| 104 | if (node is ConstantTreeNode) {
|
---|
| 105 | var constant = node as ConstantTreeNode;
|
---|
| 106 | constant.Value = double.Parse(dialog.constantValueTextBox.Text);
|
---|
| 107 | } else if (node is VariableTreeNode) {
|
---|
| 108 | var variable = node as VariableTreeNode;
|
---|
| 109 | variable.Weight = double.Parse(dialog.variableWeightTextBox.Text);
|
---|
| 110 | variable.VariableName = dialog.variableNamesCombo.Text;
|
---|
| 111 | } else if (node.Symbol.MinimumArity <= parent.SubtreeCount && node.Symbol.MaximumArity >= parent.SubtreeCount) {
|
---|
| 112 | for (int i = parent.SubtreeCount - 1; i >= 0; --i) {
|
---|
| 113 | var child = parent.GetSubtree(i);
|
---|
| 114 | parent.RemoveSubtree(i);
|
---|
| 115 | node.AddSubtree(child);
|
---|
[8980] | 116 | }
|
---|
| 117 | }
|
---|
[9006] | 118 | // the if condition will always be true for the final else clause above
|
---|
| 119 | if (parent.Symbol.MaximumArity > parent.SubtreeCount) {
|
---|
| 120 | ModifyTree(Tree, parent, null, node);
|
---|
| 121 | }
|
---|
[8935] | 122 | }
|
---|
[9006] | 123 | currSelected = null;
|
---|
[8409] | 124 | }
|
---|
[8991] | 125 | private void changeNodeToolStripMenuItem_Click(object sender, EventArgs e) {
|
---|
[8409] | 126 | if (currSelected == null) return;
|
---|
[8980] | 127 |
|
---|
[11205] | 128 | var node = (ISymbolicExpressionTreeNode)currSelected.Content.Clone();
|
---|
| 129 | var originalNode = currSelected.Content;
|
---|
[9006] | 130 |
|
---|
[8980] | 131 | ISymbolicExpressionTreeNode newNode = null;
|
---|
| 132 | var result = DialogResult.Cancel;
|
---|
[8409] | 133 | if (node is ConstantTreeNode) {
|
---|
[8980] | 134 | using (var dialog = new ConstantNodeEditDialog(node)) {
|
---|
| 135 | dialog.ShowDialog(this);
|
---|
| 136 | newNode = dialog.NewNode;
|
---|
| 137 | result = dialog.DialogResult;
|
---|
| 138 | }
|
---|
[8409] | 139 | } else if (node is VariableTreeNode) {
|
---|
[8980] | 140 | using (var dialog = new VariableNodeEditDialog(node)) {
|
---|
| 141 | dialog.ShowDialog(this);
|
---|
| 142 | newNode = dialog.NewNode;
|
---|
| 143 | result = dialog.DialogResult;
|
---|
[8409] | 144 | }
|
---|
| 145 | }
|
---|
[8980] | 146 | if (result != DialogResult.OK) return;
|
---|
[9006] | 147 | ModifyTree(Tree, originalNode.Parent, originalNode, newNode); // this will replace the original node with the new node
|
---|
| 148 | currSelected = null;
|
---|
[8409] | 149 | }
|
---|
[8991] | 150 | private void cutToolStripMenuItem_Click(object sender, EventArgs e) {
|
---|
[8409] | 151 | lastOp = EditOp.CutSubtree;
|
---|
[9043] | 152 | copySubtree();
|
---|
[8409] | 153 | }
|
---|
[8991] | 154 | private void copyToolStripMenuItem_Click(object sender, EventArgs e) {
|
---|
[8409] | 155 | lastOp = EditOp.CopySubtree;
|
---|
[9043] | 156 | copySubtree();
|
---|
| 157 | }
|
---|
| 158 | private void copySubtree() {
|
---|
[9006] | 159 | if (tempNode != null) {
|
---|
[9055] | 160 | foreach (var subtree in tempNode.IterateNodesPostfix()) {
|
---|
| 161 | var visualNode = GetVisualSymbolicExpressionTreeNode(subtree);
|
---|
[11205] | 162 | visualNode.LineColor = Color.Black;
|
---|
| 163 | visualNode.TextColor = Color.Black;
|
---|
[9006] | 164 | if (subtree.Parent != null) {
|
---|
[9055] | 165 | var visualLine = GetVisualSymbolicExpressionTreeNodeConnection(subtree.Parent, subtree);
|
---|
[11205] | 166 | visualLine.LineColor = Color.Black;
|
---|
[9006] | 167 | }
|
---|
| 168 | }
|
---|
| 169 | }
|
---|
[11205] | 170 | tempNode = currSelected.Content;
|
---|
[8409] | 171 | foreach (var node in tempNode.IterateNodesPostfix()) {
|
---|
[8946] | 172 | var visualNode = GetVisualSymbolicExpressionTreeNode(node);
|
---|
[11205] | 173 | visualNode.LineColor = Color.LightGray;
|
---|
| 174 | visualNode.TextColor = Color.LightGray;
|
---|
[8935] | 175 | foreach (var subtree in node.Subtrees) {
|
---|
[8946] | 176 | var visualLine = GetVisualSymbolicExpressionTreeNodeConnection(node, subtree);
|
---|
[11205] | 177 | visualLine.LineColor = Color.LightGray;
|
---|
[8409] | 178 | }
|
---|
| 179 | }
|
---|
[9006] | 180 | currSelected = null;
|
---|
[11205] | 181 | RepaintNodes(); // no need to redo the layout and repaint everything since this operation does not change the tree
|
---|
[8409] | 182 | }
|
---|
[8991] | 183 | private void removeNodeToolStripMenuItem_Click(object sender, EventArgs e) {
|
---|
[11205] | 184 | var node = currSelected.Content;
|
---|
[9055] | 185 | if (node == tempNode) tempNode = null;
|
---|
[9006] | 186 | ModifyTree(Tree, node.Parent, node, null, removeSubtree: false);
|
---|
[8935] | 187 | currSelected = null; // because the currently selected node was just deleted
|
---|
[8409] | 188 | }
|
---|
[8991] | 189 | private void removeSubtreeToolStripMenuItem_Click(object sender, EventArgs e) {
|
---|
[11205] | 190 | var node = currSelected.Content;
|
---|
[9055] | 191 | if (node.IterateNodesPostfix().Contains(tempNode)) tempNode = null;
|
---|
[9006] | 192 | ModifyTree(Tree, node.Parent, node, null, removeSubtree: true);
|
---|
[8935] | 193 | currSelected = null; // because the currently selected node was just deleted
|
---|
[9006] | 194 | contextMenuStrip.Close(); // avoid display of submenus since the action has already been performed
|
---|
[8409] | 195 | }
|
---|
| 196 | private void pasteToolStripMenuItem_Clicked(object sender, EventArgs e) {
|
---|
[9006] | 197 | if (!(lastOp == EditOp.CopySubtree || lastOp == EditOp.CutSubtree)) return;
|
---|
[8409] | 198 | // check if the copied/cut node (stored in the tempNode) can be inserted as a child of the current selected node
|
---|
[11205] | 199 | var node = currSelected.Content;
|
---|
[8980] | 200 | if (node is ConstantTreeNode || node is VariableTreeNode) return;
|
---|
[8409] | 201 | // check if the currently selected node can accept the copied node as a child
|
---|
| 202 | // no need to check the grammar, an arity check will do just fine here
|
---|
[9006] | 203 | if (node.Symbol.MaximumArity <= node.SubtreeCount) return;
|
---|
| 204 | switch (lastOp) {
|
---|
| 205 | case EditOp.CutSubtree: {
|
---|
[9043] | 206 | if (tempNode.IterateNodesBreadth().Contains(node))
|
---|
[9057] | 207 | throw new ArgumentException();// cannot cut/paste a node into itself
|
---|
[11205] | 208 | ModifyTree(Tree, tempNode.Parent, tempNode, null); //remove node from its original parent
|
---|
[9057] | 209 | ModifyTree(Tree, node, null, tempNode); //insert it as a child to the new parent
|
---|
[9006] | 210 | break;
|
---|
| 211 | }
|
---|
| 212 | case EditOp.CopySubtree: {
|
---|
| 213 | var clone = (SymbolicExpressionTreeNode)tempNode.Clone();
|
---|
[9057] | 214 | ModifyTree(Tree, node, null, clone);
|
---|
[9006] | 215 | break;
|
---|
| 216 | }
|
---|
[8409] | 217 | }
|
---|
[9006] | 218 | currSelected = null; // because the tree will have changed
|
---|
[9043] | 219 | tempNode = null; // clear the clipboard after one paste
|
---|
[8409] | 220 | }
|
---|
| 221 | }
|
---|
| 222 | }
|
---|