@@ -9,6 +9,7 @@ if(typeof game === 'undefined')
9
9
10
10
//** Game settings
11
11
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
12
13
game . timeToJoin = game . timeToJoin || 25 ; // Interval from games is created until it starts [s]
13
14
game . timeBetweenHits = game . timeBetweenHits || 2000 ; // Time from one hit to next possible [ms]
14
15
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};
44
45
game . local = 0 ;
45
46
46
47
48
+
47
49
//**
48
50
// Joystick, based on the amazing nippleJS by @yoannmoinet: http://yoannmoinet.github.io/nipplejs/
49
51
//**
@@ -167,8 +169,11 @@ game.createGame = function() {
167
169
// Variables needed to time the start of the game for all players
168
170
var countDown = game . timeToJoin ;
169
171
172
+ // Set the score to the original score
173
+ game . score = game . originalScore ;
174
+
170
175
// Sets text to be shown while game is being created and
171
- $ ( '#message-container' ) . fadeIn ( 300 ) ;
176
+ $ ( '#message-container' ) . fadeIn ( 200 ) ;
172
177
$ ( '#message' ) . text ( 'Creating...' ) ;
173
178
174
179
// 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() {
182
187
game . gameId = r . gameId ;
183
188
game . playerId = r . id ;
184
189
190
+ // Sending player ID to Development Kit
191
+ ble . charVal [ 19 ] = game . playerId ;
192
+
193
+ ble . priorityWrite ( ble . charVal ) ;
194
+
185
195
// 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 ) ;
188
198
} ) ;
189
199
190
200
} ) ;
@@ -228,9 +238,9 @@ game.joinGamePopup = function(fail = false) {
228
238
</div>
229
239
</div>` ;
230
240
231
- $ ( '#message' ) . html ( input ) . fadeIn ( 500 ) ;
241
+ $ ( '#message' ) . html ( input ) . fadeIn ( 200 ) ;
232
242
if ( ! fail ) {
233
- $ ( '#message-container' ) . fadeIn ( 500 ) ;
243
+ $ ( '#message-container' ) . fadeIn ( 200 ) ;
234
244
} else {
235
245
$ ( '#join-fail' ) . text ( '' ) . fadeOut ( 100 ) . promise ( ) . done ( function ( ) {
236
246
$ ( this ) . text ( "Could not join the game. Please try again." ) . fadeIn ( 500 ) ;
@@ -282,6 +292,11 @@ game.joinGame = function(gId) {
282
292
game . gameId = r . gameId ;
283
293
game . playerId = r . id ;
284
294
295
+ // Sending player ID to Development Kit
296
+ ble . charVal [ 19 ] = game . playerId ;
297
+
298
+ ble . priorityWrite ( ble . charVal ) ;
299
+
285
300
// 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
286
301
// and should be replaced. In short, it uses the php server's timestamp to sync the new players joining the game, and is therefore
287
302
// exposed to delays over the network. The player who created the game has a countdown based on the browser's timestamp.
0 commit comments