Total Complexity | 11 |
Total Lines | 150 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 3 | ||
Bugs | 3 | Features | 0 |
1 | <?php |
||
15 | class PackedItem |
||
16 | { |
||
17 | /** |
||
18 | * @var int |
||
19 | */ |
||
20 | protected $x; |
||
21 | |||
22 | /** |
||
23 | * @var int |
||
24 | */ |
||
25 | protected $y; |
||
26 | |||
27 | /** |
||
28 | * @var int |
||
29 | */ |
||
30 | protected $z; |
||
31 | |||
32 | /** |
||
33 | * @var Item |
||
34 | */ |
||
35 | protected $item; |
||
36 | |||
37 | /** |
||
38 | * @var int |
||
39 | */ |
||
40 | protected $width; |
||
41 | |||
42 | /** |
||
43 | * @var int |
||
44 | */ |
||
45 | protected $length; |
||
46 | |||
47 | /** |
||
48 | * @var int |
||
49 | */ |
||
50 | protected $depth; |
||
51 | |||
52 | /** |
||
53 | * PackedItem constructor. |
||
54 | * |
||
55 | * @param Item $item |
||
56 | * @param int $x |
||
57 | * @param int $y |
||
58 | * @param int $z |
||
59 | * @param int $width |
||
60 | * @param int $length |
||
61 | * @param int $depth |
||
62 | */ |
||
63 | 20 | public function __construct(Item $item, $x, $y, $z, $width, $length, $depth) |
|
64 | { |
||
65 | 20 | $this->item = $item; |
|
66 | 20 | $this->x = $x; |
|
67 | 20 | $this->y = $y; |
|
68 | 20 | $this->z = $z; |
|
69 | 20 | $this->width = $width; |
|
70 | 20 | $this->length = $length; |
|
71 | 20 | $this->depth = $depth; |
|
72 | 20 | } |
|
73 | |||
74 | /** |
||
75 | * @return int |
||
76 | */ |
||
77 | 19 | public function getX() |
|
78 | { |
||
79 | 19 | return $this->x; |
|
80 | } |
||
81 | |||
82 | /** |
||
83 | * @return int |
||
84 | */ |
||
85 | 19 | public function getY() |
|
86 | { |
||
87 | 19 | return $this->y; |
|
88 | } |
||
89 | |||
90 | /** |
||
91 | * @return int |
||
92 | */ |
||
93 | 19 | public function getZ() |
|
96 | } |
||
97 | |||
98 | /** |
||
99 | * @return Item |
||
100 | */ |
||
101 | 19 | public function getItem() |
|
104 | } |
||
105 | |||
106 | /** |
||
107 | * @return int |
||
108 | */ |
||
109 | 19 | public function getWidth() |
|
110 | { |
||
111 | 19 | return $this->width; |
|
112 | } |
||
113 | |||
114 | /** |
||
115 | * @return int |
||
116 | */ |
||
117 | 19 | public function getLength() |
|
120 | } |
||
121 | |||
122 | /** |
||
123 | * @return int |
||
124 | */ |
||
125 | 19 | public function getDepth() |
|
128 | } |
||
129 | |||
130 | /** |
||
131 | * @return int |
||
132 | */ |
||
133 | 1 | public function getVolume() |
|
134 | { |
||
135 | 1 | return $this->width * $this->length * $this->depth; |
|
136 | } |
||
137 | |||
138 | /** |
||
139 | * @param OrientatedItem $orientatedItem |
||
140 | * @param int $x |
||
141 | * @param int $y |
||
142 | * @param int $z |
||
143 | * |
||
144 | * @return PackedItem |
||
145 | */ |
||
146 | 19 | public static function fromOrientatedItem(OrientatedItem $orientatedItem, $x, $y, $z) |
|
156 | ); |
||
157 | } |
||
158 | |||
159 | /** |
||
160 | * @return OrientatedItem |
||
161 | */ |
||
162 | 18 | public function toOrientatedItem() |
|
165 | } |
||
166 | } |
||
167 |