schtonn 4 years ago
parent
commit
5cda6f599f
4 changed files with 11 additions and 55 deletions
  1. 0 4
      core/core_data/c2NodG9ubg==.html
  2. 0 40
      core/core_data/js/cnt.js
  3. 5 5
      core/css/main.css
  4. 6 6
      core/js/core.js

File diff suppressed because it is too large
+ 0 - 4
core/core_data/c2NodG9ubg==.html


+ 0 - 40
core/core_data/js/cnt.js

@@ -1,40 +0,0 @@
-countdown = function (userOptions) {
-	var h, m, s, t;
-	var init = function () {
-		userOptions.time = userOptions.time * 60 - userOptions.lefttime;
-		s = userOptions.time % 60;
-		m = parseInt(userOptions.time % 3600 / 60);
-		h = parseInt(userOptions.time / 3600);
-	}
-	var setval = function () {
-		if (s >= 10) userOptions.sbox.innerHTML = s;
-		else userOptions.sbox.innerHTML = '0' + s.toString();
-		if (m >= 10) userOptions.mbox.innerHTML = m;
-		else userOptions.mbox.innerHTML = '0' + m;
-		if (h >= 10) userOptions.hbox.innerHTML = h;
-		else userOptions.hbox.innerHTML = '0' + h;
-	}
-	var step = function () {
-		if (s > 0) {
-			s--;
-		} else if (m > 0) {
-			m--;
-			s = 60;
-			s--;
-		} else if (h > 0) {
-			h--;
-			m = 60;
-			m--;
-			s = 60;
-			s--;
-		} else {
-			clearInterval(interval);
-			userOptions.finish();
-			console.clear();
-			return;
-		}
-		setval();
-	}
-	init();
-	interval = setInterval(step, 1000);
-};

+ 5 - 5
core/css/main.css

@@ -6,7 +6,7 @@
 
 body, html {
 	overflow: hidden;
-	font-family: Helvetica, Arial, sans-serif;
+	font-family: 'Comic Sans MS', Arial, sans-serif;
 	color: #fff;
 	font-size: 11px;
 	background: #010c12;
@@ -36,7 +36,7 @@ canvas {
 }
 
 .ui {
-	font-family: Arial, Helvetica, sans-serif;
+	font-family: 'Comic Sans MS', Helvetica, sans-serif;
 	font-size: 10px;
 	color: #999999;
 	text-align: left;
@@ -76,9 +76,9 @@ canvas {
 	height: 100%;
 	box-sizing: border-box;
 
-	font-family: "Montserrat", Helvetica, Arial, sans-serif;
+	font-family: 'Comic Sans MS', Helvetica, Arial, sans-serif;
 	font-size: 20px;
-	text-transform: uppercase;
+	text-transform: lowercase;
 	line-height: 1.4;
 }
 
@@ -141,7 +141,7 @@ canvas {
 
 .ui a.external {
 	outline: none;
-	font-family: sans-serif;
+	font-family: 'Comic Sans MS';
 	font-size: 1em;
 	font-weight: bold;
 	text-decoration: none;

+ 6 - 6
core/js/core.js

@@ -169,11 +169,11 @@ var Core = new function(){
 		score = Math.round(score);
 
 		// Write the users score to the UI
-		title.innerHTML = 'Game Over! (' + score + ' points)';
+		title.innerHTML = 'game over! (' + score + ' points)';
 
 		// Update the status bar with the final score and time
-		scoreText = 'Score: <span>' + Math.round( score ) + '</span>';
-		scoreText += ' Time: <span>' + Math.round( ( ( new Date().getTime() - time ) / 1000 ) * 100 ) / 100 + 's</span>';
+		scoreText = 'score: <span>' + Math.round( score ) + '</span>';
+		scoreText += ' time: <span>' + Math.round( ( ( new Date().getTime() - time ) / 1000 ) * 100 ) / 100 + 's</span>';
 		status.innerHTML = scoreText;
 	}
 
@@ -563,9 +563,9 @@ var Core = new function(){
 
 		// If the game is active, update the game status bar with score, duration and FPS
 		if( playing ) {
-			scoreText = 'Score: <span>' + Math.round( score ) + '</span>';
-			scoreText += ' Time: <span>' + Math.round( ( ( new Date().getTime() - time ) / 1000 ) * 100 ) / 100 + 's</span>';
-			scoreText += ' <p class="fps">FPS: <span>' + Math.round( fps ) + ' ('+Math.round(Math.max(Math.min(fps/FRAMERATE, FRAMERATE), 0)*100)+'%)</span></p>';
+			scoreText = 'score: <span>' + Math.round( score ) + '</span>';
+			scoreText += ' time: <span>' + Math.round( ( ( new Date().getTime() - time ) / 1000 ) * 100 ) / 100 + 's</span>';
+			scoreText += ' <p class="fps">fps: <span>' + Math.round( fps ) + ' ('+Math.round(Math.max(Math.min(fps/FRAMERATE, FRAMERATE), 0)*100)+'%)</span></p>';
 			status.innerHTML = scoreText;
 
 			if( player.energy === 0 ) {

Some files were not shown because too many files changed in this diff