#region License Information /* HeuristicLab * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Text; using System.Windows.Forms; using HeuristicLab.Core; using HeuristicLab.Data; using HeuristicLab.Permutation; using HeuristicLab.Charting; namespace HeuristicLab.Routing.TSP { public partial class TSPTourView : ViewBase { public TSPTour TSPTour { get { return (TSPTour)base.Item; } set { base.Item = value; } } public TSPTourView() { InitializeComponent(); Caption = "TSP Tour View"; } public TSPTourView(TSPTour tspTour) : this() { TSPTour = tspTour; } protected override void RemoveItemEvents() { TSPTour.CoordinatesChanged -= new EventHandler(TSPTour_CoordinatesChanged); TSPTour.TourChanged -= new EventHandler(TSPTour_TourChanged); base.RemoveItemEvents(); } protected override void AddItemEvents() { base.AddItemEvents(); TSPTour.CoordinatesChanged += new EventHandler(TSPTour_CoordinatesChanged); TSPTour.TourChanged += new EventHandler(TSPTour_TourChanged); } protected override void UpdateControls() { base.UpdateControls(); Chart chart = new Chart(0, 0, 10, 10); chartControl.ScaleOnResize = false; if ((TSPTour.Coordinates != null) && (TSPTour.Tour != null)) { chart.UpdateEnabled = false; double[,] coords = TSPTour.Coordinates.Data; int[] tour = TSPTour.Tour.Data; for (int i = 0; i < tour.Length - 1; i++) chart.Group.Add(new Line(chart, coords[tour[i], 0], coords[tour[i], 1], coords[tour[i + 1], 0], coords[tour[i + 1], 1], Pens.Black)); chart.Group.Add(new Line(chart, coords[tour[tour.Length - 1], 0], coords[tour[tour.Length - 1], 1], coords[tour[0], 0], coords[tour[0], 1], Pens.Black)); for (int i = 0; i < coords.GetLength(0); i++) { FixedSizeCircle circle = new FixedSizeCircle(chart, coords[i, 0], coords[i, 1], 8, Pens.Black, Brushes.Blue); circle.ToolTipText = "(" + coords[i, 0].ToString() + " ; " + coords[i, 1].ToString() + ")"; chart.Group.Add(circle); } if (coords.GetLength(0) > 0) { PointD min = new PointD(coords[0, 0], coords[0, 1]); PointD max = new PointD(coords[0, 0], coords[0, 1]); for (int i = 0; i < coords.GetLength(0); i++) { if (coords[i, 0] < min.X) min.X = coords[i, 0]; if (coords[i, 1] < min.Y) min.Y = coords[i, 1]; if (coords[i, 0] > max.X) max.X = coords[i, 0]; if (coords[i, 1] > max.Y) max.Y = coords[i, 1]; } Offset offset = new Offset((max.X - min.X) / 20, (max.Y - min.Y) / 20); min = min - offset; max = max + offset; chart.SetPosition(min, max); } chart.UpdateEnabled = true; } chartControl.Chart = chart; } #region TSPTour Events private void TSPTour_TourChanged(object sender, EventArgs e) { Refresh(); } private void TSPTour_CoordinatesChanged(object sender, EventArgs e) { Refresh(); } #endregion } }