From 5c1c672e018e41e5c87a0263a851684a52d9c1fb Mon Sep 17 00:00:00 2001 From: HampusM Date: Sun, 27 Mar 2022 19:21:22 +0200 Subject: refactor: replace string matrix with template matrix --- src/engine/graphics/matrix.tpp | 156 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 156 insertions(+) create mode 100644 src/engine/graphics/matrix.tpp (limited to 'src/engine/graphics/matrix.tpp') diff --git a/src/engine/graphics/matrix.tpp b/src/engine/graphics/matrix.tpp new file mode 100644 index 0000000..e0e65bb --- /dev/null +++ b/src/engine/graphics/matrix.tpp @@ -0,0 +1,156 @@ +#pragma once + +#include "matrix.hpp" + +template +Matrix::Matrix(const Bounds &bounds) noexcept + : _matrix(new Element *[bounds.get_height()]), + _row_cnt(bounds.get_height()), + _column_cnt(bounds.get_width()) +{ + for (gsl::owner row = _matrix; row != _matrix + _row_cnt; row++) + { + *row = static_cast>(new Element[bounds.get_width()]); + } +}; + +template +Matrix::Matrix(const Matrix &matrix) noexcept + : _matrix(new Element *[matrix._row_cnt]), + _row_cnt(matrix._row_cnt), + _column_cnt(matrix._column_cnt) +{ + _copy_matrix_from(matrix); +} + +template +Matrix::Matrix(Matrix &&matrix) noexcept + : _matrix(matrix._matrix), _row_cnt(matrix._row_cnt), _column_cnt(matrix._column_cnt) +{ + matrix._matrix = nullptr; +} + +template +Matrix::~Matrix() noexcept +{ + _delete_matrix(); +} + +template +void Matrix::fill(Element element) noexcept +{ + for (auto row : *this) + { + for (auto &col : row) + { + col = element; + } + } +} + +template +Element Matrix::get(const Vector2 &pos) const noexcept +{ + + auto x = static_cast(pos.get_x()); + auto y = static_cast(pos.get_y()); + + // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) + return _matrix[y][x]; +} + +template +void Matrix::set(const Vector2 &pos, Element element) noexcept +{ + auto x = static_cast(pos.get_x()); + auto y = static_cast(pos.get_y()); + + // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) + _matrix[y][x] = element; +} + +template +uint32_t Matrix::get_row_cnt() const noexcept +{ + return _row_cnt; +} + +template +uint32_t Matrix::get_column_cnt() const noexcept +{ + return _column_cnt; +} + +template +MatrixIterator Matrix::begin() const noexcept +{ + return MatrixIterator(_matrix, _column_cnt); +} + +template +MatrixIterator Matrix::end() const noexcept +{ + return MatrixIterator(_matrix + _row_cnt, _column_cnt); +} + +template +Matrix &Matrix::operator=(const Matrix &rhs) noexcept +{ + if (&rhs != this) + { + _delete_matrix(); + + // NOLINTNEXTLINE(cppcoreguidelines-owning-memory) + _matrix = nullptr; + + _matrix = new Element *[rhs._row_cnt]; + _copy_matrix_from(rhs); + } + + return *this; +} + +template +Matrix &Matrix::operator=(Matrix &&rhs) noexcept +{ + if (&rhs != this) + { + _delete_matrix(); + + // NOLINTNEXTLINE(cppcoreguidelines-owning-memory) + _matrix = rhs._matrix; + + rhs._matrix = nullptr; + } + + return *this; +} + +template +void Matrix::_delete_matrix() noexcept +{ + for (gsl::owner row = _matrix; row != _matrix + _row_cnt; row++) + { + delete[](*row); + } + + delete[] _matrix; +} + +template +void Matrix::_copy_matrix_from(const Matrix &source) noexcept +{ + // NOLINTNEXTLINE(cppcoreguidelines-owning-memory) + gsl::owner source_row = source._matrix; + + for (gsl::owner row = _matrix; row != _matrix + _row_cnt; + row++, source_row++) + { + *row = static_cast>(new Element[_column_cnt]); + + // NOLINTNEXTLINE(cppcoreguidelines-pro-bounds-pointer-arithmetic) + auto *end = *source_row + _column_cnt; + + std::copy(*source_row, end, *row); + } +} -- cgit v1.2.3-18-g5258