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