From 7d2a47b3180a459da8ba71ca8eaf3e55fa8c1dd5 Mon Sep 17 00:00:00 2001 From: Martin Euzenat Date: Sat, 20 Jan 2024 01:22:41 -0500 Subject: [PATCH] GridTeamH::fillAternately fixed --- GPA675Lab1GOL/GridTeamH.cpp | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/GPA675Lab1GOL/GridTeamH.cpp b/GPA675Lab1GOL/GridTeamH.cpp index 6e0cff6..6aec5fb 100644 --- a/GPA675Lab1GOL/GridTeamH.cpp +++ b/GPA675Lab1GOL/GridTeamH.cpp @@ -108,10 +108,20 @@ void GridTeamH::fill(CellType value) void GridTeamH::fillAternately(CellType initValue) { + // Détermine la valeur opposée à initValue auto otherValue = (initValue == CellType::alive) ? CellType::dead : CellType::alive; - for (size_t i{}; i < mData.size(); i++) - mData[i] = !(i % 2) ? initValue : otherValue; + // Boucle pour parcourir chaque ligne de la grille + for (size_t row = 0; row < mHeight; row++) { + // Boucle pour parcourir chaque colonne de la grille + for (size_t col = 0; col < mWidth; col++) { + // Calcul de l'index dans la grille bidimensionnelle + size_t index = row * mWidth + col; + + // Alternance de la valeur pour chaque cellule en fonction de la ligne et de la colonne + mData[index] = ((row + col) % 2 == 0) ? initValue : otherValue; + } + } } void GridTeamH::randomize(double percentAlive)