Files
core/src/Console/Command/Scene/SceneDisconnectCommand.php
T
2021-02-16 22:13:52 +01:00

92 lines
2.8 KiB
PHP

<?php
declare(strict_types=1);
namespace LotGD\Core\Console\Command\Scene;
use Exception;
use LotGD\Core\Models\Scene;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputDefinition;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Style\SymfonyStyle;
/**
* Resets the viewpoint of a given character.
*/
class SceneDisconnectCommand extends SceneBaseCommand
{
/**
* @inheritDoc
*/
protected function configure()
{
$this->setName($this->namespaced("disconnect"))
->setDescription("Disconnects two scenes.")
->setDefinition(
new InputDefinition([
new InputArgument(
"scene1",
mode: InputArgument::REQUIRED,
description: "One scene ID",
),
new InputArgument(
"scene2",
mode: InputArgument::REQUIRED,
description: "The other scene ID",
),
])
)
;
}
/**
* @inheritDoc
*/
protected function execute(InputInterface $input, OutputInterface $output): int
{
$em = $this->game->getEntityManager();
$logger = $this->getCliLogger();
$sceneRepository = $em->getRepository(Scene::class);
$io = new SymfonyStyle($input, $output);
/** @var Scene $scene1 */
$scene1 = $sceneRepository->find($input->getArgument("scene1"));
/** @var Scene $scene2 */
$scene2 = $sceneRepository->find($input->getArgument("scene2"));
if (!$scene1) {
$io->error("Scene with id {$input->getArgument('scene1')} was not found.");
return Command::FAILURE;
}
if (!$scene2) {
$io->error("Scene with id {$input->getArgument('scene2')} was not found.");
return Command::FAILURE;
}
$connection = $scene1->getConnectionTo($scene2);
if (!$connection) {
$io->error("The given scenes do not share a connection.");
return Command::FAILURE;
}
try {
// Commit changes
$em->remove($connection);
$em->flush();
} catch (Exception $e) {
$io->error("An unknown error occurred: {$e->getMessage()}");
return Command::FAILURE;
}
$io->success("The connections between the two given scenes was removed.");
$logger->info("Disconnected {$connection->getOutgoingScene()} and {$connection->getIncomingScene()}.");
return Command::SUCCESS;
}
}