pacman/lib/Game.hpp

32 lines
448 B
C++
Raw Normal View History

2021-06-10 12:42:51 +00:00
#pragma once
2020-11-27 13:10:09 +00:00
2021-06-24 08:32:54 +00:00
#include "Score.hpp"
#include "Board.hpp"
#include "Canvas.hpp"
#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:
Canvas canvas;
2020-11-27 13:10:09 +00:00
Board board;
PacMan pacMan;
Pellets pellets;
SuperPellets superPellets;
2021-06-24 08:32:54 +00:00
Score score;
2020-11-27 13:10:09 +00:00
2021-06-16 11:59:16 +00:00
void eatPellets();
void processEvents(InputState & inputState);
2020-11-27 16:16:42 +00:00
[[nodiscard]] static auto now();
2020-11-27 13:10:09 +00:00
};