1 | <?php |
||
14 | class PackedBox |
||
15 | { |
||
16 | |||
17 | /** |
||
18 | * Box used |
||
19 | * @var Box |
||
20 | */ |
||
21 | protected $box; |
||
22 | |||
23 | /** |
||
24 | * Items in the box |
||
25 | * @var ItemList |
||
26 | */ |
||
27 | protected $items; |
||
28 | |||
29 | /** |
||
30 | * Total weight of box |
||
31 | * @var int |
||
32 | */ |
||
33 | protected $weight; |
||
34 | |||
35 | /** |
||
36 | * Remaining width inside box for another item |
||
37 | * @var int |
||
38 | */ |
||
39 | protected $remainingWidth; |
||
40 | |||
41 | /** |
||
42 | * Remaining length inside box for another item |
||
43 | * @var int |
||
44 | */ |
||
45 | protected $remainingLength; |
||
46 | |||
47 | /** |
||
48 | * Remaining depth inside box for another item |
||
49 | * @var int |
||
50 | */ |
||
51 | protected $remainingDepth; |
||
52 | |||
53 | /** |
||
54 | * Remaining weight inside box for another item |
||
55 | * @var int |
||
56 | */ |
||
57 | protected $remainingWeight; |
||
58 | |||
59 | /** |
||
60 | * Used width inside box for packing items |
||
61 | * @var int |
||
62 | */ |
||
63 | protected $usedWidth; |
||
64 | |||
65 | /** |
||
66 | * Used length inside box for packing items |
||
67 | * @var int |
||
68 | */ |
||
69 | protected $usedLength; |
||
70 | |||
71 | /** |
||
72 | * Used depth inside box for packing items |
||
73 | * @var int |
||
74 | */ |
||
75 | protected $usedDepth; |
||
76 | |||
77 | /** |
||
78 | * Get box used |
||
79 | * @return Box |
||
80 | */ |
||
81 | 6 | public function getBox() |
|
85 | |||
86 | /** |
||
87 | * Get items packed |
||
88 | * @return ItemList |
||
89 | */ |
||
90 | 35 | public function getItems() |
|
94 | |||
95 | /** |
||
96 | * Get packed weight |
||
97 | * @return int weight in grams |
||
98 | */ |
||
99 | 8 | public function getWeight() |
|
100 | { |
||
101 | 8 | if (!is_null($this->weight)) { |
|
102 | 6 | return $this->weight; |
|
103 | } |
||
104 | |||
105 | 8 | $this->weight = $this->box->getEmptyWeight(); |
|
106 | 8 | $items = clone $this->items; |
|
107 | 8 | foreach ($items as $item) { |
|
108 | 8 | $this->weight += $item->getWeight(); |
|
109 | } |
||
110 | 8 | return $this->weight; |
|
111 | } |
||
112 | |||
113 | /** |
||
114 | * Get remaining width inside box for another item |
||
115 | * @return int |
||
116 | */ |
||
117 | 1 | public function getRemainingWidth() |
|
118 | { |
||
119 | 1 | return $this->remainingWidth; |
|
120 | } |
||
121 | |||
122 | /** |
||
123 | * Get remaining length inside box for another item |
||
124 | * @return int |
||
125 | */ |
||
126 | 1 | public function getRemainingLength() |
|
127 | { |
||
128 | 1 | return $this->remainingLength; |
|
129 | } |
||
130 | |||
131 | /** |
||
132 | * Get remaining depth inside box for another item |
||
133 | * @return int |
||
134 | */ |
||
135 | 1 | public function getRemainingDepth() |
|
136 | { |
||
137 | 1 | return $this->remainingDepth; |
|
138 | } |
||
139 | |||
140 | /** |
||
141 | * Used width inside box for packing items |
||
142 | * @return int |
||
143 | */ |
||
144 | 4 | public function getUsedWidth() |
|
145 | { |
||
146 | 4 | return $this->usedWidth; |
|
147 | } |
||
148 | |||
149 | /** |
||
150 | * Used length inside box for packing items |
||
151 | * @return int |
||
152 | */ |
||
153 | 4 | public function getUsedLength() |
|
154 | { |
||
155 | 4 | return $this->usedLength; |
|
156 | } |
||
157 | |||
158 | /** |
||
159 | * Used depth inside box for packing items |
||
160 | * @return int |
||
161 | */ |
||
162 | 4 | public function getUsedDepth() |
|
163 | { |
||
164 | 4 | return $this->usedDepth; |
|
165 | } |
||
166 | |||
167 | /** |
||
168 | * Get remaining weight inside box for another item |
||
169 | * @return int |
||
170 | */ |
||
171 | 1 | public function getRemainingWeight() |
|
172 | { |
||
173 | 1 | return $this->remainingWeight; |
|
174 | } |
||
175 | |||
176 | /** |
||
177 | * Get volume utilisation of the packed box |
||
178 | * @return float |
||
179 | */ |
||
180 | 1 | public function getVolumeUtilisation() |
|
181 | { |
||
182 | 1 | $itemVolume = 0; |
|
183 | |||
184 | /** @var Item $item */ |
||
185 | 1 | foreach (clone $this->items as $item) { |
|
186 | 1 | $itemVolume += $item->getVolume(); |
|
187 | } |
||
188 | |||
189 | 1 | return round($itemVolume / $this->box->getInnerVolume() * 100, 1); |
|
190 | } |
||
191 | |||
192 | |||
193 | /** |
||
194 | * Legacy constructor |
||
195 | * @deprecated |
||
196 | * |
||
197 | * @param Box $box |
||
198 | * @param ItemList $itemList |
||
199 | * @param int $remainingWidth |
||
200 | * @param int $remainingLength |
||
201 | * @param int $remainingDepth |
||
202 | * @param int $remainingWeight |
||
203 | * @param int $usedWidth |
||
204 | * @param int $usedLength |
||
205 | * @param int $usedDepth |
||
206 | */ |
||
207 | 38 | public function __construct( |
|
229 | |||
230 | /** |
||
231 | * The constructor from v3 |
||
232 | * @param Box $box |
||
233 | * @param PackedItemList $packedItems |
||
234 | */ |
||
235 | 34 | public static function fromPackedItemList(Box $box, PackedItemList $packedItems) |
|
236 | { |
||
237 | 34 | $maxWidth = $maxLength = $maxDepth = $weight = 0; |
|
238 | /** @var PackedItem $item */ |
||
260 | } |
||
261 |