|
1
|
|
|
<?php |
|
2
|
|
|
/** |
|
3
|
|
|
* Box packing (3D bin packing, knapsack problem). |
|
4
|
|
|
* |
|
5
|
|
|
* @author Doug Wright |
|
6
|
|
|
*/ |
|
7
|
|
|
declare(strict_types=1); |
|
8
|
|
|
|
|
9
|
|
|
namespace DVDoug\BoxPacker; |
|
10
|
|
|
|
|
11
|
|
|
use JsonSerializable; |
|
12
|
|
|
|
|
13
|
|
|
use function is_iterable; |
|
14
|
|
|
|
|
15
|
|
|
/** |
|
16
|
|
|
* A packed item. |
|
17
|
|
|
*/ |
|
18
|
|
|
class PackedItem implements JsonSerializable |
|
19
|
|
|
{ |
|
20
|
99 |
|
public readonly int $volume; |
|
21
|
|
|
|
|
22
|
|
|
public function __construct( |
|
23
|
|
|
public readonly Item $item, |
|
24
|
|
|
public readonly int $x, |
|
25
|
|
|
public readonly int $y, |
|
26
|
|
|
public readonly int $z, |
|
27
|
|
|
public readonly int $width, |
|
28
|
|
|
public readonly int $length, |
|
29
|
99 |
|
public readonly int $depth |
|
30
|
|
|
) { |
|
31
|
95 |
|
} |
|
32
|
|
|
|
|
33
|
95 |
|
public static function fromOrientatedItem(OrientatedItem $orientatedItem, int $x, int $y, int $z): self |
|
34
|
|
|
{ |
|
35
|
|
|
return new self( |
|
36
|
95 |
|
$orientatedItem->item, |
|
37
|
|
|
$x, |
|
38
|
95 |
|
$y, |
|
39
|
|
|
$z, |
|
40
|
|
|
$orientatedItem->width, |
|
41
|
95 |
|
$orientatedItem->length, |
|
42
|
|
|
$orientatedItem->depth, |
|
43
|
95 |
|
); |
|
44
|
|
|
} |
|
45
|
|
|
|
|
46
|
95 |
|
public function jsonSerialize(): array |
|
47
|
|
|
{ |
|
48
|
95 |
|
$userValues = []; |
|
49
|
|
|
|
|
50
|
|
|
if ($this->item instanceof JsonSerializable) { |
|
51
|
95 |
|
$userSerialisation = $this->item->jsonSerialize(); |
|
|
|
|
|
|
52
|
|
|
if (is_iterable($userSerialisation)) { |
|
53
|
95 |
|
$userValues = $userSerialisation; |
|
54
|
|
|
} else { |
|
55
|
|
|
$userValues = ['extra' => $userSerialisation]; |
|
56
|
95 |
|
} |
|
57
|
|
|
} |
|
58
|
95 |
|
|
|
59
|
|
|
return [ |
|
60
|
|
|
'x' => $this->x, |
|
61
|
95 |
|
'y' => $this->y, |
|
62
|
|
|
'z' => $this->z, |
|
63
|
95 |
|
'width' => $this->width, |
|
64
|
|
|
'length' => $this->length, |
|
65
|
|
|
'depth' => $this->depth, |
|
66
|
95 |
|
'item' => [ |
|
67
|
|
|
...$userValues, |
|
68
|
95 |
|
'description' => $this->item->getDescription(), |
|
69
|
|
|
'width' => $this->item->getWidth(), |
|
70
|
|
|
'length' => $this->item->getLength(), |
|
71
|
94 |
|
'depth' => $this->item->getDepth(), |
|
72
|
|
|
'allowedRotation' => $this->item->getAllowedRotation(), |
|
73
|
94 |
|
], |
|
74
|
94 |
|
]; |
|
75
|
94 |
|
} |
|
76
|
|
|
} |
|
77
|
|
|
|