5 * Copyright (C) 2006-2013 Matteo Nastasi
6 * mailto: nastasi@alternativeoutput.it
7 * matteo.nastasi@milug.org
8 * web: http://www.alternativeoutput.it
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABLILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details. You should have received a
19 * copy of the GNU General Public License along with this program; if
20 * not, write to the Free Software Foundation, Inc, 59 Temple Place -
21 * Suite 330, Boston, MA 02111-1307, USA.
24 define('BIN5_PLAYERS_N', 3);
25 define('BIN5_CARD_HAND', 3); // normal value 8
26 define('BIN5_MAX_PLAYERS', BIN5_PLAYERS_N);
27 // define(BIN5_SHM_MIN', (50000 * BIN5_MAX_PLAYERS));
28 define('BIN5_SHM_MIN', 32768);
29 define('BIN5_SHM_MAX', (BIN5_SHM_MIN + 1048576));
30 define('BIN5_SHM_DLT', 32768);
31 define('BIN5_PROXY_PATH', PROXY_PATH."/bin5");
33 require_once('rules.phh');
35 define('BIN5_TOURNAMENT_CURRENT', BIN5_TOURNAMENT_NO_DRAW);
37 $mlang_bin5_bin5 = array(
38 // br, hr, b, /b, win, fri
39 'info_last' => array( 'it' => '%3$sultima mano%4$s',
40 'en' => '%3$slast hand%4$s'),
41 'info_curr' => array( 'it' => '%3$smano corrente%4$s',
42 'en' => '%3$scurrent hand%4$s'),
43 'info_yshuf'=> array( 'it' => 'Fai <b>tu</b> il mazzo, ',
44 'en' => 'It\'s <b>your</b> shuffled the cards, '),
45 'info_shuf' => array( 'it' => 'Il mazzo a <b>%s</b>, ',
46 'en' => '<b>%s</b> shuffled the cards, '),
47 'info_yturn'=> array( 'it' => ' tocca a <b>te</b> giocare.',
48 'en' => ' it\'s <b>your</b> turn.'),
49 'info_turn' => array( 'it' => 'tocca a <b>%s</b> giocare.',
50 'en' => 'it\'s the <b>%s</b>\'s turn.'),
51 'info_mult' => array( 'it' => ' La partita vale <b>%s</b>.',
52 'en' => ' The game worth <b>%s</b>.' ),
53 'info_match'=> array( 'it' => 'Il codice della partita รจ <b>%d</b>.',
54 'en' => 'Match code is <b>%d</b>.'),
56 'btn_bkgame'=> array( 'it' => 'torna alla partita',
57 'en' => 'back to the game'),
58 'call_wptn' => array( 'it' => '<br>con %d punti',
59 'en' => '<br>with %d points'),
60 'call_ycall'=> array( 'it' => 'Chiami%s:',
62 'call_call' => array( 'it' => 'Chiama %s%s:',
63 'en' => 'The declarer is %s%s:')
67 $table_wellarr = Array( 'it' => Array ( 'Benvenuto al tavolo. Se almeno tre giocatori non sbloccano l\'uscita cliccando il lucchetto, chi esce non può risedersi a un qualunque tavolo per '.floor(BAN_TIME/60).' minuti.'),
68 'en' => Array ( 'EN Benvenuto al tavolo. Se almeno tre giocatori non sbloccano l\'uscita cliccando il lucchetto, chi esce non può risedersi a un qualunque tavolo per '.floor(BAN_TIME/60).' minuti.') );
70 function multoval($mult)
75 return ($G_lang == 'en' ? 'double' : 'doppio');
77 return ($G_lang == 'en' ? 'triple' : 'triplo');
79 return ($G_lang == 'en' ? 'quadruple' : 'quadruplo');
81 return (sprintf(($G_lang == 'en' ? "%d-ple" : "%d-plo"), $mult));
84 function dom_select_rules()
86 $ret = "<select id='select_rules'>\n";
87 foreach (rules_keys() as $key) {
88 $value = rules_id2descr($key);
89 $ret .= sprintf("<option value='%d'>%s</option>\n", $key, $value);
91 $ret .= "</select>\n";
97 var $value; /* 0 - 39 card value */
98 var $stat; /* 'bunch', 'hand', 'table', 'take' */
99 var $owner; /* (table position 0-4) */
100 // var $pos; /* Pos in hand. */
101 var $x; /* When played the X position on the table of the owner. */
102 var $y; /* When played the Y position on the table of the owner. */
104 function Card($value, $stat, $owner)
106 $this->value = $value;
107 $this->stat = $stat; // Card stat
108 $this->owner = $owner;
111 function assign($stat,$owner)
113 $this->stat = $stat; // Card stat
114 $this->owner = $owner;
117 function setpos($pos)
124 $this->stat = 'table'; // Card stat
129 function take($newown)
131 $this->stat = 'take'; // Card stat
132 $this->owner = $newown;
136 class Bin5_table extends Table {
137 var $card; // il mazzo di carte
138 var $mazzo; // chi e' di mazzo
139 var $gstart; // first player of the current game
140 var $turn; // turn in the game (absolute, not modularized)
142 var $asta_pla; // array(); TRUE: in auction, FALSE: out of the auction
143 var $asta_pla_n; // number of players in auction
144 var $asta_card; // current card for auction
145 var $asta_pnt; // current point for auction
148 var $points; // points array
149 var $points_n; // number of row of points
152 var $asta_win; // the caller idx position at table
154 var $tourn_pts; // points in the caller hand
155 var $friend; // the callee idx position at table
157 var $match_id; // the id of the match on the database (-1 == just not saved)
159 var $old_act; // last action that trigs the end of the game
164 var $old_pnt; // points made by caller and callee
165 var $old_asta_win; // the old caller idx position at table
166 var $old_friend; // the old callee idx position at table
168 var $old_tourn_pts; // the old tournment computed points in the hand of caller
171 function Bin5_table()
177 function create($idx)
179 if (($thiz =& new Bin5_table()) == FALSE)
185 $thiz->asta_pla = array(); // TRUE: in auction, FALSE: out of the auction
186 $thiz->asta_pla_n= -1;
187 $thiz->asta_card = -1;
188 $thiz->asta_pnt = -1;
191 $thiz->points = array( );
193 $thiz->total = array( 0, 0, 0, 0, 0);
194 $thiz->asta_win = -1;
195 $thiz->briscola = -1;
196 $thiz->tourn_pts = -1;
200 $thiz->match_id = -1;
203 $thiz->old_mazzo = -1;
204 $thiz->old_reason = "";
205 $thiz->old_asta_pnt = -1;
206 $thiz->old_mult = -1;
208 $thiz->old_asta_win = -1;
209 $thiz->old_friend = -1;
216 function myclone(&$from)
218 if (($thiz =& new Bin5_table()) == FALSE)
223 $thiz->card = $from->card;
224 $thiz->mazzo = $from->mazzo; // REVIEW
225 $thiz->gstart = $from->gstart;
226 $thiz->turn = $from->turn;
228 $thiz->asta_pla = $from->asta_pla;
229 $thiz->asta_pla_n = $from->asta_pla_n;
230 $thiz->asta_card = $from->asta_card;
231 $thiz->asta_pnt = $from->asta_pnt;
233 $thiz->mult = $from->mult;
234 $thiz->points = $from->points;
235 $thiz->points_n = $from->points_n;
236 $thiz->total = $from->total;
238 $thiz->asta_win = $from->asta_win;
239 $thiz->briscola = $from->briscola;
240 $thiz->tourn_pts = $from->tourn_pts;
241 $thiz->friend = $from->friend;
243 $thiz->match_id = $from->match_id;
245 $thiz->old_act = $from->old_act;
246 $thiz->old_mazzo = $from->old_mazzo;
247 $thiz->old_reason = $from->old_reason;
248 $thiz->old_asta_pnt = $from->old_asta_pnt;
249 $thiz->old_mult = $from->mult;
250 $thiz->old_pnt = $from->old_pnt;
251 $thiz->old_asta_win = $from->old_asta_win;
252 $thiz->old_friend = $from->old_friend;
258 function parentcopy(&$from)
263 function spawn(&$from)
265 if (($thiz =& new Bin5_table()) == FALSE)
268 $thiz->parentcopy($from);
270 log_main("PLAYER_N - spawn.".$thiz->player_n);
272 $thiz->card = array();
273 $thiz->bunch_create();
274 $thiz->mazzo = rand(0,PLAYERS_N-1);
275 $thiz->points = array();
276 $thiz->total = array();
280 $thiz->match_id = -1;
282 $thiz->old_asta_win = -1;
283 $thiz->old_reason = "";
285 $rules_name = rules_id2name(BIN5_TOURNAMENT_CURRENT);
286 $thiz->rules = new $rules_name($thiz);
287 // players are rearranged in an dedicated array
288 $thiz->player = array();
289 for ($i = 0 ; $i < $from->player_n ; $i++)
290 $thiz->player[$i] = $i;
292 log_main("TABLE_OLD_WIN - spawn:".$thiz->old_asta_win);
298 // function bunch_create_old() function AND
302 // for ($i = 0 ; $i < (BIN5_CARD_HAND * BIN5_PLAYERS_N) ; $i++) {
303 // // for ($i = 0 ; $i < (BIN5_CARD_HAND * BIN5_PLAYERS_N) ; $i++) {
304 // $ret[$i] =& new Card($i, 'bunch', 'no_owner');
311 function bunch_create()
315 for ($i = 0 ; $i < (BIN5_CARD_HAND * BIN5_PLAYERS_N) ; $i++) {
316 $this->card[$i] = new Card($i, 'bunch', 'no_owner');
320 function bunch_make()
322 log_main("bunch_make start");
323 $ct = array(0,0,0,0,0);
325 mt_srand(make_seed());
327 for ($i = (BIN5_CARD_HAND * BIN5_PLAYERS_N) - 1 ; $i >= 0 ; $i--)
330 for ($i = (BIN5_CARD_HAND * BIN5_PLAYERS_N) - 1 ; $i >= 0 ; $i--) {
334 log_main("RND ZERO");
338 $owner = $i % BIN5_PLAYERS_N;
339 $this->card[$id]->assign('hand', $owner);
341 $rest[$rn] = $rest[$i];
342 // $pubbpos[$rn2] = $pubbpos[$i];
344 log_main("bunch_make end");
347 function init($userarr)
350 $this->mazzo = rand(0,PLAYERS_N-1);
353 $this->old_asta_win = -1;
354 $this->old_reason = "";
356 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
357 $this->total[$i] = 0;
358 $user_cur = $userarr[$this->player[$i]];
359 $user_cur->stat_set('table');
360 $user_cur->exitislock = TRUE;
363 log_main("table::init: ci siamo");
366 function game_init($userarr)
370 $this->gstart = ($this->mazzo+1) % BIN5_PLAYERS_N;
373 $this->asta_pla_n = BIN5_PLAYERS_N;
374 $this->asta_card = -1;
375 $this->asta_pnt = 60;
376 $this->asta_win = -1;
377 $this->briscola = -1;
378 $this->tourn_pts = -1;
382 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
383 $this->asta_pla[$i] = TRUE;
384 $user_cur = $userarr[$this->player[$i]];
385 $user_cur->subst = 'asta';
386 $user_cur->asta_card = -2;
387 $user_cur->asta_pnt = -1;
388 $user_cur->handpt = $this->hand_points($i);
389 $this->rules->tourn_points($user_cur, $i);
394 function game_next($delta)
396 $this->old_mazzo = $this->mazzo;
397 $this->mazzo = ($this->mazzo + $delta) % BIN5_PLAYERS_N;
400 function mult_inc($val)
402 $this->old_mult = $this->mult;
406 function mult_set($val)
408 $this->old_mult = $this->mult;
412 function hand_points($idx)
414 GLOBAL $G_all_points;
418 for ($i = 0 ; $i < (BIN5_CARD_HAND * BIN5_PLAYERS_N) ; $i++) {
419 // for ($i = 0 ; $i < 40 ; $i++) {
420 if ($this->card[$i]->owner != $idx)
423 $ctt = $this->card[$i]->value % 10;
424 $tot += $G_all_points[$ctt];
431 function exitlock_show($userarr, $table_pos)
433 $ct = $this->exitlock_calc($userarr, $table_pos);
435 $ret = sprintf('exitlock_show(%d, %s);', $ct,
436 ($userarr[$this->player[$table_pos]]->exitislock ? 'true' : 'false'));
440 function exitlock_calc(&$userarr, $table_pos)
444 for ($i = 0 , $ct = 0 ; $i < PLAYERS_N ; $i++) {
445 if ($userarr[$this->player[$i]]->exitislock == FALSE)
452 function match_continue(&$bri, $user, $match_id_s)
455 // Rules: update version following loaded tcode
461 if ($this->match_id != -1) {
462 $msg = sprintf("Stai giร giocando la partita con codice %d.", $this->match_id);
466 /* - verify if match_id and user are both valid to accept
467 the match_continue request - */
468 $match_id = (int)$match_id_s;
469 if ($match_id <= 0) {
470 $msg = "questa partita non esiste";
474 if ($user->continue_get() == $match_id) {
475 $msg = "Hai giร richiesto di continuare questa partita.";
478 // retrieves users list for this match
479 $match_data = array();
480 if (($bdb = BriskDB::create()) != FALSE) {
481 // match_order_get return FALSE for old matches
482 $ucodes = $bdb->match_order_get($match_data, $match_id, BIN5_PLAYERS_N);
485 if ($ucodes == FALSE) {
486 $msg = "questa partita non รจ stata memorizzata correttamente";
490 // if current user code must be in the users list
491 if (array_search($user->code, $ucodes) === FALSE) {
492 $msg = sprintf("Questo utente non compare nella partita che si vuole continuare [%d].", $user->code);
496 /* - the user is in the list, add the match_id to his profile
497 and check if he is the N'th to require continue - */
500 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
501 $user_cur = &$bri->user[$this->player[$i]];
503 if ($user == $user_cur) {
508 if ($user_cur->continue_get() == BIN5_USER_CONTINUE_INIT)
511 if ($user_cur->continue_get() != $match_id)
515 if ($i < BIN5_PLAYERS_N) {
516 $msg = sprintf("<b>L'utente <i>%s</i> voleva giร continuare la partita nยฐ %d.</b>",
517 xcape($user_cur->name), $user_cur->continue_get());
521 // set the match_id for the current user
522 $user->continue_set($match_id);
525 // not all players set the continue match than we exit
526 if ($continue_tot < BIN5_PLAYERS_N) {
527 $msg = sprintf("<b>L'utente <i>%s</i> vorrebbe continuare la partita nยฐ %d.</b>",
528 xcape($user->name), $match_id);
532 /* - all users decide to continue the same match, update all infos and rearrange users
533 to the right positions on the table - */
535 /* reset users table order */
536 for ($i = 0 ; $i < BIN5_PLAYERS_N - 1 ; $i++) {
537 if ($bri->user[$this->player[$i]]->code == $ucodes[$i]) {
540 for ($e = $i + 1 ; $e < BIN5_PLAYERS_N ; $e++) {
541 if ($bri->user[$this->player[$e]]->code == $ucodes[$i]) {
542 $swap = $this->player[$i];
543 $this->player[$i] = $this->player[$e];
544 $this->player[$e] = $swap;
545 $bri->user[$this->player[$i]]->table_pos = $i;
546 $bri->user[$this->player[$e]]->table_pos = $e;
550 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
551 fprintf(STDERR, "USERZ: [%s]\n", $bri->user[$this->player[$i]]->name);
554 // update database info to be aligned with current table (ttok and table_idx
555 if (($bdb = BriskDB::create()) != FALSE) {
556 if ($bdb->match_continue($match_id, $this, $user->table_orig) == FALSE) {
558 $msg = "aggiornamento dei dati della partita fallito";
564 /* update rules engine */
565 $rules_name = rules_id2name($match_data['tcode']);
566 $this->rules = new $rules_name($this);
568 /* bunch and multiplier status set */
569 $this->mazzo = $match_data['mazzo_next'];
570 $this->mult = $match_data['mult_next'];
571 $this->match_id = $match_id;
572 $this->game_init(&$bri->user);
574 /* reload of the page with the new layout */
575 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
576 $user_cur = &$bri->user[$this->player[$i]];
578 $user_cur->trans_step = $user_cur->step + 1;
579 $user_cur->comm[$user_cur->step % COMM_N] = sprintf('gst.st_loc++; gst.st=%d; xstm.stop(); window.onunload = null ; window.onbeforeunload = null ; document.location.assign("index.php");|', $user_cur->step+1);
580 $user_cur->step_inc();
582 // a void command force xynt-streamer to flush all data to client
583 $user_cur->trans_step = $user_cur->step + 1;
584 $user_cur->comm[$user_cur->step % COMM_N] = "";
585 $user_cur->step_inc();
587 $user_cur->comm[$user_cur->step % COMM_N] = show_table(&$bri, &$user_cur, $user_cur->step+1, TRUE, FALSE);
588 $user_cur->step_inc();
593 $dt = date("H:i ", $curtime);
594 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
595 if ($ret == FALSE && $this->player[$i] != $user->idx)
597 $user_cur = &$bri->user[$this->player[$i]];
598 $user_cur->comm[$user_cur->step % COMM_N] = "gst.st = ".($user_cur->step+1)."; ";
599 $user_cur->comm[$user_cur->step % COMM_N] .= nickserv_msg($dt, $msg);
600 $user_cur->step_inc();
604 function rules_change(&$bri, $user, $rules_id_s)
607 // Rules: update version following loaded tcode
613 if ($this->match_id != -1) {
615 $msg = sprintf("Stai giร giocando la partita con codice %d.", $this->match_id);
619 if ($this->asta_card != -1 || $this->asta_pla_n < BIN5_PLAYERS_N) {
621 $msg = sprintf("La partita รจ giร stata avviata.");
625 $rules_id = (int)$rules_id_s;
626 if (! in_array($rules_id, rules_keys())) {
628 $msg = "queste regole non esistono o non sono attive";
632 if ($user->rules_get() == $rules_id) {
634 $msg = "hai giร richiesto di usare queste regole";
638 /* - the user is in the list, add the match_id to his profile
639 and check if he is the N'th to require continue - */
642 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
643 $user_cur = &$bri->user[$this->player[$i]];
645 if ($user == $user_cur) {
650 if ($user_cur->rules_get() == BIN5_USER_CONTINUE_INIT)
653 if ($user_cur->rules_get() != $rules_id)
657 if ($i < BIN5_PLAYERS_N) {
659 $msg = sprintf("<b>L'utente <i>%s</i> voleva giร usare le %s.</b>",
660 xcape($user_cur->name), xcape(rules_id2descr($user_cur->rules_get())));
664 // set the match_id for the current user
665 $user->rules_set($rules_id);
668 // not all players set the continue match than we exit
669 if ($rules_tot < BIN5_PLAYERS_N) {
671 $msg = sprintf("<b>L'utente <i>%s</i> vorrebbe usare le %s.</b>",
672 xcape($user->name), xcape(rules_id2descr($rules_id)));
676 /* - all users decide to continue the same match, update all infos and rearrange users
677 to the right positions on the table - */
679 /* update rules engine */
680 $rules_name = rules_id2name($rules_id);
681 $this->rules = new $rules_name($this);
683 // $this->game_init(&$bri->user);
685 /* reload of the page with the new layout */
686 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
687 $user_cur = &$bri->user[$this->player[$i]];
688 $this->rules->tourn_points($user_cur, $i);
690 $user_cur->rules_set(BIN5_USER_CONTINUE_INIT);
691 $user_cur->trans_step = $user_cur->step + 1;
692 $user_cur->comm[$user_cur->step % COMM_N] = sprintf('gst.st_loc++; gst.st=%d; xstm.stop(); window.onunload = null ; window.onbeforeunload = null ; document.location.assign("index.php");|', $user_cur->step+1);
693 $user_cur->step_inc();
695 // a void command force xynt-streamer to flush all data to client
696 $user_cur->trans_step = $user_cur->step + 1;
697 $user_cur->comm[$user_cur->step % COMM_N] = "";
698 $user_cur->step_inc();
700 $user_cur->comm[$user_cur->step % COMM_N] = show_table(&$bri, &$user_cur, $user_cur->step+1, TRUE, FALSE);
701 $user_cur->step_inc();
706 $dt = date("H:i ", $curtime);
708 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
709 $user_cur = &$bri->user[$this->player[$i]];
710 $user_cur->comm[$user_cur->step % COMM_N] = "gst.st = ".($user_cur->step+1)."; ";
711 $user_cur->comm[$user_cur->step % COMM_N] .= nickserv_msg($dt, $msg);
712 $user_cur->step_inc();
716 $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
717 $user->comm[$user->step % COMM_N] = xcape(sprintf("rules_set(%d);",
719 $user->comm[$user->step % COMM_N] .= nickserv_msg($dt, $msg);
722 } // end function rules_change
723 } // end class Bin5_table
728 define('BIN5_USER_FLAG_RING_ENDAUCT', 0x01);
729 define('BIN5_USER_CONTINUE_INIT', -1);
731 define('BIN5_USER_RULES_INIT', -1);
732 class Bin5_user extends User {
735 var $handpt; // Total card points at the beginning of the current hand.
736 var $exitislock; // Player can exit from the table ?
737 var $privflags; // Flags for briskin5 only
739 var $continue; // Id of the match that the user would continue
740 var $rules; // Id of rules required by user
742 var $asta_tourn_pts; // array with tournment points for each suit
750 function create($name, $sess, $stat = "", $subst = "", $table = -1, $ip="0.0.0.0") {
751 if (($thiz =& new User()) == FALSE)
754 $thiz->asta_card = -2;
755 $thiz->asta_pnt = -1;
757 $thiz->exitislock = TRUE;
758 $thiz->privflags = 0;
759 $thiz->continue = BIN5_USER_CONTINUE_INIT;
760 $thiz->rules = BIN5_USER_RULES_INIT;
766 function parentcopy(&$from)
771 function copy(&$from)
773 $this->parentcopy($from);
775 $this->asta_card = $from->asta_card;
776 $this->asta_pnt = $from->asta_pnt;
777 $this->handpt = $from->handpt;
778 $this->exitislock = $from->exitislock;
779 $this->privflags = $from->privflags;
780 $this->continue = $from->continue;
781 $this->rules = $from->rules;
785 function myclone(&$from)
787 if (($thiz =& new User()) == FALSE)
796 static function spawn($from, &$bri, $table, $table_pos, $get, $post, $cookie)
798 if (($thiz = new Bin5_user()) == FALSE)
801 if (($CO_bin5_pref_ring_endauct = gpcs_var("CO_bin5_pref_ring_endauct", $get, $post, $cookie)) === FALSE) {
802 $CO_bin5_pref_ring_endauct = "";
805 $thiz->parentcopy($from);
807 /* NOTE: at this moment idx and table_pos fields have the same value
808 but diffentent functions, we keep them separated for a while */
810 $thiz->idx = $table_pos; // it is the position in the mini-room,
811 // not related to table pos (see below)
812 $thiz->asta_card = -2;
813 $thiz->asta_pnt = -1;
815 $thiz->exitislock = TRUE;
816 $thiz->continue = BIN5_USER_CONTINUE_INIT;
817 $thiz->rules = BIN5_USER_RULES_INIT;
819 log_wr("Bin5 constructor");
821 $thiz->privflags = ($CO_bin5_pref_ring_endauct == "true" ? BIN5_USER_FLAG_RING_ENDAUCT : 0) | 0;
823 $thiz->table_orig = $table;
825 $thiz->table_pos = $table_pos;
832 function step_set($step)
834 $this->step = $step & 0x7fffffff;
839 function step_inc($delta = 1) {
840 $this->step += $delta;
841 /* modularization because unpack() not manage unsigned 32bit int correctly */
842 $this->step &= 0x7fffffff;
847 static function load_step($tab_id, $sess)
851 if (validate_sess($sess) == FALSE)
854 if (file_exists(BIN5_PROXY_PATH."/table".$tab_id) == FALSE)
855 mkdir(BIN5_PROXY_PATH."/table".$tab_id, 0775, TRUE);
856 if (($fp = @fopen(BIN5_PROXY_PATH."/table".$tab_id."/".$sess.".step", 'rb')) == FALSE)
858 if (($s = fread($fp, 8)) == FALSE)
860 if (mb_strlen($s, "ASCII") != 8)
862 $arr = unpack('Ls/Li', $s);
865 // log_rd2("A0: ".$arr[0]." A1: ".$arr[1]);
872 log_rd2("STEP_GET [".$sess."]: return false ");
880 if (validate_sess($this->sess) == FALSE)
882 if (file_exists(BIN5_PROXY_PATH."/table".$this->table_orig) == FALSE)
883 mkdir(BIN5_PROXY_PATH."/table".$this->table_orig, 0775, TRUE);
884 if (($fp = @fopen(BIN5_PROXY_PATH."/table".$this->table_orig."/".$this->sess.".step", 'w')) == FALSE)
886 fwrite($fp, pack("LL",$this->step, $this->idx));
889 log_main("step_set [".$this->sess. "] [".$this->step."]");
897 static function unproxy_step($tab_id, $sess)
899 log_rd2("UNPROXY: ".BIN5_PROXY_PATH."/table".$tab_id."/".$sess.".step");
900 if (file_exists(BIN5_PROXY_PATH."/table".$tab_id) == FALSE)
903 @unlink(BIN5_PROXY_PATH."/table".$tab_id."/".$sess.".step");
906 function destroy_data($tab_id)
909 if (($tok = @ftok(FTOK_PATH."/bin5/table".$tab_id."/user".$this->table_pos, "B")) == -1) {
910 log_crit("BIN5 USER DATA REMOVE FAILED 1 [".FTOK_PATH."/bin5/table".$tab_id."/user".$this->table_pos."]");
914 if (($shm = @shmop_open($tok, 'a', 0, 0)) == FALSE) {
915 log_crit("BIN5 USER DATA REMOVE FAILED 2");
918 if (shmop_delete($shm) == 0) {
919 log_crit("BIN5 USER DATA REMOVE FAILED 3");
924 log_main("BIN5 USER DATA DESTROY SUCCESS");
926 // log_main("QUI CI ARRIVA [".$bri->user[0]->name."]");
936 static function blocking_error($is_unrecoverable)
938 log_crit("BLOCKING_ERROR UNREC: ".($is_unrecoverable ? "TRUE" : "FALSE"));
939 return (sprintf(($is_unrecoverable ? 'xstm.stop(); ' : '').'window.onbeforeunload = null; window.onunload = null; document.location.assign("../index.php");'));
942 protected function page_sync($sess, $page)
944 log_rd2("PAGE_SYNC");
945 printf("xXx BIN5_USER::PAGE_SYNC\n");
946 return (sprintf('xstm.stop(); window.onbeforeunload = null; window.onunload = null; document.location.assign("%s");', $page));
949 protected function maincheck($get, $post, $cookie)
952 GLOBAL $G_with_splash, $G_splash_content, $G_splash_interval, $G_splash_idx;
953 GLOBAL $G_splash_w, $G_splash_h, $G_splash_timeout;
957 log_rd("maincheck begin");
962 /* Nothing changed, return. */
963 if ($this->rd_step == $this->step)
966 log_rd2("do other cur_stat[".$this->rd_stat."] user->stat[".$this->stat."] cur_step[".$this->rd_step."] user_step[".$this->step."]");
968 if ($this->rd_step == -1) {
970 * if $this->rd_step == -1 load the current state from the main struct
973 $S_load_stat['wR_minusone']++;
975 // if ($this->the_end == TRUE) {
976 // log_rd2("main_check: the end".var_export(debug_backtrace()));
979 if ($this->trans_step != -1) {
980 log_rd2("TRANS USATO ".$this->trans_step);
981 $this->rd_step = $this->trans_step;
982 $this->trans_step = -1;
985 log_rd2("TRANS NON ATTIVATO");
990 /* this part I suppose is read only on $this->room structure */
991 if ($this->rd_step == -1) {
992 log_rd2("PRE-NEWSTAT");
999 if ($this->stat == 'table') {
1001 /* NOTE: $this->room is associated with the current $bri object */
1002 printf("xXx CLASS NAME [%s]\n", get_class($this->room));
1003 $ret = show_table(&$this->room, $this, $this->step, FALSE, FALSE);
1005 log_rd2("NEWSTAT: ".$this->stat);
1007 $this->rd_stat = $this->stat;
1008 $this->rd_subst = $this->subst;
1009 $this->rd_step = $this->step;
1010 } /* if ($this->rd_step == -1) { */
1012 $S_load_stat['rU_heavy']++;
1014 if ($this->rd_step < $this->step) {
1016 if ($this->rd_step + COMM_N < $this->step) {
1017 if ($this->rd_stat != $this->stat) {
1018 $to_stat = $this->stat;
1020 printf("xXx BIN5_USER::MAINCHECK\n");
1021 return ($this->page_sync($this->sess, ($to_stat == "table" ? "index.php" : "../index.php"), $this->table, $this->table_token));
1023 log_rd2("lost history, refresh from scratch");
1024 printf("xXx LOST HISTORY!\n");
1025 $this->rd_step = -1;
1028 for ($i = $this->rd_step ; $i < $this->step ; $i++) {
1030 if ($this->comm[$ii] == "") {
1031 if ($i == $this->rd_step)
1036 log_rd2("ADDED TO THE STREAM: ".$this->comm[$ii]);
1037 $ret .= $this->comm[$ii];
1039 $this->rd_stat = $this->stat;
1040 $this->rd_subst = $this->subst;
1041 $this->rd_step = $this->step;
1044 log_rd2($this->step, 'index_rd.php: after ret set');
1046 // if ($this->the_end == TRUE) { management is moved
1047 // in the spush scope
1048 } /* if ($this->rd_step < $this->step) { */
1049 } /* else of if ($this->rd_step == -1) { */
1053 } // function maincheck(...
1055 function continue_set($match_code)
1057 $this->continue = $match_code;
1060 function continue_get() {
1061 return ($this->continue);
1064 function rules_set($rules_id)
1066 $this->rules = $rules_id;
1069 function rules_get() {
1070 return ($this->rules);
1073 } // end class Bin5_user
1077 static $delta_t = array();
1078 var $brisk;// room object reference
1082 var $comm; // commands for many people
1083 var $step; // current step of the comm array
1084 var $garbage_timeout;
1095 function Bin5($brisk, $table_idx, $table_token, $get, $post, $cookie) {
1096 $this->user = array();
1097 $this->table = array();
1099 $this->the_end = FALSE;
1100 $this->shm_sz = BIN5_SHM_MIN;
1101 if (($this->tok = @ftok(FTOK_PATH."/bin5/table".$table_idx."/table", "B")) == -1) {
1106 $this->brisk = $brisk;
1107 $user = $brisk->user;
1108 $table = $brisk->table[$table_idx];
1109 log_wr("Bin5 constructor");
1111 for ($i = 0 ; $i < $table->player_n ; $i++) {
1112 $user[$table->player[$i]]->table_token = $table_token;
1113 $this->user[$i] = Bin5_user::spawn($user[$table->player[$i]], $this, $table_idx, $i, $get, $post, $cookie);
1115 $this->table[0] = Bin5_table::spawn(&$table);
1117 log_main("TABLE_OLD_WIN - Bin5:".$this->table[0]->old_asta_win);
1119 $this->table_idx = $table_idx;
1120 $this->table_token = $table_token;
1121 $this->garbage_timeout = 0;
1123 $this->delay_mgr = new Delay_Manager((GARBAGE_TIMEOUT *3.0) / 2.0);
1125 log_wr("Bin5 constructor end");
1129 function get_user($sess, &$idx)
1133 if (validate_sess($sess)) {
1134 for ($i = 0 ; $i < BIN5_MAX_PLAYERS ; $i++) {
1135 if ($this->user[$i]->is_empty())
1137 if (strcmp($sess, $this->user[$i]->sess) == 0) {
1140 $ret = &$this->user[$i];
1144 log_main(sprintf("get_user: Wrong sess from page [%s]",$PHP_SELF));
1145 // for ($i = 0 ; $i < BIN5_MAX_PLAYERS ; $i++)
1146 // log_main(sprintf("get_user: Wrong sess compared with [%s]",$this->user[$i]->sess));
1149 log_main(sprintf("get_user: Wrong strlen [%s]",$sess));
1154 function banned_kickoff()
1158 for ($i = 0 ; $i < BIN5_MAX_PLAYERS ; $i++) {
1159 $user_cur = $this->user[$i];
1161 // check if the IP is blacklisted
1162 if ($this->brisk->black_check($user_cur->ip)) {
1163 $user_cur->lacc = 0;
1168 // if authorized not check if banlisted
1169 if ($user_cur->is_auth()) {
1173 if ($this->brisk->ban_check($user_cur->ip)) {
1174 $user_cur->lacc = 0;
1181 function garbage_manager($force)
1185 /* Garbage collector degli utenti in timeout */
1189 $delta = $this->delay_mgr->delta_get($curtime);
1191 if ($force || $this->garbage_timeout < $curtime) {
1192 for ($i = 0 ; $i < BIN5_MAX_PLAYERS ; $i++) {
1193 $user_cur = $this->user[$i];
1194 if ($user_cur->is_active() == FALSE || // is not active user or
1195 ($user_cur->stat == 'table' && ($user_cur->subst == 'shutdowned' || $user_cur->subst == 'shutdowner')))
1198 if ($user_cur->lacc + EXPIRE_TIME_RD < ($curtime - $delta)) { // Auto logout dell'utente
1199 log_rd2($user_cur->sess." bin5 AUTO LOGOUT.");
1201 if ($user_cur->stat == 'table') {
1202 log_auth($user_cur->sess," bin5 Autologout session.");
1204 /* main garbage_manager is delegate as autologout management */
1205 $user_cur->the_end = TRUE;
1207 /* se gli altri utenti non erano d'accordo questo utente viene bannato */
1208 $remcalc = $this->table[0]->exitlock_calc(&$this->user, $user_cur->table_pos);
1210 require_once("${G_base}Obj/hardban.phh");
1211 Hardbans::add(($user_cur->is_auth() ? $user_cur->name : FALSE),
1212 $user_cur->ip, $user_cur->sess, $user_cur->laccwr + BAN_TIME);
1214 // $user->bantime = $user->laccwr + BAN_TIME;
1216 $this->table_wakeup($user_cur);
1220 log_rd2($user_cur->sess." GARBAGE UPDATED!");
1222 $this->garbage_timeout = $curtime + GARBAGE_TIMEOUT;
1227 $this->delay_mgr->lastcheck_set($curtime);
1232 function destroy_data()
1238 log_main("DESTROY BRISKIN5 DATA");
1241 log_main("DESTROY2 BRISKIN5 DATA [".$this->table_idx."]");
1242 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
1243 $this->user[$i]->destroy_data($this->table_idx);
1244 Bin5_user::unproxy_step($this->table_idx, $this->user[$i]->sess);
1246 if (($tok = @ftok(FTOK_PATH."/bin5/table".$this->table_idx."/table", "B")) == -1)
1249 if (($shm = @shmop_open($tok, 'a', 0, 0)) == FALSE)
1252 if (shmop_delete($shm) == 0) {
1253 log_only("REMOVE FALLITA ");
1258 log_main("DESTROY2 BRISKIN5 DATA SUCCESS");
1260 // log_main("QUI CI ARRIVA [".$bri->user[0]->name."]");
1270 static function lock_data($is_exclusive, $table_idx)
1272 if (($res = file_lock(FTOK_PATH."/bin5/table".$table_idx."/table", $is_exclusive)) != FALSE) {
1273 self::$delta_t = microtime(TRUE);
1274 log_lock("LOCK table [".$table_idx."] [".self::$delta_t[$table_idx]."]");
1276 return (new Vect(array('res' => $res, 'tab' => $table_idx)));
1283 static function unlock_data($res_vect)
1287 $res = $res_vect->getbyid('res');
1288 $tab = $res_vect->getbyid('tab');
1290 log_lock("UNLOCK table [".$tab."] [".(microtime(TRUE) - (self::$delta_t[$tab]))."]");
1296 function chatt_send($user, $mesg, $mlang_indwr = NULL)
1298 GLOBAL $mlang_brisk, $G_lang;
1300 if ($user->stat != 'table') {
1305 $table = &$this->table[$user->table];
1306 $user_mesg = substr($mesg,6);
1311 $dt = date("H:i ", $curtime);
1312 if (strncmp($user_mesg, "/cont ", 6) == 0) {
1313 log_main($user->sess." chatt_send BEGIN");
1315 $match_id = substr($user_mesg, 6);
1316 $table->match_continue($this, $user, $match_id);
1318 else if (strncmp($user_mesg, "/rules ", 7) == 0) {
1319 log_main($user->sess." chatt_send BEGIN");
1321 $rules_id = substr($user_mesg, 7);
1322 $table->rules_change($this, $user, $rules_id);
1325 for ($i = 0 ; $i < ($user->stat == 'room' ? BIN5_MAX_PLAYERS : BIN5_PLAYERS_N) ; $i++) {
1326 if ($user->stat == 'room') {
1327 $user_cur = &$this->user[$i];
1328 if ($user_cur->is_active() == FALSE || $user_cur->stat != 'room') // is not active user or stat isn't 'room'
1332 $user_cur = &$this->user[$table->player[$i]];
1335 $user_cur->comm[$user_cur->step % COMM_N] = "gst.st = ".($user_cur->step+1)."; ";
1336 $user_cur->comm[$user_cur->step % COMM_N] .= sprintf('chatt_sub("%s", [%d, "%s"],"%s");',
1337 $dt, $user->flags, xcape($user->name), xcape($user_mesg));
1338 $user_cur->step_inc();
1340 log_legal($curtime, $user->ip, $user, ($user->stat == 'room' ? 'room' : 'table '.$user->table_orig),$user_mesg);
1344 function table_wakeup($user)
1346 $table = &$this->table[0];
1348 log_main("BIN5_WAKEUP begin function table stat: ".$user->stat." subst: ".$user->subst);
1352 log_main("BIN5_WAKEUP from table [".$user->table."] nplayers_n: ".$this->table[$user->table]->player_n);
1354 for ($i = 0 ; $i < $table->player_n ; $i++) {
1355 $user_cur = &$this->user[$i];
1356 log_main("PREIMPOST INLOOP name: ".$user_cur->name);
1358 if ($user_cur == $user)
1359 $user_cur->subst = "shutdowner";
1361 $user_cur->subst = "shutdowned";
1362 $user_cur->laccwr = $curtime;
1364 $ret = "gst.st = ".($user_cur->step+1)."; ";
1365 $ret .= 'gst.st_loc++; xstm.stop(); window.onbeforeunload = null; window.onunload = null; document.location.assign("../index.php");|';
1367 log_wr($user_cur->sess." BIN5_WAKEUP: ".$ret);
1368 $user_cur->comm[$user_cur->step % COMM_N] = $ret;
1369 $user_cur->step_inc();
1372 $this->the_end = TRUE;
1376 * If all players are freezed the room garbage_manager clean up table and users.
1378 function is_abandoned()
1383 $table = &$this->table[0];
1385 for ($i = 0 ; $i < $table->player_n ; $i++) {
1386 $user_cur = &$this->user[$i];
1388 if ($user_cur->lacc + (EXPIRE_TIME_RD * 2) >= $curtime) {
1397 static function request_mgr(&$s_a_p, $header, &$header_out, &$new_socket, $path, $addr, $get, $post, $cookie)
1399 GLOBAL $G_ban_list, $G_black_list;
1401 printf("NEW_SOCKET (root): %d\n", intval($new_socket));
1403 $enc = get_encoding($header);
1404 if (isset($header['User-Agent'])) {
1405 if (strstr($header['User-Agent'], "MSIE")) {
1406 $transp_type = "htmlfile";
1409 $transp_type = "xhr";
1413 $transp_type = "iframe";
1415 force_no_cache($header_out);
1417 if (($table_idx = gpcs_var('table_idx', $get, $post, $cookie)) === FALSE)
1420 if (($table_token = gpcs_var('table_token', $get, $post, $cookie)) === FALSE)
1421 unset($table_token);
1428 bin5_index_main($transp_type, $header_out, $addr, $get, $post, $cookie);
1429 $content = ob_get_contents();
1432 $s_a_p->pendpage_try_addflush($new_socket, 20, $enc, $header_out, $content);
1436 case "index_wr.php":
1437 if (isset($table_idx) && isset($table_token)) {
1438 if (($bri = $s_a_p->app->match_get($table_idx, $table_token)) != FALSE) {
1440 bin5_index_wr_main($bri, $addr, $get, $post, $cookie);
1441 $content = ob_get_contents();
1445 $content = "Bin5 Load data error";
1449 $content = "Bin5 Load data error";
1451 $s_a_p->pendpage_try_addflush($new_socket, 20, $enc, $header_out, $content);
1455 case "index_rd.php":
1456 if (($transp = gpcs_var('transp', $get, $post, $cookie)) === FALSE)
1458 if ($transp == 'websocket')
1462 if (!isset($table_idx)
1463 || !isset($table_token)
1464 || !isset($cookie['sess'])
1465 || ($bri = $s_a_p->app->match_get($table_idx, $table_token)) == NULL
1466 || (($user = $bri->get_user($cookie['sess'], $idx)) == FALSE)) {
1468 $content = Bin5_user::stream_fini($transp_type, $s_a_p->rndstr, TRUE);
1469 $s_a_p->pendpage_try_addflush($new_socket, 20, $enc, $header_out, $content);
1474 $bri->brisk->sess_cur_set($user->sess);
1476 // close a previous opened index_read_ifra socket, if exists
1477 if (($prev = $user->rd_socket_get()) != NULL) {
1478 $s_a_p->socks_unset($user->rd_socket_get());
1479 fclose($user->rd_socket_get());
1480 printf("CLOSE AND OPEN AGAIN ON IFRA2\n");
1481 $user->rd_socket_set(NULL);
1485 $user->stream_init($s_a_p->rndstr, $enc, $header, $header_out, $content, $get, $post, $cookie);
1487 $response = headers_render($header_out, -1).$user->chunked_content($content);
1488 $response_l = mb_strlen($response, "ASCII");
1490 $wret = @fwrite($new_socket, $response, $response_l);
1491 if ($wret < $response_l) {
1492 printf("TROUBLES WITH FWRITE: %d\n", $wret);
1493 $user->rd_cache_set(mb_substr($content, $wret, $response_l - $wret, "ASCII"));
1496 $user->rd_cache_set("");
1498 fflush($new_socket);
1501 $s_a_p->socks_set($new_socket, $user, NULL);
1502 $user->rd_socket_set($new_socket);
1503 printf(" - qui ci siamo - ");
1522 function locshm_exists($tok)
1526 if (($id = @shmop_open($tok,"a", 0, 0)) == FALSE) {
1527 log_main($tok." SHM NOT exists");
1533 log_main($tok." SHM exists");
1542 is_transition (is from room to table ?)
1543 is_again (is another game)
1545 Examples of $is_transition, $is_again:
1546 from reload of the page: FALSE, FALSE
1547 from sitdown in room: TRUE, FALSE
1548 from table: asta cmd e tutti passano: TRUE, TRUE
1549 from table: fine partita: TRUE, TRUE
1551 function show_table(&$bri, &$user, $sendstep, $is_transition, $is_again)
1553 $table_idx = $user->table;
1554 $table = $bri->table[$table_idx];
1555 $table_pos = $user->table_pos;
1557 $ret = "table_init();";
1558 $ret .= $table->exitlock_show(&$bri->user, $table_pos);
1560 /* GENERAL STATUS */
1561 $user_rules = $user->rules_get();
1562 $ret .= sprintf('gst.st = %d; stat = "%s"; subst = "%s"; table_pos = %d; rules_set(%d);',
1563 $sendstep, $user->stat, $user->subst, $table_pos,
1564 ($user_rules == BIN5_USER_CONTINUE_INIT ? $table->rules->id_get() : $user_rules));
1566 log_rd(sprintf( 'SHOW_TABLE: gst.st = %d; stat = "%s"; subst = "%s"; table_pos = %d;', $sendstep, $user->stat, $user->subst, $table_pos));
1569 $ret .= "background_set();";
1572 $ret .= $user->myname_innerHTML();
1573 $ret .= sprintf('set_names([%d, "%s"], [%d, "%s"], [%d, "%s"], [%d, "%s"], [%d, "%s"]); ',
1574 $bri->user[$table->player[($table_pos) % BIN5_PLAYERS_N]]->flags,
1575 xcape($bri->user[$table->player[($table_pos) % BIN5_PLAYERS_N]]->name),
1577 $bri->user[$table->player[($table_pos+1) % BIN5_PLAYERS_N]]->flags,
1578 xcape($bri->user[$table->player[($table_pos+1) % BIN5_PLAYERS_N]]->name),
1580 $bri->user[$table->player[($table_pos+2) % BIN5_PLAYERS_N]]->flags,
1581 xcape($bri->user[$table->player[($table_pos+2) % BIN5_PLAYERS_N]]->name),
1583 (BIN5_PLAYERS_N == 3 ? 0 : $bri->user[$table->player[($table_pos+3) % BIN5_PLAYERS_N]]->flags),
1584 (BIN5_PLAYERS_N == 3 ? "" : xcape($bri->user[$table->player[($table_pos+3) % BIN5_PLAYERS_N]]->name)),
1586 (BIN5_PLAYERS_N == 3 ? 0 : $bri->user[$table->player[($table_pos+4) % BIN5_PLAYERS_N]]->flags),
1587 (BIN5_PLAYERS_N == 3 ? "" : xcape($bri->user[$table->player[($table_pos+4) % BIN5_PLAYERS_N]]->name)));
1589 /* NOTIFY FOR THE CARD MAKER */
1590 if ($is_transition) { // && $user->subst == "asta" superfluo
1591 $ret .= show_table_info(&$bri, &$table, $table_pos);
1592 $ret .= "setTimeout(preload_images, 500, g_preload_img_arr, g_imgct);";
1595 $ret .= "\$('imgct').innerHTML = \$('imgct').innerHTML = mlang_commons['imgload_a'][g_lang]+\"100%.\";";
1598 $ret .= table_welcome($user);
1600 if ($is_transition && !$is_again) { // just sit, play cow
1601 $ret .= playsound("cow.mp3");
1606 if ($is_transition) { // && $user->subst == "asta" superfluo
1609 for ($i = 0 ; $i < BIN5_CARD_HAND ; $i++) {
1610 for ($e = 0 ; $e < BIN5_PLAYERS_N ; $e++) {
1612 for ($o = 0 ; $o < (BIN5_CARD_HAND * BIN5_PLAYERS_N) && $ct < $i+1 ; $o++) {
1613 // for ($o = 0 ; $o < 40 && $ct < $i+1 ; $o++) {
1614 if ($table->card[$o]->owner == (($e + $table->gstart) % BIN5_PLAYERS_N)) {
1620 log_rd("O ".$o." VAL ".$table->card[$o]->value." Owner: ".$table->card[$o]->owner);
1622 $ret .= sprintf( ' card_send(%d,%d,%d,%8.2f,%d);|', ($table->gstart + $e) % BIN5_PLAYERS_N,
1623 $i, ((($e + BIN5_PLAYERS_N - $table_pos + $table->gstart) % BIN5_PLAYERS_N) == 0 ?
1624 $table->card[$o]->value : -1),
1625 ($i == 7 && $e == (BIN5_PLAYERS_N - 1) ? 1 : 0.5),$i+1);
1630 $taked = array(0,0,0,0,0);
1631 $inhand = array(0,0,0,0,0);
1632 $ontabl = array(-1,-1,-1,-1,-1);
1635 for ($i = 0 ; $i < (BIN5_CARD_HAND * BIN5_PLAYERS_N) ; $i++) {
1636 // for ($i = 0 ; $i < 40 ; $i++) {
1637 if ($table->card[$i]->stat == 'hand') {
1638 if ($table->card[$i]->owner == $table_pos) {
1639 $cards[$inhand[$table->card[$i]->owner]] = $table->card[$i]->value;
1641 $inhand[$table->card[$i]->owner]++;
1643 else if ($table->card[$i]->stat == 'take') {
1644 log_main("Card taked: ".$table->card[$i]->value."OWN: ".$table->card[$i]->owner);
1645 $taked[$table->card[$i]->owner]++;
1647 else if ($table->card[$i]->stat == 'table') {
1648 $ontabl[$table->card[$i]->owner] = $i;
1652 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
1653 $logg .= sprintf("INHAND: %d IN TABLE %d TAKED %d\n", $inhand[$i], $ontabl[$i], $taked[$i]);
1655 log_main("Stat table: ".$logg);
1657 /* Set ours cards. */
1659 for ($i = 0 ; $i < $inhand[$table_pos] ; $i++)
1660 $oursarg .= ($i == 0 ? "" : ", ").$cards[$i];
1661 for ($i = $inhand[$table_pos] ; $i < BIN5_CARD_HAND ; $i++)
1662 $oursarg .= ($i == 0 ? "" : ", ")."-1";
1663 $ret .= sprintf('card_setours(%s);', $oursarg);
1665 /* Dispose all cards */
1666 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
1667 /* Qui sotto al posto di + 1 c'era + ->gstart ... credo in modo errato */
1668 $ret .= sprintf('cards_dispose(%d,%d,%d);', $i,
1669 ($inhand[$i] <= BIN5_CARD_HAND ? $inhand[$i] : BIN5_CARD_HAND), $taked[$i]);
1671 if ($ontabl[$i] != -1) {
1672 $ret .= sprintf('card_place(%d,%d,%d,%d,%d);',$i, $inhand[$i],
1673 $table->card[$ontabl[$i]]->value,
1674 $table->card[$ontabl[$i]]->x, $table->card[$ontabl[$i]]->y);
1680 if ($user->subst == 'asta') {
1682 /* show users auction status */
1684 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
1685 $user_cur = &$bri->user[$table->player[$i]];
1686 $showst .= sprintf("%s%d", ($i == 0 ? "" : ", "),
1687 ($user_cur->asta_card < 9 ? $user_cur->asta_card : $user_cur->asta_pnt));
1689 if (BIN5_PLAYERS_N == 3)
1690 $showst .= ",-2,-2";
1691 $ret .= sprintf('document.title = "Brisk - Tavolo %d (asta)";', $user->table_orig);
1692 $ret .= sprintf('show_astat(%s);', $showst);
1694 if ($table->asta_win != -1 && $table->asta_win == $table_pos) {
1695 /* show card chooser */
1696 $ret .= sprintf('choose_seed(%s); $("astalascio").style.visibility = ""; $("asta").style.visibility = "hidden";',
1700 // FIXME - RULES to be able to abandon table
1702 if ($table_pos == ($table->gstart % BIN5_PLAYERS_N) &&
1703 $table->asta_win == -1)
1704 $ret .= sprintf('dispose_asta(%d,%d, %s);',
1705 $table->asta_card + 1, $table->asta_pnt+1, ($user->handpt <= 2 ? "true" : "false"));
1707 $ret .= sprintf('dispose_asta(%d,%d, %s);',
1708 $table->asta_card + 1, -($table->asta_pnt+1), ($user->handpt <= 2 ? "true" : "false"));
1712 if ($table->asta_win == -1) { // auction case
1713 if ($table_pos == ($table->gstart % BIN5_PLAYERS_N))
1714 $ret .= "remark_on();";
1716 $ret .= "remark_off();";
1718 else { // chooseed case
1719 if ($table_pos == $table->asta_win)
1720 $ret .= "remark_on();";
1722 $ret .= "remark_off();";
1725 else if ($user->subst == 'game') {
1727 if (($table->gstart + $table->turn) % BIN5_PLAYERS_N == $table_pos)
1728 $ret .= "is_my_time = true; remark_on();";
1730 $ret .= "remark_off();";
1732 /* WHO CALL AND WHAT */
1733 $ret .= briscola_show($bri, $table, $user);
1737 } // end function show_table(...
1739 function calculate_winner(&$table)
1746 $cur_seed = $table->briscola - ($table->briscola % 10);
1748 for ($i = 0 ; $i < (BIN5_CARD_HAND * BIN5_PLAYERS_N) ; $i++) {
1749 // for ($i = 0 ; $i < 40 ; $i++) {
1750 if ($table->card[$i]->stat != "table")
1753 log_wr(sprintf("Card On table: [%d]", $i));
1755 $v = $table->card[$i]->value;
1756 $ontab[$table->card[$i]->owner] = $v;
1757 $ontid[$table->card[$i]->owner] = $i;
1758 /* se briscola setto il flag */
1759 if (($v - ($v % 10)) == $cur_seed)
1763 if ($briontab == FALSE) {
1764 $cur_win = $table->gstart;
1765 $cur_val = $ontab[$cur_win];
1766 $cur_seed = $cur_val - ($cur_val % 10);
1769 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
1770 if (($ontab[$i] - ($ontab[$i] % 10)) == $cur_seed) {
1771 if ($ontab[$i] < $cur_val) {
1772 $cur_val = $ontab[$i];
1778 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
1779 $table->card[$ontid[$i]]->owner = $cur_win;
1780 $table->card[$ontid[$i]]->stat = "take"; // Card stat
1785 function show_table_info(&$bri, &$table, $table_pos)
1787 GLOBAL $G_lang, $mlang_bin5_bin5;
1795 $user = $bri->user[$table->player[$table_pos]];
1797 // TAG: POINTS_MANAGEMENT
1798 $pnt_min = $table->points_n - MAX_POINTS < 0 ? 0 : $table->points_n - MAX_POINTS;
1799 $noty = sprintf('<p>%s.</p>\n', xcape(ucfirst(rules_id2descr($table->rules->id_get()))));
1800 $noty .= sprintf('<table class=\"points\"><tr><th></th>');
1803 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++)
1804 $noty .= sprintf('<th class=\"td_points\">%s</th>', xcape($bri->user[$table->player[$i]]->name));
1805 $noty .= sprintf("</tr>");
1808 log_main("show_table_info: pnt_min: ".$pnt_min." Points_n: ".$table->points_n);
1810 for ($i = $pnt_min ; $i < $table->points_n ; $i++) {
1811 $noty .= sprintf('<tr><th class=\"td_points\">%d</th>', $i+1);
1812 for ($e = 0 ; $e < BIN5_PLAYERS_N ; $e++)
1813 $noty .= sprintf('<td class=\"td_points\">%d</td>', $table->points[$i % MAX_POINTS][$e]);
1818 $noty .= '<tr><th class=\"td_points\">Tot.</th>';
1819 for ($e = 0 ; $e < BIN5_PLAYERS_N ; $e++)
1820 $noty .= sprintf('<td class=\"td_points\">%d</td>', $table->total[$e]);
1821 $noty .= "</tr></table>";
1823 if ($table->old_reason != "") {
1824 $noty .= sprintf($mlang_bin5_bin5['info_last'][$G_lang],
1825 $tg_br, $tg_hr, $tg_bo, $tg_bc);
1827 $noty .= $table->old_reason;
1830 $noty .= sprintf($mlang_bin5_bin5['info_curr'][$G_lang],
1831 $tg_br, $tg_hr, $tg_bo, $tg_bc);
1833 /* MLANG: "Fai <b>tu</b> il mazzo,", "Il mazzo a <b>$unam</b>," */
1834 if ($table->mazzo == $table_pos)
1835 $noty .= $mlang_bin5_bin5['info_yshuf'][$G_lang];
1837 $unam = xcape($bri->user[$table->player[$table->mazzo]]->name);
1838 $noty .= sprintf($mlang_bin5_bin5['info_shuf'][$G_lang], $unam);
1841 if ($user->subst == 'asta') {
1842 if ($table->asta_win == -1) // auction case
1843 $curplayer = $table->gstart % BIN5_PLAYERS_N;
1845 $curplayer = $table->asta_win;
1847 else if ($user->subst == 'game') {
1848 $curplayer = ($table->gstart + $table->turn) % BIN5_PLAYERS_N;
1851 /* MLANG: " tocca a <b>te</b> giocare.", " tocca a <b>$unam</b> giocare.", " La partita vale <b>%s</b>.", "torna alla partita" */
1852 if ($curplayer == $table_pos) {
1853 $noty .= $mlang_bin5_bin5['info_yturn'][$G_lang];
1856 $unam = xcape($bri->user[$table->player[$curplayer]]->name);
1857 $noty .= sprintf($mlang_bin5_bin5['info_turn'][$G_lang], $unam);
1860 $multer = $table->rules->multer(TRUE);
1862 $noty .= sprintf($mlang_bin5_bin5['info_mult'][$G_lang], multoval($multer) );
1865 if ($table->match_id != -1) {
1866 $noty .= sprintf($mlang_bin5_bin5['info_match'][$G_lang], $table->match_id);
1869 $ret .= show_notify($noty, 3000, $mlang_bin5_bin5['btn_bkgame'][$G_lang], 500, 400);
1870 /* NOTE: show_notify($noty, 3000, "torna alla partita", 500,
1871 * 130 + ($table->points_n > 0 ? 50 : 0) +
1872 * (120 * ($table->points_n / MAX_POINTS)));
1873 * will be used when we refact notify js function following
1874 * photoo class logic
1880 function table_welcome($user)
1882 GLOBAL $table_wellarr, $G_lang;
1885 for ($i = 0 ; $i < count($table_wellarr[$G_lang]) ; $i++)
1886 $ret .= sprintf('chatt_sub("%s", [2, "ChanServ: "],"%s");', "", str_replace('"', '\"', $table_wellarr[$G_lang][$i]));
1892 function briscola_show($bri, $table, $user)
1894 GLOBAL $G_lang, $mlang_bin5_bin5;
1898 if ($table->asta_card == 9)
1899 $ptnadd = sprintf($mlang_bin5_bin5['call_wptn'][$G_lang], $table->asta_pnt);
1901 /* text of caller cell */
1902 if ($user->table_pos == $table->asta_win) {
1903 $prestr = sprintf('$("callerinfo").innerHTML = "%s";', $mlang_bin5_bin5['call_ycall'][$G_lang]);
1904 $ret .= sprintf($prestr, $ptnadd);
1907 $prestr = sprintf('$("callerinfo").innerHTML = "%s";', $mlang_bin5_bin5['call_call'][$G_lang]);
1908 $ret .= sprintf($prestr,
1909 xcape($bri->user[$table->player[$table->asta_win]]->name), $ptnadd);
1911 $ret .= sprintf('set_iscalling(%d);', ($table->asta_win - $user->table_pos + BIN5_PLAYERS_N) % BIN5_PLAYERS_N);
1913 $ret .= sprintf('$("caller").style.backgroundImage = \'url("img/brisk_caller_sand%d.png")\';',
1915 $ret .= sprintf('$("callerimg").src = "img/%02d.png";', $table->briscola);
1916 $ret .= sprintf('$("caller").style.visibility = "visible";');
1917 $ret .= sprintf('$("chooseed").style.visibility = "hidden";');
1918 $ret .= sprintf('$("astalascio").style.visibility = "";');
1919 $ret .= sprintf('$("asta").style.visibility = "hidden";');
1920 $ret .= sprintf('show_astat(-2,-2,-2,-2,-2);');
1925 function log_points($remote_addr, $curtime, $user, $where, $mesg)
1927 if (($fp = @fopen(LEGAL_PATH."/points.log", 'a')) != FALSE) {
1928 /* Unix time | session | nickname | IP | where was | mesg */
1929 fwrite($fp, sprintf("%ld|%s|%s|%s|%s|%s|%s|\n", $curtime, $user->sess,
1930 ($user->is_auth() ? 'A' : 'N'),
1931 $user->name, $remote_addr, $where , $mesg));