5 * Copyright (C) 2006-2012 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_MAX_PLAYERS', BIN5_PLAYERS_N);
26 // define(BIN5_SHM_MIN', (50000 * BIN5_MAX_PLAYERS));
27 define('BIN5_SHM_MIN', 32768);
28 define('BIN5_SHM_MAX', (BIN5_SHM_MIN + 1048576));
29 define('BIN5_SHM_DLT', 32768);
30 define('BIN5_PROXY_PATH', PROXY_PATH."/bin5");
32 $mlang_bin5_bin5 = array(
33 'info_part' => array( 'it' => '<hr>Nell\'ultima mano ha chiamato <b>%s</b>, il socio era <b>%s</b>,<br>',
34 'en' => '<hr>In the last hand the declarer was <b>%s</b>, the partner was <b>%s</b>,<br>'),
35 'info_capp' => array( 'it' => 'hanno fatto <b>cappotto</b> EBBRAVI!.<br>',
36 'en' => 'and they made <b>capot</b> WELL DONE!.<br>'),
37 'info_pnt' => array( 'it' => 'dovevano fare <b>%s</b> punti e ne hanno fatti <b>%d</b>: hanno %s.<br>',
38 'en' => 'they had to do <b>%s</b> points and they had made <b>%d</b>: they have %s.<br>'),
39 'info_alea' => array( 'it' => 'almeno ',
41 'info_more' => array( 'it' => 'più di 60',
43 'info_win' => array( 'it' => '<b>vinto</b>',
44 'en' => '<b>win</b>'),
45 'info_peer' => array( 'it' => '<b>pareggiato</b>',
46 'en' => '<b>drew</b>'),
47 'info_lost' => array( 'it' => '<b>perso</b>',
48 'en' => '<b>lost</b>'),
50 'info_alon' => array( 'it' => '<hr>Nell\'ultima partita <b>%s</b> si è chiamato in mano,<br>',
51 'en' => '<hr>In the last hand <b>%s</b> play alone against each other,<br>'),
52 'info_apnt' => array( 'it' => 'doveva fare <b>%s</b> punti e ne ha fatti <b>%d</b>: ha %s.<br>',
53 'en' => 'he/she had to do <b>%s</b> points and they had made <b>%d</b>: he/she had %s.<br>'),
54 'info_acap' => array( 'it' => 'ha fatto <b>cappotto</b> EBBRAVO!.<hr>',
55 'en' => 'and he/she made <b>capot</b> WELL DONE!.<hr>'),
57 'info_omul' => array( 'it' => ' La partita valeva <b>%s</b>.',
58 'en' => ' EN: The game was worth <b>%s</b>.' ),
60 'info_yturn'=> array( 'it' => ' tocca a <b>te</b> giocare.',
61 'en' => ' it\'s <b>your</b> turn.'),
62 'info_turn' => array( 'it' => 'tocca a <b>%s</b> giocare.',
63 'en' => 'it\'s the <b>%s</b>\'s turn.'),
64 'info_mult' => array( 'it' => ' La partita vale <b>%s</b>.',
65 'en' => ' The game worth <b>%s</b>.' ),
66 'info_yshuf'=> array( 'it' => 'Fai <b>tu</b> il mazzo, ',
67 'en' => 'It\'s <b>your</b> shuffled the cards, '),
68 'info_shuf' => array( 'it' => 'Il mazzo a <b>%s</b>, ',
69 'en' => '<b>%s</b> shuffled the cards, '),
70 'btn_bkgame'=> array( 'it' => 'torna alla partita',
71 'en' => 'back to the game'),
72 'call_wptn' => array( 'it' => '<br>con %d punti',
73 'en' => '<br>with %d points'),
74 'call_ycall'=> array( 'it' => 'Chiami%s:',
76 'call_call' => array( 'it' => 'Chiama %s%s:',
77 'en' => 'The declarer is %s%s:')
83 $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.'),
84 '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.') );
86 function multoval($mult)
91 return ($G_lang == 'en' ? 'double' : 'doppio');
93 return ($G_lang == 'en' ? 'triple' : 'triplo');
95 return ($G_lang == 'en' ? 'quadruple' : 'quadruplo');
97 return (sprintf(($G_lang == 'en' ? "%d-ple" : "%d-plo"), $mult));
102 var $value; /* 0 - 39 card value */
103 var $stat; /* 'bunch', 'hand', 'table', 'take' */
104 var $owner; /* (table position 0-4) */
105 // var $pos; /* Pos in hand. */
106 var $x; /* When played the X position on the table of the owner. */
107 var $y; /* When played the Y position on the table of the owner. */
109 function Card($value, $stat, $owner)
111 $this->value = $value;
112 $this->stat = $stat; // Card stat
113 $this->owner = $owner;
116 function assign($stat,$owner)
118 $this->stat = $stat; // Card stat
119 $this->owner = $owner;
122 function setpos($pos)
129 $this->stat = 'table'; // Card stat
134 function take($newown)
136 $this->stat = 'take'; // Card stat
137 $this->owner = $newown;
141 class Bin5_table extends Table {
142 var $card; // il mazzo di carte
143 var $mazzo; // chi e' di mazzo
153 var $points; // points array
154 var $points_n; // number of row of points
168 function Bin5_table()
174 function create($idx)
176 if (($thiz =& new Bin5_table()) == FALSE)
182 $thiz->asta_pla = array(); // TRUE: in auction, FALSE: out of the auction
183 $thiz->asta_pla_n= -1;
184 $thiz->asta_card = -1;
185 $thiz->asta_pnt = -1;
188 $thiz->points = array( );
190 $thiz->total = array( 0, 0, 0, 0, 0);
191 $thiz->asta_win = -1;
192 $thiz->briscola = -1;
196 $thiz->old_reason = "";
197 $thiz->old_asta_pnt = -1;
198 $thiz->old_mult = -1;
201 $thiz->old_friend = -1;
208 function myclone(&$from)
210 if (($thiz =& new Bin5_table()) == FALSE)
215 $thiz->card = $from->card;
216 $thiz->mazzo = $from->mazzo; // REVIEW
217 $thiz->gstart = $from->gstart;
218 $thiz->turn = $from->turn;
220 $thiz->asta_pla = $from->asta_pla;
221 $thiz->asta_pla_n = $from->asta_pla_n;
222 $thiz->asta_card = $from->asta_card;
223 $thiz->asta_pnt = $from->asta_pnt;
225 $thiz->mult = $from->mult;
226 $thiz->points = $from->points;
227 $thiz->points_n = $from->points_n;
228 $thiz->total = $from->total;
230 $thiz->asta_win = $from->asta_win;
231 $thiz->briscola = $from->briscola;
232 $thiz->friend = $from->friend;
234 $thiz->old_reason = $from->old_reason;
235 $thiz->old_asta_pnt = $from->old_asta_pnt;
236 $thiz->old_mult = $from->mult;
237 $thiz->old_pnt = $from->old_pnt;
238 $thiz->old_win = $from->old_win;
239 $thiz->old_friend = $from->old_friend;
245 function parentcopy(&$from)
250 function spawn(&$from)
252 if (($thiz =& new Bin5_table()) == FALSE)
255 $thiz->parentcopy($from);
257 log_main("PLAYER_N - spawn.".$thiz->player_n);
259 $thiz->card = array();
260 $thiz->bunch_create();
261 $thiz->mazzo = rand(0,PLAYERS_N-1);
265 $thiz->old_reason = "";
267 // players are rearranged in an dedicated array
268 $thiz->player = array();
269 for ($i = 0 ; $i < $from->player_n ; $i++)
270 $thiz->player[$i] = $i;
272 log_main("TABLE_OLD_WIN - spawn:".$thiz->old_win);
278 // function bunch_create_old() function AND
282 // for ($i = 0 ; $i < (BIN5_PLAYERS_N == 5 ? 40 : 24) ; $i++) {
283 // // for ($i = 0 ; $i < 40 ; $i++) {
284 // $ret[$i] =& new Card($i, 'bunch', 'no_owner');
291 function bunch_create()
295 for ($i = 0 ; $i < (BIN5_PLAYERS_N == 5 ? 40 : 24) ; $i++) {
296 $this->card[$i] = new Card($i, 'bunch', 'no_owner');
300 function bunch_make()
302 log_main("bunch_make start");
303 $ct = array(0,0,0,0,0);
305 mt_srand(make_seed());
307 for ($i = (BIN5_PLAYERS_N == 5 ? 40 : 24) - 1 ; $i >= 0 ; $i--)
310 for ($i = (BIN5_PLAYERS_N == 5 ? 40 : 24) - 1 ; $i >= 0 ; $i--) {
314 log_main("RND ZERO");
318 $owner = $i % BIN5_PLAYERS_N;
319 $this->card[$id]->assign('hand', $owner);
321 $rest[$rn] = $rest[$i];
322 // $pubbpos[$rn2] = $pubbpos[$i];
324 log_main("bunch_make end");
327 function init($userarr)
330 $this->mazzo = rand(0,PLAYERS_N-1);
334 $this->old_reason = "";
336 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
337 $this->total[$i] = 0;
338 $user_cur = $userarr[$this->player[$i]];
339 $user_cur->exitislock = TRUE;
342 log_main("table::init: ci siamo");
345 function game_init($userarr)
349 $this->gstart = ($this->mazzo+1) % BIN5_PLAYERS_N;
353 $this->asta_pla_n = BIN5_PLAYERS_N;
354 $this->asta_card = -1;
355 $this->asta_pnt = 60;
356 $this->asta_win = -1;
357 $this->briscola = -1;
361 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
362 $this->asta_pla[$i] = TRUE;
363 $user_cur = $userarr[$this->player[$i]];
364 $user_cur->subst = 'asta';
365 $user_cur->asta_card = -2;
366 $user_cur->asta_pnt = -1;
367 $user_cur->handpt = $this->hand_points($i);
368 // SEE function calculate_points(&$table)
375 $this->mazzo = ($this->mazzo + 1) % BIN5_PLAYERS_N;
379 function hand_points($idx)
381 GLOBAL $G_all_points;
385 for ($i = 0 ; $i < (BIN5_PLAYERS_N == 5 ? 40 : 24) ; $i++) {
386 // for ($i = 0 ; $i < 40 ; $i++) {
387 if ($this->card[$i]->owner != $idx)
390 $ctt = $this->card[$i]->value % 10;
391 $tot += $G_all_points[$ctt];
398 function exitlock_show($userarr, $table_pos)
400 $ct = $this->exitlock_calc($userarr, $table_pos);
402 $ret = sprintf('exitlock_show(%d, %s);', $ct,
403 ($userarr[$this->player[$table_pos]]->exitislock ? 'true' : 'false'));
407 function exitlock_calc(&$userarr, $table_pos)
411 for ($i = 0 , $ct = 0 ; $i < PLAYERS_N ; $i++) {
412 if ($userarr[$this->player[$i]]->exitislock == FALSE)
418 } // end class Bin5_table
423 define('BIN5_USER_FLAG_RING_ENDAUCT', 0x01);
425 class Bin5_user extends User {
428 var $handpt; // Total card points at the beginning of the current hand.
429 var $exitislock; // Player can exit from the table ?
430 var $privflags; // Flags for briskin5 only
438 function create($name, $sess, $stat = "", $subst = "", $table = -1, $ip="0.0.0.0") {
439 if (($thiz =& new User()) == FALSE)
442 $thiz->asta_card = -2;
443 $thiz->asta_pnt = -1;
445 $thiz->exitislock = TRUE;
446 $thiz->privflags = 0;
452 function parentcopy(&$from)
457 function copy(&$from)
459 $this->parentcopy($from);
461 $this->asta_card = $from->asta_card;
462 $this->asta_pnt = $from->asta_pnt;
463 $this->handpt = $from->handpt;
464 $this->exitislock = $from->exitislock;
465 $this->privflags = $from->privflags;
469 function myclone(&$from)
471 if (($thiz =& new User()) == FALSE)
480 function spawn($from, &$bri, $table, $table_pos, $get, $post, $cookie)
482 if (($thiz = new Bin5_user()) == FALSE)
485 if (($CO_bin5_pref_ring_endauct = gpcs_var("CO_bin5_pref_ring_endauct", $get, $post, $cookie)) === FALSE) {
486 $CO_bin5_pref_ring_endauct = "";
489 $thiz->parentcopy($from);
491 /* NOTE: at this moment idx and table_pos fields have the same value
492 but diffentent functions, we keep them separated for a while */
494 $thiz->idx = $table_pos;
495 $thiz->asta_card = -2;
496 $thiz->asta_pnt = -1;
498 $thiz->exitislock = TRUE;
500 log_wr("Bin5 constructor");
502 $this->privflags = ($CO_bin5_pref_ring_endauct == "true" ? BIN5_USER_FLAG_RING_ENDAUCT : 0) | 0;
504 $thiz->table_orig = $table;
506 $thiz->table_pos = $table_pos;
513 function step_set($step)
515 $this->step = $step & 0x7fffffff;
520 function step_inc($delta = 1) {
521 $this->step += $delta;
522 /* modularization because unpack() not manage unsigned 32bit int correctly */
523 $this->step &= 0x7fffffff;
528 static function load_step($tab_id, $sess)
532 if (validate_sess($sess) == FALSE)
535 if (file_exists(BIN5_PROXY_PATH."/table".$tab_id) == FALSE)
536 mkdir(BIN5_PROXY_PATH."/table".$tab_id, 0775, TRUE);
537 if (($fp = @fopen(BIN5_PROXY_PATH."/table".$tab_id."/".$sess.".step", 'rb')) == FALSE)
539 if (($s = fread($fp, 8)) == FALSE)
541 if (mb_strlen($s, "ASCII") != 8)
543 $arr = unpack('Ls/Li', $s);
546 // log_rd2("A0: ".$arr[0]." A1: ".$arr[1]);
553 log_rd2("STEP_GET [".$sess."]: return false ");
561 if (validate_sess($this->sess) == FALSE)
563 if (file_exists(BIN5_PROXY_PATH."/table".$this->table_orig) == FALSE)
564 mkdir(BIN5_PROXY_PATH."/table".$this->table_orig, 0775, TRUE);
565 if (($fp = @fopen(BIN5_PROXY_PATH."/table".$this->table_orig."/".$this->sess.".step", 'w')) == FALSE)
567 fwrite($fp, pack("LL",$this->step, $this->idx));
570 log_main("step_set [".$this->sess. "] [".$this->step."]");
578 static function unproxy_step($tab_id, $sess)
580 log_rd2("UNPROXY: ".BIN5_PROXY_PATH."/table".$tab_id."/".$sess.".step");
581 if (file_exists(BIN5_PROXY_PATH."/table".$tab_id) == FALSE)
584 @unlink(BIN5_PROXY_PATH."/table".$tab_id."/".$sess.".step");
587 static function load_data($tab_id, $id, $sess)
589 log_load("Bin5_user::load_data: tab_id [".$tab_id."] id [".$id."] sess [".($sess == FALSE ? "FALSE" : $sess)."] ");
592 if (($tok = @ftok(FTOK_PATH."/bin5/table".$tab_id."/user".$id, "B")) == -1) {
593 log_main("ftok failed");
597 if (($shm_sz = sharedmem_sz($tok)) == -1) {
598 log_main("shmop_open failed");
602 $shm_sz = SHM_DIMS_U_MIN;
604 if ($shm = shm_attach($tok, $shm_sz)) {
605 if (($user = @shm_get_var($shm, $tok)) == FALSE) {
609 if ($sess != FALSE && $user->sess != $sess) {
612 log_only("user == ".($user == FALSE ? "FALSE" : "TRUE")." user === ".($user === FALSE ? "FALSE" : "TRUE")." user isset ".(isset($user) ? "TRUE" : "FALSE"));
614 if ($user == FALSE) {
615 log_only("INIT MAIN DATA");
617 // SHSPLIT FIXME: init_data for User class ??
618 $user = User::create($id, "", "");
619 if (@shm_put_var($shm, $tok, $user) == FALSE) {
620 log_shme("Bin5_user::save_data2");
622 log_only("PUT_VAR FALLITA ".strlen(serialize($user)));
623 log_only(serialize($user));
627 if ($sess != FALSE) {
628 // This part isn't strictly required but is good to verify
629 // the coerence of cached and User class saved value of step field.
630 $old_step = $user->step;
631 $arr = Bin5_user::load_step($tab_id, $sess);
632 $user->step = $arr['s'];
633 if ($old_step != $user->step) {
634 log_crit("Bin5:: steps are diffetents User->step ".$user->step." Old_step: ".$old_step);
640 $user->shm_sz = $shm_sz;
646 // SHSPLIT: load users from the shared memory
651 log_crit("Bin5_user::load_data:ret FALSE");
656 static function save_data($user, $tab_id, $id)
662 if (($tok = @ftok(FTOK_PATH."/bin5/table".$tab_id."/user".$id, "B")) == -1) {
665 while ($user->shm_sz < SHM_DIMS_U_MAX) {
666 if (($shm = shm_attach($tok, $user->shm_sz)) == FALSE)
669 // log_only("PUT_VAR DI ".strlen(serialize($user)));
670 if (@shm_put_var($shm, $tok, $user) != FALSE) {
673 log_main("User[".$id."] saved.");
675 log_shme("Bin5_user::save_data");
679 if (shm_remove($shm) === FALSE) {
680 log_only("REMOVE FALLITA");
684 $user->shm_sz += SHM_DIMS_U_DLT;
693 function destroy_data($tab_id)
696 if (($tok = @ftok(FTOK_PATH."/bin5/table".$tab_id."/user".$this->table_pos, "B")) == -1) {
697 log_crit("BIN5 USER DATA REMOVE FAILED 1 [".FTOK_PATH."/bin5/table".$tab_id."/user".$this->table_pos."]");
701 if (($shm = @shmop_open($tok, 'a', 0, 0)) == FALSE) {
702 log_crit("BIN5 USER DATA REMOVE FAILED 2");
705 if (shmop_delete($shm) == 0) {
706 log_crit("BIN5 USER DATA REMOVE FAILED 3");
711 log_main("BIN5 USER DATA DESTROY SUCCESS");
713 // log_main("QUI CI ARRIVA [".$bri->user[0]->name."]");
723 public static function stream_fini($init_string, $is_unrecoverable)
725 printf("xXx user::stream_fini\n");
729 $body .= sprintf("<html>
731 <script type=\"text/javascript\" src=\"%scommons.js\"></script>
732 <script type=\"text/javascript\" src=\"%sxynt-http-streaming-ifra.js\"></script>
733 <script type=\"text/javascript\">
734 var http_streaming = \"ready\";", self::base_get(), self::base_get());
736 window.onload = function () { if (http_streaming != \"ready\") { http_streaming.reload(); } };
740 $body .= sprintf("<!-- \n%s -->\n", $init_string);
741 $body .= sprintf("<script id='hs%d' type='text/javascript'><!--
744 </script>", 0, escpush(self::blocking_error($is_unrecoverable)) );
746 // return (self::blocking_error($is_unrecoverable));
751 protected function blocking_error($is_unrecoverable)
753 GLOBAL $is_page_streaming;
755 $is_page_streaming = TRUE;
756 log_crit("BLOCKING_ERROR UNREC: ".($is_unrecoverable ? "TRUE" : "FALSE"));
757 return (sprintf(($is_unrecoverable ? 'hstm.stop(); ' : '').'window.onbeforeunload = null; window.onunload = null; document.location.assign("../index.php");'));
760 protected function page_sync($sess, $page)
762 GLOBAL $is_page_streaming;
764 $is_page_streaming = TRUE;
765 log_rd2("PAGE_SYNC");
766 printf("xXx BIN5_USER::PAGE_SYNC\n");
767 return (sprintf('hstm.stop(); window.onbeforeunload = null; window.onunload = null; document.location.assign("%s");', $page));
770 protected function maincheck($cur_stat, $cur_subst, $cur_step, &$new_stat, &$new_subst, &$new_step, $splashdate, $table_idx, $table_token)
772 GLOBAL $G_lang, $mlang_indrd, $is_page_streaming;
773 GLOBAL $G_with_splash, $G_splash_content, $G_splash_interval, $G_splash_idx;
774 GLOBAL $G_splash_w, $G_splash_h, $G_splash_timeout;
775 $CO_splashdate = "CO_splashdate".$G_splash_idx;
776 $$CO_splashdate = $splashdate;
780 log_rd("maincheck begin");
785 /* Nothing changed, return. */
786 if ($cur_step == $this->step)
789 log_rd2("do other cur_stat[".$cur_stat."] user->stat[".$this->stat."] cur_step[".$cur_step."] user_step[".$this->step."]");
791 if ($cur_step == -1) {
793 * if $cur_step == -1 load the current state from the main struct
796 $S_load_stat['wR_minusone']++;
798 if ($this->the_end == TRUE) {
799 log_rd2("main_check: the end".var_export(debug_backtrace()));
800 $is_page_streaming = TRUE;
803 if ($this->trans_step != -1) {
804 log_rd2("TRANS USATO ".$this->trans_step);
805 $cur_step = $this->trans_step;
806 $this->trans_step = -1;
809 log_rd2("TRANS NON ATTIVATO");
814 /* this part I suppose is read only on $this->room structure */
815 if ($cur_step == -1) {
816 log_rd2("PRE-NEWSTAT");
823 if ($this->stat == 'table') {
825 /* NOTE: $this->room is associated with the current $bri object */
826 printf("xXx CLASS NAME [%s]\n", get_class($this->room));
827 $ret = show_table(&$this->room, $this, $this->step, FALSE, FALSE);
829 log_rd2("NEWSTAT: ".$this->stat);
831 $new_stat = $this->stat;
832 $new_subst = $this->subst;
833 $new_step = $this->step;
834 } /* if ($cur_step == -1) { */
836 /* $sem = Room::lock_data(FALSE); */
837 $S_load_stat['rU_heavy']++;
839 if ($cur_step < $this->step) {
841 if ($cur_step + COMM_N < $this->step) {
842 if (($cur_stat != $this->stat)) {
843 $to_stat = $this->stat;
844 /* Room::unlock_data($sem); */
846 printf("xXx BIN5_USER::MAINCHECK\n");
847 return ($this->page_sync($this->sess, ($to_stat == "table" ? "index.php" : "../index.php"), $this->table, $this->table_token));
849 log_rd2("lost history, refresh from scratch");
850 printf("xXx LOST HISTORY!\n");
854 for ($i = $cur_step ; $i < $this->step ; $i++) {
856 log_rd2("ADDED TO THE STREAM: ".$this->comm[$ii]);
857 $ret .= $this->comm[$ii];
859 $new_stat = $this->stat;
860 $new_subst = $this->subst;
861 $new_step = $this->step;
864 log_rd2($this->step, 'index_rd.php: after ret set');
866 if ($this->the_end == TRUE) {
867 log_rd2("LOGOUT BYE BYE!!");
868 log_auth($this->sess, "Explicit logout.");
870 if ($this->the_end == TRUE) {
874 /* if ($this->subst == 'sitdown') { */
875 /* log_load("ROOM WAKEUP"); */
876 /* $this->room->room_wakeup($this); */
878 /* else if ($this->subst == 'standup') */
879 /* $this->room->room_outstandup($this); */
881 /* log_rd2("LOGOUT FROM WHAT ???"); */
883 } /* if ($this->the_end == TRUE) { ... */
884 } /* if ($this->the_end == TRUE) { ... */
885 } /* if ($cur_step < $this->step) { */
887 /* Room::unlock_data($sem); */
888 } /* else of if ($cur_step == -1) { */
892 } // function maincheck (...
899 } // end class Bin5_user
904 static $delta_t = array();
908 var $comm; // commands for many people
909 var $step; // current step of the comm array
910 var $garbage_timeout;
919 static function page_manager($room, $header_out, $path, $method, $addr, $get, $post, $cookie)
925 bin5_index_main($room, $header_out, $addr, $get, $post, $cookie);
926 $content = ob_get_contents();
929 force_no_cache($header_out);
931 $pgflush = new PageFlush($new_socket, $curtime, 20, $header_out, $content);
933 if ($pgflush->try_flush($curtime) == FALSE) {
934 // Add $pgflush to the pgflush array
935 array_push($pages_flush, $pgflush);
942 function Bin5 ($room, $table_idx, $table_token, $get, $post, $cookie) {
943 $this->user = array();
944 $this->table = array();
946 $this->the_end = FALSE;
947 $this->shm_sz = BIN5_SHM_MIN;
948 if (($this->tok = @ftok(FTOK_PATH."/bin5/table".$table_idx."/table", "B")) == -1) {
954 $table = $room->table[$table_idx];
956 log_wr("Bin5 constructor");
958 for ($i = 0 ; $i < $table->player_n ; $i++) {
959 $user[$table->player[$i]]->table_token = $table_token;
960 $this->user[$i] = Bin5_user::spawn($user[$table->player[$i]], $this, $table_idx, $i, $get, $post, $cookie);
962 $this->table[0] = Bin5_table::spawn(&$table);
964 log_main("TABLE_OLD_WIN - Bin5:".$this->table[0]->old_win);
966 $this->table_idx = $table_idx;
967 $this->table_token = $table_token;
968 $this->garbage_timeout = 0;
970 log_wr("Bin5 constructor end");
974 function get_user($sess, &$idx)
978 if (validate_sess($sess)) {
979 for ($i = 0 ; $i < BIN5_MAX_PLAYERS ; $i++) {
980 if (strcmp($sess, $this->user[$i]->sess) == 0) {
983 $ret = &$this->user[$i];
987 log_main(sprintf("get_user: Wrong sess from page [%s]",$PHP_SELF));
988 // for ($i = 0 ; $i < BIN5_MAX_PLAYERS ; $i++)
989 // log_main(sprintf("get_user: Wrong sess compared with [%s]",$this->user[$i]->sess));
992 log_main(sprintf("get_user: Wrong strlen [%s]",$sess));
999 function garbage_manager($force)
1003 /* Garbage collector degli utenti in timeout */
1006 if ($force || $this->garbage_timeout < $curtime) {
1007 for ($i = 0 ; $i < BIN5_MAX_PLAYERS ; $i++) {
1008 $user_cur = $this->user[$i];
1009 if ($user_cur->sess == "" ||
1010 ($user_cur->stat == 'table' && ($user_cur->subst == 'shutdowned' || $user_cur->subst == 'shutdowner')))
1013 if ($user_cur->lacc + EXPIRE_TIME_RD < $curtime) { // Auto logout dell'utente
1014 log_rd2($user_cur->sess." bin5 AUTO LOGOUT.");
1016 if ($user_cur->stat == 'table') {
1017 log_auth($user_cur->sess," bin5 Autologout session.");
1019 /* SI DELEGA AL garbage_manager principale LA RIMOZIONE DELL'UTENTE
1021 $tmp_sess = $user_cur->sess;
1022 $user_cur->sess = "";
1023 Bin5_user::step_unproxy($tmp_sess);
1024 $user_cur->name = "";
1025 $user_cur->the_end = FALSE;
1029 /* se gli altri utenti non erano d'accordo questo utente viene bannato */
1030 $remcalc = $this->table[0]->exitlock_calc(&$this->user, $user_cur->table_pos);
1032 require_once("${G_base}Obj/hardban.phh");
1033 Hardbans::add(($user_cur->flags & USER_FLAG_AUTH ? $user_cur->name : FALSE),
1034 $user_cur->ip, $user_cur->sess, $user_cur->laccwr + BAN_TIME);
1036 // $user->bantime = $user->laccwr + BAN_TIME;
1038 $this->table_wakeup($user_cur);
1042 log_rd2($user_cur->sess." GARBAGE UPDATED!");
1044 $this->garbage_timeout = $curtime + GARBAGE_TIMEOUT;
1053 static function load_data($table_idx, $table_token = "")
1057 log_wr("TABLE_FTOK ".FTOK_PATH."/bin5/table".$table_idx."/table");
1060 if (($tok = @ftok(FTOK_PATH."/bin5/table".$table_idx."/table", "B")) == -1) {
1061 log_main("ftok failed");
1065 if (($shm_sz = sharedmem_sz($tok)) == -1) {
1066 log_main("shmop_open failed");
1070 if (($shm = shm_attach($tok, $shm_sz)) == FALSE)
1073 if (($bri = @shm_get_var($shm, $tok)) == FALSE)
1076 if ($table_token != "" && $bri->table_token != $table_token) {
1077 log_wr("bri->table_token: ".$bri->table_token."table_token: ".$table_token);
1084 for ($i = 0 ; $i < BIN5_MAX_PLAYERS ; $i++) {
1085 if (($bri->user[$i] = Bin5_user::load_data($table_idx, $i, FALSE)) == FALSE) {
1086 log_crit("Bin5_user::load_data failed");
1090 if ($i < BIN5_MAX_PLAYERS) {
1100 log_wr("briskin5 load_data failed");
1107 function save_data($bri)
1114 log_main("SAVE BRISKIN5 DATA");
1116 if (!isset($bri->tok))
1119 $user_park = array();
1120 for ($i = 0 ; $i < BIN5_MAX_PLAYERS ; $i++) {
1121 $user_park[$i] = $bri->user[$i];
1122 $bri->user[$i] = FALSE;
1125 while ($bri->shm_sz < BIN5_SHM_MAX) {
1126 if (($shm = shm_attach($bri->tok, $bri->shm_sz)) == FALSE)
1129 if (@shm_put_var($shm, $bri->tok, $bri) != FALSE) {
1131 log_shme("Bin5::save_data");
1136 if (shm_remove($shm) === FALSE) {
1137 log_only("REMOVE FALLITA");
1141 $bri->shm_sz += BIN5_SHM_DLT;
1147 // SHSPLIT: reattach users to the room class
1148 for ($i = 0 ; $i < BIN5_MAX_PLAYERS ; $i++) {
1149 Bin5_user::save_data($user_park[$i], $bri->table_idx, $i);
1150 $bri->user[$i] = $user_park[$i];
1152 log_load("FINISH: ".($ret == TRUE ? "TRUE" : "FALSE"));
1159 function destroy_data()
1165 log_main("DESTROY BRISKIN5 DATA");
1168 log_main("DESTROY2 BRISKIN5 DATA [".$this->table_idx."]");
1169 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
1170 $this->user[$i]->destroy_data($this->table_idx);
1171 Bin5_user::unproxy_step($this->table_idx, $this->user[$i]->sess);
1173 if (($tok = @ftok(FTOK_PATH."/bin5/table".$this->table_idx."/table", "B")) == -1)
1176 if (($shm = @shmop_open($tok, 'a', 0, 0)) == FALSE)
1179 if (shmop_delete($shm) == 0) {
1180 log_only("REMOVE FALLITA ");
1185 log_main("DESTROY2 BRISKIN5 DATA SUCCESS");
1187 // log_main("QUI CI ARRIVA [".$bri->user[0]->name."]");
1197 static function lock_data($is_exclusive, $table_idx)
1199 if (($res = file_lock(FTOK_PATH."/bin5/table".$table_idx."/table", $is_exclusive)) != FALSE) {
1200 self::$delta_t = microtime(TRUE);
1201 log_lock("LOCK table [".$table_idx."] [".self::$delta_t[$table_idx]."]");
1203 return (new Vect(array('res' => $res, 'tab' => $table_idx)));
1210 static function unlock_data($res_vect)
1214 $res = $res_vect->getbyid('res');
1215 $tab = $res_vect->getbyid('tab');
1217 log_lock("UNLOCK table [".$tab."] [".(microtime(TRUE) - (self::$delta_t[$tab]))."]");
1223 function chatt_send($user, $mesg)
1225 GLOBAL $mlang_brisk, $G_lang;
1227 if ($user->stat == 'table') {
1228 $table = &$this->table[$user->table];
1231 $user_mesg = substr($mesg,6);
1235 $dt = date("H:i ", $curtime);
1236 if (strncmp($user_mesg, "/nick ", 6) == 0) {
1237 log_main($user->sess." chatt_send BEGIN");
1239 if (($name_new = validate_name(substr($user_mesg, 6))) == FALSE) {
1240 $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
1241 $user->comm[$user->step % COMM_N] .= sprintf('chatt_sub("%s", [2, "%s"],"%s");', $dt, NICKSERV, $mlang_brisk['nickmust'][$G_lang]);
1246 $user_mesg = "COMMAND ".$user_mesg;
1249 // update local graph
1250 // update remote graphs
1251 for ($i = 0 ; $i < BIN5_MAX_PLAYERS ; $i++) {
1252 $user_cur = $this->user[$i];
1253 // if ($user_cur->sess == '' || $user_cur->stat != 'room')
1254 if ($user_cur->sess == '')
1256 if (strcasecmp($user_cur->name, $name_new) == 0) {
1257 $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
1259 $premsg = sprintf($mlang_brisk['nickdupl'][$G_lang], xcape($name_new));
1260 $user->comm[$user->step % COMM_N] .= sprintf('chatt_sub("%s", [2, "%s"],"%s");', $dt, NICKSERV, $premsg);
1265 if ($i == BIN5_MAX_PLAYERS) {
1266 if ($user->flags & USER_FLAG_AUTH && strcasecmp($user->name,$name_new) != 0) {
1267 if ($this->table[$user->table]->auth_only == TRUE) {
1268 $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
1269 $user->comm[$user->step % COMM_N] .= sprintf('chatt_sub("%s", [2, "%s"],"<b>%s</b>");', $dt, NICKSERV, $mlang_brisk['authchan'][$G_lang]);
1274 $user->flags &= ~USER_FLAG_AUTH; // Remove auth if name changed
1278 $user->name = $name_new;
1280 log_main($user->sess." chatt_send start set");
1283 for ($i = 0 ; $i < BIN5_MAX_PLAYERS ; $i++) {
1284 log_main($user->sess." chatt_send set loop");
1286 $user_cur = &$this->user[$i];
1287 if ($user_cur->sess == '')
1290 if ($user_cur->stat == 'table' && $user_cur->table == $user->table) {
1291 $table = &$this->table[$user->table];
1293 $user_cur->comm[$user_cur->step % COMM_N] = "gst.st = ".($user_cur->step+1)."; ";
1294 $user_cur->comm[$user_cur->step % COMM_N] .= sprintf('set_names([%d, "%s"], [%d, "%s"], [%d, "%s"], [%d, "%s"], [%d, "%s"]); ',
1295 $this->user[$table->player[($user_cur->table_pos) % BIN5_PLAYERS_N]]->flags,
1296 xcape($this->user[$table->player[($user_cur->table_pos) % BIN5_PLAYERS_N]]->name),
1298 $this->user[$table->player[($user_cur->table_pos+1) % BIN5_PLAYERS_N]]->flags,
1299 xcape($this->user[$table->player[($user_cur->table_pos+1) % BIN5_PLAYERS_N]]->name),
1301 $this->user[$table->player[($user_cur->table_pos+2) % BIN5_PLAYERS_N]]->flags,
1302 xcape($this->user[$table->player[($user_cur->table_pos+2) % BIN5_PLAYERS_N]]->name),
1304 (BIN5_PLAYERS_N == 3 ? 0: $this->user[$table->player[($user_cur->table_pos+3) % BIN5_PLAYERS_N]]->flags),
1305 (BIN5_PLAYERS_N == 3 ? "" : xcape($this->user[$table->player[($user_cur->table_pos+3) % BIN5_PLAYERS_N]]->name)),
1307 (BIN5_PLAYERS_N == 3 ? 0: $this->user[$table->player[($user_cur->table_pos+4) % BIN5_PLAYERS_N]]->flags),
1308 (BIN5_PLAYERS_N == 3 ? "" : xcape($this->user[$table->player[($user_cur->table_pos+4) % BIN5_PLAYERS_N]]->name)));
1309 if ($user_cur == $user) {
1310 $user_cur->comm[$user_cur->step % COMM_N] .= $user_cur->myname_innerHTML();
1312 $user_cur->step_inc();
1318 for ($i = 0 ; $i < ($user->stat == 'room' ? BIN5_MAX_PLAYERS : BIN5_PLAYERS_N) ; $i++) {
1319 if ($user->stat == 'room') {
1320 $user_cur = &$this->user[$i];
1321 if ($user_cur->sess == '' || $user_cur->stat != 'room')
1325 $user_cur = &$this->user[$table->player[$i]];
1328 $user_cur->comm[$user_cur->step % COMM_N] = "gst.st = ".($user_cur->step+1)."; ";
1329 $user_cur->comm[$user_cur->step % COMM_N] .= sprintf('chatt_sub("%s", [%d, "%s"],"%s");',
1330 $dt, $user->flags, xcape($user->name), xcape($user_mesg));
1331 $user_cur->step_inc();
1333 log_legal($curtime, 'xxx', $user, ($user->stat == 'room' ? 'room' : 'table '.$user->table_orig),$user_mesg);
1337 function table_wakeup($user)
1339 $table = &$this->table[0];
1341 log_main("BIN5_WAKEUP begin function table stat: ".$user->stat." subst: ".$user->subst);
1345 log_main("BIN5_WAKEUP from table [".$user->table."] nplayers_n: ".$this->table[$user->table]->player_n);
1347 for ($i = 0 ; $i < $table->player_n ; $i++) {
1348 $user_cur = &$this->user[$i];
1349 log_main("PREIMPOST INLOOP name: ".$user_cur->name);
1351 if ($user_cur == $user)
1352 $user_cur->subst = "shutdowner";
1354 $user_cur->subst = "shutdowned";
1355 $user_cur->laccwr = $curtime;
1357 $ret = "gst.st = ".($user_cur->step+1)."; ";
1358 $ret .= 'gst.st_loc++; hstm.stop(); window.onbeforeunload = null; window.onunload = null; document.location.assign("../index.php");|';
1360 log_wr($user_cur->sess." BIN5_WAKEUP: ".$ret);
1361 $user_cur->comm[$user_cur->step % COMM_N] = $ret;
1362 $user_cur->step_inc();
1365 $this->the_end = TRUE;
1369 * If all players are freezed the room garbage_manager clean up table and users.
1371 function is_abandoned()
1376 $table = &$this->table[0];
1378 for ($i = 0 ; $i < $table->player_n ; $i++) {
1379 $user_cur = &$this->user[$i];
1381 if ($user_cur->lacc + (EXPIRE_TIME_RD * 2) >= $curtime) {
1390 static function request_mgr(&$s_a_p, &$header_out, &$new_socket, $path, $addr, $get, $post, $cookie)
1392 printf("NEW_SOCKET (root): %d\n", intval($new_socket));
1394 if (($table_idx = gpcs_var('table_idx', $get, $post, $cookie)) === FALSE)
1397 if (($table_token = gpcs_var('table_token', $get, $post, $cookie)) === FALSE)
1398 unset($table_token);
1400 force_no_cache($header_out);
1406 bin5_index_main($header_out, $addr, $get, $post, $cookie);
1407 $content = ob_get_contents();
1410 $s_a_p->pgflush_try_add($new_socket, 20, $header_out, $content);
1414 case "index_wr.php":
1415 $bri = $s_a_p->app->match_get($table_idx, $table_token);
1417 bin5_index_wr_main($bri, $addr, $get, $post, $cookie);
1418 $content = ob_get_contents();
1421 $s_a_p->pgflush_try_add($new_socket, 20, $header_out, $content);
1425 case "index_rd_ifra.php":
1427 if (($bri = $s_a_p->app->match_get($table_idx, $table_token)) == NULL
1428 || !isset($cookie['sess'])
1429 || (($user = $bri->get_user($cookie['sess'], $idx)) == FALSE)) {
1431 $content = Bin5_user::stream_fini($s_a_p->rndstr, TRUE);
1432 $s_a_p->pgflush_try_add($new_socket, 20, $header_out, $content);
1437 // close a previous opened index_read_ifra socket, if exists
1438 if (($prev = $user->rd_socket_get()) != NULL) {
1439 $s_a_p->socks_unset($user->rd_socket_get());
1440 fclose($user->rd_socket_get());
1441 printf("CLOSE AND OPEN AGAIN ON IFRA2\n");
1442 $user->rd_socket_set(NULL);
1446 $user->stream_init($s_a_p->rndstr, $header_out, $content, $get, $post, $cookie);
1447 $response = headers_render($header_out, -1).chunked_content($content);
1448 $response_l = mb_strlen($response, "ASCII");
1450 $wret = @fwrite($new_socket, $response, $response_l);
1451 if ($wret < $response_l) {
1452 printf("TROUBLES WITH FWRITE: %d\n", $wret);
1453 $user->rd_cache_set(mb_substr($content, $wret, $response_l - $wret, "ASCII"));
1456 $user->rd_cache_set("");
1458 fflush($new_socket);
1461 $s_a_p->socks_set($new_socket, $user);
1462 $user->rd_socket_set($new_socket);
1463 printf(" - qui ci siamo - ");
1482 function locshm_exists($tok)
1486 if (($id = @shmop_open($tok,"a", 0, 0)) == FALSE) {
1487 log_main($tok." SHM NOT exists");
1493 log_main($tok." SHM exists");
1500 function asta2mult($asta_pnt)
1502 if ($asta_pnt > 110)
1504 else if ($asta_pnt > 100)
1506 else if ($asta_pnt > 90)
1508 else if ($asta_pnt > 80)
1510 else if ($asta_pnt > 70)
1516 // rendiamo qui l'elenco dei punti come return della func
1517 function calculate_points(&$table)
1519 GLOBAL $G_all_points;
1524 if ($table->asta_pnt == 60)
1525 $table->asta_pnt = 61;
1527 $table->old_reason = "";
1528 $table->old_win = $table->asta_win;
1529 $table->old_friend = $table->friend;
1530 $table->old_asta_pnt = $table->asta_pnt;
1531 $table->old_mult = $table->mult;
1533 for ($i = 0 ; $i < (BIN5_PLAYERS_N == 5 ? 40 : 24) ; $i++) {
1534 // for ($i = 0 ; $i < 40 ; $i++) {
1535 $ctt = $table->card[$i]->value % 10;
1536 $own = $table->card[$i]->owner;
1537 if ($own == $table->asta_win || $own == $table->friend)
1538 $pro += $G_all_points[$ctt];
1541 log_wr(sprintf("PRO: [%d]", $pro));
1544 if ($table->asta_pnt == 61 && $pro == 60) { // PATTA !
1545 $table->points[$table->points_n % MAX_POINTS] = array();
1546 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
1547 $table->points[$table->points_n % MAX_POINTS][$i] = 0;
1551 $table->old_pnt = $pro;
1557 if ($pro >= $table->asta_pnt)
1562 $gamult = asta2mult($table->asta_pnt);
1564 $table->points[$table->points_n % MAX_POINTS] = array();
1565 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
1566 if ($i == $table->asta_win)
1567 $pt = ($i == $table->friend ? 4 : 2);
1568 else if ($i == $table->friend)
1575 log_wr(sprintf("PRO: pt[%d][%d] = %d", $table->points_n % MAX_POINTS, $i, $pt));
1577 $pt = $pt * $sig * ($gamult + $table->mult) * ($pro == 120 ? 2 : 1);
1579 log_wr(sprintf("PRO:[%d][%d][%d]", $sig, $table->mult, ($pro == 120 ? 2 : 1)));
1581 $table->points[$table->points_n % MAX_POINTS][$i] = $pt;
1582 $table->total[$i] += $pt;
1586 $table->old_pnt = $pro;
1593 is_transition (is from room to table ?)
1594 is_again (is another game)
1596 Examples of $is_transition, $is_again:
1597 from reload of the page: FALSE, FALSE
1598 from sitdown in room: TRUE, FALSE
1599 from table: asta cmd e tutti passano: TRUE, TRUE
1600 from table: fine partita: TRUE, TRUE
1602 function show_table(&$bri, &$user, $sendstep, $is_transition, $is_again)
1604 $table_idx = $user->table;
1605 $table = $bri->table[$table_idx];
1606 $table_pos = $user->table_pos;
1608 $ret = "table_init();";
1609 $ret .= $table->exitlock_show(&$bri->user, $table_pos);
1611 /* GENERAL STATUS */
1612 $ret .= sprintf( 'gst.st = %d; stat = "%s"; subst = "%s"; table_pos = %d;',
1613 $sendstep, $user->stat, $user->subst, $table_pos);
1615 log_rd(sprintf( 'SHOW_TABLE: gst.st = %d; stat = "%s"; subst = "%s"; table_pos = %d;', $sendstep, $user->stat, $user->subst, $table_pos));
1618 $ret .= "background_set();";
1621 $ret .= $user->myname_innerHTML();
1622 $ret .= sprintf('set_names([%d, "%s"], [%d, "%s"], [%d, "%s"], [%d, "%s"], [%d, "%s"]); ',
1623 $bri->user[$table->player[($table_pos) % BIN5_PLAYERS_N]]->flags,
1624 xcape($bri->user[$table->player[($table_pos) % BIN5_PLAYERS_N]]->name),
1626 $bri->user[$table->player[($table_pos+1) % BIN5_PLAYERS_N]]->flags,
1627 xcape($bri->user[$table->player[($table_pos+1) % BIN5_PLAYERS_N]]->name),
1629 $bri->user[$table->player[($table_pos+2) % BIN5_PLAYERS_N]]->flags,
1630 xcape($bri->user[$table->player[($table_pos+2) % BIN5_PLAYERS_N]]->name),
1632 (BIN5_PLAYERS_N == 3 ? 0 : $bri->user[$table->player[($table_pos+3) % BIN5_PLAYERS_N]]->flags),
1633 (BIN5_PLAYERS_N == 3 ? "" : xcape($bri->user[$table->player[($table_pos+3) % BIN5_PLAYERS_N]]->name)),
1635 (BIN5_PLAYERS_N == 3 ? 0 : $bri->user[$table->player[($table_pos+4) % BIN5_PLAYERS_N]]->flags),
1636 (BIN5_PLAYERS_N == 3 ? "" : xcape($bri->user[$table->player[($table_pos+4) % BIN5_PLAYERS_N]]->name)));
1638 /* NOTIFY FOR THE CARD MAKER */
1639 if ($is_transition) { // && $user->subst == "asta" superfluo
1640 $ret .= show_table_info(&$bri, &$table, $table_pos);
1641 $ret .= "setTimeout(preload_images, 500, g_preload_img_arr, g_imgct);";
1644 $ret .= table_wellcome($user);
1646 if ($is_transition && !$is_again) { // appena seduti al tavolo, play della mucca
1647 $ret .= playsound("cow.mp3");
1652 if ($is_transition) { // && $user->subst == "asta" superfluo
1655 for ($i = 0 ; $i < 8 ; $i++) {
1656 for ($e = 0 ; $e < BIN5_PLAYERS_N ; $e++) {
1658 for ($o = 0 ; $o < (BIN5_PLAYERS_N == 5 ? 40 : 24) && $ct < $i+1 ; $o++) {
1659 // for ($o = 0 ; $o < 40 && $ct < $i+1 ; $o++) {
1660 if ($table->card[$o]->owner == (($e + $table->gstart) % BIN5_PLAYERS_N)) {
1666 log_rd("O ".$o." VAL ".$table->card[$o]->value." Owner: ".$table->card[$o]->owner);
1668 $ret .= sprintf( ' card_send(%d,%d,%d,%8.2f,%d);|', ($table->gstart + $e) % BIN5_PLAYERS_N,
1669 $i, ((($e + BIN5_PLAYERS_N - $table_pos + $table->gstart) % BIN5_PLAYERS_N) == 0 ?
1670 $table->card[$o]->value : -1),
1671 ($i == 7 && $e == (BIN5_PLAYERS_N - 1) ? 1 : 0.5),$i+1);
1676 $taked = array(0,0,0,0,0);
1677 $inhand = array(0,0,0,0,0);
1678 $ontabl = array(-1,-1,-1,-1,-1);
1681 for ($i = 0 ; $i < (BIN5_PLAYERS_N == 5 ? 40 : 24) ; $i++) {
1682 // for ($i = 0 ; $i < 40 ; $i++) {
1683 if ($table->card[$i]->stat == 'hand') {
1684 if ($table->card[$i]->owner == $table_pos) {
1685 $cards[$inhand[$table->card[$i]->owner]] = $table->card[$i]->value;
1687 $inhand[$table->card[$i]->owner]++;
1689 else if ($table->card[$i]->stat == 'take') {
1690 log_main("Card taked: ".$table->card[$i]->value."OWN: ".$table->card[$i]->owner);
1691 $taked[$table->card[$i]->owner]++;
1693 else if ($table->card[$i]->stat == 'table') {
1694 $ontabl[$table->card[$i]->owner] = $i;
1698 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
1699 $logg .= sprintf("INHAND: %d IN TABLE %d TAKED %d\n", $inhand[$i], $ontabl[$i], $taked[$i]);
1701 log_main("Stat table: ".$logg);
1703 /* Set ours cards. */
1705 for ($i = 0 ; $i < $inhand[$table_pos] ; $i++)
1706 $oursarg .= ($i == 0 ? "" : ", ").$cards[$i];
1707 for ($i = $inhand[$table_pos] ; $i < 8 ; $i++)
1708 $oursarg .= ($i == 0 ? "" : ", ")."-1";
1709 $ret .= sprintf('card_setours(%s);', $oursarg);
1711 /* Dispose all cards */
1712 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
1713 /* Qui sotto al posto di + 1 c'era + ->gstart ... credo in modo errato */
1714 $ret .= sprintf('cards_dispose(%d,%d,%d);', $i,
1715 ($inhand[$i] <= 8 ? $inhand[$i] : 8) , $taked[$i]);
1717 if ($ontabl[$i] != -1) {
1718 $ret .= sprintf('card_place(%d,%d,%d,%d,%d);',$i, $inhand[$i],
1719 $table->card[$ontabl[$i]]->value,
1720 $table->card[$ontabl[$i]]->x, $table->card[$ontabl[$i]]->y);
1726 if ($user->subst == 'asta') {
1728 /* show users auction status */
1730 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
1731 $user_cur = &$bri->user[$table->player[$i]];
1732 $showst .= sprintf("%s%d", ($i == 0 ? "" : ", "),
1733 ($user_cur->asta_card < 9 ? $user_cur->asta_card : $user_cur->asta_pnt));
1735 if (BIN5_PLAYERS_N == 3)
1736 $showst .= ",-2,-2";
1737 $ret .= sprintf('document.title = "Brisk - Tavolo %d (asta)";', $user->table_orig);
1738 $ret .= sprintf('show_astat(%s);', $showst);
1740 if ($table->asta_win != -1 && $table->asta_win == $table_pos) {
1741 /* show card chooser */
1742 $ret .= sprintf('choose_seed(%s); $("astalascio").style.visibility = ""; $("asta").style.visibility = "hidden";',
1747 if ($table_pos == ($table->gstart % BIN5_PLAYERS_N) &&
1748 $table->asta_win == -1)
1749 $ret .= sprintf('dispose_asta(%d,%d, %s);',
1750 $table->asta_card + 1, $table->asta_pnt+1, ($user->handpt <= 2 ? "true" : "false"));
1752 $ret .= sprintf('dispose_asta(%d,%d, %s);',
1753 $table->asta_card + 1, -($table->asta_pnt+1), ($user->handpt <= 2 ? "true" : "false"));
1757 if ($table->asta_win == -1) { // auction case
1758 if ($table_pos == ($table->gstart % BIN5_PLAYERS_N))
1759 $ret .= "remark_on();";
1761 $ret .= "remark_off();";
1763 else { // chooseed case
1764 if ($table_pos == $table->asta_win)
1765 $ret .= "remark_on();";
1767 $ret .= "remark_off();";
1770 else if ($user->subst == 'game') {
1772 if (($table->gstart + $table->turn) % BIN5_PLAYERS_N == $table_pos)
1773 $ret .= "is_my_time = true; remark_on();";
1775 $ret .= "remark_off();";
1777 /* WHO CALL AND WHAT */
1778 $ret .= briscola_show($bri, $table, $user);
1782 } // end function show_table(...
1784 function calculate_winner(&$table)
1791 $cur_seed = $table->briscola - ($table->briscola % 10);
1793 for ($i = 0 ; $i < (BIN5_PLAYERS_N == 5 ? 40 : 24) ; $i++) {
1794 // for ($i = 0 ; $i < 40 ; $i++) {
1795 if ($table->card[$i]->stat != "table")
1798 log_wr(sprintf("Card On table: [%d]", $i));
1800 $v = $table->card[$i]->value;
1801 $ontab[$table->card[$i]->owner] = $v;
1802 $ontid[$table->card[$i]->owner] = $i;
1803 /* se briscola setto il flag */
1804 if (($v - ($v % 10)) == $cur_seed)
1808 if ($briontab == FALSE) {
1809 $cur_win = $table->gstart;
1810 $cur_val = $ontab[$cur_win];
1811 $cur_seed = $cur_val - ($cur_val % 10);
1814 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
1815 if (($ontab[$i] - ($ontab[$i] % 10)) == $cur_seed) {
1816 if ($ontab[$i] < $cur_val) {
1817 $cur_val = $ontab[$i];
1823 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
1824 $table->card[$ontid[$i]]->owner = $cur_win;
1825 $table->card[$ontid[$i]]->stat = "take"; // Card stat
1830 function show_table_info(&$bri, &$table, $table_pos)
1832 GLOBAL $G_lang, $mlang_bin5_bin5;
1835 $user = $bri->user[$table->player[$table_pos]];
1837 $pnt_min = $table->points_n - MAX_POINTS < 0 ? 0 : $table->points_n - MAX_POINTS;
1838 $noty = sprintf('<table class=\"points\"><tr><th></th>');
1841 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++)
1842 $noty .= sprintf('<th class=\"td_points\">%s</th>', xcape($bri->user[$table->player[$i]]->name));
1843 $noty .= sprintf("</tr>");
1846 log_main("show_table_info: pnt_min: ".$pnt_min." Points_n: ".$table->points_n);
1848 for ($i = $pnt_min ; $i < $table->points_n ; $i++) {
1849 $noty .= sprintf('<tr><th class=\"td_points\">%d</th>', $i+1);
1850 for ($e = 0 ; $e < BIN5_PLAYERS_N ; $e++)
1851 $noty .= sprintf('<td class=\"td_points\">%d</td>', $table->points[$i % MAX_POINTS][$e]);
1856 $noty .= '<tr><th class=\"td_points\">Tot.</th>';
1857 for ($e = 0 ; $e < BIN5_PLAYERS_N ; $e++)
1858 $noty .= sprintf('<td class=\"td_points\">%d</td>', $table->total[$e]);
1859 $noty .= "</tr></table>";
1861 if ($table->old_reason != "") {
1862 $noty .= sprintf("<hr><b>%s</b><br>", xcape($table->old_reason));
1865 if ($table->old_win != -1) {
1866 log_main("TABLE_OLD_WIN:".$table->old_win);
1867 $win = $table->player[$table->old_win];
1868 log_main("TABLE_OLD_FRIEND:".$table->old_friend);
1869 $fri = $table->player[$table->old_friend];
1871 $wol = game_result($table->old_asta_pnt, $table->old_pnt);
1874 /* MLANG: "<hr>Nell'ultima mano ha chiamato <b>%s</b>, il socio era <b>%s</b>,<br>", "hanno fatto <b>cappotto</b> EBBRAVI!.<hr>", "dovevano fare <b>%s</b> punti e ne hanno fatti <b>%d</b>: hanno <b>%s</b>.<hr>", "<hr>Nell'ultima mano <b>%s</b> si è chiamato in mano,<br>", "ha fatto <b>cappotto</b> EBBRAVO!.<hr>", "doveva fare <b>%s</b> punti e ne ha fatti <b>%d</b>: ha <b>%s</b>.<hr>", ($table->old_asta_pnt > 61 ? "almeno ".$table->old_asta_pnt : 'più di 60'), $table->old_pnt, ($wol == 1 ? "vinto" : ($wol == 0 ? "pareggiato" : "perso" */
1876 $noty .= sprintf($mlang_bin5_bin5['info_part'][$G_lang],
1877 xcape($bri->user[$win]->name),
1878 xcape($bri->user[$fri]->name));
1879 if ($table->old_pnt == 120) {
1880 $noty .= sprintf($mlang_bin5_bin5['info_capp'][$G_lang]);
1883 $noty .= sprintf($mlang_bin5_bin5['info_pnt'][$G_lang],
1884 ($table->old_asta_pnt > 61 ? $mlang_bin5_bin5['info_alea'][$G_lang].$table->old_asta_pnt :
1885 $mlang_bin5_bin5['info_more'][$G_lang]), $table->old_pnt,
1886 ($wol == 1 ? $mlang_bin5_bin5['info_win'][$G_lang] : ($wol == 0 ? $mlang_bin5_bin5['info_peer'][$G_lang] : $mlang_bin5_bin5['info_lost'][$G_lang])));
1890 $noty .= sprintf($mlang_bin5_bin5['info_alon'][$G_lang],
1891 xcape($bri->user[$win]->name));
1892 if ($table->old_pnt == 120) {
1893 $noty .= sprintf($mlang_bin5_bin5['info_acap'][$G_lang]);
1896 $noty .= sprintf($mlang_bin5_bin5['info_apnt'][$G_lang],
1898 ($table->old_asta_pnt > 61 ? $mlang_bin5_bin5['info_alea'][$G_lang].$table->old_asta_pnt :
1899 $mlang_bin5_bin5['info_more'][$G_lang]), $table->old_pnt,
1901 ($wol == 1 ? $mlang_bin5_bin5['info_win'][$G_lang] : ($wol == 0 ? $mlang_bin5_bin5['info_peer'][$G_lang] : $mlang_bin5_bin5['info_lost'][$G_lang])));
1904 if (($table->old_mult + asta2mult($table->old_asta_pnt)) > 1) {
1905 $noty .= sprintf($mlang_bin5_bin5['info_omul'][$G_lang], multoval($table->old_mult + asta2mult($table->old_asta_pnt)));
1907 $noty .= "<hr><br>";
1909 /* MLANG: "Fai <b>tu</b> il mazzo,", "Il mazzo a <b>$unam</b>," */
1910 if ($table->mazzo == $table_pos)
1911 $noty .= $mlang_bin5_bin5['info_yshuf'][$G_lang];
1913 $unam = xcape($bri->user[$table->player[$table->mazzo]]->name);
1914 $noty .= sprintf($mlang_bin5_bin5['info_shuf'][$G_lang], $unam);
1917 if ($user->subst == 'asta') {
1918 if ($table->asta_win == -1) // auction case
1919 $curplayer = $table->gstart % BIN5_PLAYERS_N;
1921 $curplayer = $table->asta_win;
1923 else if ($user->subst == 'game') {
1924 $curplayer = ($table->gstart + $table->turn) % BIN5_PLAYERS_N;
1927 /* MLANG: " tocca a <b>te</b> giocare.", " tocca a <b>$unam</b> giocare.", " La partita vale <b>%s</b>.", "torna alla partita" */
1928 if ($curplayer == $table_pos) {
1929 $noty .= $mlang_bin5_bin5['info_yturn'][$G_lang];
1932 $unam = xcape($bri->user[$table->player[$curplayer]]->name);
1933 $noty .= sprintf($mlang_bin5_bin5['info_turn'][$G_lang], $unam);
1936 if (($table->mult + asta2mult($table->asta_pnt)) > 1) {
1937 $noty .= sprintf($mlang_bin5_bin5['info_mult'][$G_lang], multoval($table->mult + asta2mult($table->asta_pnt)));
1939 $noty .= "<hr><br>";
1940 $ret .= show_notify($noty, 3000, $mlang_bin5_bin5['btn_bkgame'][$G_lang], 500, 400);
1941 /* NOTE: show_notify($noty, 3000, "torna alla partita", 500,
1942 * 130 + ($table->points_n > 0 ? 50 : 0) +
1943 * (120 * ($table->points_n / MAX_POINTS)));
1944 * will be used when we refact notify js function following
1945 * photoo class logic
1951 function table_wellcome($user)
1953 GLOBAL $table_wellarr, $G_lang;
1956 for ($i = 0 ; $i < count($table_wellarr[$G_lang]) ; $i++)
1957 $ret .= sprintf('chatt_sub("%s", [2, "ChanServ: "],"%s");', "", str_replace('"', '\"', $table_wellarr[$G_lang][$i]));
1963 function briscola_show($bri, $table, $user)
1965 GLOBAL $G_lang, $mlang_bin5_bin5;
1969 if ($table->asta_card == 9)
1970 $ptnadd = sprintf($mlang_bin5_bin5['call_wptn'][$G_lang], $table->asta_pnt);
1972 /* text of caller cell */
1973 if ($user->table_pos == $table->asta_win) {
1974 $prestr = sprintf('$("callerinfo").innerHTML = "%s";', $mlang_bin5_bin5['call_ycall'][$G_lang]);
1975 $ret .= sprintf($prestr, $ptnadd);
1978 $prestr = sprintf('$("callerinfo").innerHTML = "%s";', $mlang_bin5_bin5['call_call'][$G_lang]);
1979 $ret .= sprintf($prestr,
1980 xcape($bri->user[$table->player[$table->asta_win]]->name), $ptnadd);
1982 $ret .= sprintf('set_iscalling(%d);', ($table->asta_win - $user->table_pos + BIN5_PLAYERS_N) % BIN5_PLAYERS_N);
1984 $ret .= sprintf('$("caller").style.backgroundImage = \'url("img/brisk_caller_sand%d.png")\';',
1986 $ret .= sprintf('$("callerimg").src = "img/%02d.png";', $table->briscola);
1987 $ret .= sprintf('$("caller").style.visibility = "visible";');
1988 $ret .= sprintf('$("chooseed").style.visibility = "hidden";');
1989 $ret .= sprintf('$("astalascio").style.visibility = "";');
1990 $ret .= sprintf('$("asta").style.visibility = "hidden";');
1991 $ret .= sprintf('show_astat(-2,-2,-2,-2,-2);');
1997 function game_result($asta_pnt, $pnt)
1999 if ($asta_pnt == 61) {
2002 else if ($pnt == 60)
2008 if ($pnt >= $asta_pnt)
2015 function log_points($remote_addr, $curtime, $user, $where, $mesg)
2017 if (($fp = @fopen(LEGAL_PATH."/points.log", 'a')) != FALSE) {
2018 /* Unix time | session | nickname | IP | where was | mesg */
2019 fwrite($fp, sprintf("%ld|%s|%s|%s|%s|%s|%s|\n", $curtime, $user->sess,
2020 ($user->flags & USER_FLAG_AUTH ? 'A' : 'N'),
2021 $user->name, $remote_addr, $where , $mesg));