pacman/lib/SuperPellets.cpp

18 lines
402 B
C++
Raw Normal View History

#include "SuperPellets.hpp"
2021-06-16 13:31:42 +00:00
#include <algorithm>
2021-07-05 12:10:01 +00:00
namespace pacman {
SuperPellets::SuperPellets(const Board & board)
: positions(board.initialSuperPelletPositions()) {}
2021-06-16 11:59:16 +00:00
2021-07-05 11:54:54 +00:00
bool SuperPellets::eatPelletAtPosition(GridPosition p) {
2021-06-16 11:59:16 +00:00
auto it = std::find(positions.begin(), positions.end(), p);
if (it == positions.end())
return false;
positions.erase(it);
return true;
}
2021-07-05 12:10:01 +00:00
} // namespace pacman