Repare les allocations de memoire
This commit is contained in:
parent
e52a998e84
commit
a14931e866
@ -324,7 +324,7 @@ bool GOLTeamH::setFromPattern(std::string const& pattern, int centerX, int cente
|
|||||||
if (!sq.has_value())
|
if (!sq.has_value())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
fillDataFromPattern(pattern, sq.value(), centerX+1, centerY+1);
|
fillDataFromPattern(sq.value(), centerX + 1, centerY + 1);
|
||||||
|
|
||||||
mIteration = 0;
|
mIteration = 0;
|
||||||
countLifeStatusCells();
|
countLifeStatusCells();
|
||||||
@ -349,11 +349,7 @@ bool GOLTeamH::setFromPattern(std::string const& pattern)
|
|||||||
if (!sq.has_value())
|
if (!sq.has_value())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
// Offset pour ajuster le centrage du pattern
|
fillDataFromPattern(sq.value(), (mData.width() / 2) + 1, (mData.height() / 2) + 1);
|
||||||
int centerX = (mData.width() - sq.value().width)/2;
|
|
||||||
int centerY = (mData.height() - sq.value().height)/2;
|
|
||||||
|
|
||||||
fillDataFromPattern(pattern, sq.value(),centerX+1, centerY+1);
|
|
||||||
|
|
||||||
mIteration = 0;
|
mIteration = 0;
|
||||||
countLifeStatusCells();
|
countLifeStatusCells();
|
||||||
@ -553,19 +549,19 @@ std::optional<GOLTeamH::sizeQueried> GOLTeamH::parsePattern(std::string const& p
|
|||||||
return std::nullopt;
|
return std::nullopt;
|
||||||
}
|
}
|
||||||
|
|
||||||
void GOLTeamH::fillDataFromPattern(std::string const& pattern, sizeQueried& sq,
|
void GOLTeamH::fillDataFromPattern(sizeQueried& sq, int centerX, int centerY)
|
||||||
int centerX, int centerY)
|
|
||||||
{
|
{
|
||||||
mData.fill(State::dead, true);
|
mData.fill(State::dead, true);
|
||||||
|
|
||||||
// Remplissage de la grille aux positions spécifiées par le patron
|
// Remplissage de la grille aux positions spécifiées par le patron
|
||||||
for (size_t y = 0; y < sq.height; ++y) {
|
for (size_t y = 0; y < sq.height; ++y) {
|
||||||
for (size_t x = 0; x < sq.width; ++x) {
|
for (size_t x = 0; x < sq.width; ++x) {
|
||||||
// Coordonnées dans la grille de destination
|
// Coordonnées dans la grille de destination
|
||||||
int destX = centerX + x;
|
int destX = (centerX - ((sq.width + 1) / 2)) + x;
|
||||||
int destY = centerY + y;
|
int destY = (centerY - ((sq.height + 1) / 2)) + y;
|
||||||
|
|
||||||
// Vérifier si les coordonnées sont dans la grille
|
// Vérifier si les coordonnées sont dans la grille
|
||||||
if (destX >= 0 || destX < mData.width() || destY >= 0 || destY < mData.height()) {
|
if (destX > 0 && destX <= mData.width() && destY > 0 && destY <= mData.height()) {
|
||||||
// On remplit la grille avec les valeurs du pattern
|
// On remplit la grille avec les valeurs du pattern
|
||||||
State cellState = (sq.pos[(y * sq.width) + x] == '0') ? State::dead : State::alive;
|
State cellState = (sq.pos[(y * sq.width) + x] == '0') ? State::dead : State::alive;
|
||||||
mData.setAt(destX, destY, cellState);
|
mData.setAt(destX, destY, cellState);
|
||||||
@ -573,10 +569,10 @@ void GOLTeamH::fillDataFromPattern(std::string const& pattern, sizeQueried& sq,
|
|||||||
else {
|
else {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void GOLTeamH::countLifeStatusCells()
|
void GOLTeamH::countLifeStatusCells()
|
||||||
|
@ -94,8 +94,7 @@ private:
|
|||||||
// Fonctions utilisées à l'interne.
|
// Fonctions utilisées à l'interne.
|
||||||
unsigned char convertCharToNumber(const char c);
|
unsigned char convertCharToNumber(const char c);
|
||||||
std::optional<sizeQueried> parsePattern(std::string const& pattern);
|
std::optional<sizeQueried> parsePattern(std::string const& pattern);
|
||||||
void fillDataFromPattern(std::string const& pattern, sizeQueried& sq,
|
void fillDataFromPattern(sizeQueried& sq, int centerX, int centerY);
|
||||||
int centerX, int centerY);
|
|
||||||
void countLifeStatusCells();
|
void countLifeStatusCells();
|
||||||
|
|
||||||
// Fonction qui modifie le border selon la règle
|
// Fonction qui modifie le border selon la règle
|
||||||
|
Loading…
Reference in New Issue
Block a user