forked from dvdoug/BoxPacker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PackedBox.php
144 lines (123 loc) · 2.9 KB
/
PackedBox.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<?php
/**
* Box packing (3D bin packing, knapsack problem)
* @package BoxPacker
* @author Doug Wright
*/
namespace DVDoug\BoxPacker;
/**
* A "box" with items
* @author Doug Wright
* @package BoxPacker
*/
class PackedBox {
/**
* Box used
* @var Box
*/
protected $box;
/**
* Items in the box
* @var ItemList
*/
protected $items;
/**
* Total weight of box
* @var int
*/
protected $weight;
/**
* Remaining width inside box for another item
* @var int
*/
protected $remainingWidth;
/**
* Remaining length inside box for another item
* @var int
*/
protected $remainingLength;
/**
* Remaining depth inside box for another item
* @var int
*/
protected $remainingDepth;
/**
* Remaining weight inside box for another item
* @var int
*/
protected $remainingWeight;
/**
* Get box used
* @return Box
*/
public function getBox() {
return $this->box;
}
/**
* Get items packed
* @return ItemList
*/
public function getItems() {
return $this->items;
}
/**
* Get packed weight
* @return int weight in grams
*/
public function getWeight() {
if (!is_null($this->weight)) {
return $this->weight;
}
$this->weight = $this->box->getEmptyWeight();
$items = clone $this->items;
foreach ($items as $item) {
$this->weight += $item->getWeight();
}
return $this->weight;
}
/**
* Get remaining width inside box for another item
* @return int
*/
public function getRemainingWidth() {
return $this->remainingWidth;
}
/**
* Get remaining length inside box for another item
* @return int
*/
public function getRemainingLength() {
return $this->remainingLength;
}
/**
* Get remaining depth inside box for another item
* @return int
*/
public function getRemainingDepth() {
return $this->remainingDepth;
}
/**
* Get remaining weight inside box for another item
* @return int
*/
public function getRemainingWeight() {
return $this->remainingWeight;
}
/**
* Constructor
* @param Box $aBox
* @param ItemList $aItemList
* @param int $aRemainingWidth
* @param int $aRemainingLength
* @param int $aRemainingDepth
* @param int $aRemainingWeight
*/
public function __construct(Box $aBox, ItemList $aItemList, $aRemainingWidth, $aRemainingLength, $aRemainingDepth, $aRemainingWeight) {
$this->box = $aBox;
$this->items = $aItemList;
$this->remainingWidth = $aRemainingWidth;
$this->remainingLength = $aRemainingLength;
$this->remainingDepth = $aRemainingDepth;
$this->remainingWeight = $aRemainingWeight;
}
}