1
1
<?php
2
- header ('Access-Control-Allow-Origin: * ' );
3
- header ('Content-type: text/plain; charset=utf-8 ' );
4
2
ini_set ('display_errors ' ,1 );
5
3
ini_set ('display_startup_errors ' ,1 );
6
4
error_reporting (E_ALL );
28
26
29
27
$ function_name = $ _GET ['callback ' ];
30
28
31
-
32
29
switch ($ type ) {
33
30
case 'create ' :
31
+ global $ db ;
34
32
// Create random 5 char ID for new game
35
33
$ gameId = createGame ();
36
- $ player = new Player ($ gameId , $ playerName , $ score , $ playerId );
37
- $ player ->update ($ player ->gameId , $ player ->id , $ player ->score );
38
- $ response = json_encode ((array )$ player , JSON_UNESCAPED_UNICODE );
34
+
35
+ // New player object
36
+ $ id = 1 ; // ID is set to 1 for the player who creates the game
37
+ $ player = new Player ($ gameId , $ playerName , $ score , $ id );
38
+
39
+ // Save player object as JSON to database
40
+ $ playerJsonId = 'player_1 ' ;
41
+ $ playerJson = json_encode ($ player , JSON_UNESCAPED_UNICODE );
42
+ $ sql = "UPDATE game SET $ playerJsonId = ' $ playerJson' WHERE id = ' $ gameId' " ;
43
+ $ db ->query ($ sql );
44
+
45
+ // Player JSON to be returned to js with JSONP
46
+ $ response = $ playerJson ;
39
47
break ;
40
48
case 'join ' :
41
49
// Join an already created game
50
+
51
+ // Create new player object
42
52
$ player = new Player ($ gameId , $ playerName );
53
+
54
+ // joingame() returns player object as JSON to be returned to js
43
55
$ response = joinGame ($ player , $ gameId );
44
56
break ;
45
57
case 'u ' :
46
58
// Update settings for player
59
+
60
+ // Create new player object
47
61
$ player = new Player ($ gameId , $ playerName , $ score , $ playerId );
48
- $ player ->update ($ gameId , $ playerId , $ score );
49
- $ response = json_encode ((array )$ player , JSON_UNESCAPED_UNICODE );
62
+
63
+ // The update() method returns the gameStatus.
64
+ // If more than one player is still active, player object is returned as JSON.
65
+ // If only one player has lives left, the game is over, and JSON with gameStatus: finished is returned
66
+ $ u = $ player ->update ($ gameId , $ playerId , $ score );
67
+ if ($ u == 'updated ' || $ u == 'ongoing ' )
68
+ $ response = json_encode ($ player , JSON_UNESCAPED_UNICODE );
69
+ else if ($ u == 'finished ' ) {
70
+ $ s = $ player ->gameStatus ;
71
+ $ response = "{ 'gameStatus': $ s } " ;
72
+ }
50
73
default :
51
74
//
52
75
break ;
61
84
echo $ response ;
62
85
echo "); \n" ;
63
86
87
+
64
88
//**
65
- // Class for player creation. Data is stored in database.
89
+ // Player class
66
90
//**
67
91
68
92
class Player {
@@ -88,17 +112,48 @@ public function __construct($gameId, $name = 'Joe', $score = 10, $id = "") {
88
112
$ this ->gameStatus = 10 ;
89
113
}
90
114
115
+ // Function that receives player data from the js and saves it to the database
91
116
public function update ($ gameId , $ playerId , $ score ) {
92
117
global $ db ;
93
-
94
118
$ this ->score = $ score ;
119
+ $ status = $ this ->gameStatus ($ gameId );
120
+
121
+ if ($ status != 10 )
122
+ return 'finished ' ;
123
+ else {
124
+
125
+ $ playerJsonId = 'player_ ' . $ playerId ;
126
+ $ playerJson = json_encode ($ this , JSON_UNESCAPED_UNICODE );
127
+ $ sql = "UPDATE game SET $ playerJsonId = ' $ playerJson' WHERE id = ' $ gameId' " ;
128
+ $ db ->query ($ sql );
129
+
130
+ if ($ score != 0 )
131
+ return 'updated ' ;
132
+ else
133
+ return 'ongoing ' ;
134
+ }
135
+ }
95
136
96
- $ playerJsonId = 'player_ ' . $ playerId ;
97
- $ playerJson = json_encode ($ this , JSON_UNESCAPED_UNICODE );
98
- $ sql = "UPDATE game SET $ playerJsonId = ' $ playerJson' WHERE id = ' $ gameId' " ;
99
- $ db ->query ($ sql );
137
+ // Function that returns the number of players that's already joined the game
138
+ public function numberOfPlayers ($ gameId ) {
139
+ global $ db ;
140
+
141
+ $ timeOut = time ();
142
+
143
+ $ sql = "SELECT * FROM game WHERE id = ' $ gameId' " ;
144
+ $ q = $ db ->query ($ sql );
145
+ $ r = $ q ->fetch_assoc ();
146
+ $ count = 0 ;
147
+
148
+ for ($ i = 1 ; $ i <= 4 ; $ i ++) {
149
+ if ($ r ["player_ $ i " ] != "" )
150
+ $ count ++;
151
+ }
152
+
153
+ return $ count ;
100
154
}
101
155
156
+
102
157
public function getId () {
103
158
return $ this ->id ;
104
159
}
@@ -118,27 +173,45 @@ public function setName($name) {
118
173
public function setscore ($ score ) {
119
174
return $ this ->score = $ score ;
120
175
}
121
-
176
+
122
177
// Private methods
123
178
124
- public function numberOfPlayers ($ gameId ) {
179
+ // Function that returns
180
+ private function gameStatus ($ gameId ) {
125
181
global $ db ;
126
-
127
- $ timeOut = time ();
128
-
182
+ $ stillActive = array ();
183
+
184
+ // Check game status
129
185
$ sql = "SELECT * FROM game WHERE id = ' $ gameId' " ;
130
186
$ q = $ db ->query ($ sql );
131
187
$ r = $ q ->fetch_assoc ();
132
- $ count = 0 ;
188
+ $ status = $ r ['status ' ];
189
+ $ this ->gameStatus = $ status ;
133
190
134
- for ($ i = 1 ; $ i <= 4 ; $ i ++) {
135
- if ($ r ["player_ $ i " ] != "" )
136
- $ count ++;
191
+ $ playerCount = $ this ->numberOfPlayers ($ gameId );
192
+
193
+ // Save player data to array if still active (in the sense that the player has > 0 lives left)
194
+ for ($ k = 1 ; $ k <= $ playerCount ; $ k ++) {
195
+ $ pId = 'player_ ' . $ k ;
196
+ $ obj = json_decode ($ r [$ pId ]);
197
+ if ($ obj ->score > 0 )
198
+ $ stillActive [$ k ] = $ obj ->score ;
137
199
}
138
200
139
- return $ count ;
140
- }
201
+ // Check if more than one player is still active. If not, the games is over and the active player has won
202
+ if (sizeof ($ stillActive ) > 1 ) {
203
+ $ sql = "UPDATE game SET status = 10 WHERE id = ' $ gameId' " ;
204
+ $ db ->query ($ sql );
141
205
206
+ return 10 ;
207
+ } else {
208
+ $ s = key ($ stillActive );
209
+ $ sql = "UPDATE game SET status = $ s WHERE id = ' $ gameId' " ;
210
+ $ db ->query ($ sql );
211
+
212
+ return $ s ;
213
+ }
214
+ }
142
215
}
143
216
144
217
//**
@@ -149,6 +222,7 @@ function createGame() {
149
222
global $ timeToJoin ;
150
223
global $ db ;
151
224
global $ gameId ;
225
+ global $ score ;
152
226
153
227
$ base = str_split ('ABCDEFGHIJKLMNOPQRSTUVWXYZ ' );
154
228
shuffle ($ base );
@@ -161,7 +235,7 @@ function createGame() {
161
235
$ timeOut = $ time + $ timeToJoin ;
162
236
163
237
// Save game to database
164
- $ sql = "INSERT INTO game (timestamp, timeout, id) VALUES ( $ time, $ timeOut, ' $ id') " ;
238
+ $ sql = "INSERT INTO game (timestamp, timeout, id, status, defaultScore ) VALUES ( $ time, $ timeOut, ' $ id', 10, $ score ) " ;
165
239
$ db ->query ($ sql );
166
240
167
241
return $ id ;
@@ -188,8 +262,9 @@ function joinGame($player, $gameId) {
188
262
$ toStart = $ timeOut - $ time ;
189
263
190
264
$ player ->countdown = $ toStart ;
265
+ $ player ->score = intval ($ r ['defaultScore ' ]);
191
266
192
- if ($ timeOut > $ time && $ q -> num_rows > 0 ) {
267
+ if ($ timeOut > $ time ) {
193
268
// Get the number of already registered players and assign playerId
194
269
$ id = $ player ->numberOfPlayers ($ gameId ) + 1 ;
195
270
$ playerName = 'player_ ' . $ id ;
0 commit comments