xxxxxxxxxx
89
var dice=[]; // Array of 2 dice
var dSize=50; // Size of Dice
var numDice=2;
var total=0; // Total of numDice
var numTiles=12; // Number of tiles
var tiles=[]; // Array of score tiles
var tileW; // Width of tiles;
var rolls=1; // count rolls
var games=1; // count games
var myG;
function setup() {
createCanvas(400, 400);
myG=getItem('myGames');
tileW=width/numTiles;
for(var i=0; i<numDice; i++)
{
dice.push(new Dice(dSize+(i*dSize)+(i*dSize/2), 50, dSize));
total=total+dice[i].score;
}
for(var i=0; i<numTiles; i++)
{
tiles.push(new Tile (i*tileW, 300, tileW, i+1))
}
}
function draw() {
background('skyblue');
fill(0);
myG=getItem('myGames')
if(myG!==null)
{games=myG}
text("Rolls this game: " + rolls, width-250, 20);
text("Games played: " + games, width-250, 40);
for(var i=0; i<numDice; i++)
{
dice[i].show();
}
textSize(40);
text("Total: " + total, 100, 150)
for(var i=0; i<numTiles; i++)
{
tiles[i].show();
}
}
function keyPressed()
{
for(var i=0; i<numTiles; i++)
{
tiles[i].used=false;
}
rolls=0;
games++;
storeItem('myGames', games);
roll();
}
function mousePressed()
{
if(mouseY>(height-100)&& mouseY<height)
{
mx=floor(mouseX/tileW);
var v= tiles[mx].value
if((!tiles[mx].used) )
{
tiles[mx].used=true;
}
}
else if (mouseY<height-100)
{
roll();
}
}
function roll()
{
rolls++;
total=0;
for(var i=0; i<numDice; i++)
{
dice[i].roll();
total+=dice[i].score;
}
}