2020-05-25 19:46:31 +02:00
|
|
|
<?php namespace MapGuesser\Controller;
|
|
|
|
|
2020-06-09 00:56:00 +02:00
|
|
|
use MapGuesser\Interfaces\Request\IRequest;
|
2020-05-25 19:46:31 +02:00
|
|
|
use MapGuesser\Util\Geo\Position;
|
2020-05-31 20:43:14 +02:00
|
|
|
use MapGuesser\Response\JsonContent;
|
|
|
|
use MapGuesser\Interfaces\Response\IContent;
|
2020-06-02 01:16:59 +02:00
|
|
|
use MapGuesser\Repository\PlaceRepository;
|
2020-05-25 19:46:31 +02:00
|
|
|
|
2020-06-05 00:59:23 +02:00
|
|
|
class GameFlowController
|
2020-05-25 19:46:31 +02:00
|
|
|
{
|
|
|
|
const NUMBER_OF_ROUNDS = 5;
|
|
|
|
const MAX_SCORE = 1000;
|
|
|
|
|
2020-06-09 00:56:00 +02:00
|
|
|
private IRequest $request;
|
|
|
|
|
2020-06-02 01:16:59 +02:00
|
|
|
private PlaceRepository $placeRepository;
|
|
|
|
|
2020-06-09 00:56:00 +02:00
|
|
|
public function __construct(IRequest $request)
|
2020-06-02 01:16:59 +02:00
|
|
|
{
|
2020-06-09 00:56:00 +02:00
|
|
|
$this->request = $request;
|
2020-06-02 01:16:59 +02:00
|
|
|
$this->placeRepository = new PlaceRepository();
|
|
|
|
}
|
|
|
|
|
2021-03-15 12:28:06 +01:00
|
|
|
public function getInitialData(): IContent
|
2020-05-30 15:33:28 +02:00
|
|
|
{
|
2020-06-09 00:56:00 +02:00
|
|
|
$mapId = (int) $this->request->query('mapId');
|
|
|
|
$session = $this->request->session();
|
2020-05-25 19:46:31 +02:00
|
|
|
|
2020-06-09 00:56:00 +02:00
|
|
|
if (!($state = $session->get('state')) || $state['mapId'] !== $mapId) {
|
2020-07-05 00:58:03 +02:00
|
|
|
return new JsonContent(['error' => 'no_session_found']);
|
2020-05-25 19:46:31 +02:00
|
|
|
}
|
|
|
|
|
2021-03-15 13:58:44 +01:00
|
|
|
if (!isset($state['currentRound']) || $state['currentRound'] == -1 || $state['currentRound'] >= static::NUMBER_OF_ROUNDS) {
|
|
|
|
$this->startNewGame($state, $mapId);
|
|
|
|
}
|
2020-06-20 00:03:49 +02:00
|
|
|
|
2021-03-15 13:58:44 +01:00
|
|
|
$response = [];
|
2020-05-25 19:46:31 +02:00
|
|
|
|
2021-03-15 13:58:44 +01:00
|
|
|
$last = $state['rounds'][$state['currentRound']];
|
|
|
|
$response['place'] = [
|
|
|
|
'panoId' => $last['panoId'],
|
|
|
|
'pov' => $last['pov']->toArray()
|
|
|
|
];
|
|
|
|
|
|
|
|
$response['history'] = [];
|
|
|
|
for ($i = 0; $i < $state['currentRound']; ++$i) {
|
|
|
|
$round = $state['rounds'][$i];
|
|
|
|
$response['history'][] = [
|
|
|
|
'position' => $round['position']->toArray(),
|
|
|
|
'guessPosition' => $round['guessPosition']->toArray(),
|
|
|
|
'distance' => $round['distance'],
|
|
|
|
'score' => $round['score']
|
2020-05-25 19:46:31 +02:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2021-03-15 13:58:44 +01:00
|
|
|
return new JsonContent($response);
|
2020-05-31 20:43:14 +02:00
|
|
|
}
|
|
|
|
|
2020-06-09 00:56:00 +02:00
|
|
|
public function evaluateGuess(): IContent
|
2020-05-31 20:43:14 +02:00
|
|
|
{
|
2020-06-09 00:56:00 +02:00
|
|
|
$mapId = (int) $this->request->query('mapId');
|
|
|
|
$session = $this->request->session();
|
2020-05-31 20:43:14 +02:00
|
|
|
|
2020-06-09 00:56:00 +02:00
|
|
|
if (!($state = $session->get('state')) || $state['mapId'] !== $mapId) {
|
2020-07-05 00:58:03 +02:00
|
|
|
return new JsonContent(['error' => 'no_session_found']);
|
2020-05-31 20:43:14 +02:00
|
|
|
}
|
|
|
|
|
2021-03-15 13:58:44 +01:00
|
|
|
$last = $state['rounds'][$state['currentRound']];
|
2020-05-31 20:43:14 +02:00
|
|
|
|
|
|
|
$position = $last['position'];
|
2020-06-09 00:56:00 +02:00
|
|
|
$guessPosition = new Position((float) $this->request->post('lat'), (float) $this->request->post('lng'));
|
2020-05-31 20:43:14 +02:00
|
|
|
|
|
|
|
$distance = $this->calculateDistance($position, $guessPosition);
|
2020-06-09 00:56:00 +02:00
|
|
|
$score = $this->calculateScore($distance, $state['area']);
|
2020-05-31 20:43:14 +02:00
|
|
|
|
2020-06-09 00:56:00 +02:00
|
|
|
$last['guessPosition'] = $guessPosition;
|
2020-05-31 20:43:14 +02:00
|
|
|
$last['distance'] = $distance;
|
|
|
|
$last['score'] = $score;
|
2021-03-15 13:58:44 +01:00
|
|
|
|
|
|
|
$state['rounds'][$state['currentRound']] = $last;
|
|
|
|
$state['currentRound'] += 1;
|
2020-05-31 20:43:14 +02:00
|
|
|
|
2021-03-15 12:28:06 +01:00
|
|
|
$response = [
|
|
|
|
'result' => [
|
|
|
|
'position' => $position->toArray(),
|
|
|
|
'distance' => $distance,
|
|
|
|
'score' => $score
|
|
|
|
]
|
|
|
|
];
|
2020-05-31 20:43:14 +02:00
|
|
|
|
2021-03-15 13:58:44 +01:00
|
|
|
if ($state['currentRound'] < static::NUMBER_OF_ROUNDS) {
|
|
|
|
$next = $state['rounds'][$state['currentRound']];
|
2020-06-20 00:03:49 +02:00
|
|
|
|
2021-03-15 13:58:44 +01:00
|
|
|
$response['place'] = [
|
|
|
|
'panoId' => $next['panoId'],
|
|
|
|
'pov' => $next['pov']->toArray()
|
2021-03-15 12:28:06 +01:00
|
|
|
];
|
2020-05-31 20:43:14 +02:00
|
|
|
}
|
|
|
|
|
2020-06-20 00:03:49 +02:00
|
|
|
$session->set('state', $state);
|
|
|
|
|
2021-03-15 12:28:06 +01:00
|
|
|
return new JsonContent($response);
|
2020-05-25 19:46:31 +02:00
|
|
|
}
|
|
|
|
|
2021-03-15 13:58:44 +01:00
|
|
|
private function startNewGame(array &$state, int $mapId)
|
2020-06-20 00:03:49 +02:00
|
|
|
{
|
2021-03-15 13:58:44 +01:00
|
|
|
$places = $this->placeRepository->getRandomNForMapWithValidPano($mapId, static::NUMBER_OF_ROUNDS);
|
|
|
|
|
|
|
|
$state['rounds'] = [];
|
|
|
|
$state['currentRound'] = 0;
|
|
|
|
|
|
|
|
foreach ($places as $place) {
|
|
|
|
$state['rounds'][] = [
|
|
|
|
'placeId' => $place->getId(),
|
|
|
|
'position' => $place->getPosition(),
|
|
|
|
'panoId' => $place->getPanoIdCached(),
|
|
|
|
'pov' => $place->getPov()
|
|
|
|
];
|
|
|
|
}
|
2021-03-15 12:28:06 +01:00
|
|
|
|
2021-03-15 13:58:44 +01:00
|
|
|
$this->request->session()->set('state', $state);
|
2020-06-20 00:03:49 +02:00
|
|
|
}
|
|
|
|
|
2020-05-25 19:46:31 +02:00
|
|
|
private function calculateDistance(Position $realPosition, Position $guessPosition): float
|
|
|
|
{
|
|
|
|
return $realPosition->calculateDistanceTo($guessPosition);
|
|
|
|
}
|
|
|
|
|
2020-05-28 21:05:55 +02:00
|
|
|
private function calculateScore(float $distance, float $area): int
|
2020-05-25 19:46:31 +02:00
|
|
|
{
|
2020-06-12 21:55:04 +02:00
|
|
|
$goodness = 1.0 - ($distance / (sqrt($area) * 1000));
|
2020-05-25 19:46:31 +02:00
|
|
|
|
2020-05-28 21:05:55 +02:00
|
|
|
return (int) round(pow(static::MAX_SCORE, $goodness));
|
2020-05-25 19:46:31 +02:00
|
|
|
}
|
|
|
|
}
|