2021-06-10 12:42:51 +00:00
|
|
|
#pragma once
|
2020-11-27 13:10:09 +00:00
|
|
|
|
2020-11-28 13:10:25 +00:00
|
|
|
#include "Board.hpp"
|
2021-06-16 10:52:04 +00:00
|
|
|
#include "Canvas.hpp"
|
2020-11-28 13:10:25 +00:00
|
|
|
#include "PacMan.hpp"
|
|
|
|
#include "Pellets.hpp"
|
|
|
|
#include "SuperPellets.hpp"
|
|
|
|
|
|
|
|
class InputState;
|
2020-11-27 13:10:09 +00:00
|
|
|
|
|
|
|
class Game {
|
|
|
|
public:
|
|
|
|
Game();
|
2020-11-27 16:16:42 +00:00
|
|
|
|
2020-11-27 13:10:09 +00:00
|
|
|
void run();
|
|
|
|
|
|
|
|
private:
|
2021-06-16 10:52:04 +00:00
|
|
|
Canvas canvas;
|
2020-11-27 13:10:09 +00:00
|
|
|
Board board;
|
2020-11-28 13:10:25 +00:00
|
|
|
PacMan pacMan;
|
|
|
|
Pellets pellets;
|
|
|
|
SuperPellets superPellets;
|
2020-11-27 13:10:09 +00:00
|
|
|
|
2021-06-16 11:59:16 +00:00
|
|
|
void eatPellets();
|
|
|
|
|
2021-06-20 16:52:34 +00:00
|
|
|
void processEvents(InputState & inputState);
|
2020-11-27 16:16:42 +00:00
|
|
|
|
|
|
|
[[nodiscard]] static auto now();
|
2020-11-27 13:10:09 +00:00
|
|
|
};
|