hextris/js/comboTimer.js

70 lines
2.2 KiB
JavaScript
Raw Normal View History

2014-06-24 14:53:26 +00:00
function drawTimer(){
var leftVertexes = [];
var rightVertexes = [];
2014-07-04 16:45:51 +00:00
if(MainHex.ct - MainHex.lastCombo < settings.comboTime){
2014-07-04 16:42:22 +00:00
for(var i=0;i<6;i++){
2014-07-04 16:45:51 +00:00
var done = (MainHex.ct -MainHex.lastCombo);
2014-07-04 16:42:22 +00:00
if(done<(settings.comboTime)*(5-i)*(1/6)){
leftVertexes.push(calcSide(i,i+1,1,1));
rightVertexes.push(calcSide(12-i,11-i,1,1));
2014-07-04 16:42:22 +00:00
}
else{
leftVertexes.push(calcSide(i,i+1,1-((done*6)/settings.comboTime)%(1),1));
rightVertexes.push(calcSide(12-i,11-i,1-((done*6)/settings.comboTime)%(1),1));
2014-07-04 16:42:22 +00:00
break;
}
}
}
if(rightVertexes.length !=0) drawSide(rightVertexes);
if(leftVertexes.length !=0) drawSide(leftVertexes);
2014-06-24 14:53:26 +00:00
}
function calcSide(startVertex,endVertex,fraction,offset){
2014-07-04 16:42:22 +00:00
startVertex = (startVertex+offset)%12;
endVertex = (endVertex+offset)%12;
ctx.globalAlpha=1;
ctx.beginPath();
ctx.lineCap = "round";
var radius = (settings.rows * settings.blockHeight) * (2/Math.sqrt(3)) + settings.hexWidth ;
2014-07-04 16:42:22 +00:00
var halfRadius = radius/2;
var triHeight = radius *(Math.sqrt(3)/2);
var Vertexes =[
2014-07-04 16:46:42 +00:00
[(halfRadius*3)/2,triHeight/2],
[radius,0],
[(halfRadius*3)/2,-triHeight/2],
[halfRadius,-triHeight],
[0,-triHeight],
[-halfRadius,-triHeight],
[-(halfRadius*3)/2,-triHeight/2],
[-radius,0],
[-(halfRadius*3)/2,triHeight/2],
[-halfRadius,triHeight],
[0,triHeight],
[halfRadius,triHeight]
].reverse();
2014-07-04 16:42:22 +00:00
var startX =trueCanvas.width/2 + Vertexes[startVertex][0];
var startY =trueCanvas.height/2 + Vertexes[startVertex][1];
var endX = trueCanvas.width/2 + Vertexes[endVertex][0];
var endY = trueCanvas.height/2 + Vertexes[endVertex][1];
return [[startX,startY],[((endX-startX)*fraction)+startX,((endY-startY)*fraction)+startY]];
}
function drawSide(vertexes){
if (gameState === 0) {
ctx.strokeStyle = hexColorsToTintedColors[MainHex.lastColorScored];
} else {
ctx.strokeStyle = MainHex.lastColorScored;
}
ctx.lineWidth =4*settings.scale;
ctx.moveTo(vertexes[0][0][0],vertexes[0][0][1]);
ctx.lineTo(vertexes[0][1][0],vertexes[0][1][1]);
for(var i=1;i<vertexes.length;i++){
ctx.lineTo(vertexes[i][1][0],vertexes[i][1][1]);
ctx.moveTo(vertexes[i][1][0],vertexes[i][1][1]);
}
2014-07-04 16:42:22 +00:00
ctx.closePath();
ctx.fill();
ctx.stroke();
2014-06-30 16:13:21 +00:00
}