xxxxxxxxxx
113
var dice=[]; // Array of 5 dice
var sze=50; // Size of dice
var numPlays=10000; // How many times we will play
var currentPlay=0; // Current Play through.
var rollsRound=0;
var rollsTotal=0;
var highRolls=0;
var rollsAvg=0;
var animate=false; // Show the dice rolls.
var currScore=0; // Score for current game
var runningTotal=0; // Score for all trials
var gameOver=false; // Current game flag
var highScore=0; // Keeps track of highest score
var avg=0;
function setup() {
//frameRate(0.5);
createCanvas(400, 400);
for(var i=0; i<5; i++)
{
dice.push(new Dice((20+((i)*sze+(5*i))), 20, sze));
}
}
function draw() {
background('skyblue')
if(currentPlay<numPlays)
{
gameOver=true;
for(var i=0; i<dice.length && gameOver; i++)
{
if((dice[i].score !=2) && (dice[i].score !=5))
gameOver=false;
}
if(!gameOver)
{
rolled=false;
for(var i=0; i<dice.length; i++)
{
if((dice[i].score!=2) && (dice[i].score!=5))
{
dice[i].roll();
rolled=true;
}
if(animate)
{
dice[i].show();
}
if((dice[i].score!=2) && (dice[i].score!=5))
{
currScore=currScore+dice[i].score;
if(currScore>highScore)
{
highScore=currScore;
}
}
}
if(rolled)
{
rollsRound++;
}
text("Game: " +(currentPlay+1), 20, height-130);
text("Rolls this round: " + rollsRound, 20, height-110)
text("Average # rolls: "+ round(rollsAvg,2), 20, height-90)
text("Highest # of rolls: "+ highRolls, 20, height-70)
text("Score: " + currScore, 20, height-50);
text("Average Score: " +round(avg,2), 20, height-30);
text("High Score: " + highScore, 20, height-10);
//dice.roll();
}
else
{
//console.log("Game" + (currentPlay+1) + " Score: " + currScore);
runningTotal=runningTotal+currScore;
avg=runningTotal/(currentPlay+1);
rollsTotal=rollsTotal+rollsRound;
if(rollsRound>highRolls)
{
highRolls=rollsRound;
}
rollsRound=0;
rollsAvg=rollsTotal/(currentPlay+1);
currScore=0;
currentPlay++;
for(var i=0; i<dice.length; i++)
{
dice[i].roll();
}
}
}
else
{
console.log("All Trials Complete");
console.log("Average Score: " + avg);
text("Game: " +currentPlay, 20, height-90);
text("Average # rolls: "+ round(rollsAvg,2), 20, height-70)
text("Highest # of rolls: "+ highRolls, 20, height-50)
text("Average Score: " +round(avg,2), 20, height-30);
text("High Score: " + highScore, 20, height-10);
noLoop();
}
}