pacman/lib/Pinky.cpp

67 lines
1.3 KiB
C++
Raw Normal View History

2021-07-28 13:28:36 +00:00
#include "Pinky.hpp"
namespace pacman {
Pinky::Pinky()
: Ghost(Atlas::Ghost::pinky) {
2021-07-28 15:01:22 +00:00
pos = initialPosition();
2021-07-28 13:28:36 +00:00
}
double Pinky::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 Pinky::setTarget(GridPosition pacManPos, Direction pacManDir) {
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 -= 4;
break;
case Direction::RIGHT:
targetPosition.x += 4;
break;
case Direction::UP:
targetPosition.y -= 4;
targetPosition.x -= 4;
break;
case Direction::DOWN:
targetPosition.y += 4;
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;
}
target = gridPositionToPosition(targetPosition);
2021-07-28 13:28:36 +00:00
}
Position Pinky::initialPosition() const {
return { 11.5, 14 };
}
Position Pinky::scatterTarget() const {
return { 3, -2 };
}
} // namespace pacman