[2] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
| 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.Collections.Generic;
|
---|
| 24 | using System.ComponentModel;
|
---|
| 25 | using System.Drawing;
|
---|
| 26 | using System.Data;
|
---|
| 27 | using System.Text;
|
---|
| 28 | using System.Windows.Forms;
|
---|
| 29 | using HeuristicLab.Core;
|
---|
| 30 | using HeuristicLab.Data;
|
---|
| 31 | using HeuristicLab.Permutation;
|
---|
| 32 | using HeuristicLab.Charting;
|
---|
| 33 |
|
---|
| 34 | namespace HeuristicLab.Routing.TSP {
|
---|
[884] | 35 | /// <summary>
|
---|
| 36 | /// Class for the visual representation of a <see cref="TSPTour"/>.
|
---|
| 37 | /// </summary>
|
---|
[2] | 38 | public partial class TSPTourView : ViewBase {
|
---|
[884] | 39 | /// <summary>
|
---|
| 40 | /// Gets or sets the <see cref="TSPTour"/> to represent visually.
|
---|
| 41 | /// </summary>
|
---|
| 42 | /// <remarks>Uses property <see cref="ViewBase.Item"/> of base class <see cref="ViewBase"/>.
|
---|
| 43 | /// No own data storage present.</remarks>
|
---|
[2] | 44 | public TSPTour TSPTour {
|
---|
| 45 | get { return (TSPTour)base.Item; }
|
---|
| 46 | set { base.Item = value; }
|
---|
| 47 | }
|
---|
| 48 |
|
---|
| 49 |
|
---|
[884] | 50 | /// <summary>
|
---|
| 51 | /// Initializes a new instance of <see cref="TSPTourView"/> with caption "TSP Tour View".
|
---|
| 52 | /// </summary>
|
---|
[2] | 53 | public TSPTourView() {
|
---|
| 54 | InitializeComponent();
|
---|
| 55 | Caption = "TSP Tour View";
|
---|
| 56 | }
|
---|
[884] | 57 | /// <summary>
|
---|
| 58 | /// Initializes a new instance of <see cref="TSPTourView"/> with the given <paramref name="tspTour"/>.
|
---|
| 59 | /// </summary>
|
---|
| 60 | /// <param name="tspTour">The tour to display.</param>
|
---|
[2] | 61 | public TSPTourView(TSPTour tspTour)
|
---|
| 62 | : this() {
|
---|
| 63 | TSPTour = tspTour;
|
---|
| 64 | }
|
---|
| 65 |
|
---|
| 66 |
|
---|
[884] | 67 | /// <summary>
|
---|
| 68 | /// Removes all event handlers from the underlying <see cref="TSPTour"/>.
|
---|
| 69 | /// </summary>
|
---|
| 70 | /// <remarks>Calls <see cref="ViewBase.RemoveItemEvents"/> of base class <see cref="ViewBase"/>.</remarks>
|
---|
[2] | 71 | protected override void RemoveItemEvents() {
|
---|
| 72 | TSPTour.CoordinatesChanged -= new EventHandler(TSPTour_CoordinatesChanged);
|
---|
| 73 | TSPTour.TourChanged -= new EventHandler(TSPTour_TourChanged);
|
---|
| 74 | base.RemoveItemEvents();
|
---|
| 75 | }
|
---|
[884] | 76 | /// <summary>
|
---|
| 77 | /// Adds event handlers to the underlying <see cref="TSPTour"/>.
|
---|
| 78 | /// </summary>
|
---|
| 79 | /// <remarks>Calls <see cref="ViewBase.AddItemEvents"/> of base class <see cref="ViewBase"/>.</remarks>
|
---|
[2] | 80 | protected override void AddItemEvents() {
|
---|
| 81 | base.AddItemEvents();
|
---|
| 82 | TSPTour.CoordinatesChanged += new EventHandler(TSPTour_CoordinatesChanged);
|
---|
| 83 | TSPTour.TourChanged += new EventHandler(TSPTour_TourChanged);
|
---|
| 84 | }
|
---|
| 85 |
|
---|
[884] | 86 | /// <summary>
|
---|
| 87 | /// Updates all controls with the latest data of the model.
|
---|
| 88 | /// </summary>
|
---|
| 89 | /// <remarks>Calls <see cref="ViewBase.UpdateControls"/> of base class <see cref="ViewBase"/>.</remarks>
|
---|
[2] | 90 | protected override void UpdateControls() {
|
---|
| 91 | base.UpdateControls();
|
---|
| 92 | Chart chart = new Chart(0, 0, 10, 10);
|
---|
| 93 | chartControl.ScaleOnResize = false;
|
---|
| 94 |
|
---|
| 95 | if ((TSPTour.Coordinates != null) && (TSPTour.Tour != null)) {
|
---|
| 96 | chart.UpdateEnabled = false;
|
---|
| 97 |
|
---|
| 98 | double[,] coords = TSPTour.Coordinates.Data;
|
---|
| 99 | int[] tour = TSPTour.Tour.Data;
|
---|
| 100 |
|
---|
| 101 | for (int i = 0; i < tour.Length - 1; i++)
|
---|
| 102 | chart.Group.Add(new Line(chart, coords[tour[i], 0], coords[tour[i], 1],
|
---|
| 103 | coords[tour[i + 1], 0], coords[tour[i + 1], 1], Pens.Black));
|
---|
| 104 | chart.Group.Add(new Line(chart, coords[tour[tour.Length - 1], 0], coords[tour[tour.Length - 1], 1],
|
---|
| 105 | coords[tour[0], 0], coords[tour[0], 1], Pens.Black));
|
---|
| 106 |
|
---|
| 107 | for (int i = 0; i < coords.GetLength(0); i++) {
|
---|
| 108 | FixedSizeCircle circle = new FixedSizeCircle(chart, coords[i, 0], coords[i, 1], 8, Pens.Black, Brushes.Blue);
|
---|
| 109 | circle.ToolTipText = "(" + coords[i, 0].ToString() + " ; " + coords[i, 1].ToString() + ")";
|
---|
| 110 | chart.Group.Add(circle);
|
---|
| 111 | }
|
---|
| 112 |
|
---|
| 113 | if (coords.GetLength(0) > 0) {
|
---|
| 114 | PointD min = new PointD(coords[0, 0], coords[0, 1]);
|
---|
| 115 | PointD max = new PointD(coords[0, 0], coords[0, 1]);
|
---|
| 116 | for (int i = 0; i < coords.GetLength(0); i++) {
|
---|
| 117 | if (coords[i, 0] < min.X) min.X = coords[i, 0];
|
---|
| 118 | if (coords[i, 1] < min.Y) min.Y = coords[i, 1];
|
---|
| 119 | if (coords[i, 0] > max.X) max.X = coords[i, 0];
|
---|
| 120 | if (coords[i, 1] > max.Y) max.Y = coords[i, 1];
|
---|
| 121 | }
|
---|
| 122 | Offset offset = new Offset((max.X - min.X) / 20, (max.Y - min.Y) / 20);
|
---|
| 123 | min = min - offset;
|
---|
| 124 | max = max + offset;
|
---|
| 125 | chart.SetPosition(min, max);
|
---|
| 126 | }
|
---|
| 127 | chart.UpdateEnabled = true;
|
---|
| 128 | }
|
---|
| 129 | chartControl.Chart = chart;
|
---|
| 130 | }
|
---|
| 131 |
|
---|
| 132 | #region TSPTour Events
|
---|
| 133 | private void TSPTour_TourChanged(object sender, EventArgs e) {
|
---|
| 134 | Refresh();
|
---|
| 135 | }
|
---|
| 136 | private void TSPTour_CoordinatesChanged(object sender, EventArgs e) {
|
---|
| 137 | Refresh();
|
---|
| 138 | }
|
---|
| 139 | #endregion
|
---|
| 140 | }
|
---|
| 141 | }
|
---|