diff options
author | HampusM <hampus@hampusmat.com> | 2022-06-03 11:20:11 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-06-13 17:57:00 +0200 |
commit | 4f27cc4f86fb7265bc6ad78cdfbe5d858a92a56e (patch) | |
tree | b84a372897f8ba6f142780eae24830b9e5f15b6e | |
parent | 7a4391449c3f0aee04dba1e934fcdaafbbf7d60a (diff) |
feat: add deleting cells
-rw-r--r-- | src/game/game.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/game/game.cpp b/src/game/game.cpp index b623e64..8ea6571 100644 --- a/src/game/game.cpp +++ b/src/game/game.cpp @@ -121,6 +121,21 @@ void Game::on_update() noexcept break; } + case 'x': + { + const auto position = _cursor_controller->where(); + const auto matrix = _scene->get_matrix(); + + if (matrix->get(position) == ' ') + { + break; + } + + _set_space(matrix, position, ' '); + _living_cell_positions.remove(position); + break; + } + case 'p': { auto onoff = !_generation_tracker->get_is_paused(); |