|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
declare(strict_types=1); |
|
4
|
|
|
|
|
5
|
|
|
namespace Stu\Component\Colony; |
|
6
|
|
|
|
|
7
|
|
|
use RuntimeException; |
|
8
|
|
|
use Stu\Module\Control\StuRandom; |
|
9
|
|
|
use Stu\Orm\Entity\ColonyInterface; |
|
10
|
|
|
use Stu\Orm\Entity\StarSystemMapInterface; |
|
11
|
|
|
use Stu\Orm\Repository\ColonyRepositoryInterface; |
|
12
|
|
|
use Stu\Orm\Repository\UserRepositoryInterface; |
|
13
|
|
|
|
|
14
|
|
|
//TODO unit tests |
|
15
|
|
|
final class ColonyCreation implements ColonyCreationInterface |
|
16
|
|
|
{ |
|
17
|
|
|
private ColonyRepositoryInterface $colonyRepository; |
|
18
|
|
|
|
|
19
|
|
|
private UserRepositoryInterface $userRepository; |
|
20
|
|
|
|
|
21
|
|
|
private StuRandom $stuRandom; |
|
22
|
|
|
|
|
23
|
|
|
public function __construct( |
|
24
|
|
|
ColonyRepositoryInterface $colonyRepository, |
|
25
|
|
|
UserRepositoryInterface $userRepository, |
|
26
|
|
|
StuRandom $stuRandom |
|
27
|
|
|
) { |
|
28
|
|
|
$this->colonyRepository = $colonyRepository; |
|
29
|
|
|
$this->userRepository = $userRepository; |
|
30
|
|
|
$this->stuRandom = $stuRandom; |
|
31
|
|
|
} |
|
32
|
|
|
|
|
33
|
|
|
public function create(StarSystemMapInterface $systemMap, string $name): ColonyInterface |
|
34
|
|
|
{ |
|
35
|
|
|
$colonyClass = $systemMap->getFieldType()->getColonyClass(); |
|
36
|
|
|
if ($colonyClass === null) { |
|
37
|
|
|
throw new RuntimeException('colony class can not be null'); |
|
38
|
|
|
} |
|
39
|
|
|
|
|
40
|
|
|
$colony = $this->colonyRepository->prototype(); |
|
41
|
|
|
|
|
42
|
|
|
$colony->setColonyClass($colonyClass); |
|
43
|
|
|
$colony->setUser($this->userRepository->getFallbackUser()); |
|
44
|
|
|
$colony->setStarsystemMap($systemMap); |
|
45
|
|
|
$colony->setPlanetName($name); |
|
46
|
|
|
$colony->setRotationFactor($this->stuRandom->rand( |
|
47
|
|
|
$colonyClass->getMinRotation(), |
|
48
|
|
|
$colonyClass->getMaxRotation(), |
|
49
|
|
|
true |
|
50
|
|
|
)); |
|
51
|
|
|
|
|
52
|
|
|
$this->colonyRepository->save($colony); |
|
53
|
|
|
|
|
54
|
|
|
return $colony; |
|
55
|
|
|
} |
|
56
|
|
|
} |
|
57
|
|
|
|