2021-06-24 11:32:52 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <chrono>
|
|
|
|
|
|
|
|
#include "Atlas.hpp"
|
|
|
|
#include "Board.hpp"
|
|
|
|
#include "Position.hpp"
|
|
|
|
|
2021-07-05 12:10:01 +00:00
|
|
|
namespace pacman {
|
|
|
|
|
2021-08-02 13:28:07 +00:00
|
|
|
struct GameState;
|
2021-07-28 13:28:36 +00:00
|
|
|
|
2021-06-24 11:32:52 +00:00
|
|
|
class Ghost {
|
|
|
|
public:
|
|
|
|
enum class State {
|
|
|
|
Chase,
|
|
|
|
Scatter,
|
2021-06-28 10:42:21 +00:00
|
|
|
Frightened,
|
2021-06-24 11:32:52 +00:00
|
|
|
Eyes,
|
|
|
|
};
|
|
|
|
|
2021-07-28 17:06:35 +00:00
|
|
|
explicit Ghost(Atlas::Ghost spriteSet);
|
2021-07-28 14:20:19 +00:00
|
|
|
virtual ~Ghost() = default;
|
2021-06-24 11:32:52 +00:00
|
|
|
|
2021-08-02 13:31:32 +00:00
|
|
|
GridPosition currentSprite() const;
|
|
|
|
Position position() const;
|
|
|
|
GridPosition positionInGrid() const;
|
2021-09-22 12:15:33 +00:00
|
|
|
Direction currentDirection() const;
|
2021-06-24 11:32:52 +00:00
|
|
|
|
2021-09-23 12:57:53 +00:00
|
|
|
void update(std::chrono::milliseconds time_delta);
|
2021-06-28 10:42:21 +00:00
|
|
|
void frighten();
|
2021-07-13 12:26:57 +00:00
|
|
|
void die();
|
2021-08-02 13:31:32 +00:00
|
|
|
bool isFrightened() const;
|
|
|
|
bool isEyes() const;
|
2021-06-28 10:42:21 +00:00
|
|
|
void reset();
|
2021-06-24 11:32:52 +00:00
|
|
|
|
2021-06-25 09:06:50 +00:00
|
|
|
private:
|
|
|
|
void updateAnimation(std::chrono::milliseconds time_delta);
|
2021-09-23 12:57:53 +00:00
|
|
|
void updatePosition(std::chrono::milliseconds time_delta);
|
|
|
|
void updateDirection();
|
2021-06-25 09:06:50 +00:00
|
|
|
|
2021-06-24 11:32:52 +00:00
|
|
|
protected:
|
2021-07-28 17:06:35 +00:00
|
|
|
Atlas::Ghost spriteSet;
|
2021-09-22 12:15:33 +00:00
|
|
|
Direction direction = Direction::NONE;
|
2021-06-28 10:42:21 +00:00
|
|
|
double timeForAnimation = 0;
|
2021-09-10 12:44:40 +00:00
|
|
|
std::size_t animationIndex = 0;
|
2021-06-24 11:32:52 +00:00
|
|
|
State state = State::Chase;
|
2021-07-29 09:16:08 +00:00
|
|
|
std::chrono::milliseconds timeFrighten = {};
|
|
|
|
std::chrono::milliseconds timeChase = {};
|
2021-06-24 11:32:52 +00:00
|
|
|
Position pos;
|
2021-09-23 12:57:53 +00:00
|
|
|
Position target;
|
2021-07-06 10:35:23 +00:00
|
|
|
GridPosition last_grid_position = { 0, 0 };
|
2021-09-08 12:49:43 +00:00
|
|
|
|
|
|
|
State defaultStateAtDuration(std::chrono::seconds seconds);
|
|
|
|
|
2021-09-23 12:57:53 +00:00
|
|
|
virtual double speed() const = 0;
|
2021-09-08 12:49:43 +00:00
|
|
|
virtual Position initialPosition() const = 0;
|
|
|
|
|
2021-08-02 13:31:32 +00:00
|
|
|
bool isInPen() const;
|
2021-06-24 11:32:52 +00:00
|
|
|
};
|
|
|
|
|
2021-07-05 12:10:01 +00:00
|
|
|
} // namespace pacman
|