X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Fbriskin5%2FObj%2Frules_old_rules.phh;h=712e650eb61fb60695fc79eddc10c1e23d193081;hb=fd5eec5ecd988df774eb9fb8744a0274e918980b;hp=29d9833c78b52d80e1b04fe1bcffddc19747d536;hpb=6a939415c569cb6b078b3dab42be2d35c7238d4f;p=brisk.git diff --git a/web/briskin5/Obj/rules_old_rules.phh b/web/briskin5/Obj/rules_old_rules.phh index 29d9833..712e650 100644 --- a/web/briskin5/Obj/rules_old_rules.phh +++ b/web/briskin5/Obj/rules_old_rules.phh @@ -125,6 +125,30 @@ class Rules_old_rules extends Rules { return FALSE; } + function rules_checkchoose(&$bri, $curtime, $action, $user, &$ret_s, $a_brisco) + { + if ( !($a_brisco >= 0 && $a_brisco < 40)) // (BIN5_CARD_HAND * BIN5_PLAYERS_N)) ) + return FALSE; + + if ( !($this->table->asta_win > -1 && + $user->table_pos == $this->table->asta_win) ) + return FALSE; + + return TRUE; + } + + function rules_nextauct(&$bri, $curtime, $action, $user, $maxcard) + { + if (($this->table->asta_pla_n > ($maxcard > -1 ? 1 : 0)) && + !($this->table->asta_card == 9 && $this->table->asta_pnt == 120)) { + return TRUE; + } + else { + return FALSE; + } + + } + function engine(&$bri, $curtime, $action, $user, &$opt1 = NULL, &$opt2 = NULL, &$opt3 = NULL) { GLOBAL $G_all_points, $G_dbasetype; @@ -133,9 +157,12 @@ class Rules_old_rules extends Rules { $pnts_sav = array(); if ($action == BIN5_RULES_ASTA) { - return ($this->rules_asta($bri, $curtime, $action, $user, &$opt1, $opt2, $opt3)); + return ($this->rules_asta($bri, $curtime, $action, $user, $opt1, $opt2, $opt3)); + } + else if ($action == BIN5_RULES_NEXTAUCT) { + return ($this->rules_nextauct($bri, $curtime, $action, $user, $opt1)); } - if ($action == BIN5_RULES_ALLPASS) { // return TRUE if all correct + else if ($action == BIN5_RULES_ALLPASS) { // return TRUE if all correct $table->old_act = $action; $table->old_asta_win = -1; $table->old_pnt = 0; @@ -146,7 +173,7 @@ class Rules_old_rules extends Rules { $game_delta = 1; // $table->game_next(1); - $table->game_init(&$bri->user); + $table->game_init($bri->user); } else if ($action == BIN5_RULES_ABANDON) { // return TRUE if all correct if (!($user->handpt <= 2)) { @@ -165,7 +192,10 @@ class Rules_old_rules extends Rules { // Non si cambia mazzo se si abbandona la partita $game_delta = 0; // $table->game_next(0); - $table->game_init(&$bri->user); + $table->game_init($bri->user); + } + else if ($action == BIN5_RULES_CHECKCHOOSE) { + return ($this->rules_checkchoose($bri, $curtime, $action, $user, $opt1, $opt2)); } else if ($action == BIN5_RULES_FINISH) { // return TRUE if all correct $table->old_act = $action; @@ -271,7 +301,7 @@ class Rules_old_rules extends Rules { $table->old_pnt, $table->old_asta_pnt, $table->old_tourn_pts); - if ($user->table_orig < TABLES_AUTH_N) { + if ($user->table_orig < TABLES_APPR_N) { require_once("../Obj/dbase_".$G_dbasetype.".phh"); if (($bdb = BriskDB::create()) != FALSE) { @@ -284,7 +314,7 @@ class Rules_old_rules extends Rules { log_points($user->ip, $curtime, $user, "STAT:BRISKIN5:FINISH_GAME", $plist); } - $table->game_init(&$bri->user); + $table->game_init($bri->user); return (TRUE); } @@ -332,8 +362,7 @@ class Rules_old_rules extends Rules { $noty .= sprintf($mlang_bin5_rules['info_part'][$G_lang], $tg_br, $tg_hr, $tg_bo, $tg_bc, $win_name, - $fri_name, - $old_tourn_pts); + $fri_name); if ($old_pnt == 120) { $noty .= sprintf($mlang_bin5_rules['info_capp'][$G_lang], $tg_br, $tg_hr, $tg_bo, $tg_bc ); @@ -360,8 +389,7 @@ class Rules_old_rules extends Rules { else { $noty .= sprintf($mlang_bin5_rules['info_alon'][$G_lang], $tg_br, $tg_hr, $tg_bo, $tg_bc, - $win_name, - $old_tourn_pts); + $win_name); if ($old_pnt == 120) { $noty .= sprintf($mlang_bin5_rules['info_acap'][$G_lang], $tg_br, $tg_hr, $tg_bo, $tg_bc);