[14162] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[16140] | 3 | * Copyright (C) 2002-2018 Joseph Helm and Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[14162] | 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 HeuristicLab.Core.Views;
|
---|
| 24 | using HeuristicLab.MainForm;
|
---|
| 25 | using HeuristicLab.Problems.BinPacking3D;
|
---|
[15554] | 26 | using System.Collections.Generic;
|
---|
[14162] | 27 |
|
---|
| 28 | namespace HeuristicLab.Problems.BinPacking.Views {
|
---|
| 29 | [View("3-dimensional packing plan View")]
|
---|
| 30 | [Content(typeof(PackingPlan<BinPacking3D.PackingPosition, PackingShape, PackingItem>), true)]
|
---|
| 31 | public partial class PackingPlan3DView : ItemView {
|
---|
| 32 |
|
---|
| 33 | public PackingPlan3DView() {
|
---|
| 34 | InitializeComponent();
|
---|
| 35 | }
|
---|
| 36 |
|
---|
| 37 | public new PackingPlan<BinPacking3D.PackingPosition, PackingShape, PackingItem> Content {
|
---|
| 38 | get { return (PackingPlan<BinPacking3D.PackingPosition, PackingShape, PackingItem>)base.Content; }
|
---|
| 39 | set { base.Content = value; }
|
---|
| 40 | }
|
---|
| 41 |
|
---|
| 42 |
|
---|
| 43 | protected override void OnContentChanged() {
|
---|
| 44 | base.OnContentChanged();
|
---|
| 45 | binSelection.Items.Clear();
|
---|
| 46 | if (Content == null) {
|
---|
| 47 | packingPlan3D.Packing = null;
|
---|
| 48 | } else {
|
---|
| 49 | int i = 0;
|
---|
[15488] | 50 | foreach (var bp in Content.Bins) {
|
---|
[14162] | 51 | binSelection.Items.Add(i++ + " (" + Math.Round(bp.PackingDensity * 100, 2) + "%)");
|
---|
[15488] | 52 | }
|
---|
[14162] | 53 |
|
---|
[15488] | 54 |
|
---|
[14162] | 55 | binSelection.SelectedIndex = 0;
|
---|
| 56 | ShowSelectedPacking();
|
---|
| 57 | }
|
---|
| 58 | }
|
---|
| 59 |
|
---|
| 60 | private void ShowSelectedPacking() {
|
---|
| 61 | int currentBin = (binSelection != null) ? (int)(binSelection.SelectedIndex) : 0;
|
---|
[14167] | 62 | packingPlan3D.Packing = Content.Bins[currentBin];
|
---|
[14162] | 63 | }
|
---|
| 64 |
|
---|
| 65 | private void binSelection_SelectedIndexChanged(object sender, EventArgs e) {
|
---|
| 66 | itemSelection.SelectedIndex = -1;
|
---|
| 67 | itemSelection.Items.Clear();
|
---|
[15488] | 68 | extremePointsSelection.Items.Clear();
|
---|
| 69 | packingPlan3D.ResidualSpaces.Clear();
|
---|
| 70 | packingPlan3D.ExtremePoints.Clear();
|
---|
[14162] | 71 |
|
---|
| 72 | // add items of this container
|
---|
| 73 | int currentBin = (binSelection != null) ? (int)(binSelection.SelectedIndex) : 0;
|
---|
[14167] | 74 | var packing = Content.Bins[currentBin];
|
---|
[14162] | 75 | foreach (var item in packing.Items) {
|
---|
| 76 | itemSelection.Items.Add(item.Key);
|
---|
| 77 | }
|
---|
[15554] | 78 | foreach (var extremPoint in ((BinPacking3D.BinPacking3D)packing).ExtremePoints) {
|
---|
| 79 | var ep = extremPoint.Key;
|
---|
[15488] | 80 | extremePointsSelection.Items.Add($"({ep.X}, {ep.Y}, {ep.Z})");
|
---|
| 81 | packingPlan3D.ExtremePoints.Add(ep);
|
---|
[15554] | 82 | packingPlan3D.ResidualSpaces.Add(ep, extremPoint.Value as IList<ResidualSpace>);
|
---|
[15488] | 83 | }
|
---|
[14162] | 84 |
|
---|
| 85 | ShowSelectedPacking();
|
---|
| 86 | }
|
---|
| 87 |
|
---|
| 88 | private void itemSelection_SelectedIndexChanged(object sender, EventArgs e) {
|
---|
| 89 | int selectedItem = -1;
|
---|
| 90 | if ((itemSelection != null && itemSelection.SelectedItem != null) && Int32.TryParse(itemSelection.SelectedItem.ToString(), out selectedItem)) {
|
---|
| 91 | packingPlan3D.SelectItem(selectedItem);
|
---|
| 92 | } else
|
---|
| 93 | packingPlan3D.ClearSelection();
|
---|
| 94 | }
|
---|
[15488] | 95 |
|
---|
| 96 | private void extremePointsSelection_SelectedIndexChanged(object sender, EventArgs e) {
|
---|
| 97 | if (extremePointsSelection != null && extremePointsSelection.SelectedIndex >= 0) {
|
---|
| 98 | packingPlan3D.SelectExtremePoint(extremePointsSelection.SelectedIndex);
|
---|
| 99 | } else {
|
---|
| 100 | packingPlan3D.ClearSelection();
|
---|
| 101 | }
|
---|
| 102 | }
|
---|
[14162] | 103 | }
|
---|
| 104 | }
|
---|