Skip to content

Commit 00fa48e

Browse files
committed
Bug fix in game settings
Store original score so it can be reset before new game
1 parent f849e76 commit 00fa48e

File tree

2 files changed

+21
-5
lines changed

2 files changed

+21
-5
lines changed

include/settings.html

+1
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@
137137
$('#settings-btn-return').on('click', function() {
138138
game.timeToJoin = $('#settings-timeToJoin').val().trim();
139139
game.score = $('#settings-lives').val().trim();
140+
game.originalScore = game.score;
140141
game.coolDownPeriod = $('#settings-coolDownPeriod').val().trim() * 1000;
141142
game.timeBetweenHits = $('#settings-timeBetweenHits').val().trim() * 1000;
142143
$('#main').fadeOut(200).promise().done( function() { $(this).load('include/controllers.html').fadeIn(200) });

js/game.js

+20-5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ if(typeof game === 'undefined')
99

1010
//** Game settings
1111
game.score = game.score || 5; // Number of lives each player starts with
12+
game.originalScore = game.score; // Variable to hold the original score so it can be reset after a game session
1213
game.timeToJoin = game.timeToJoin || 25; // Interval from games is created until it starts [s]
1314
game.timeBetweenHits = game.timeBetweenHits || 2000; // Time from one hit to next possible [ms]
1415
game.coolDownPeriod = game.coolDownPeriod || 2000; // Shortest allowed interval between shots fired [ms]
@@ -44,6 +45,7 @@ game.rgbLed = {green: 0, red: 1, blue: 2, off: 100};
4445
game.local = 0;
4546

4647

48+
4749
//**
4850
// Joystick, based on the amazing nippleJS by @yoannmoinet: http://yoannmoinet.github.io/nipplejs/
4951
//**
@@ -167,8 +169,11 @@ game.createGame = function() {
167169
// Variables needed to time the start of the game for all players
168170
var countDown = game.timeToJoin;
169171

172+
// Set the score to the original score
173+
game.score = game.originalScore;
174+
170175
// Sets text to be shown while game is being created and
171-
$('#message-container').fadeIn(300);
176+
$('#message-container').fadeIn(200);
172177
$('#message').text('Creating...');
173178

174179
// Send AJAX request to PHP page that creates game ID and entry in database. Object with player and game information is returned as JSONP
@@ -182,9 +187,14 @@ game.createGame = function() {
182187
game.gameId = r.gameId;
183188
game.playerId = r.id;
184189

190+
// Sending player ID to Development Kit
191+
ble.charVal[19] = game.playerId;
192+
193+
ble.priorityWrite(ble.charVal);
194+
185195
// Push new gameId to #message so other players may see it and join in
186-
$('#message').fadeOut(500).promise().done( function() {
187-
$(this).text(game.gameId).fadeIn(500);
196+
$('#message').fadeOut(200).promise().done( function() {
197+
$(this).text(game.gameId).fadeIn(200);
188198
});
189199

190200
});
@@ -228,9 +238,9 @@ game.joinGamePopup = function(fail = false) {
228238
</div>
229239
</div>`;
230240

231-
$('#message').html(input).fadeIn(500);
241+
$('#message').html(input).fadeIn(200);
232242
if(!fail) {
233-
$('#message-container').fadeIn(500);
243+
$('#message-container').fadeIn(200);
234244
} else {
235245
$('#join-fail').text('').fadeOut(100).promise().done( function() {
236246
$(this).text("Could not join the game. Please try again.").fadeIn(500);
@@ -282,6 +292,11 @@ game.joinGame = function(gId) {
282292
game.gameId = r.gameId;
283293
game.playerId = r.id;
284294

295+
// Sending player ID to Development Kit
296+
ble.charVal[19] = game.playerId;
297+
298+
ble.priorityWrite(ble.charVal);
299+
285300
// This is an attempt to time the start of the game and sync all players. Works fine in tests, but by no means good enough
286301
// and should be replaced. In short, it uses the php server's timestamp to sync the new players joining the game, and is therefore
287302
// exposed to delays over the network. The player who created the game has a countdown based on the browser's timestamp.

0 commit comments

Comments
 (0)