Dami 🦇
Dami 🦇
Explore posts from servers
VVALORANT
Created by Dami 🦇 on 1/7/2025 in #community-help
Valorant freezes and locks up PC entirely.
May i ask how this would fix it? I just dunno how it works. If it fixes it then thats awesome i just wanna know why fast startup would be bad
23 replies
VVALORANT
Created by Dami 🦇 on 1/7/2025 in #community-help
Valorant freezes and locks up PC entirely.
No description
23 replies
VVALORANT
Created by Dami 🦇 on 1/7/2025 in #community-help
Valorant freezes and locks up PC entirely.
No description
23 replies
VVALORANT
Created by Dami 🦇 on 1/7/2025 in #community-help
Valorant freezes and locks up PC entirely.
it had an ssd
23 replies
VVALORANT
Created by Dami 🦇 on 1/7/2025 in #community-help
Valorant freezes and locks up PC entirely.
I would also like to point out that I know my gpu sucks, but this happened a lot on my gaming laptop and the constant crashing made my hard drive fail. My laptop had a 3080 in it
23 replies
VVALORANT
Created by Dami 🦇 on 1/7/2025 in #community-help
Valorant freezes and locks up PC entirely.
No description
23 replies
VVALORANT
Created by Dami 🦇 on 1/7/2025 in #community-help
Valorant freezes and locks up PC entirely.
show ss of what exactly? i dont wanna show my ip or anything
23 replies
VVALORANT
Created by Dami 🦇 on 1/7/2025 in #community-help
Valorant freezes and locks up PC entirely.
ah okay
23 replies
VVALORANT
Created by Dami 🦇 on 1/7/2025 in #community-help
Valorant freezes and locks up PC entirely.
with valorant open?
23 replies
CC#
Created by Dami 🦇 on 5/10/2023 in #help
❔ How would I implement a toroidal universe?
We should probably do this tomorrow im sorrg im super tired
24 replies
CC#
Created by Dami 🦇 on 5/10/2023 in #help
❔ How would I implement a toroidal universe?
I did not get this figured out no. Im genuinely so confused
24 replies
CC#
Created by Dami 🦇 on 5/10/2023 in #help
❔ How would I implement a toroidal universe?
Like since January. I have had a lot more projects lol. Ill close this then. Thank you!
24 replies
CC#
Created by Dami 🦇 on 5/10/2023 in #help
❔ How would I implement a toroidal universe?
I genuinely didnt notice its been so long since i opened this project
24 replies
CC#
Created by Dami 🦇 on 5/10/2023 in #help
❔ How would I implement a toroidal universe?
Im.. oh wow
24 replies
CC#
Created by Dami 🦇 on 5/10/2023 in #help
❔ How would I implement a toroidal universe?
thats the finite universe.. thats how i implemented the math there.. now i am so unsure how to do the toroidal
24 replies
CC#
Created by Dami 🦇 on 5/10/2023 in #help
❔ How would I implement a toroidal universe?
int MainWindow::NeighborCount(int row, int column)
{
int total = 0;

if (_isFinite)
{
if (row - 1 >= 0)
{
if (gameBoard[row - 1][column])
{
total++;
}
if (column - 1 >= 0)
{
if (gameBoard[row - 1][column - 1])
{
total++;
}
}
if (column + 1 < settings.defaultGridSize)
{
if (gameBoard[row - 1][column + 1])
{
total++;
}
}
}

if (row + 1 < settings.defaultGridSize)
{
if (gameBoard[row + 1][column])
{
total++;
}
if (column + 1 < settings.defaultGridSize)
{
if (gameBoard[row + 1][column + 1])
{
total++;
}
}
if (column - 1 >= 0)
{
if (gameBoard[row + 1][column - 1])
{
total++;
}
}

}

if (column + 1 < settings.defaultGridSize)
{
if (gameBoard[row][column + 1])
{
total++;
}

}

if (column - 1 >= 0)
{
if (gameBoard[row][column - 1])
{
total++;
}
}
}
int MainWindow::NeighborCount(int row, int column)
{
int total = 0;

if (_isFinite)
{
if (row - 1 >= 0)
{
if (gameBoard[row - 1][column])
{
total++;
}
if (column - 1 >= 0)
{
if (gameBoard[row - 1][column - 1])
{
total++;
}
}
if (column + 1 < settings.defaultGridSize)
{
if (gameBoard[row - 1][column + 1])
{
total++;
}
}
}

if (row + 1 < settings.defaultGridSize)
{
if (gameBoard[row + 1][column])
{
total++;
}
if (column + 1 < settings.defaultGridSize)
{
if (gameBoard[row + 1][column + 1])
{
total++;
}
}
if (column - 1 >= 0)
{
if (gameBoard[row + 1][column - 1])
{
total++;
}
}

}

if (column + 1 < settings.defaultGridSize)
{
if (gameBoard[row][column + 1])
{
total++;
}

}

if (column - 1 >= 0)
{
if (gameBoard[row][column - 1])
{
total++;
}
}
}
24 replies
CC#
Created by Dami 🦇 on 5/10/2023 in #help
❔ How would I implement a toroidal universe?
would you like to see my code for the finite portion of the game of life?
24 replies
CC#
Created by Dami 🦇 on 5/10/2023 in #help
❔ How would I implement a toroidal universe?
my brain hurts already
24 replies