hextris/js/main.js

409 lines
7.9 KiB
JavaScript
Raw Normal View History

2014-05-31 23:37:23 +00:00
var textShown = false;
2014-06-24 00:55:04 +00:00
$(document).ready(function(){
scaleCanvas();
$('#startBtn').on('touchstart mousedown', function(){
if (importing == 1) {
init(1);
} else {
resumeGame();
}
setTimeout(function(){
document.body.addEventListener('touchstart', function(e) {
handleClickTap(e.changedTouches[0].clientX);
}, false);
}, 1);
});
2014-06-24 00:55:04 +00:00
});
$(window).resize(scaleCanvas);
$(window).unload(function(){
2014-07-04 20:04:16 +00:00
if(gameState ==1 || gameState ==-1) localStorage.setItem("saveState", exportSaveState());
else localStorage.clear();
});
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-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};
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 settings;
if(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
settings = {
platform:"mobile",
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,
prevScale:1,
2014-05-25 14:41:06 +00:00
baseHexWidth:87,
hexWidth:87,
2014-05-25 14:41:06 +00:00
baseBlockHeight:20,
blockHeight:20,
rows:6,
2014-05-25 22:32:49 +00:00
speedModifier:0.7,
2014-06-23 23:21:09 +00:00
creationSpeedModifier:0.7,
2014-07-04 16:42:22 +00:00
comboTime:240
};
} else {
settings = {
platform:"nonmobile",
2014-05-25 22:27:25 +00:00
baseScale:1,
startDist:340,
creationDt:9,
2014-05-25 14:41:06 +00:00
scale:1,
prevScale:1,
hexWidth:65,
2014-05-25 14:41:06 +00:00
baseHexWidth:87,
baseBlockHeight:20,
blockHeight:15,
rows:8,
speedModifier:0.8,
2014-06-23 23:21:09 +00:00
creationSpeedModifier:0.6,
2014-07-04 16:42:22 +00:00
comboTime:240
};
}
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 isGameOver = 3;
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-07-04 16:42:44 +00:00
var MainHex;
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-26 05:11:13 +00:00
var gameState;
setStartScreen();
2014-05-26 03:52:35 +00:00
function resumeGame() {
gameState = 1;
hideUIElements();
$('#pauseBtn').show();
2014-06-30 17:34:55 +00:00
$('#restartBtn').show();
importing = 0;
startTime = Date.now();
}
function hideUIElements() {
$('#pauseBtn').hide();
2014-06-30 16:29:26 +00:00
$('#restartBtn').hide();
$('#startBtn').hide();
}
function init(b) {
if (b) {
clearSaveState();
}
hideUIElements();
2014-05-26 03:52:35 +00:00
var saveState = localStorage.getItem("saveState") || "{}";
saveState = JSONfn.parse(saveState);
2014-06-24 00:55:04 +00:00
document.getElementById("canvas").className = "";
history = {};
importedHistory = undefined;
importing = 0;
isGameOver = 2;
2014-05-26 03:52:35 +00:00
score = saveState.score || 0;
prevScore = 0;
spawnLane = 0;
op = 0;
scoreOpacity = 0;
2014-07-01 15:02:52 +00:00
gameState = 1;
2014-07-04 18:52:14 +00:00
$("#restartBtn").show();
$("#pauseBtn").show();
2014-07-04 16:47:37 +00:00
if(saveState.hex !== undefined) gameState = 1;
2014-05-26 05:11:13 +00:00
scaleCanvas();
settings.blockHeight = settings.baseBlockHeight * settings.scale;
settings.hexWidth = settings.baseHexWidth * settings.scale;
2014-07-04 16:47:37 +00:00
MainHex = saveState.hex || new Hex(settings.hexWidth);
if (saveState.hex) {
2014-07-04 16:42:44 +00:00
MainHex.playThrough += 1;
}
2014-07-04 16:42:44 +00:00
MainHex.sideLength = settings.hexWidth;
count = 0;
2014-06-22 20:52:51 +00:00
var i;
var block;
2014-05-26 03:52:35 +00:00
if(saveState.blocks) {
saveState.blocks.map(function(o){
if (rgbToHex[o.color]) {
o.color = rgbToHex[o.color];
}
});
2014-06-22 20:52:51 +00:00
for(i=0; i<saveState.blocks.length; i++) {
block = saveState.blocks[i];
2014-05-26 03:52:35 +00:00
blocks.push(block);
}
}
2014-05-26 05:11:13 +00:00
else {
blocks = [];
}
2014-05-26 03:52:35 +00:00
gdx = saveState.gdx || 0;
gdy = saveState.gdy || 0;
2014-07-04 16:42:22 +00:00
comboTime = saveState.comboTime || 0;
2014-05-26 03:52:35 +00:00
2014-07-04 16:42:44 +00:00
for(i=0; i<MainHex.blocks.length; i++) {
for (var j=0; j<MainHex.blocks[i].length; j++) {
MainHex.blocks[i][j].height = settings.blockHeight;
MainHex.blocks[i][j].settled = 0;
2014-05-26 03:52:35 +00:00
}
}
2014-05-26 05:11:13 +00:00
2014-07-04 16:42:44 +00:00
MainHex.blocks.map(function(i){
i.map(function(o){
if (rgbToHex[o.color]) {
o.color = rgbToHex[o.color];
}
});
});
2014-06-24 04:15:03 +00:00
2014-07-04 16:42:44 +00:00
MainHex.y = -100;
2014-05-26 05:11:13 +00:00
2014-05-23 20:13:23 +00:00
startTime = Date.now();
2014-07-04 16:42:44 +00:00
waveone = saveState.wavegen || new waveGen(MainHex,Date.now(),[1,1,0],[1,1],[1,1]);
2014-05-26 03:52:35 +00:00
2014-07-04 16:42:44 +00:00
MainHex.texts = []; //clear texts
MainHex.delay = 15;
2014-06-24 00:55:04 +00:00
hideText();
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
2014-05-25 22:27:25 +00:00
iter *= settings.speedModifier;
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
}
2014-06-24 00:55:04 +00:00
function importHistory(j) {
if (!j) {
try {
var ih = JSON.parse(prompt("Import JSON"));
if (ih) {
2014-06-24 15:44:40 +00:00
init(1);
2014-06-24 00:55:04 +00:00
importing = 1;
importedHistory = ih;
}
}
2014-06-24 00:55:04 +00:00
catch (e) {
alert("Error importing JSON");
}
} else {
2014-06-24 17:16:46 +00:00
init();
2014-06-24 00:55:04 +00:00
importing = 1;
importedHistory = j;
}
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-06-24 00:55:04 +00:00
function setStartScreen() {
$('#startBtn').show();
2014-07-04 18:52:14 +00:00
if (isStateSaved()) {
2014-06-28 02:15:16 +00:00
init();
importing = 0;
}
gameState = 0;
2014-06-28 02:15:16 +00:00
requestAnimFrame(animLoop);
2014-06-24 00:55:04 +00:00
}
2014-05-23 20:13:23 +00:00
//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
function animLoop() {
2014-06-28 02:15:16 +00:00
switch (gameState) {
case 1:
requestAnimFrame(animLoop);
2014-07-04 16:42:44 +00:00
if (!MainHex.delay) {
update();
} else {
2014-07-04 16:42:44 +00:00
MainHex.delay--;
}
2014-06-28 02:15:16 +00:00
render();
if (checkGameOver() && !importing) {
2014-06-28 02:15:16 +00:00
gameState = 2;
clearSaveState();
}
break;
case 0:
requestAnimFrame(animLoop);
if (importing) {
update();
}
render();
break;
case -1:
requestAnimFrame(animLoop);
render();
break;
case 2:
requestAnimFrame(animLoop);
update();
render();
break;
case 3:
requestAnimFrame(animLoop);
fadeOutObjectsOnScreen();
render();
break;
2014-06-28 02:15:16 +00:00
default:
setStartScreen();
break;
2014-05-25 14:41:06 +00:00
}
2014-05-17 23:02:28 +00:00
}
2014-06-24 02:21:36 +00:00
function updateHighScore(){
2014-06-28 02:15:16 +00:00
if(localStorage.getItem('highscores')){
highscores = localStorage.getItem('highscores').split(',').map(Number);
}
for (var i = 0; i < numHighScores; i++) {
if (highscores[i] <= score) {
highscores.splice(i, 0, score);
highscores = highscores.slice(0,-1);
break;
}
}
localStorage.setItem('highscores', highscores);
2014-06-24 02:21:36 +00:00
}
2014-07-04 16:47:37 +00:00
function isInfringing(hex){
for(var i=0;i<hex.sides;i++){
2014-05-26 00:34:56 +00:00
var subTotal=0;
2014-07-04 16:47:37 +00:00
for (var j=0;j<hex.blocks[i].length;j++){
subTotal+=hex.blocks[i][j].deleted ;
2014-05-26 00:34:56 +00:00
}
2014-07-04 16:47:37 +00:00
if (hex.blocks[i].length- subTotal>settings.rows){
2014-06-04 18:33:40 +00:00
return true;
2014-05-26 00:34:56 +00:00
}
}
return false;
}
2014-06-24 00:55:04 +00:00
function checkGameOver() {
2014-07-04 16:42:44 +00:00
for (var i = 0; i < MainHex.sides; i++) {
if (isInfringing(MainHex)) {
2014-06-28 02:15:16 +00:00
updateHighScore();
gameOverDisplay();
return true;
}
}
return false;
2014-05-24 01:36:59 +00:00
}
2014-05-24 18:52:21 +00:00
window.onblur = function (e) {
2014-06-24 00:55:04 +00:00
if (gameState==1) {
2014-06-04 18:33:40 +00:00
pause();
2014-06-24 00:55:04 +00:00
}
2014-05-25 05:12:06 +00:00
};
2014-05-27 01:05:58 +00:00
function showHelp(){
if(gameState != 0){
pause();
2014-05-27 01:05:58 +00:00
}
$('#helpScreen').fadeToggle(150, "linear");
2014-06-23 23:21:09 +00:00
}