-
Notifications
You must be signed in to change notification settings - Fork 0
/
gagner.php
88 lines (69 loc) · 3.18 KB
/
gagner.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
$idRoom = $_GET['idRoom'];
$username = $_GET['username'];
if (file_exists('room.json')) {
$file = file_get_contents('room.json');
$datajson = json_decode($file, true);
switch ($idRoom) {
case 0:
$hasWon = 0;
for ($i = 0; $i<count($datajson["chambre1"]) ; $i++ ){
if ( count ($datajson["chambre1"][$i]["cartes"] ) == 0 && $datajson["chambre1"][$i]["name"] != $username){
$hasWon ++;
}
}
for ($i = 0; $i<count($datajson["chambre1"]) ; $i++ )
if (count( $datajson["chambre1"][$i]["cartes"] ) == 0 && $datajson["chambre1"][$i]["outall"] == false && $datajson["chambre1"][$i]["name"] = $username){
$datajson["chambre1"][$i]["note"] = $datajson["chambre1"][$i]["note"]+ (5 - $hasWon) ;
$datajson["chambre1"][$i]["outall"] = true;
$hasWon++;
}
if($hasWon ==3){
for ($i = 0; $i<count($datajson["chambre1"]) ; $i++ ){
$datajson["chambre1"][$i]["gameStatus"] = "false";
}
}
break;
case 1:
$hasWon = 0;
for ($i = 0; $i<count($datajson["chambre2"]) ; $i++ ){
if ( count ($datajson["chambre2"][$i]["cartes"] ) == 0 && $datajson["chambre2"][$i]["name"] != $username){
$hasWon ++;
}
}
for ($i = 0; $i<count($datajson["chambre2"]) ; $i++ )
if (count( $datajson["chambre2"][$i]["cartes"] ) == 0 && $datajson["chambre2"][$i]["outall"] == false && $datajson["chambre2"][$i]["name"] = $username){
$datajson["chambre2"][$i]["note"] = $datajson["chambre2"][$i]["note"]+ (5 - $hasWon) ;
$datajson["chambre2"][$i]["outall"] = true;
$hasWon++;
}
if($hasWon ==3){
for ($i = 0; $i<count($datajson["chambre2"]) ; $i++ ){
$datajson["chambre2"][$i]["gameStatus"] = "false";
}
}
break;
case 2:
$hasWon = 0;
for ($i = 0; $i<count($datajson["chambre3"]) ; $i++ ){
if ( count ($datajson["chambre3"][$i]["cartes"] )== 0 && $datajson["chambre3"][$i]["name"] != $username){
$hasWon ++;
}
}
for ($i = 0; $i<count($datajson["chambre3"]) ; $i++ )
if (count( $datajson["chambre3"][$i]["cartes"] ) == 0 && $datajson["chambre3"][$i]["outall"] == false && $datajson["chambre3"][$i]["name"] = $username){
$datajson["chambre3"][$i]["note"] = $datajson["chambre3"][$i]["note"]+ (5 - $hasWon) ;
$datajson["chambre3"][$i]["outall"] = true;
$hasWon++;
}
if($hasWon ==3){
for ($i = 0; $i<count($datajson["chambre3"]) ; $i++ ){
$datajson["chambre3"][$i]["gameStatus"] = "false";
}
}
break;
}
$json_string = json_encode($datajson);
file_put_contents('room.json', $json_string);
echo "success";
}