Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/PackingShape.cs @ 14146

Last change on this file since 14146 was 14049, checked in by gkronber, 8 years ago

#1966: simplified class names

File size: 3.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 Joseph Helm and 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
23using System;
24using System.Collections.Generic;
25using System.Linq;
26using HeuristicLab.Core;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28using HeuristicLab.Common;
29
30namespace HeuristicLab.Problems.BinPacking {
31  [StorableClass]
32  public abstract class PackingShape<T> : Item, IPackingShape, IParameterizedItem
33    where T : class, IPackingPosition {
34    public static Type PositionType {
35      get { return typeof(T); }
36    }
37
38    public abstract bool EnclosesPoint(T myPosition, T checkedPoint);
39    public abstract bool Encloses(T checkedPosition, PackingShape<T> checkedShape);
40    public abstract bool Overlaps(T myPosition, T checkedPosition, PackingShape<T> checkedShape);
41    public abstract int Volume { get; }
42    public abstract T Origin { get; }
43
44    protected PackingShape()
45      : base() {
46      Parameters = new ParameterCollection();
47    }
48
49
50    [StorableConstructor]
51    protected PackingShape(bool deserializing) { }
52    protected PackingShape(PackingShape<T> original, Cloner cloner) {
53      this.Parameters = new ParameterCollection(original.Parameters.Select(p => cloner.Clone(p)));
54    }
55
56    public virtual void CollectParameterValues(IDictionary<string, IItem> values) {
57      foreach (IValueParameter param in Parameters.OfType<IValueParameter>()) {
58        var children = GetCollectedValues(param);
59        foreach (var c in children) {
60          if (String.IsNullOrEmpty(c.Key))
61            values.Add(param.Name, c.Value);
62          else values.Add(param.Name + "." + c.Key, c.Value);
63        }
64      }
65    }
66
67    protected virtual IEnumerable<KeyValuePair<string, IItem>> GetCollectedValues(IValueParameter param) {
68      if (param.Value == null) yield break;
69      if (param.GetsCollected) yield return new KeyValuePair<string, IItem>(String.Empty, param.Value);
70      var parameterizedItem = param.Value as IParameterizedItem;
71      if (parameterizedItem != null) {
72        var children = new Dictionary<string, IItem>();
73        parameterizedItem.CollectParameterValues(children);
74        foreach (var child in children) yield return child;
75      }
76    }
77
78    public abstract void ApplyHorizontalOrientation();
79    public abstract int CompareTo(object obj);
80
81    public IKeyedItemCollection<string, IParameter> Parameters { get; private set; }
82  }
83}
Note: See TracBrowser for help on using the repository browser.