From 3908dd75438de89ebec2b0737634faf23ce93884 Mon Sep 17 00:00:00 2001 From: HampusM Date: Wed, 16 Feb 2022 19:42:50 +0100 Subject: refactor: delete vector2 copy --- src/app/maze.tpp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'src/app') diff --git a/src/app/maze.tpp b/src/app/maze.tpp index 1ed69ac..f0098a1 100644 --- a/src/app/maze.tpp +++ b/src/app/maze.tpp @@ -4,6 +4,7 @@ #include "app/stack.hpp" +#include #include #include @@ -24,7 +25,7 @@ std::vector> get_neighbours(Matrix *matrix, if (pos->y() != 1U) { - auto pos_down = (*pos - Vector2({.x = 0U, .y = 2U})).copy(); + auto pos_down = std::make_shared(*pos - Vector2({.x = 0U, .y = 2U})); if (matrix->get(*pos_down) != space_element) { @@ -34,7 +35,7 @@ std::vector> get_neighbours(Matrix *matrix, if (pos->y() != matrix->rows() - 2U) { - auto pos_up = (*pos + Vector2({.x = 0U, .y = 2U})).copy(); + auto pos_up = std::make_shared(*pos + Vector2({.x = 0U, .y = 2U})); if (matrix->get(*pos_up) != space_element) { @@ -44,7 +45,7 @@ std::vector> get_neighbours(Matrix *matrix, if (pos->x() != 1U) { - auto pos_left = (*pos - Vector2({.x = 2U, .y = 0U})).copy(); + auto pos_left = std::make_shared(*pos - Vector2({.x = 2U, .y = 0U})); if (matrix->get(*pos_left) != space_element) { @@ -54,7 +55,7 @@ std::vector> get_neighbours(Matrix *matrix, if (pos->x() != matrix->columns() - 2U) { - auto pos_right = (*pos + Vector2({.x = 2U, .y = 0U})).copy(); + auto pos_right = std::make_shared(*pos + Vector2({.x = 2U, .y = 0U})); if (matrix->get(*pos_right) != space_element) { @@ -132,7 +133,7 @@ void matrix_to_maze(Matrix *matrix, std::shared_ptr start_pos, auto next_pos = neighbours[random_gen->in_range( 0U, static_cast(neighbours.size()) - 1U)]; - auto between_pos = pos->copy(); + auto between_pos = std::make_shared(*pos); if (next_pos->y() != pos->y()) { -- cgit v1.2.3-18-g5258