hextris/js/main.js

333 lines
7.4 KiB
JavaScript
Raw Normal View History

2014-05-23 20:50:18 +00:00
$(document).ready(function(){
2014-05-24 00:22:53 +00:00
//some sort loading anim until this point
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');
canvas.originalHeight = canvas.height;
canvas.originalWidth = canvas.width;
2014-05-22 20:36:32 +00:00
var count = 0;
if (window.devicePixelRatio) {
canvas.width *= window.devicePixelRatio;
canvas.height *= window.devicePixelRatio;
ctx.scale(window.devicePixelRatio, window.devicePixelRatio);
}
window.requestAnimFrame = (function() {
return window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || function(callback) {
window.setTimeout(callback, 1000 / framerate);
};
})();
2014-05-22 21:04:57 +00:00
$('#clickToExit').bind('click', toggleDevTools);
function toggleDevTools() {
$('#devtools').toggle();
2014-05-22 21:04:57 +00:00
}
var firstTime = 1;
2014-05-24 00:22:53 +00:00
var gameState = 0;
var framerate = 60;
2014-05-22 20:36:32 +00:00
var history = {};
2014-05-17 21:38:11 +00:00
var score = 0;
var scoreScalar = 1;
var isGameOver = 2;
var scoreAdditionCoeff = 1;
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 16:42:56 +00:00
var blocks = [];
2014-05-17 22:47:37 +00:00
var MainClock;
var gdx = 0;
var gdy = 0;
2014-05-17 22:47:37 +00:00
var lastGen;
var prevTimeScored;
2014-05-17 22:47:37 +00:00
var nextGen;
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() {
history = {};
importedHistory = undefined;
importing = 0;
isGameOver = 2;
score = 0;
prevScore = 0;
spawnLane = 0;
scoreScalar = 1;
2014-05-23 20:13:23 +00:00
gameState = -2;
count = 0;
blocks = [];
MainClock = new Clock(65);
2014-05-23 20:13:23 +00:00
MainClock.y = -100;
startTime = Date.now();
2014-05-24 00:22:53 +00:00
waveone = new waveGen(MainClock,Date.now(),[1,1,0],[1,1],[1,1]);
if (firstTime) {
firstTime = 0;
requestAnimFrame(animLoop);
}
2014-05-17 22:47:37 +00:00
}
2014-05-24 00:22:53 +00:00
function addNewBlock(blocklane, color, iter, distFromHex, settled) { //last two are optional parameters
if (!history[count]) {
history[count] = {};
}
history[count].block = {
blocklane:blocklane,
color:color,
iter:iter
};
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() {
try {
var ih = JSON.parse(prompt("Import JSON"));
if (ih) {
2014-05-24 00:22:53 +00:00
init();
importing = 1;
importedHistory = ih;
}
}
catch (e) {
alert("Error importing JSON");
}
2014-05-22 20:36:32 +00:00
}
function exportHistory() {
$('#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
function update() {
var now = Date.now();
if (now - prevTimeScored > 1000) {
score += 5 * (scoreScalar * scoreAdditionCoeff);
prevTimeScored = now;
}
if (importing) {
if (importedHistory[count]) {
if (importedHistory[count].block) {
addNewBlock(importedHistory[count].block.blocklane, importedHistory[count].block.color, importedHistory[count].block.iter, importedHistory[count].block.distFromHex, importedHistory[count].block.settled);
}
if (importedHistory[count].rotate) {
MainClock.rotate(importedHistory[count].rotate);
}
}
}
2014-05-24 22:28:32 +00:00
else if (gameState == 1) {
waveone.update();
if (now - waveone.prevTimeScored > 1000) {
score += 5 * (scoreScalar * scoreAdditionCoeff);
waveone.prevTimeScored = now;
}
}
var i;
var objectsToRemove = [];
for (i in blocks) {
2014-05-24 00:22:53 +00:00
MainClock.doesBlockCollide(blocks[i]);
if (!blocks[i].settled) {
if (!blocks[i].initializing) blocks[i].distFromHex -= blocks[i].iter;
} else if(!blocks[i].removed){
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) {
debugger;
MainClock.blocks[i].splice(j,1);
if (j < lDI) lDI = j;
j--;
}
}
if (lDI < MainClock.blocks[i].length) {
debugger;
for (var q = lDI; q < MainClock.blocks[i].length; q++) {
debugger;
MainClock.blocks[i][q].settled = 0;
}
}
}
var block;
var j;
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
if (!MainClock.blocks[i][j].settled) {
2014-05-24 00:22:53 +00:00
MainClock.blocks[i][j].distFromHex -= block.iter;
}
}
}
2014-05-24 22:28:32 +00:00
2014-05-24 00:22:53 +00:00
for(i=0;i<blocks.length;i++){
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
}
}
function render() {
ctx.clearRect(0, 0, canvas.originalWidth, canvas.originalHeight);
clearGameBoard();
2014-05-24 19:39:27 +00:00
if (gameState == -2) {
if (Date.now() - startTime > 1300) {
var op = (Date.now() - startTime - 1300)/500;
if (op > 1) {
op = 1;
}
2014-05-24 19:39:27 +00:00
ctx.globalAlpha = op;
drawPolygon(canvas.originalWidth / 2 , canvas.originalHeight / 2 , 6, 220, 30, "#bdc3c7", false,6);
ctx.globalAlpha = 1;
}
} else {
drawPolygon(canvas.originalWidth / 2 , canvas.originalHeight / 2 , 6, 220, 30, '#bdc3c7', false,6);
}
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-17 14:26:55 +00:00
}
2014-05-23 20:13:23 +00:00
function stepInitialLoad() {
2014-05-24 18:41:14 +00:00
var dy = getStepDY(Date.now() - startTime, 0, 100 + canvas.height/2, 1300);
if (Date.now() - startTime > 1300) {
2014-05-23 20:13:23 +00:00
MainClock.dy = 0;
MainClock.y = canvas.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 20:50:18 +00:00
}
2014-05-23 20:13:23 +00:00
isGameOver--;
2014-05-23 20:13:23 +00:00
function animLoop() {
if (gameState == 1) {
requestAnimFrame(animLoop);
update();
render();
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) {
clearGameBoard();
showModal('Start!', 'Press enter to start!');
}
else if (gameState == -2) { //initialization screen just before starting
requestAnimFrame(animLoop);
stepInitialLoad();
render();
}
else if (gameState == -1) {
showModal('Paused!', 'Press "P" to continue.');
}
2014-05-24 19:42:40 +00:00
else if (gameState == 2) { // fix so that it clears blocks then checks for game over
// if (checkGameOver()) {
2014-05-24 20:01:24 +00:00
// if (MainClock.angle != MainClock.targetAngle) {
2014-05-24 19:42:40 +00:00
requestAnimFrame(animLoop);
2014-05-24 20:01:24 +00:00
update(); // score will keep incrementing at gameover
2014-05-24 19:42:40 +00:00
render();
2014-05-24 20:01:24 +00:00
// }
2014-05-24 19:52:25 +00:00
// checkGameOver();
showModal('Game over: ' + score + ' pts!', 'Press enter to restart!');
2014-05-23 05:51:16 +00:00
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];
}
highscores[i] = score;
break;
}
}
localStorage.setItem('highscores', highscores);
}
else {
2014-05-24 19:42:40 +00:00
gameState = 0;
}
2014-05-24 19:42:40 +00:00
// }
2014-05-17 23:02:28 +00:00
}
2014-05-23 20:13:23 +00:00
requestAnimFrame(animLoop);
2014-05-17 23:02:28 +00:00
function checkGameOver() {
for (var i = 0; i < MainClock.sides; i++) {
if (MainClock.blocks[i].length > 8) {
return true;
}
}
return false;
2014-05-24 01:36:59 +00:00
}
2014-05-24 18:52:21 +00:00
// window.onblur = function (e) {
// if (gameState == 1) gameState = -1;
// }