pacman/lib/Inky.cpp

75 lines
1.8 KiB
C++
Raw Normal View History

2021-07-28 13:28:36 +00:00
#include "Inky.hpp"
namespace pacman {
Inky::Inky()
: Ghost(Atlas::Ghost::inky) {
2021-07-28 15:01:22 +00:00
pos = initialPosition();
2021-07-28 13:28:36 +00:00
}
double Inky::speed() const {
2021-07-28 13:28:36 +00:00
if (state == State::Eyes)
return 2;
if (state == State::Frightened)
return 0.5;
return 0.75;
}
void Inky::setTarget(GridPosition pacManPos, Direction pacManDir, GridPosition blinkyPos) {
if (state == State::Eyes) {
target = initialPosition();
return;
}
2021-07-28 13:28:36 +00:00
if (isInPen()) {
target = penDoorPosition();
return;
}
2021-07-28 13:28:36 +00:00
if (state == State::Scatter) {
target = scatterTarget();
return;
}
2021-07-29 09:16:08 +00:00
// Inky first selects a position 2 cell away from pacman in his direction.
GridPosition targetPosition = pacManPos;
switch (pacManDir) {
2021-07-29 09:16:08 +00:00
case Direction::LEFT:
targetPosition.x -= 2;
break;
case Direction::RIGHT:
targetPosition.x += 2;
break;
case Direction::UP:
targetPosition.y -= 2;
targetPosition.x -= 2;
break;
case Direction::DOWN:
targetPosition.y += 2;
break;
case Direction::NONE:
2021-09-10 13:49:33 +00:00
assert(false && "Pacman should be moving");
2021-07-29 09:16:08 +00:00
break;
}
// Then it calculates the distance between Blinky and this position
const double distanceBetweenBlinkyAndTarget = std::hypot(blinkyPos.x - targetPosition.x, blinkyPos.y - targetPosition.y);
2021-07-29 09:16:08 +00:00
// And selects a point on the line crossing blinky and
// this position that is at twice that distance away from blinky
targetPosition.x += std::size_t((double(targetPosition.x) - double(blinkyPos.x)) / distanceBetweenBlinkyAndTarget) * 2;
targetPosition.y += std::size_t((double(targetPosition.y) - double(blinkyPos.y)) / distanceBetweenBlinkyAndTarget) * 2;
2021-07-29 09:16:08 +00:00
target = gridPositionToPosition(targetPosition);
2021-07-28 13:28:36 +00:00
}
Position Inky::initialPosition() const {
return { 13.5, 14 };
}
Position Inky::scatterTarget() const {
return { 27, 30 };
}
} // namespace pacman