xxxxxxxxxx
317
var runtime; // Run Slider
var runnum; // Run time in seconds
var runmintxt; // Textbox for run
var runsectxt; // Textbox for run (sec);
var pushups; // Pushup Slider
var pushnum; // Number of pushupos
var pushtxt; // Textbox for pushup
var situps; // Situp Slider
var sitnum; // Number of situps
var sittxt; // Textbox for situps
var butt; // Button to submit text box calculation
var pushmin=27;
var pushmax=62;
var sitmin=38;
var sitmax=56;
var runmax=990; // 950 seconds
var runmin=562;
var rscore=0;
var sscore=0;
var pscore=0;
function setup() {
createCanvas(600, 400);
runnum=new Time(0,0);
pushups =createSlider(0, pushmax, 0, 1)
pushups.position(150,10);
situps =createSlider(0, sitmax, 0, 1)
situps.position(150,40);
runtime =createSlider(runmin, runmax, 0, 1)
runtime.position(10,90);
runtime.size(555,100);
pushtxt = createInput();
pushtxt.position(300, 10);
pushtxt.size(15, 15);
pushups.input(pushChange);
sittxt = createInput();
sittxt.position(300, 40);
sittxt.size(15, 15);
situps.input(sitChange);
runmintxt = createInput();
runmintxt.position (300, 70);
runmintxt.size(15, 15);
runsectxt = createInput();
runsectxt.position(337, 70);
runsectxt.size(15,15)
runtime.input(runChange);
butt = createButton("CALCULATE SCORE");
butt.position(400, 40);
butt.mousePressed(calcButton);
}
function draw() {
background('skyblue');
text(":", 329, 86);
lapTime=runTime(floor(runtime.value()/6));
text("Req'd 6 Lap Time: ~" + lapTime.minutes +":" + nf(lapTime.sec,2), width/2, 200);
text("(Rounded down to nearest sec)", width/2, 220);
//textSize(15);
for(var i=0; i<6; i++)
{
var lp=floor(runtime.value()/6) // num secs per lap
var nl=runTime(lp*(i+1)); // Next lap
// console.log(nl);
text("Lap " + int(i+1) + ": ≤ " + nl.minutes +":" +nf(nl.sec,2), width/2, 250+(i*20));
}
textSize(20);
pushnum=pushups.value();
sitnum=situps.value();
runnum=runTime(runtime.value());
//var test=runtime.value();
text("Pushups: " + pushnum, 10,25);
text("Sit Ups: " + sitnum, 10,55);
text("Run Time: " + runnum.minutes + ":" + nf(runnum.sec,2), 10, 85);
// text("TEST: " + test, 10, 85);
rscore=runScore(runtime.value());
pscore=pushScore(pushnum);
sscore=sitScore(sitnum);
text("Run Score: " + rscore, 10, 200);
text("Push Up Score: " + pscore, 10, 220);
text("Sit Up Score: " + sscore, 10, 240);
var total=sscore+pscore+rscore;
if ((sscore==0) || (rscore==0) || (pscore==0))
{
fill(255,0,0);
stroke(255,0,0);
text("FAIL! Minimum Not Met!", 10, 300);
}
else if((total<75))
{
text("Score: " + (total)+ "%", 10, 300);
stroke(255, 0,0);
fill(255,0,0);
text("Unsatisfactory!", 10, 320);
}
else if((total<90))
{
text("Score: " + (total)+ "%", 10, 300);
stroke(255, 0,0);
fill(0);
stroke(0);
strokeWeight(1);
text("Satisfactory!", 10, 320);
}
else if((total>=90))
{
text("Score: " + (total)+ "%", 10, 300);
stroke(255, 0,0);
fill('green');
stroke(0);
text("Excellent!", 10, 320);
}
strokeWeight(1);
stroke(0);
fill(0);
text("MALES 25-29 YEARS", width/2-50, height-20);
stroke(0);
fill(0);
}
function runTime(secs)
{
var minutes=0;
var seconds=0;
minutes=floor(secs/60);
seconds=secs- (minutes*60);
//console.log(seconds);
var tot = new Time(minutes, seconds);
return tot;
}
function runScore(secs)
{
var runPoints=[60, 59.5, 59, 58.5, 58, 57.5, 57, 56.5, 56, 55.5, 55, 54.5, 54, 53.5, 52, 50.5, 49, 46.5, 44, 41, 38, 35, 0];
var points=0;
//var times=[
//console.log(runPoints.length);
// We are about to do this in a very bad way. Please look away.
if (secs<= 562)points=runPoints[0];
else if (secs<= 585) points=runPoints[1];
else if (secs<= 598) points=runPoints[2];
else if (secs<= 610) points=runPoints[3]
else if (secs<= 623) points=runPoints[4];
else if (secs<= 637) points=runPoints[5];
else if (secs<= 651) points=runPoints[6];
else if (secs<= 666) points=runPoints[7];
else if (secs<= 682) points=runPoints[8];
else if (secs<= 698) points=runPoints[9];
else if (secs<= 716) points=runPoints[10];
else if (secs<= 734) points=runPoints[11];
else if (secs<= 753) points=runPoints[12];
else if (secs<= 773) points=runPoints[13];
else if (secs<= 794) points=runPoints[14];
else if (secs<= 816) points=runPoints[15];
else if (secs<= 840) points=runPoints[16];
else if (secs<= 865) points=runPoints[17];
else if (secs<= 892) points=runPoints[18];
else if (secs<= 920) points=runPoints[19];
else if (secs<= 950) points=runPoints[20];
else if (secs<= 982) points=runPoints[21];
if (secs> 982) points=runPoints[22];
//console.log(points);
return points;
}
function pushScore(pnum)
{
var pushPoints=[20, 19.7, 19.4, 19, 18.8, 18.6, 18.4, 18.2, 18, 17.8, 17.6, 17.5, 17.4, 17.2, 17, 16.8, 16.6, 16.2, 16, 15.6, 15.4, 15, 14.6, 14.4, 14, 13.6, 13, 12.6, 12, 11.6, 11, 10.6, 10, 7, 4,1];
//console.log(pushPoints.length);
var ppoints=0;
if((pnum>=pushmin) && (pnum<=pushmax))
{
ppoints=pushPoints[pushmax-pnum];
}
return ppoints;
}
function sitScore(snum)
{
var sitPoints=[20, 19.5, 19, 18.8, 18.4, 18, 17.6, 17.4, 17, 16.6, 16, 15, 14, 13, 12.8, 12, 9, 6, 3];
//console.log(sitPoints.length);
var spoints=0;
if((snum>=sitmin) && (snum<=sitmax))
{
spoints=sitPoints[sitmax-snum];
}
return spoints;
}
// If Slider is used, sets the pushup txt boxes to slider value
function pushChange()
{
pushtxt.value(pushups.value());
}
// If Slider is used, sets the situp txt boxes to slider value
function sitChange()
{
sittxt.value(situps.value());
}
// If Slider is used, sets the runtime txt boxes to slider value
function runChange()
{
var tm= runTime(runtime.value());
runmintxt.value(tm.minutes);
runsectxt.value(nf(tm.sec,2));
}
// If submit button is clicked, use the values manually input from textboxes
function calcButton()
{
var validPush = int (pushtxt.value());
var validSit = int (sittxt.value());
var validMin = int (runmintxt.value());
var validSec = int (runsectxt.value());
// Validate textbox inputs
// Once validated, if they are > max, set the sliders to max
// this will automatically calculate the score.
// I think I'm pretty clever for coming up with this
// It minimized the amount of code I have to paste into
// each score program.
if(!isNaN(validPush) && !isNaN(validSit) && !isNaN(validMin) && !isNaN(validSec))
{
if(validPush>pushmax)
{
validPush=pushmax;
}
if(validSit>sitmax)
{
validSit=sitmax;
}
var mins=validMin;
var secs=validSec;
var runsecs=(mins*60) + secs;
if(runsecs > runmax)
{
runsecs=runmax;
}
else if(runsecs < runmin)
{
runsecs = runmin;
}
pushups.value(validPush);
situps.value(validSit);
runtime.value(runsecs);
}
else
{
//console.log("HERE");
alert("Please verify that only numbers are input for times!");
}
}