hextris/js/main.js

173 lines
5 KiB
JavaScript
Raw Normal View History

2014-05-17 23:26:31 +00:00
// HackExeter
2014-05-17 14:26:55 +00:00
var canvas = document.getElementById('canvas');
var ctx = canvas.getContext('2d');
2014-05-20 01:21:16 +00:00
ctx.translate(0.5, 0.5);
canvas.originalHeight = canvas.height;
canvas.originalWidth = canvas.width;
if (window.devicePixelRatio) {
canvas.width *= window.devicePixelRatio;
canvas.height *= window.devicePixelRatio;
ctx.scale(window.devicePixelRatio, window.devicePixelRatio);
}
2014-05-17 22:34:02 +00:00
var gameState = 0; // 0 - start, 1 - playing, 2 - end
var framerate = 60;
2014-05-17 21:38:11 +00:00
var score = 0;
var scoreScalar = 1;
2014-05-17 19:01:16 +00:00
ct = 0;
window.requestAnimFrame = (function() {
return window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || function(callback) {
window.setTimeout(callback, 1000 / framerate);
};
})();
2014-05-17 16:16:56 +00:00
2014-05-17 16:42:56 +00:00
var blocks = [];
2014-05-17 22:47:37 +00:00
var MainClock;
var iter;
var lastGen;
var prevScore;
var nextGen;
2014-05-17 18:46:14 +00:00
2014-05-17 22:47:37 +00:00
function init() {
score = 0;
scoreScalar = 1;
gameState = 1;
ct = 0;
blocks = [];
MainClock = new Clock(65);
iter = 1;
lastGen = Date.now();
prevScore = Date.now();
2014-05-19 03:34:05 +00:00
nextGen = 1500;
requestAnimFrame(animloop);
2014-05-17 22:47:37 +00:00
}
var colors = ["#e74c3c", "#f1c40f", "#3498db"];
2014-05-17 23:02:28 +00:00
var hexagonBackgroundColor = 'rgb(236, 240, 241)';
var hexagonBackgroundColorClear = 'rgba(236, 240, 241, 0.5)';
var swegBlue = '#2c3e50'; //tumblr?
2014-05-17 23:21:19 +00:00
var scoreAdditionCoeff = 1;
2014-05-17 16:50:12 +00:00
function render() {
document.getElementById("score").innerHTML = score + " (x" + scoreScalar * scoreAdditionCoeff + ")";
var now = Date.now();
if (now - lastGen > nextGen) {
blocks.push(new Block(randInt(0, 6), colors[randInt(0, colors.length)]));
lastGen = Date.now();
var minTime = 500 / iter;
if (minTime < 100) {
minTime = 100;
}
2014-05-19 03:34:05 +00:00
if(nextGen>400){
nextGen-=10*((nextGen-200)/1000);
}
}
if (now - prevScore > 1000) {
score += 5 * (scoreScalar * scoreAdditionCoeff);
prevScore = now;
iter += 0.1;
}
ctx.clearRect(0, 0, canvas.originalWidth, canvas.originalHeight);
drawPolygon(canvas.originalWidth / 2, canvas.originalHeight / 2, 6, canvas.originalWidth / 2, 30, hexagonBackgroundColor);
var objectsToRemove = [];
var i;
for (i in MainClock.blocks) {
for (var j = 0; j < MainClock.blocks[i].length; j++) {
var block = MainClock.blocks[i][j];
MainClock.doesBlockCollide(block, iter, j, MainClock.blocks[i]);
if (!MainClock.blocks[i][j].settled) {
MainClock.blocks[i][j].distFromHex -= iter;
}
2014-05-19 03:14:55 +00:00
block.draw(true, j);
}
}
for (i in blocks) {
MainClock.doesBlockCollide(blocks[i], iter);
if (!blocks[i].settled) {
blocks[i].distFromHex -= iter;
} else {
objectsToRemove.push(i);
}
blocks[i].draw();
}
objectsToRemove.forEach(function(o) {
blocks.splice(o, 1);
});
MainClock.draw();
drawPolygon(canvas.originalWidth / 2, canvas.originalHeight / 2, 6, 270, 30, "gray", false);
2014-05-17 14:26:55 +00:00
}
function animloop() {
if (gameState == 0) {
showModal('Start!', 'Press enter to start!');
} else if (gameState == 1) {
requestAnimFrame(animloop);
render();
checkGameOver();
} else if (gameState == 2) {
showModal('Game over: ' + score + ' pts!', 'Press enter to restart!');
}
2014-05-17 23:02:28 +00:00
}
requestAnimFrame(animloop);
2014-05-17 22:54:37 +00:00
function drawPolygon(x, y, sides, radius, theta, color, fill) { // can make more elegant, reduce redundancy, fix readability
if (fill == undefined) {
fill = true;
}
if (fill) {
ctx.fillStyle = color;
} else {
ctx.strokeStyle = color;
}
ctx.beginPath();
var coords = rotatePoint(0, radius, theta);
ctx.moveTo(coords.x + x, coords.y + y);
var oldX = coords.x;
var oldY = coords.y;
for (var i = 0; i < sides; i++) {
coords = rotatePoint(oldX, oldY, 360 / sides);
ctx.lineTo(coords.x + x, coords.y + y);
// ctx.moveTo(coords.x + x, coords.y + y);
oldX = coords.x;
oldY = coords.y;
}
ctx.closePath();
if (fill) {
ctx.fill();
} else {
ctx.stroke();
}
};
function checkGameOver() { // fix font, fix size of hex
for (var i = 0; i < MainClock.sides; i++) {
if (MainClock.blocks[i].length > 8) {
gameState = 2;
}
}
2014-05-17 16:30:40 +00:00
}
2014-05-17 22:34:02 +00:00
function showModal(text, secondaryText) {
var buttonSize = 150;
var fontSizeLarge = 50;
var fontSizeSmall = 25;
drawPolygon(canvas.originalWidth / 2, canvas.originalHeight / 2, 6, canvas.originalWidth / 2, 30, hexagonBackgroundColorClear);
ctx.fillStyle = swegBlue;
// drawPolygon(canvas.originalWidth / 2, canvas.originalHeight / 2, 6, buttonSize, 30, swegBlue);
ctx.font = fontSizeLarge + 'px "Roboto"';
ctx.textAlign = 'center';
// ctx.fillStyle = hexagonBackgroundColor;
ctx.fillText(text, canvas.originalWidth / 2, canvas.originalHeight / 2 + (fontSizeLarge / 4));
ctx.font = fontSizeSmall + 'px "Roboto"';
ctx.fillText(secondaryText, canvas.originalWidth / 2, canvas.originalHeight / 2 + fontSizeLarge / 4 + fontSizeSmall / 4 + 30);
2014-05-17 22:34:02 +00:00
}