2014-05-25 05:11:24 +00:00
|
|
|
$(document).ready(scaleCanvas);
|
|
|
|
$(window).resize(scaleCanvas);
|
|
|
|
|
2014-05-25 14:41:06 +00:00
|
|
|
function scaleCanvas() {
|
|
|
|
canvas.width = $(window).width();
|
|
|
|
canvas.height = $(window).height();
|
2014-05-25 22:27:25 +00:00
|
|
|
|
2014-05-25 15:16:33 +00:00
|
|
|
if (canvas.height > canvas.width) {
|
2014-05-25 22:27:25 +00:00
|
|
|
settings.scale = (canvas.width/800) * settings.baseScale;
|
2014-05-25 15:16:33 +00:00
|
|
|
} else {
|
2014-05-25 22:27:25 +00:00
|
|
|
settings.scale = (canvas.height/800) * settings.baseScale;
|
2014-05-25 15:16:33 +00:00
|
|
|
}
|
2014-05-25 22:27:25 +00:00
|
|
|
|
|
|
|
trueCanvas = {
|
|
|
|
width:canvas.width,
|
|
|
|
height:canvas.height
|
|
|
|
};
|
|
|
|
|
2014-05-25 16:02:22 +00:00
|
|
|
if (window.devicePixelRatio) {
|
2014-05-25 22:27:25 +00:00
|
|
|
//from https://gist.github.com/joubertnel/870190
|
|
|
|
var cw = $("#canvas").attr('width');
|
|
|
|
var ch = $("#canvas").attr('height');
|
|
|
|
|
|
|
|
$("#canvas").attr('width', cw * window.devicePixelRatio);
|
|
|
|
$("#canvas").attr('height', ch * window.devicePixelRatio);
|
|
|
|
$("#canvas").css('width', cw);
|
|
|
|
$("#canvas").css('height', ch);
|
|
|
|
|
|
|
|
trueCanvas = {
|
|
|
|
width:cw,
|
|
|
|
height:ch
|
|
|
|
};
|
|
|
|
|
|
|
|
ctx.scale(window.devicePixelRatio, window.devicePixelRatio);
|
2014-05-25 16:02:22 +00:00
|
|
|
}
|
2014-05-25 05:11:24 +00:00
|
|
|
}
|
2014-05-23 20:50:18 +00:00
|
|
|
|
2014-05-17 14:26:55 +00:00
|
|
|
var canvas = document.getElementById('canvas');
|
|
|
|
var ctx = canvas.getContext('2d');
|
2014-05-22 20:36:32 +00:00
|
|
|
var count = 0;
|
2014-05-25 22:27:25 +00:00
|
|
|
var trueCanvas = {width:canvas.width,height:canvas.height};
|
2014-05-17 21:15:55 +00:00
|
|
|
|
2014-05-20 12:30:14 +00:00
|
|
|
window.requestAnimFrame = (function() {
|
2014-05-22 23:30:40 +00:00
|
|
|
return window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || function(callback) {
|
|
|
|
window.setTimeout(callback, 1000 / framerate);
|
|
|
|
};
|
2014-05-20 12:30:14 +00:00
|
|
|
})();
|
|
|
|
|
2014-05-22 21:04:57 +00:00
|
|
|
$('#clickToExit').bind('click', toggleDevTools);
|
|
|
|
|
|
|
|
function toggleDevTools() {
|
2014-05-22 23:30:40 +00:00
|
|
|
$('#devtools').toggle();
|
2014-05-22 21:04:57 +00:00
|
|
|
}
|
2014-05-25 05:11:24 +00:00
|
|
|
|
|
|
|
var settings;
|
|
|
|
|
|
|
|
if(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
|
|
|
|
settings = {
|
2014-05-25 22:27:25 +00:00
|
|
|
startDist:227,
|
|
|
|
creationDt:40,
|
|
|
|
baseScale:1.4,
|
2014-05-25 14:41:06 +00:00
|
|
|
scale:1,
|
2014-05-25 23:53:02 +00:00
|
|
|
prevScale:1,
|
2014-05-25 14:41:06 +00:00
|
|
|
baseHexWidth:87,
|
2014-05-25 05:11:24 +00:00
|
|
|
hexWidth:87,
|
2014-05-25 14:41:06 +00:00
|
|
|
baseBlockHeight:20,
|
2014-05-25 05:11:24 +00:00
|
|
|
blockHeight:20,
|
|
|
|
rows:6,
|
2014-05-25 22:32:49 +00:00
|
|
|
speedModifier:0.7,
|
|
|
|
creationSpeedModifier:0.7
|
2014-05-25 05:11:24 +00:00
|
|
|
};
|
|
|
|
} else {
|
|
|
|
settings = {
|
2014-05-25 22:27:25 +00:00
|
|
|
baseScale:1,
|
|
|
|
startDist:340,
|
2014-05-25 23:53:02 +00:00
|
|
|
creationDt:9,
|
2014-05-25 14:41:06 +00:00
|
|
|
scale:1,
|
|
|
|
prevScale:1,
|
2014-05-25 05:11:24 +00:00
|
|
|
hexWidth:65,
|
2014-05-25 14:41:06 +00:00
|
|
|
baseHexWidth:87,
|
|
|
|
baseBlockHeight:20,
|
2014-05-25 05:11:24 +00:00
|
|
|
blockHeight:15,
|
|
|
|
rows:8,
|
|
|
|
speedModifier:1,
|
|
|
|
creationSpeedModifier:0.8
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2014-05-24 00:22:53 +00:00
|
|
|
var gameState = 0;
|
2014-05-17 21:10:35 +00:00
|
|
|
var framerate = 60;
|
2014-05-22 20:36:32 +00:00
|
|
|
var history = {};
|
2014-05-17 21:38:11 +00:00
|
|
|
var score = 0;
|
2014-05-25 02:10:12 +00:00
|
|
|
var isGameOver = 3;
|
2014-05-20 12:30:14 +00:00
|
|
|
var scoreAdditionCoeff = 1;
|
2014-05-23 04:51:03 +00:00
|
|
|
var prevScore = 0;
|
2014-05-23 05:51:16 +00:00
|
|
|
var numHighScores = 3;
|
2014-05-23 17:01:51 +00:00
|
|
|
|
2014-05-24 00:22:53 +00:00
|
|
|
var highscores = [0, 0, 0];
|
2014-05-23 17:01:51 +00:00
|
|
|
if(localStorage.getItem('highscores'))
|
2014-05-24 19:42:40 +00:00
|
|
|
highscores = localStorage.getItem('highscores').split(',').map(Number);
|
2014-05-23 17:01:51 +00:00
|
|
|
|
2014-05-23 05:51:16 +00:00
|
|
|
localStorage.setItem('highscores', highscores);
|
2014-05-17 21:10:35 +00:00
|
|
|
|
2014-05-17 16:42:56 +00:00
|
|
|
var blocks = [];
|
2014-05-17 22:47:37 +00:00
|
|
|
var MainClock;
|
2014-05-20 12:30:14 +00:00
|
|
|
|
2014-05-22 23:01:39 +00:00
|
|
|
var gdx = 0;
|
|
|
|
var gdy = 0;
|
|
|
|
|
2014-05-17 22:47:37 +00:00
|
|
|
var lastGen;
|
2014-05-23 04:51:03 +00:00
|
|
|
var prevTimeScored;
|
2014-05-17 22:47:37 +00:00
|
|
|
var nextGen;
|
2014-05-20 12:30:14 +00:00
|
|
|
var spawnLane = 0;
|
2014-05-22 20:36:32 +00:00
|
|
|
var importing = 0;
|
|
|
|
var importedHistory;
|
2014-05-23 20:13:23 +00:00
|
|
|
var startTime;
|
2014-05-17 18:46:14 +00:00
|
|
|
|
2014-05-17 22:47:37 +00:00
|
|
|
function init() {
|
2014-05-22 23:30:40 +00:00
|
|
|
history = {};
|
|
|
|
importedHistory = undefined;
|
|
|
|
importing = 0;
|
2014-05-25 01:12:05 +00:00
|
|
|
isGameOver = 2;
|
2014-05-22 23:30:40 +00:00
|
|
|
score = 0;
|
2014-05-23 04:51:03 +00:00
|
|
|
prevScore = 0;
|
2014-05-22 23:30:40 +00:00
|
|
|
spawnLane = 0;
|
2014-05-23 20:13:23 +00:00
|
|
|
gameState = -2;
|
2014-05-22 23:30:40 +00:00
|
|
|
count = 0;
|
|
|
|
blocks = [];
|
2014-05-25 05:11:24 +00:00
|
|
|
MainClock = new Clock(settings.hexWidth);
|
2014-05-25 15:31:05 +00:00
|
|
|
MainClock.y = -100;
|
2014-05-23 20:13:23 +00:00
|
|
|
startTime = Date.now();
|
2014-05-24 00:22:53 +00:00
|
|
|
waveone = new waveGen(MainClock,Date.now(),[1,1,0],[1,1],[1,1]);
|
2014-05-17 22:47:37 +00:00
|
|
|
}
|
2014-05-18 18:15:13 +00:00
|
|
|
|
2014-05-24 00:22:53 +00:00
|
|
|
function addNewBlock(blocklane, color, iter, distFromHex, settled) { //last two are optional parameters
|
2014-05-25 22:27:25 +00:00
|
|
|
iter *= settings.speedModifier;
|
2014-05-22 23:30:40 +00:00
|
|
|
if (!history[count]) {
|
|
|
|
history[count] = {};
|
|
|
|
}
|
|
|
|
|
|
|
|
history[count].block = {
|
|
|
|
blocklane:blocklane,
|
2014-05-24 18:12:01 +00:00
|
|
|
color:color,
|
|
|
|
iter:iter
|
2014-05-22 23:30:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if (distFromHex) {
|
|
|
|
history[count].distFromHex = distFromHex;
|
|
|
|
}
|
|
|
|
if (settled) {
|
|
|
|
blockHist[count].settled = settled;
|
|
|
|
}
|
2014-05-24 00:22:53 +00:00
|
|
|
blocks.push(new Block(blocklane, color, iter, distFromHex, settled));
|
2014-05-22 20:36:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function importHistory() {
|
2014-05-22 23:30:40 +00:00
|
|
|
try {
|
2014-05-24 18:12:01 +00:00
|
|
|
var ih = JSON.parse(prompt("Import JSON"));
|
|
|
|
if (ih) {
|
2014-05-24 00:22:53 +00:00
|
|
|
init();
|
2014-05-24 18:12:01 +00:00
|
|
|
importing = 1;
|
|
|
|
importedHistory = ih;
|
2014-05-22 23:30:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
alert("Error importing JSON");
|
|
|
|
}
|
2014-05-22 20:36:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function exportHistory() {
|
2014-05-22 23:30:40 +00:00
|
|
|
$('#devtoolsText').html(JSON.stringify(history));
|
|
|
|
toggleDevTools();
|
2014-05-22 20:36:32 +00:00
|
|
|
}
|
|
|
|
|
2014-05-24 00:22:53 +00:00
|
|
|
//remember to update history function to show the respective iter speeds
|
2014-05-20 12:30:14 +00:00
|
|
|
function update() {
|
2014-05-25 14:41:06 +00:00
|
|
|
settings.hexWidth = settings.baseHexWidth * settings.scale;
|
|
|
|
settings.blockHeight = settings.baseBlockHeight * settings.scale;
|
|
|
|
|
2014-05-24 18:12:01 +00:00
|
|
|
var now = Date.now();
|
2014-05-23 04:51:03 +00:00
|
|
|
if (importing) {
|
|
|
|
if (importedHistory[count]) {
|
|
|
|
if (importedHistory[count].block) {
|
2014-05-24 18:12:01 +00:00
|
|
|
addNewBlock(importedHistory[count].block.blocklane, importedHistory[count].block.color, importedHistory[count].block.iter, importedHistory[count].block.distFromHex, importedHistory[count].block.settled);
|
2014-05-23 04:51:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (importedHistory[count].rotate) {
|
|
|
|
MainClock.rotate(importedHistory[count].rotate);
|
|
|
|
}
|
|
|
|
|
2014-05-24 18:12:01 +00:00
|
|
|
}
|
2014-05-23 04:51:03 +00:00
|
|
|
}
|
2014-05-24 22:28:32 +00:00
|
|
|
else if (gameState == 1) {
|
2014-05-23 04:51:03 +00:00
|
|
|
waveone.update();
|
|
|
|
if (now - waveone.prevTimeScored > 1000) {
|
|
|
|
waveone.prevTimeScored = now;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var i;
|
|
|
|
var objectsToRemove = [];
|
|
|
|
for (i in blocks) {
|
2014-05-24 00:22:53 +00:00
|
|
|
MainClock.doesBlockCollide(blocks[i]);
|
2014-05-24 17:24:03 +00:00
|
|
|
if (!blocks[i].settled) {
|
2014-05-25 14:41:06 +00:00
|
|
|
if (!blocks[i].initializing) blocks[i].distFromHex -= blocks[i].iter * settings.scale;
|
|
|
|
} else if (!blocks[i].removed) {
|
2014-05-23 04:51:03 +00:00
|
|
|
blocks[i].removed = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-24 22:28:32 +00:00
|
|
|
var lDI;
|
|
|
|
for (i = 0; i < MainClock.blocks.length; i++) {
|
|
|
|
lDI = 99;
|
|
|
|
for (j = 0; j < MainClock.blocks[i].length; j++) {
|
|
|
|
block = MainClock.blocks[i][j];
|
|
|
|
if (block.deleted == 2) {
|
|
|
|
MainClock.blocks[i].splice(j,1);
|
|
|
|
if (j < lDI) lDI = j;
|
|
|
|
j--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lDI < MainClock.blocks[i].length) {
|
|
|
|
for (var q = lDI; q < MainClock.blocks[i].length; q++) {
|
|
|
|
MainClock.blocks[i][q].settled = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var block;
|
|
|
|
var j;
|
2014-05-23 04:51:03 +00:00
|
|
|
for (i in MainClock.blocks) {
|
2014-05-24 22:28:32 +00:00
|
|
|
for (j = 0; j < MainClock.blocks[i].length; j++) {
|
|
|
|
block = MainClock.blocks[i][j];
|
2014-05-24 00:22:53 +00:00
|
|
|
MainClock.doesBlockCollide(block, j, MainClock.blocks[i]);
|
2014-05-24 22:28:32 +00:00
|
|
|
|
2014-05-23 04:51:03 +00:00
|
|
|
if (!MainClock.blocks[i][j].settled) {
|
2014-05-25 14:41:06 +00:00
|
|
|
MainClock.blocks[i][j].distFromHex -= block.iter * settings.scale;
|
2014-05-23 04:51:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-05-24 22:28:32 +00:00
|
|
|
|
2014-05-24 00:22:53 +00:00
|
|
|
for(i=0;i<blocks.length;i++){
|
2014-05-23 04:51:03 +00:00
|
|
|
if(blocks[i].removed == 1){
|
|
|
|
blocks.splice(i,1);
|
|
|
|
i--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
count++;
|
|
|
|
if (score != prevScore) {
|
|
|
|
updateScoreboard();
|
|
|
|
prevScore = score;
|
2014-05-24 00:22:53 +00:00
|
|
|
}
|
2014-05-20 12:30:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function render() {
|
2014-05-25 22:27:25 +00:00
|
|
|
ctx.clearRect(0, 0, trueCanvas.width, trueCanvas.height);
|
2014-05-22 23:30:40 +00:00
|
|
|
clearGameBoard();
|
2014-05-24 19:39:27 +00:00
|
|
|
|
|
|
|
if (gameState == -2) {
|
|
|
|
if (Date.now() - startTime > 1300) {
|
|
|
|
var op = (Date.now() - startTime - 1300)/500;
|
2014-05-25 01:12:05 +00:00
|
|
|
if (op > 1) {
|
|
|
|
op = 1;
|
|
|
|
}
|
2014-05-24 19:39:27 +00:00
|
|
|
ctx.globalAlpha = op;
|
2014-05-25 22:27:25 +00:00
|
|
|
drawPolygon(trueCanvas.width / 2 , trueCanvas.height / 2 , 6, (settings.rows * settings.blockHeight) * (2/Math.sqrt(3)) + settings.hexWidth, 30, "#bdc3c7", false,6);
|
2014-05-24 19:39:27 +00:00
|
|
|
ctx.globalAlpha = 1;
|
|
|
|
}
|
|
|
|
} else {
|
2014-05-25 22:27:25 +00:00
|
|
|
drawPolygon(trueCanvas.width / 2 + gdx, trueCanvas.height / 2 + gdy, 6, (settings.rows * settings.blockHeight) * (2/Math.sqrt(3)) + settings.hexWidth, 30, '#bdc3c7', false, 6);
|
2014-05-24 19:39:27 +00:00
|
|
|
}
|
|
|
|
|
2014-05-22 23:30:40 +00:00
|
|
|
var i;
|
|
|
|
for (i in MainClock.blocks) {
|
|
|
|
for (var j = 0; j < MainClock.blocks[i].length; j++) {
|
|
|
|
var block = MainClock.blocks[i][j];
|
|
|
|
block.draw(true, j);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i in blocks) {
|
|
|
|
blocks[i].draw();
|
|
|
|
}
|
|
|
|
|
|
|
|
MainClock.draw();
|
2014-05-25 14:41:06 +00:00
|
|
|
settings.prevScale = settings.scale;
|
2014-05-17 14:26:55 +00:00
|
|
|
}
|
|
|
|
|
2014-05-23 20:13:23 +00:00
|
|
|
function stepInitialLoad() {
|
2014-05-25 22:27:25 +00:00
|
|
|
var dy = getStepDY(Date.now() - startTime, 0, (100 + trueCanvas.height/2), 1300);
|
2014-05-24 18:41:14 +00:00
|
|
|
if (Date.now() - startTime > 1300) {
|
2014-05-23 20:13:23 +00:00
|
|
|
MainClock.dy = 0;
|
2014-05-25 22:27:25 +00:00
|
|
|
MainClock.y = (trueCanvas.height/2);
|
2014-05-24 18:41:14 +00:00
|
|
|
if (Date.now() - startTime - 500 > 1300) {
|
|
|
|
gameState = 1;
|
|
|
|
}
|
2014-05-23 20:13:23 +00:00
|
|
|
} else {
|
|
|
|
MainClock.dy = dy;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//t: current time, b: begInnIng value, c: change In value, d: duration
|
|
|
|
function getStepDY(t, b, c, d) {
|
|
|
|
if ((t/=d) < (1/2.75)) {
|
|
|
|
return c*(7.5625*t*t) + b;
|
|
|
|
} else if (t < (2/2.75)) {
|
|
|
|
return c*(7.5625*(t-=(1.5/2.75))*t + 0.75) + b;
|
|
|
|
} else if (t < (2.5/2.75)) {
|
|
|
|
return c*(7.5625*(t-=(2.25/2.75))*t + 0.9375) + b;
|
|
|
|
} else {
|
|
|
|
return c*(7.5625*(t-=(2.625/2.75))*t + 0.984375) + b;
|
2014-05-23 04:51:03 +00:00
|
|
|
}
|
2014-05-23 20:50:18 +00:00
|
|
|
}
|
2014-05-23 20:13:23 +00:00
|
|
|
|
|
|
|
function animLoop() {
|
|
|
|
if (gameState == 1) {
|
|
|
|
requestAnimFrame(animLoop);
|
2014-05-22 23:30:40 +00:00
|
|
|
update();
|
|
|
|
render();
|
2014-05-25 01:12:05 +00:00
|
|
|
if (checkGameOver()) {
|
|
|
|
isGameOver--;
|
|
|
|
if (isGameOver === 0) {
|
|
|
|
gameState = 2;
|
|
|
|
}
|
|
|
|
}
|
2014-05-23 20:50:18 +00:00
|
|
|
}
|
2014-05-23 20:13:23 +00:00
|
|
|
else if (gameState === 0) {
|
2014-05-25 15:16:33 +00:00
|
|
|
requestAnimFrame(animLoop);
|
2014-05-23 20:13:23 +00:00
|
|
|
clearGameBoard();
|
|
|
|
showModal('Start!', 'Press enter to start!');
|
|
|
|
}
|
|
|
|
else if (gameState == -2) { //initialization screen just before starting
|
|
|
|
requestAnimFrame(animLoop);
|
2014-05-25 14:41:06 +00:00
|
|
|
settings.hexWidth = settings.baseHexWidth * settings.scale;
|
|
|
|
settings.blockHeight = settings.baseBlockHeight * settings.scale;
|
2014-05-23 20:13:23 +00:00
|
|
|
stepInitialLoad();
|
|
|
|
render();
|
|
|
|
}
|
|
|
|
else if (gameState == -1) {
|
|
|
|
showModal('Paused!', 'Press "P" to continue.');
|
|
|
|
}
|
2014-05-25 05:11:24 +00:00
|
|
|
else if (gameState == 2) {
|
2014-05-25 14:41:06 +00:00
|
|
|
requestAnimFrame(animLoop);
|
|
|
|
update();
|
|
|
|
render();
|
|
|
|
showModal('Game over: ' + score + ' pts!', 'Press enter to restart!');
|
|
|
|
highscores = localStorage.getItem('highscores').split(',').map(Number);
|
|
|
|
for (var i = 0; i < numHighScores; i++) {
|
|
|
|
if (highscores[i] < score) {
|
|
|
|
for (var j = numHighScores - 1; j > i; j--) {
|
|
|
|
highscores[j] = highscores[j - 1];
|
2014-05-23 05:51:16 +00:00
|
|
|
}
|
2014-05-25 14:41:06 +00:00
|
|
|
highscores[i] = score;
|
|
|
|
break;
|
2014-05-23 05:51:16 +00:00
|
|
|
}
|
2014-05-22 23:30:40 +00:00
|
|
|
}
|
2014-05-25 14:41:06 +00:00
|
|
|
|
|
|
|
localStorage.setItem('highscores', highscores);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
gameState = 0;
|
|
|
|
}
|
2014-05-17 23:02:28 +00:00
|
|
|
}
|
2014-05-25 01:12:05 +00:00
|
|
|
|
2014-05-23 20:13:23 +00:00
|
|
|
requestAnimFrame(animLoop);
|
2014-05-17 23:02:28 +00:00
|
|
|
|
2014-05-22 23:01:39 +00:00
|
|
|
function checkGameOver() {
|
2014-05-22 23:30:40 +00:00
|
|
|
for (var i = 0; i < MainClock.sides; i++) {
|
2014-05-25 05:11:24 +00:00
|
|
|
if (MainClock.blocks[i].length > settings.rows) {
|
2014-05-22 23:30:40 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2014-05-24 01:36:59 +00:00
|
|
|
}
|
2014-05-24 18:52:21 +00:00
|
|
|
|
2014-05-25 02:10:12 +00:00
|
|
|
window.onblur = function (e) {
|
2014-05-25 05:11:24 +00:00
|
|
|
if (gameState == 1) gameState = -1;
|
2014-05-25 05:12:06 +00:00
|
|
|
};
|