xxxxxxxxxx
53
var materials=["WOOD", "CEMENT/CLAY", "FABRIC", "CARBOARD", "METAL", "TRASH"];
var make=["HOUSEWARE", "FASHION", "FURNITURE", "ART", "GIFT", "VEHICLE"];
var modifier=["IS EXTRA BIG/SMALL", "IS NOT USEFUL", "IS LOW BUDGET", "USES NO POWER TOOLS", "IS A ONE DAY BUILD", "MAKES MUSIC"];
var matDice;
var makeDice;
var modDice;
var butt;
var rolls=[];
function setup() {
createCanvas(800, 100);
matDice=new Dice();
makeDice=new Dice();
modDice=new Dice();
butt=createButton("ROLL AGAIN");
butt.position(10, height-40);
butt.mousePressed(buildRoll);
//butt.pressed(console.log("TEST"));
// Load Variables onto "DICE"
for(var i=0; i<materials.length; i++)
{
matDice.addChoice(materials[i]);
makeDice.addChoice(make[i]);
modDice.addChoice(modifier[i]);
}
//Roll Dice
buildRoll();
//console.log("Make " + rolls[0] + " out of " + rolls[1] + " that " + rolls[2]);
}
function draw() {
background('skyblue');
textSize(20);
textStyle(BOLD);
text("Make " + rolls[0] + " out of " + rolls[1] + " that " + rolls[2], 10, 50);
}
function buildRoll()
{
rolls.length =0;
rolls.push(makeDice.roll());
rolls.push(matDice.roll());
rolls.push(modDice.roll());
}