xxxxxxxxxx
52
// Old one using arrays was here: https://editor.p5js.org/Sarena/sketches/B-3qy2O2z
var arrayPush;
var total = 18; //$gameVariables.value(21);
var current = 0; //$gameVariables.value(2);
//var cardArray = []; // not needed
var handArray = [];
var i;
for (i = 0; i < 8; i++) {
//randomizer(); // randomize current varable to be 1-18
//console.log("Current: " + current);
//console.log(handArray.includes(current));
do {
randomizer();
console.log("Recalculating...")
}
while(handArray.includes(current) == true);
handArray.push(current); // pushes the random number from cards into the hand
console.log("Push " + current);
}
console.log("Hand Array After: " + handArray);
console.log("--------------------------------------------------------------");
//TODO: could probably keep making total go down by 1 because it keeps pulling down (don't want it to pull higher than available)
function randomizer() {
current = Math.ceil(Math.random() * total); // $gameVariables.setValue(2, Math.randomInt(total) + 1);
}
//console.log(current)
/*
$gameVariables.value(2) === $gameVariables.value(21)
if ($gameVariables.value(2) === $gameVariables.value(21)) {
stuff } else { stuff }
*/
/*
Did this previously in the for loop, didn't have to recalculate EVERY TIME (but I think it only ran once):
if (handArray.includes(current) == true) {
randomizer();
console.log("Recalculating...")
}
else {
handArray.push(current); // pushes the random number from cards into the hand
console.log("Push " + current);
}*/