From 56654ce4046453f53782a7242d7a610eaf7dfef0 Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Sat, 27 Jun 2009 15:19:41 +0000 Subject: [PATCH] 3 players management fixed --- web/briskin5/index_wr.php | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/web/briskin5/index_wr.php b/web/briskin5/index_wr.php index 4c6f0c6..376d5ff 100644 --- a/web/briskin5/index_wr.php +++ b/web/briskin5/index_wr.php @@ -132,19 +132,21 @@ else if ($user->stat == 'table') { } } else if ($argz[0] == 'exitlock') { - $user->exitislock = ($user->exitislock == TRUE ? FALSE : TRUE); - for ($ct = 0, $i = 0 ; $i < BRISKIN5_PLAYERS_N ; $i++) { - $user_cur[$i] = &$bri->user[$table->player[$i]]; - if ($user_cur[$i]->exitislock == FALSE) - $ct++; - } - for ($i = 0 ; $i < BRISKIN5_PLAYERS_N ; $i++) { - $ret = sprintf('gst.st = %d;', $user_cur[$i]->step+1); - $ret .= sprintf('exitlock_show(%d, %s);', $ct, - ($user_cur[$i]->exitislock ? 'true' : 'false')); - $user_cur[$i]->comm[$user_cur[$i]->step % COMM_N] = $ret; - log_wr($user_cur[$i]->comm[$user_cur[$i]->step % COMM_N]); - $user_cur[$i]->step_inc(); + if ($user->exitislock == TRUE) { + $user->exitislock = ($user->exitislock == TRUE ? FALSE : TRUE); + for ($ct = 0, $i = 0 ; $i < BRISKIN5_PLAYERS_N ; $i++) { + $user_cur[$i] = &$bri->user[$table->player[$i]]; + if ($user_cur[$i]->exitislock == FALSE) + $ct++; + } + for ($i = 0 ; $i < BRISKIN5_PLAYERS_N ; $i++) { + $ret = sprintf('gst.st = %d;', $user_cur[$i]->step+1); + $ret .= sprintf('exitlock_show(%d, %s);', $ct, + ($user_cur[$i]->exitislock ? 'true' : 'false')); + $user_cur[$i]->comm[$user_cur[$i]->step % COMM_N] = $ret; + log_wr($user_cur[$i]->comm[$user_cur[$i]->step % COMM_N]); + $user_cur[$i]->step_inc(); + } } } else if ($user->subst == 'asta') { @@ -331,7 +333,7 @@ else if ($user->stat == 'table') { if ($table->asta_win > -1 && $user->table_pos == $table->asta_win) { $a_brisco = $argz[1]; - if ($a_brisco >= 0 && $a_brisco < 40) { + if ($a_brisco >= 0 && $a_brisco < (BRISKIN5_PLAYERS_N == 5 ? 40 : 24)) { $table->briscola = $a_brisco; $table->friend = $table->card[$a_brisco]->owner; log_wr("GSTART 2"); @@ -387,7 +389,7 @@ else if ($user->stat == 'table') { log_wr("CIC".$loggo); /* se era il suo turno e la carta era sua ed era in mano */ - if ($a_play >=0 && $a_play < 40 && + if ($a_play >=0 && $a_play < (BRISKIN5_PLAYERS_N == 5 ? 40 : 24) && ($user->table_pos == (($table->gstart + $table->turn) % BRISKIN5_PLAYERS_N)) && $table->card[$a_play]->stat == 'hand' && $table->card[$a_play]->owner == $user->table_pos) { -- 2.17.1