1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* Box packing (3D bin packing, knapsack problem). |
4
|
|
|
* |
5
|
|
|
* @author Doug Wright |
6
|
|
|
*/ |
7
|
|
|
namespace DVDoug\BoxPacker; |
8
|
|
|
|
9
|
|
|
use Psr\Log\LoggerAwareInterface; |
10
|
|
|
use Psr\Log\LoggerAwareTrait; |
11
|
|
|
|
12
|
|
|
/** |
13
|
|
|
* Figure out best choice of orientations for an item and a given context. |
14
|
|
|
* |
15
|
|
|
* @author Doug Wright |
16
|
|
|
* @internal |
17
|
|
|
*/ |
18
|
|
|
class OrientatedItemSorter implements LoggerAwareInterface |
19
|
|
|
{ |
20
|
|
|
use LoggerAwareTrait; |
21
|
|
|
|
22
|
|
|
/** |
23
|
|
|
* @var int[] |
24
|
|
|
*/ |
25
|
|
|
protected static $lookaheadCache = []; |
26
|
|
|
|
27
|
|
|
/** |
28
|
|
|
* @var OrientatedItemFactory |
29
|
|
|
*/ |
30
|
|
|
private $orientatedItemFactory; |
31
|
|
|
|
32
|
|
|
/** |
33
|
|
|
* @var bool |
34
|
|
|
*/ |
35
|
|
|
private $singlePassMode; |
36
|
|
|
|
37
|
|
|
/** |
38
|
|
|
* @var int |
39
|
|
|
*/ |
40
|
|
|
private $widthLeft; |
41
|
|
|
|
42
|
|
|
/** |
43
|
|
|
* @var int |
44
|
|
|
*/ |
45
|
|
|
private $lengthLeft; |
46
|
|
|
|
47
|
|
|
/** |
48
|
|
|
* @var int |
49
|
|
|
*/ |
50
|
|
|
private $depthLeft; |
51
|
|
|
|
52
|
|
|
/** |
53
|
|
|
* @var int |
54
|
|
|
*/ |
55
|
|
|
private $rowLength; |
56
|
|
|
|
57
|
|
|
/** |
58
|
|
|
* @var int |
59
|
|
|
*/ |
60
|
|
|
private $x; |
61
|
|
|
|
62
|
|
|
/** |
63
|
|
|
* @var int |
64
|
|
|
*/ |
65
|
|
|
private $y; |
66
|
|
|
|
67
|
|
|
/** |
68
|
|
|
* @var int |
69
|
|
|
*/ |
70
|
|
|
private $z; |
71
|
|
|
|
72
|
|
|
/** |
73
|
|
|
* @var ItemList |
74
|
|
|
*/ |
75
|
|
|
private $nextItems; |
76
|
|
|
|
77
|
|
|
/** |
78
|
|
|
* @var PackedItemList |
79
|
|
|
*/ |
80
|
|
|
private $prevPackedItemList; |
81
|
|
|
|
82
|
42 |
|
public function __construct(OrientatedItemFactory $factory, $singlePassMode, $widthLeft, $lengthLeft, $depthLeft, ItemList $nextItems, $rowLength, $x, $y, $z, PackedItemList $prevPackedItemList) |
83
|
|
|
{ |
84
|
42 |
|
$this->orientatedItemFactory = $factory; |
85
|
42 |
|
$this->singlePassMode = $singlePassMode; |
86
|
42 |
|
$this->widthLeft = $widthLeft; |
87
|
42 |
|
$this->lengthLeft = $lengthLeft; |
88
|
42 |
|
$this->depthLeft = $depthLeft; |
89
|
42 |
|
$this->nextItems = $nextItems; |
90
|
42 |
|
$this->rowLength = $rowLength; |
91
|
42 |
|
$this->x = $x; |
92
|
42 |
|
$this->y = $y; |
93
|
42 |
|
$this->z = $z; |
94
|
42 |
|
$this->prevPackedItemList = $prevPackedItemList; |
95
|
42 |
|
} |
96
|
|
|
|
97
|
39 |
|
public function __invoke(OrientatedItem $a, OrientatedItem $b) |
98
|
|
|
{ |
99
|
|
|
//Prefer exact fits in width/length/depth order |
100
|
39 |
|
$orientationAWidthLeft = $this->widthLeft - $a->getWidth(); |
101
|
39 |
|
$orientationBWidthLeft = $this->widthLeft - $b->getWidth(); |
102
|
39 |
|
$widthDecider = $this->exactFitDecider($orientationAWidthLeft, $orientationBWidthLeft); |
103
|
39 |
|
if ($widthDecider !== 0) { |
104
|
3 |
|
return $widthDecider; |
105
|
|
|
} |
106
|
|
|
|
107
|
36 |
|
$orientationALengthLeft = $this->lengthLeft - $a->getLength(); |
108
|
36 |
|
$orientationBLengthLeft = $this->lengthLeft - $b->getLength(); |
109
|
36 |
|
$lengthDecider = $this->exactFitDecider($orientationALengthLeft, $orientationBLengthLeft); |
110
|
36 |
|
if ($lengthDecider !== 0) { |
111
|
10 |
|
return $lengthDecider; |
112
|
|
|
} |
113
|
|
|
|
114
|
36 |
|
$orientationADepthLeft = $this->depthLeft - $a->getDepth(); |
115
|
36 |
|
$orientationBDepthLeft = $this->depthLeft - $b->getDepth(); |
116
|
36 |
|
$depthDecider = $this->exactFitDecider($orientationADepthLeft, $orientationBDepthLeft); |
117
|
36 |
|
if ($depthDecider !== 0) { |
118
|
|
|
return $depthDecider; |
119
|
|
|
} |
120
|
|
|
|
121
|
|
|
// prefer leaving room for next item(s) |
122
|
36 |
|
$followingItemDecider = $this->lookAheadDecider($this->nextItems, $a, $b, $orientationAWidthLeft, $orientationBWidthLeft, $this->widthLeft, $this->lengthLeft, $this->depthLeft, $this->rowLength, $this->x, $this->y, $this->z, $this->prevPackedItemList); |
123
|
36 |
|
if ($followingItemDecider !== 0) { |
124
|
12 |
|
return $followingItemDecider; |
125
|
|
|
} |
126
|
|
|
|
127
|
|
|
// otherwise prefer leaving minimum possible gap, or the greatest footprint |
128
|
31 |
|
$orientationAMinGap = min($orientationAWidthLeft, $orientationALengthLeft); |
129
|
31 |
|
$orientationBMinGap = min($orientationBWidthLeft, $orientationBLengthLeft); |
130
|
|
|
|
131
|
31 |
|
return ($orientationAMinGap - $orientationBMinGap) ?: ($a->getSurfaceFootprint() - $b->getSurfaceFootprint()); |
132
|
|
|
} |
133
|
|
|
|
134
|
36 |
|
private function lookAheadDecider(ItemList $nextItems, OrientatedItem $a, OrientatedItem $b, $orientationAWidthLeft, $orientationBWidthLeft, $widthLeft, $lengthLeft, $depthLeft, $rowLength, $x, $y, $z, PackedItemList $prevPackedItemList) |
135
|
|
|
{ |
136
|
36 |
|
if ($nextItems->count() === 0) { |
137
|
19 |
|
return 0; |
138
|
|
|
} |
139
|
|
|
|
140
|
35 |
|
$nextItemFitA = $this->orientatedItemFactory->getPossibleOrientations($nextItems->top(), $a, $orientationAWidthLeft, $lengthLeft, $depthLeft, $x, $y, $z, $prevPackedItemList); |
141
|
35 |
|
$nextItemFitB = $this->orientatedItemFactory->getPossibleOrientations($nextItems->top(), $b, $orientationBWidthLeft, $lengthLeft, $depthLeft, $x, $y, $z, $prevPackedItemList); |
142
|
35 |
|
if ($nextItemFitA && !$nextItemFitB) { |
|
|
|
|
143
|
3 |
|
return -1; |
144
|
|
|
} |
145
|
35 |
|
if ($nextItemFitB && !$nextItemFitA) { |
|
|
|
|
146
|
6 |
|
return 1; |
147
|
|
|
} |
148
|
|
|
|
149
|
|
|
// if not an easy either/or, do a partial lookahead |
150
|
32 |
|
$additionalPackedA = $this->calculateAdditionalItemsPackedWithThisOrientation($a, $nextItems, $widthLeft, $lengthLeft, $depthLeft, $rowLength); |
151
|
32 |
|
$additionalPackedB = $this->calculateAdditionalItemsPackedWithThisOrientation($b, $nextItems, $widthLeft, $lengthLeft, $depthLeft, $rowLength); |
152
|
|
|
|
153
|
32 |
|
return ($additionalPackedB - $additionalPackedA) ?: 0; |
154
|
|
|
} |
155
|
|
|
|
156
|
|
|
/** |
157
|
|
|
* Approximation of a forward-looking packing. |
158
|
|
|
* |
159
|
|
|
* Not an actual packing, that has additional logic regarding constraints and stackability, this focuses |
160
|
|
|
* purely on fit. |
161
|
|
|
*/ |
162
|
32 |
|
protected function calculateAdditionalItemsPackedWithThisOrientation( |
163
|
|
|
OrientatedItem $prevItem, |
164
|
|
|
ItemList $nextItems, |
165
|
|
|
$originalWidthLeft, |
166
|
|
|
$originalLengthLeft, |
167
|
|
|
$depthLeft, |
168
|
|
|
$currentRowLengthBeforePacking |
169
|
|
|
) { |
170
|
32 |
|
if ($this->singlePassMode) { |
171
|
13 |
|
return 0; |
172
|
|
|
} |
173
|
|
|
|
174
|
32 |
|
$currentRowLength = max($prevItem->getLength(), $currentRowLengthBeforePacking); |
175
|
|
|
|
176
|
32 |
|
$itemsToPack = $nextItems->topN(8); // cap lookahead as this gets recursive and slow |
177
|
|
|
|
178
|
|
|
$cacheKey = $originalWidthLeft . |
179
|
32 |
|
'|' . |
180
|
32 |
|
$originalLengthLeft . |
181
|
32 |
|
'|' . |
182
|
32 |
|
$prevItem->getWidth() . |
183
|
32 |
|
'|' . |
184
|
32 |
|
$prevItem->getLength() . |
185
|
32 |
|
'|' . |
186
|
32 |
|
$currentRowLength . |
187
|
32 |
|
'|' |
188
|
32 |
|
. $depthLeft; |
189
|
|
|
|
190
|
32 |
|
foreach (clone $itemsToPack as $itemToPack) { |
191
|
|
|
$cacheKey .= '|' . |
192
|
32 |
|
$itemToPack->getWidth() . |
193
|
32 |
|
'|' . |
194
|
32 |
|
$itemToPack->getLength() . |
195
|
32 |
|
'|' . |
196
|
32 |
|
$itemToPack->getDepth() . |
197
|
32 |
|
'|' . |
198
|
32 |
|
$itemToPack->getWeight(); |
199
|
|
|
} |
200
|
|
|
|
201
|
32 |
|
if (!isset(static::$lookaheadCache[$cacheKey])) { |
202
|
30 |
|
$tempBox = new WorkingVolume($originalWidthLeft - $prevItem->getWidth(), $currentRowLength, $depthLeft, PHP_INT_MAX); |
203
|
30 |
|
$tempPacker = new VolumePacker($tempBox, clone $itemsToPack); |
204
|
30 |
|
$tempPacker->setSinglePassMode(true); |
205
|
30 |
|
$remainingRowPacked = $tempPacker->pack(); |
206
|
|
|
|
207
|
30 |
|
$itemsToPack->removePackedItems($remainingRowPacked->getPackedItems()); |
208
|
|
|
|
209
|
30 |
|
$tempBox = new WorkingVolume($originalWidthLeft, $originalLengthLeft - $currentRowLength, $depthLeft, PHP_INT_MAX); |
210
|
30 |
|
$tempPacker = new VolumePacker($tempBox, clone $itemsToPack); |
211
|
30 |
|
$tempPacker->setSinglePassMode(true); |
212
|
30 |
|
$nextRowsPacked = $tempPacker->pack(); |
213
|
|
|
|
214
|
30 |
|
$itemsToPack->removePackedItems($nextRowsPacked->getPackedItems()); |
215
|
|
|
|
216
|
30 |
|
$packedCount = $nextItems->count() - $itemsToPack->count(); |
217
|
30 |
|
$this->logger->debug('Lookahead with orientation', ['packedCount' => $packedCount, 'orientatedItem' => $prevItem]); |
218
|
|
|
|
219
|
30 |
|
static::$lookaheadCache[$cacheKey] = $packedCount; |
220
|
|
|
} |
221
|
|
|
|
222
|
32 |
|
return static::$lookaheadCache[$cacheKey]; |
223
|
|
|
} |
224
|
|
|
|
225
|
39 |
|
private function exactFitDecider($dimensionALeft, $dimensionBLeft) |
226
|
|
|
{ |
227
|
39 |
|
if ($dimensionALeft === 0 && $dimensionBLeft > 0) { |
228
|
7 |
|
return -1; |
229
|
|
|
} |
230
|
|
|
|
231
|
37 |
|
if ($dimensionALeft > 0 && $dimensionBLeft === 0) { |
232
|
6 |
|
return 1; |
233
|
|
|
} |
234
|
|
|
|
235
|
36 |
|
return 0; |
236
|
|
|
} |
237
|
|
|
} |
238
|
|
|
|