Skip to content

Commit

Permalink
test avec aPiochée
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume committed Nov 16, 2016
1 parent 432fe7e commit ab1cfcd
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 8 deletions.
12 changes: 6 additions & 6 deletions app/Http/Controllers/JeuxController.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,10 @@ public function myturn(Request $req) {
$username = $req->session()->get('username');
$joueur = Joueur::where('username', $username)->firstOrFail();
$turn = $joueur->checkTurn();
$res = array('myturn' => $turn);

// TODO si $turn est vrai, le joueur pioche une carte
// TODO, en plus de lui renvoyé la carte qu'il a pioché, on peut lui renvoyé toute sa main
// ça permettrait au mec de se resynchro avec le serveur à cas ou il quitte la page ou autre
// + si il essaie de cheat en modifiant le JS
// TODO ça permettrait au mec de se resynchro avec le serveur à cas ou il quitte la page ou autre
// TODO + si il essaie de cheat en modifiant le JS

// De toute façon on peut blinder le json

Expand All @@ -38,9 +36,11 @@ public function myturn(Request $req) {
// A la fin d'un tour, on set aPioché à faux pour tous les joueurs
// ensuite on pourra supprimer ismyturn dans le script js

if ($turn) {
if ($joueur->aPioche()) $turn = false;

$res['card'] = $joueur->piocherCarte()->valeur;
$res = array('myturn' => $turn);
if ($turn) {
$res['card'] = $joueur->piocherCarte()->valeur;
}

return json_encode($res);
Expand Down
9 changes: 7 additions & 2 deletions app/Models/Joueur.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Joueur extends Model
protected $table = 'joueurs';
protected $primaryKey = 'id';//Par défaut, pas besoin de le spécifier là

protected $fillable = ['username', 'salon_id'];
protected $fillable = ['username', 'salon_id', 'aPioche'];

public $timestamps = false;

Expand Down Expand Up @@ -58,7 +58,12 @@ public function piocherCarte() {
CartesDansPile::destroy($carteID);

Main::ajouterCarte($this->id, $carteID);

$this->aPioche = true;
return $carte;
}

public function aPioche() {
return $this->aPioche;
}

}
5 changes: 5 additions & 0 deletions app/Models/Salon.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ public function nextPlayer() {
$this->id_prochain_joueur = $prochainJoueur->id;
} else {
$this->id_prochain_joueur = 0;
// TODO set aPioche à faux pour tous les joueurs
$joueurs = Joueur::where('salon_id', $this->id);
foreach ($joueurs as $joueur) {
$joueur->aPioche = false;
}
$this->nextPlayer();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ public function up()
$table->string('username')->unique();
$table->integer('salon_id')->unsigned();
$table->boolean('is_ready');
$table->boolean('aPioche');
});

Schema::table('joueurs', function(Blueprint $table){
Expand Down

0 comments on commit ab1cfcd

Please sign in to comment.