room for wakeupper reconstructed by index_rd.php and wellcome sentence updated
[brisk.git] / web / Obj / brisk.phh
1 <?php
2 /*
3  *  brisk - brisk.phh
4  *
5  *  Copyright (C) 2006-2007 matteo.nastasi@milug.org
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABLILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * General Public License for more details. You should have received a
16  * copy of the GNU General Public License along with this program; if
17  * not, write to the Free Software Foundation, Inc, 59 Temple Place -
18  * Suite 330, Boston, MA 02111-1307, USA.
19  *
20  */
21
22 define(FTOK_PATH, "/var/lib/brisk");
23 define(LEGAL_PATH, "/tmp/legal_brisk");
24 define(PROXY_PATH, "/var/lib/brisk_proxy");
25 define(TABLES_N, 12);
26 define(PLAYERS_N, 3);
27 define(MAX_POINTS, 5);
28 define(MAX_PLAYERS, (20 + (PLAYERS_N * TABLES_N)));
29 define(SHM_DIMS, (50000 + 10000 * TABLES_N + 15000 * MAX_PLAYERS));
30 define(COMM_N, 12);
31 define(COMM_GEN_N, 50);
32 define(SESS_LEN, 13);
33 define(STREAM_TIMEOUT, 20);
34 define(EXPIRE_TIME_RD, 180);
35 define(EXPIRE_TIME_SMAMMA, 360); 
36 // BAN_TIME da allineare anche in commons.js
37 define(BAN_TIME, 900); 
38 define(GARBAGE_TIMEOUT, 10);
39 define(NICKSERV, "<i>SERVER</i>");
40
41 define(DBG_ONL2, 0x0001);
42 define(DBG_ONLY, 0x0002);
43 define(DBG_MAIN, 0x0004);
44 define(DBG_READ, 0x0008);
45 define(DBG_REA2, 0x0010);
46 define(DBG_SEND, 0x0020);
47 define(DBG_LOCK, 0x0040);
48 define(DBG_WRIT, 0x0080);
49 define(DBG_LOAD, 0x0100);
50 define(DBG_AUTH, 0x0200);
51
52 define(BRISK_DEBUG, 0);
53 // define(DEBUGGING, "local");
54
55 $G_false = FALSE;
56
57 $G_all_points = array( 11,10,4,3,2, 0,0,0,0,0 );
58 $G_brisk_version = "spawn-0.0.6";
59
60 $root_wellarr = Array ( 'Benvenuto in brisk (Ver. '.$G_brisk_version.'), <b>NOVITA\'</b>: riscritta tutta l\'architettura dati del server, tutto pi&egrave; veloce e leggero.',
61                         'Se vuoi iscriverti alla <a target="_blank" href="http://www.milug.org/cgi-bin/mailman/listinfo/ml-briscola">Mailing List</a>, cliccala!' );
62 $table_wellarr = Array ( 'Benvenuto al tavolo. Se almeno tre giocatori non sbloccano l\'uscita cliccando il lucchetto, chi esce non pu&ograve; risedersi a un qualunque tavolo per '.floor(BAN_TIME/60).' minuti.');
63
64
65 $G_room_help= '
66 <div style=\\"text-align: left; padding: 8px;\\">
67 <b>Descrizione</b><br>
68 Questa &egrave; un\'implementazione della briscola in cinque, cos&igrave; come &egrave; spiegata su
69 <a target=\\"_blank\\" href=\\"http://it.wikipedia.org/wiki/Briscola#Gioco_a_5\\">Wikipedia</a>; in breve &egrave; la variante con l\'asta prima sulla carta e poi sui punti.<br><br>
70 <b>Configurazione del browser.</b><br>
71 Occorre abilitare i cookies.<br>
72 <br>
73 <b>Uso del sito</b><br>
74 Potete sedervi a un tavolo o rimanere in piedi.<br>
75 Se al vostro tavolo si raggiungono i 5 giocatori inizia automaticamente la partita.<br>
76 <br>
77 <b>Partita</b><br>
78 All\'inizio vengono distribuite le carte e parte l\'asta; per partecipare all\'asta, quando sar&agrave; il vostro turno, potrete scegliere se andare avanti o passare cliccando sulle icone corrispondenti. Se si arriva ai punti, scrivete nella textbox il vostro rilancio e cliccate PUNTI.<br><br>
79 Chi vince l\'asta dovr&agrave; decidere il seme della carta scelta e inizier&agrave; la mano.<br>
80 Per giocare le carte dovrete trascinarle nel quadrato al centro del vostro schermo.<br><br>
81 Il vostro turno &egrave; sempre segnalato da una cornice verde lampeggiante intorno al quadrato al centro del vostro schermo.<br><br>
82 Durante la partita, se vorrete ricaricare la pagina, usate l\'apposito bottone \\"reload\\" in basso a destra.<br>
83 Dopo che &egrave; iniziata una partita per uscirne dovete chiedere agli altri giocatori di sbloccarla cliccando sul lucchetto. Se non si segue questa prassi, una volta usciti, non vi potrete sedere a nessun tavolo per '.floor(BAN_TIME/60).' minuti.
84 <dl>
85 <dt><b>Comandi della chat</b>
86 <dd><b>/nick <i>&lt;nuovo_nickname&gt;</i></b> - cambio di nickname
87 <dd>.. to be continue ..
88 </dl>
89 </div>
90 ';
91
92 $G_room_about= '<br>
93 <div id=\\"header\\" class=\\"header\\">
94   <img class=\\"nobo\\" src=\\"img/brisk_logo64.png\\">
95   briscola chiamata in salsa ajax
96 </div>
97 <br><b>version '.$G_brisk_version.'</b><br><br>
98 Copyright 2006-2007 <a href=\\"mailto:brisk@alternativeoutput.it\\">Matteo Nastasi</a> (aka mop)<br><br>';
99
100
101 function xcape($s)
102 {
103   $from = array (   '\\',     '@',        '|' );
104   $to   = array ( '\\\\', '&#64;', '&brvbar;' );
105
106   return (str_replace($from, $to, htmlentities($s,ENT_COMPAT,"UTF-8")));
107 }
108
109
110 class Card {
111   var $value; /* 0 - 39 card value */
112   var $stat;  /* 'bunch', 'hand', 'table', 'take' */
113   var $owner; /* (table position 0-4) */
114   // var $pos;   /* Pos in hand. */
115   var $x;     /* When played the X position on the table of the owner. */
116   var $y;     /* When played the Y position on the table of the owner. */
117
118   function Card($value, $stat, $owner)
119   {
120     $this->value = $value;
121     $this->stat  = $stat; // Card stat
122     $this->owner = $owner;
123   }
124
125   function assign($stat,$owner)
126   {
127     $this->stat  = $stat; // Card stat
128     $this->owner = $owner;
129   }
130
131   function setpos($pos)
132   {
133     $this->pos   = $pos;
134   }
135
136   function play($x,$y)
137   {
138     $this->stat = 'table'; // Card stat
139     $this->x = $x;
140     $this->y = $y;
141   }
142
143   function take($newown)
144   {
145     $this->stat = 'take'; // Card stat
146     $this->owner = $newown;
147   }
148 } // end class Card
149
150 class Table {
151   var $player;
152   var $player_n;
153   var $card;
154   var $mazzo;
155   var $gstart;
156   var $turn;
157
158   var $asta_pla;
159   var $asta_pla_n;
160   var $asta_card;
161   var $asta_pnt;
162   
163   var $mult;
164   var $points;    // points array
165   var $points_n;  // number of row of points
166   var $total;
167
168   var $asta_win;
169   var $briscola;
170   var $friend;
171   
172   var $old_reason;
173   var $old_asta_pnt;
174   var $old_pnt;
175   var $old_win;
176   var $old_friend;
177
178   var $table_token;
179   var $table_start;
180
181   function Table() 
182   {
183   }
184   
185   function &create() 
186   {
187     GLOBAL $G_false;
188
189     if (($thiz =& new Table()) == FALSE)
190       return ($G_false);
191
192     $thiz->player    =   array();
193     $thiz->player_n  =   0;
194     $thiz->card      =   FALSE;
195     $thiz->asta_pla  =   array(); // TRUE: in auction, FALSE: out of the auction
196     $thiz->asta_pla_n=  -1;
197     $thiz->asta_card =  -1;
198     $thiz->asta_pnt  =  -1;
199     $thiz->mult      =   1;
200     $thiz->points    =   array( );
201     $thiz->points_n  =   0;
202     $thiz->total     =   array( 0, 0, 0, 0, 0);
203     $thiz->asta_win  =  -1;
204     $thiz->briscola  =  -1;
205     $thiz->friend    =  -1;
206     $thiz->turn      =   0;
207     $thiz->old_reason   = "";
208     $thiz->old_asta_pnt = -1;
209     $thiz->old_pnt      = -1;
210     $thiz->old_win      = -1;
211     $thiz->old_friend   = -1;
212
213     $thiz->table_token  = "";
214     $thiz->table_start  = 0;
215
216     return ($thiz);
217   }
218
219   function &clone(&$from)
220   {
221     GLOBAL $G_false;
222     
223     if (($thiz =& new Table()) == FALSE)
224       return ($G_false);
225     
226     $thiz->player = array();
227     for ($i = 0 ; $i < $from->player_n ; $i++)
228       $thiz->player[$i] = $from->player[$i];
229     $thiz->player_n = $from->player_n;
230     $thiz->card = $from->card;
231     $thiz->mazzo = $from->mazzo; // REVIEW
232     $thiz->gstart = $from->gstart;
233     $thiz->turn = $from->turn;
234
235     $thiz->asta_pla = $from->asta_pla;
236     $thiz->asta_pla_n = $from->asta_pla_n;
237     $thiz->asta_card = $from->asta_card;
238     $thiz->asta_pnt = $from->asta_pnt;
239     
240     $thiz->mult = $from->mult;
241     $thiz->points = $from->points;
242     $thiz->points_n = $from->points_n;
243     $thiz->total = $from->total;
244     
245     $thiz->asta_win = $from->asta_win;
246     $thiz->briscola = $from->briscola;
247     $thiz->friend = $from->friend;
248     
249     $thiz->old_reason = $from->old_reason;
250     $thiz->old_asta_pnt = $from->old_asta_pnt;
251     $thiz->old_pnt = $from->old_pnt;
252     $thiz->old_win = $from->old_win;
253     $thiz->old_friend = $from->old_friend;
254
255     $thiz->table_token  = $from->table_token;
256     $thiz->table_start  = $from->table_start;
257
258     return ($thiz);
259   }
260   
261   function &spawn(&$from)
262   {
263     GLOBAL $G_false;
264     
265     if (($thiz =& new Table()) == FALSE)
266       return ($G_false);
267     
268     $thiz->player_n = $from->player_n;
269     $thiz->card = &$thiz->bunch_create();
270     $thiz->mazzo = $from->mazzo;
271     $thiz->gstart = $from->gstart;
272     $thiz->turn = $from->turn;
273
274     $thiz->asta_pla = $from->asta_pla;
275     $thiz->asta_pla_n = $from->asta_pla_n;
276     $thiz->asta_card = $from->asta_card;
277     $thiz->asta_pnt = $from->asta_pnt;
278     
279     $thiz->mult = $from->mult;
280     $thiz->points = $from->points;
281     $thiz->points_n = $from->points_n;
282     $thiz->total = $from->total;
283     
284     $thiz->asta_win = $from->asta_win;
285     $thiz->briscola = $from->briscola;
286     $thiz->friend = $from->friend;
287     
288     $thiz->old_reason = $from->old_reason;
289     $thiz->old_asta_pnt = $from->old_asta_pnt;
290     $thiz->old_pnt = $from->old_pnt;
291     $thiz->old_win = $from->old_win;
292     $thiz->old_friend = $from->old_friend;
293
294     // players are rearranged in an dedicated array
295     $thiz->player = array();
296     for ($i = 0 ; $i < $from->player_n ; $i++)
297       $thiz->player[$i] = $i;
298
299     $thiz->table_token  = $from->table_token;
300     $thiz->table_start  = $from->table_start;
301
302     return ($thiz);
303   }
304   
305   function &bunch_create()
306   {
307     $ret = array();
308
309     for ($i = 0 ; $i < 40 ; $i++) {
310       $ret[$i] =& new Card($i, 'bunch', 'no_owner');
311     }
312
313     $oret = &$ret;
314     return ($oret);
315   }
316
317   function bunch_make()
318   {
319     $ct = array(0,0,0,0,0);
320     
321     mt_srand(make_seed());
322     
323     for ($i = 39 ; $i >= 0 ; $i--) 
324       $rest[$i] = $i;
325
326     for ($i = 39 ; $i >= 0 ; $i--) {
327       $rn = rand(0, $i);
328       
329       if ($rn == 0)
330         log_main("RND ZERO");
331       
332       $id = $rest[$rn];
333
334       $owner = $i % 5;
335       $this->card[$id]->assign('hand', $owner);
336
337       $rest[$rn] = $rest[$i];
338       // $pubbpos[$rn2] = $pubbpos[$i];
339     }
340   }
341
342   function init(&$userarr)
343   {
344     $this->mazzo    = rand(0,PLAYERS_N-1);
345     $this->points_n = 0;
346     $this->mult     = 1;
347     $this->old_win  =-1;
348     $this->old_reason = "";
349     for ($i = 0 ; $i < PLAYERS_N ; $i++) {
350       $this->total[$i] = 0;
351       $user_cur = &$userarr[$this->player[$i]];
352       $user_cur->exitislock = TRUE;
353     }
354
355     log_main("table::init: ci siamo");
356   }
357
358   function game_init(&$userarr)
359   {
360     log_rd2("GSTART 4");
361
362     $this->gstart = ($this->mazzo+1) % PLAYERS_N;
363     $this->bunch_make();
364     
365     
366     $this->asta_pla_n = PLAYERS_N;
367     $this->asta_card = -1;
368     $this->asta_pnt  = 60;
369     $this->asta_win  = -1;
370     $this->briscola  = -1;
371     $this->friend    = -1;
372     $this->turn      =  0;
373     
374     for ($i = 0 ; $i < PLAYERS_N ; $i++) {
375       $this->asta_pla[$i] = TRUE;
376       $user_cur = &$userarr[$this->player[$i]];
377       $user_cur->subst = 'asta';
378       $user_cur->asta_card = -2;
379       $user_cur->asta_pnt  = -1;
380       $user_cur->handpt = $this->hand_points($i);
381       // SEE function calculate_points(&$table)
382     }
383   }
384
385   function game_next()
386   {
387     $this->mazzo  = ($this->mazzo + 1) % PLAYERS_N;
388   }
389
390   function getPlayer($idx)
391   {
392     return ($this->player[$idx]);
393   }
394
395   function setPlayer($idx, $player)
396   {
397     $this->player[$idx] = $player;
398   }
399
400   function user_add($idx)
401   {
402     $this->player[$this->player_n] = $idx;
403     $this->player_n++;
404     
405     return ($this->player_n - 1);
406   }
407   
408   function user_rem(&$room, &$user)
409   {
410     $tabpos = $user->table_pos;
411     
412     /* verifico la consistenza dei dati */
413     if ($room->user[$this->player[$tabpos]] == $user) {
414       
415       /* aggiorna l'array dei giocatori al tavolo. */
416       for ($i = $tabpos ; $i < $this->player_n-1 ; $i++) {
417         $this->player[$i] = $this->player[$i+1];
418         $user_cur = &$room->user[$this->player[$i]];
419         $user_cur->table_pos = $i;
420       }
421       $this->player_n--;
422     }
423     else {
424       log_main("INCONSISTENCY ON TABLE.");
425     }
426   }
427
428   function hand_points($idx)
429   {
430     GLOBAL $G_all_points; 
431     
432     $tot = 0;
433     
434     for ($i = 0 ; $i < 40 ; $i++) {
435       if ($this->card[$i]->owner != $idx)
436         continue;
437
438       $ctt = $this->card[$i]->value % 10;
439       $tot += $G_all_points[$ctt];
440     }
441
442     return ($tot);
443   }
444
445   function exitlock_show(&$userarr, $table_pos)
446   {
447     $ct = $this->exitlock_calc(&$userarr, $table_pos);
448
449     $ret = sprintf('exitlock_show(%d, %s);', $ct, 
450                    ($userarr[$this->player[$table_pos]]->exitislock ? 'true' : 'false'));
451     return ($ret);
452   }
453
454   function exitlock_calc(&$userarr, $table_pos)
455   {
456     $ct = 0;
457
458     for ($i = 0 , $ct = 0 ; $i < PLAYERS_N ; $i++) {    
459       if ($userarr[$this->player[$i]]->exitislock == FALSE)
460         $ct++;
461     }
462
463     return ($ct);
464   }
465 } // end class Table
466   
467 class User {
468   var $name;       // name of the user
469   var $sess;       // session of the user
470   var $ip;         // ip of the user
471   var $lacc;       // last access (for the cleanup)
472   var $laccwr;     // last access (for the cleanup)
473   var $bantime;    // timeout to temporary ban
474   var $stat;       // status (outdoor, room, table, game, ...)
475   var $subst;      // substatus for each status   
476   var $step;       // step of the current status
477   var $trans_step; // step to enable transition between pages (disable == -1)
478   var $comm;       // commands array
479   var $asta_card;  // 
480   var $asta_pnt;   //
481   var $handpt;     // Total card points at the beginning of the current hand.
482   var $exitislock; // Player can exit from the table ?
483   var $table;      // id of the current table (if in table state)
484   var $table_pos;  // idx on the table
485   var $table_token;// token that identify a game on a table
486   var $the_end;    // Flag to change the end of the session
487
488   function User() {
489   }
490
491   function &create($name, $sess, $stat = "", $subst = "", $table = -1, $ip="0.0.0.0") {
492     GLOBAL $G_false;
493
494     if (($thiz =& new User()) == FALSE)
495       return ($G_false);
496
497     $thiz->name  = $name;
498     $thiz->sess  = $sess;
499     $thiz->ip    = $ip;
500     $thiz->lacc   = time();
501     $thiz->laccwr = time();
502     $thiz->bantime = 0;
503     $thiz->stat  = $stat;
504     $thiz->subst  = $subst;
505     $thiz->step  = 1;
506     $thiz->trans_step  = -1;
507     $thiz->comm  = array();
508     $thiz->asta_card = -2;
509     $thiz->asta_pnt  = -1;
510     $thiz->handpt = -1;
511     $thiz->exitislock = TRUE;
512     
513     $thiz->table = $table;
514     $thiz->table_pos = -1;
515     $thiz->table_token = "";
516
517     return ($thiz);
518   }
519
520   function &clone(&$from)
521   {
522     GLOBAL $G_false;
523     
524     if (($thiz =& new User()) == FALSE)
525       return ($G_false);
526     
527     $thiz->name       = $from->name;
528     $thiz->sess       = $from->sess;
529     $thiz->ip         = $from->ip;
530     $thiz->lacc       = $from->lacc;
531     $thiz->laccwr     = $from->laccwr;
532     $thiz->bantime    = $from->bantime;
533     $thiz->stat       = $from->stat;
534     $thiz->subst      = $from->subst;
535     $thiz->step       = $from->step;
536     $thiz->trans_step = $from->trans_step;
537     $thiz->comm       = array();
538
539     $i_start = (1 > ($from->step - COMM_N) ? 1 : ($from->step - COMM_N)); 
540     for ($i = $i_start ; $i < $from->step ; $i++) {
541       $ii = $i % COMM_N;
542       $thiz->comm[$ii] = $from->comm[$ii];
543     }
544     $thiz->asta_card  = $from->asta_card;
545     $thiz->asta_pnt   = $from->asta_pnt;
546     $thiz->handpt     = $from->handpt;
547     $thiz->exitislock = $from->exitislock;
548     $thiz->table      = $from->table;
549     $thiz->table_pos  = $from->table_pos;
550     $thiz->table_token = $from->table_token;
551     $thiz->the_end    = $from->the_end;
552
553     return ($thiz);
554   }
555   
556   function &spawn(&$from, $table, $table_pos)
557   {
558     GLOBAL $G_false;
559     
560     if (($thiz =& new User()) == FALSE)
561       return ($G_false);
562     
563     $thiz->name       = $from->name;
564     $thiz->sess       = $from->sess;
565     $thiz->ip         = $from->ip;
566     $thiz->lacc       = $from->lacc;
567     $thiz->laccwr     = $from->laccwr;
568     $thiz->bantime    = $from->bantime;
569     $thiz->stat       = $from->stat;
570     $thiz->subst      = $from->subst;
571     $thiz->step       = $from->step;
572     $thiz->trans_step = $from->trans_step;
573     $thiz->comm       = array();
574
575     $i_start = (1 > ($from->step - COMM_N) ? 1 : ($from->step - COMM_N)); 
576     for ($i = $i_start ; $i < $from->step ; $i++) {
577       log_wr("TRY PUSH:".$i);
578       $ii = $i % COMM_N;
579       $thiz->comm[$ii]   = $from->comm[$ii];
580     }
581     
582     $thiz->asta_card  = $from->asta_card;
583     $thiz->asta_pnt   = $from->asta_pnt;
584     $thiz->handpt     = $from->handpt;
585     $thiz->exitislock = $from->exitislock;
586     $thiz->the_end    = $from->the_end;
587
588     $thiz->table      = $table;
589     $thiz->table_pos  = $table_pos;
590     $thiz->table_token = $from->table_token;
591
592     return ($thiz);
593   }
594   
595   function stat_set($stat) {
596     log_main("sess: [".$this->sess. "] NEW STAT: [".$stat."]"); 
597     $this->stat = "$stat";
598     
599     /*
600     if (validate_sess($this->sess)) {
601       $fp = fopen(PROXY_PATH."/".$this->sess.".stat", 'w');
602       fwrite($fp, sprintf("%s\n",$this->stat));
603       fclose($fp);
604     }
605     */
606   }
607
608   function step_set($step) {
609     $this->step = $step;
610     
611     do {
612       if (validate_sess($this->sess) == FALSE)
613         break;
614       if (($fp = @fopen(PROXY_PATH."/".$this->sess.".step", 'w')) == FALSE)
615         break;
616       fwrite($fp, pack("l",$this->step), 4);
617       fclose($fp);
618
619       return (TRUE);
620     } while (0);
621
622     return (FALSE);
623   }
624
625   function step_inc() {
626     $this->step++;
627     
628     if (validate_sess($this->sess)) {
629       $fp = fopen(PROXY_PATH."/".$this->sess.".step", 'w');
630       fwrite($fp, pack("l",$this->step), 4);
631       fclose($fp);
632
633       return (TRUE);
634     }
635     
636     return (FALSE);
637   }
638 } // end class User
639
640
641 function step_get($sess) {
642   $fp = FALSE;
643   $ct = 0;
644   do {
645     if (validate_sess($sess) == FALSE)
646       break;
647   $ct = 1;
648     if (($fp = @fopen(PROXY_PATH."/".$sess.".step", 'rb')) == FALSE)
649       break;
650   $ct = 2;
651     if (($s = fread($fp, 4)) == FALSE)
652       break;
653   $ct = 3;
654     if (strlen($s) != 4)
655       break;
656   $ct = 4;
657     $arr = unpack('l', $s);
658     fclose($fp);
659
660     // log_rd2("A0: ".$arr[0]."  A1: ".$arr[1]);
661     return ($arr[1]);
662   } while (0);
663
664   if ($fp != FALSE)
665     fclose($fp);
666
667   log_rd2("STEP_GET: return false ".$ct);
668   return (FALSE);
669 }
670
671 function step_unproxy($sess) {
672   log_rd2("UNPROXY: ".PROXY_PATH."/".$sess.".step");
673   @unlink(PROXY_PATH."/".$sess.".step");
674 }
675
676
677 class Room {
678   var $user;
679   var $table;
680   var $comm; // commands for many people
681   var $step; // current step of the comm array
682   var $garbage_timeout;
683
684   function Room () {
685     $this->user = array();
686     $this->table = array();
687
688     for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
689       $this->user[$i] =& User::create("", "");
690     }
691
692     for ($i = 0 ; $i < TABLES_N ; $i++) 
693       $this->table[$i] =& Table::create();
694     $this->garbage_timeout = 0;
695   }
696
697   function garbage_manager($force)
698   {
699     $ismod = FALSE;
700
701     log_rd2("garbage_manager START");
702
703     /* Garbage collector degli utenti in timeout */
704     $curtime = time();
705     if ($force || $this->garbage_timeout < $curtime) {
706       
707       // Before all align times with table timeout
708       for ($table_idx = 0 ; $table_idx < TABLES_N ; $table_idx++) {
709         $table_cur =& $this->table[$table_idx];
710         // if the table is complete and exists its shared mem we get the info about users lacc
711
712         if ($table_cur->player_n == PLAYERS_N) {
713           log_main("PLAYERS == N TABLE ".$table_idx);
714           
715           if (($sem = Briskin5::lock_data($table_idx)) != FALSE) { 
716             log_main("bin5 lock data success");
717             
718             if (($bri = &Briskin5::load_data($table_idx)) != FALSE) {
719               if ($table_cur->table_token != $bri->table_token) {
720                 log_main("ERROR: not matching table_token. Room: ".$table_cur->table_token."  Table: ".$bri->table_token);
721                 log_main("ERROR: not matching table_start. Room: ".$table_cur->table_start."  Table: ".$bri->table_start);
722                 $bri = FALSE;
723               }
724             }
725             
726             if ($bri != FALSE) {
727               //
728               //  SPAWN: JOIN
729               //
730               log_main("garbage_manager: bri loaded successfully.");
731               $bri->garbage_manager(TRUE);
732               
733               $bri_table = &$bri->table[0];
734
735               // is the end of the table
736               if ($bri->the_end == TRUE) {
737                 /*
738                  *  DESTROY OF FINISHED TABLE && MOVE PLAYER TO ROOM AGAIN
739                  */
740                 for ($i = 0 ; $i < $bri_table->player_n ; $i++) {
741                   // stat must be "table" by definition
742                   $user_cur =& $this->user[$table_cur->player[$i]];
743                   $bri_user =& $bri->user[$i];
744
745                   $user_cur->subst      = $bri_user->subst;
746                   $user_cur->step       = $bri_user->step;
747                   $user_cur->trans_step = $bri_user->step;
748                   $user_cur->lacc       = $bri_user->lacc;
749                   $user_cur->laccwr     = $bri_user->lacc;
750                   $user_cur->bantime    = $bri_user->bantime;
751                 }
752               
753                 $this->room_join_wakeup(&$user_cur); 
754                 $table_cur->table_token = "";
755
756                 Briskin5::destroy_data($table_idx);
757               }
758               else {
759                 log_main("gm:: save_data");
760
761                 for ($i = 0 ; $i < $bri_table->player_n ; $i++) {
762                   $this->user[$table_cur->player[$i]]->lacc = $bri->user[$i]->lacc;
763                 }
764               
765                 Briskin5::save_data(&$bri);
766               }
767             } // else if (($bri = &Briskin5::load_data($table_idx)) != FALSE) {
768             else {
769               log_main("ERROR: table ".$table_idx." unrecoverable join");
770             }
771           } // bri::lock_data
772         } //  if ($table_cur->player_n == PLAYERS_N) {
773       } //  for ($table_idx = 0 ; $table_idx < TABLES_N ; $table_idx++) {
774     
775       log_rd2("out new loop.");
776                 
777       for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
778         $user_cur = &$this->user[$i];
779         
780         log_rd2("User: ".$user_cur->name."  stat: ".$user_cur->stat."  subst: ".$user_cur->subst);
781           
782         if ($user_cur->sess == "") 
783           continue;
784         
785         if ($user_cur->lacc + EXPIRE_TIME_RD < $curtime) {
786           // Auto logout dell'utente
787           log_rd2("AUTO LOGOUT.".($user_cur->lacc + EXPIRE_TIME_RD)." curtime ".$curtime);
788           
789           if ($user_cur->stat == 'table' || $user_cur->stat == 'room') {
790             log_auth($user_cur->sess, "Autologout session.");
791             
792             $tmp_sess = $user_cur->sess;
793             $user_cur->sess = "";
794             step_unproxy($tmp_sess);
795             $user_cur->name = "";
796             $user_cur->step = 0;
797             $user_cur->the_end = FALSE;
798             
799             log_rd2("AUTO LOGOUT.");
800             if ($user_cur->subst == 'sitdown' || $user_cur->stat == 'table')
801               $this->room_wakeup(&$user_cur);
802             else if ($user_cur->subst == 'standup')
803               $this->room_outstandup(&$user_cur);
804             else
805               log_rd2("LOGOUT FROM WHAT ???");
806           }
807         }
808
809         if ($user_cur->laccwr + EXPIRE_TIME_SMAMMA < $curtime) { // lo rimettiamo in piedi
810           if ($user_cur->stat == 'room' && $user_cur->subst == 'sitdown') {
811             $this->room_wakeup(&$user_cur);
812             $user_cur->comm[$user_cur->step % COMM_N] = "gst.st = ".($user_cur->step+1)."; ";
813             $user_cur->comm[$user_cur->step % COMM_N] .=  show_notify("<br>Sei stato inattivo per ".(EXPIRE_TIME_SMAMMA/60.0)." minuti. <br><br>Quindi ritorni tra i <b>Giocatori in piedi</b>.", 0, "torna ai tavoli", 400, 100);
814             $user_cur->step_inc();
815           }
816         }
817       }
818       log_rd2("GARBAGE UPDATED!");
819       
820       $this->garbage_timeout = time() + GARBAGE_TIMEOUT;
821       $ismod = TRUE;
822     }
823
824     return ($ismod);
825   }
826
827
828   function room_wakeup(&$user)
829   {
830     $table_idx = $user->table;
831     $table = &$this->table[$table_idx];
832
833     log_main("WAKEUP: begin function table:".$table_idx."  stat: ".$user->stat."  subst: ".$user->subst);
834
835     $curtime = time();
836
837     $from_table = ($user->stat == "table");
838     if ($from_table) {
839       log_main("WAKEUP: from table [".$user->table."] nplayers_n: ".$this->table[$user->table]->player_n);
840
841       for ($i = 0 ; $i < $table->player_n ; $i++) {
842         $user_cur = &$this->user[$table->player[$i]];
843         log_main("PREIMPOST: INLOOP name: ".$user_cur->name);
844
845         if ($user_cur != $user) {
846           $user_cur->stat_set("room");
847           $user_cur->subst = "sitdown";
848           $user_cur->laccwr = $curtime;
849         }
850         else if ($user->sess != "") {
851           $user_cur->stat_set("room");
852           $user_cur->subst = "standup";
853           $user_cur->laccwr = $curtime;
854           $user_cur->table = -1;
855         }
856       }
857     }
858     else {
859       $user->stat_set("room");
860       $user->subst = "standup";
861       $user->laccwr = $curtime;
862     }
863     /* aggiorna l'array dei giocatori al tavolo. */
864     $table->user_rem(&$this, &$user);
865
866     for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
867       $user_cur = &$this->user[$i];
868       if ($user_cur->sess == '' || $user_cur->stat != 'room')
869         continue;
870       
871       log_main("VALORI: name: ".$user_cur->name."from_table: ".$from_table."  tab: ".$user_cur->table." taix: ".$table_idx."  ucur: ".$user_cur."  us: ".$user);
872
873       $ret = "gst.st = ".($user_cur->step+1)."; ";
874       if ($from_table && ($user_cur->table == $table_idx || $user_cur == $user)) {
875         $ret .= 'gst.st_loc++; the_end=true; window.onunload = null; document.location.assign("index.php");|';
876         // $ret .= 'gst.st_loc++; document.location.assign("index.php");|';
877         log_main("DOCUMENT.index.php: from table");
878       }
879       else if ($user_cur->stat == "room") {
880         log_main("DOCUMENT.index.php: from table");
881
882         $ret .= table_content($this, $user_cur, $table_idx);
883         $ret .= standup_content($this, $user_cur);
884         
885         $act_content = table_act_content(FALSE, 0, $table_idx, $user->table);
886         $ret .= sprintf('$("table_act%d").innerHTML = "%s";', $table_idx, $act_content);
887         
888         
889         if ($user_cur == $user) {
890           // set the new status 
891           $ret .=  'subst = "standup"; ';
892           // clean the action buttons in other tables
893           for ($e = 0 ; $e < TABLES_N ; $e++) {
894             if ($this->table[$e]->player_n < PLAYERS_N)
895               $ret .= sprintf('$("table_act%d").innerHTML = "%s";', $e, table_act_content(TRUE, 0, $e, $user->table));
896           }
897         }
898         else {
899           $act_content = table_act_content(($user_cur->subst == 'standup'), $table->player_n, $table_idx, $user_cur->table);
900           $ret .= sprintf('$("table_act%d").innerHTML = "%s";', $table_idx, $act_content);
901         }
902       }
903       log_wr("ROOM_WAKEUP: ".$ret);
904       $user_cur->comm[$user_cur->step % COMM_N] = $ret;
905       $user_cur->step_inc();
906     }
907   }
908
909   function room_join_wakeup(&$user, $update_lacc = FALSE)
910   {
911     $table_idx = $user->table;
912     $table = &$this->table[$table_idx];
913     
914     log_main("JOIN_WAKEUP: begin function table:".$table_idx."  stat: ".$user->stat."  subst: ".$user->subst);
915
916     $curtime = time();
917     $user_wup = array();
918     $user_wup_n = 0;
919     log_main("JOIN WAKEUP: from table [".$user->table."] nplayers_n: ".$this->table[$user->table]->player_n);
920     
921     for ($i = 0 ; $i < $table->player_n ; $i++) {
922       $user_cur = &$this->user[$table->player[$i]];
923       log_main("PREIMPOST INLOOP name: ".$user_cur->name);
924       if ($user_cur->sess != "") {
925         if ($update_lacc == TRUE) {
926           $user_cur->laccwr = $curtime;
927         }
928         log_main("cur: ".$user_cur->name."  subst: ".$user_cur->subst);
929         if ($user_cur->subst == "shutdowned") {
930           $user_cur->stat_set("room");
931           $user_cur->subst = "sitdown";
932         }
933         else if ($user_cur->subst == "shutdowner") {
934           $user_cur->stat_set("room");
935           $user_cur->subst = "standup";
936           $user_cur->table = -1;
937           $user_wup[$user_wup_n++] = &$user_cur;
938         }
939       }
940     }
941
942     for ($wup_idx = 0 ; $wup_idx < $user_wup_n  ; $wup_idx++)
943       $table->user_rem(&$this, &$user_wup[$wup_idx]);
944
945     /* aggiorna l'array dei giocatori al tavolo. */
946
947     for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
948       log_main("START LOOP");
949       $user_cur = &$this->user[$i];
950       if ($user_cur->sess == '' || $user_cur->stat != 'room') {
951         log_main("name: ".$user_cur->name."skip   subst: ".$user_cur->subst);
952         continue;
953       }
954
955       log_main("___");
956       log_main("VALORI name: ".$user_cur->name."  tab: ".$user_cur->table." taix: ".$table_idx."  ucur: ".$user_cur."  us: ".$user);
957
958       $ret = "gst.st = ".($user_cur->step+1)."; ";
959       if ($user_cur->stat == "room") {
960         log_main("DOCUMENT.index.php from table");
961
962         $ret .= table_content($this, $user_cur, $table_idx);
963         $ret .= standup_content($this, $user_cur);
964         
965         $act_content = table_act_content(FALSE, 0, $table_idx, $user_cur->table);
966         $ret .= sprintf('$("table_act%d").innerHTML = "%s";', $table_idx, $act_content);
967         
968         for ($wup_idx = 0 ; $wup_idx < $user_wup_n  ; $wup_idx++)
969           if ($user_cur == $user_wup[$wup_idx]) 
970             break;
971
972         // for users that wakeup the room will be reconstructed by index_rd.php
973         if ($user_cur == $user_wup[$wup_idx]) 
974           continue;
975
976         log_main("JOIN_WAKEUP wup_idx ".$wup_idx."  wup_n ".$user_wup_n);
977
978         if ($wup_idx < $user_wup_n) {
979           log_main("JOIN_WAKEUP less");
980           // set the new status 
981           $ret .=  'stat = "room"; subst = "standup"; ';
982           // clean the action buttons in other tables
983           for ($e = 0 ; $e < TABLES_N ; $e++) {
984             if ($this->table[$e]->player_n < PLAYERS_N)
985               $ret .= sprintf('$("table_act%d").innerHTML = "%s";', $e, table_act_content(TRUE, 0, $e, $user_cur->table));
986           }
987           log_main("JOIN_WAKEUP end less");
988         }
989         else {
990           log_main("JOIN_WAKEUP more");
991           $act_content = table_act_content(($user_cur->subst == 'standup'), $table->player_n, $table_idx, $user_cur->table);
992           $ret .= sprintf('$("table_act%d").innerHTML = "%s";', $table_idx, $act_content);
993           log_main("JOIN_WAKEUP end more");
994         }
995       }
996       log_wr("ROOM_JOIN_WAKEUP: ".$ret);
997       $user_cur->comm[$user_cur->step % COMM_N] = $ret;
998       $user_cur->step_inc();
999     }
1000   }
1001
1002   function room_outstandup(&$user)
1003   {
1004     $this->room_sitdown(&$user, -1);
1005   }
1006   
1007   function table_update(&$user)
1008   {
1009     log_main("table_update: pre - USER: ".$user->name);
1010
1011     $table_idx = $user->table;
1012
1013     if ($table_idx > -1) 
1014       $table = &$this->table[$table_idx];
1015     
1016     for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
1017       $ret = "";
1018       $user_cur = &$this->user[$i];
1019       if ($user_cur->sess == '' || $user_cur->stat != 'room')
1020       continue;
1021       
1022       $ret = "gst.st = ".($user_cur->step+1)."; ";
1023       if ($table_idx > -1)
1024         $ret .= table_content($this, $user_cur, $table_idx);
1025       
1026       if ($user_cur == $user) {
1027         $ret .= sprintf('$("myname").innerHTML = "<b>%s</b>: ";',  xcape($user->name));
1028       }
1029       $user_cur->comm[$user_cur->step % COMM_N] = $ret;
1030       $user_cur->step_inc();
1031     }
1032
1033     log_main("table_update: post");
1034   }
1035
1036   function room_sitdown(&$user, $table_idx)
1037   {
1038     log_main("room_sitdown ".($user == FALSE ? "USER: FALSE" : "USER: ".$user->name));
1039
1040     if ($table_idx > -1) 
1041       $table = &$this->table[$table_idx];
1042     
1043     for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
1044       $ret = "";
1045       $user_cur = &$this->user[$i];
1046       if ($user_cur->sess == '' || $user_cur->stat != 'room')
1047       continue;
1048       
1049       $ret = "gst.st = ".($user_cur->step+1)."; ";
1050       if ($table_idx > -1)
1051       $ret .= table_content($this, $user_cur, $table_idx);
1052       $ret .= standup_content($this, $user_cur);
1053       
1054       if ($user_cur == $user) {
1055         $ret .=  'subst = "sitdown"; ';
1056         // clean the action buttons in other tables
1057         for ($e = 0 ; $e < TABLES_N ; $e++) {
1058           $act_content = table_act_content(FALSE, 0, $e, $user_cur->table);
1059           $ret .= sprintf('$("table_act%d").innerHTML = "%s";', $e, $act_content);
1060         }
1061       }
1062       else if ($table_idx > -1) {
1063         if ($table->player_n == PLAYERS_N) {
1064           $act_content = table_act_content(($user_cur->subst == 'standup'), PLAYERS_N, $table_idx, $user_cur->table);
1065           $ret .= sprintf('$("table_act%d").innerHTML = "%s";', $table_idx, $act_content);
1066         }
1067       }
1068       $user_cur->comm[$user_cur->step % COMM_N] = $ret;
1069       $user_cur->step_inc();
1070     }
1071   }
1072
1073   function chatt_send(&$user, $mesg)
1074   {
1075     if ($user->stat == 'table') {
1076       $table = &$this->table[$user->table];
1077     }
1078     
1079     $user_mesg = substr($mesg,6);
1080     
1081     $timecur = time();
1082     
1083     $dt = date("H:i ", $timecur);
1084     if (strncmp($user_mesg, "/nick ", 6) == 0) {
1085       log_main("chatt_send BEGIN");
1086
1087       if (($name_new = validate_name(substr($user_mesg, 6))) == FALSE) {
1088           $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
1089           $user->comm[$user->step % COMM_N] .= sprintf('chatt_sub("%s","Il nickname deve contenere almeno una lettera o una cifra.");', $dt.NICKSERV, xcape($name_new));
1090           $user->step_inc();
1091
1092           return;
1093       }
1094       $user_mesg = "COMMAND ".$user_mesg;
1095       // Search dup name
1096       // change
1097       // update local graph
1098       // update remote graphs
1099       for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
1100         $user_cur = &$this->user[$i];
1101         //      if ($user_cur->sess == '' || $user_cur->stat != 'room')
1102         if ($user_cur->sess == '')
1103           continue;
1104         if ($user_cur->name == $name_new) {
1105           $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
1106           $user->comm[$user->step % COMM_N] .= sprintf('chatt_sub("%s","Nickname <b>%s</b> gi&agrave; in uso.");', $dt.NICKSERV, xcape($name_new));
1107           $user->step_inc();
1108           break;
1109         }
1110       }
1111       if ($i == MAX_PLAYERS) {
1112         $user->name = $name_new;
1113
1114       log_main("chatt_send start set");
1115         
1116
1117         for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
1118           log_main("chatt_send set loop");
1119           
1120           $user_cur = &$this->user[$i];
1121           if ($user_cur->sess == '')
1122             continue;
1123           if ($user_cur->stat == 'room') {
1124             if ($user->stat == 'room' && $user->subst == 'standup') {
1125               $this->standup_update(&$user);
1126             }
1127             else if ($user->stat == 'room' && $user->subst == 'sitdown' ||
1128                      $user->stat == 'table') {
1129               log_main("chatt_send pre table update");
1130
1131               $this->table_update(&$user);
1132
1133               log_main("chatt_send post table update");
1134             }
1135           }
1136           else if ($user_cur->stat == 'table' && $user_cur->table == $user->table) {
1137             $table = &$this->table[$user->table];
1138             
1139             $user_cur->comm[$user_cur->step % COMM_N] = "gst.st = ".($user_cur->step+1)."; ";
1140             $user_cur->comm[$user_cur->step % COMM_N] .= sprintf('set_names(" %s", " %s", " %s", " %s", " %s"); ',
1141                 xcape($this->user[$table->player[($user_cur->table_pos)%PLAYERS_N]]->name),
1142                 xcape($this->user[$table->player[($user_cur->table_pos+1)%PLAYERS_N]]->name),
1143                 xcape($this->user[$table->player[($user_cur->table_pos+2)%PLAYERS_N]]->name),
1144                 (PLAYERS_N == 3 ? "" :  xcape($this->user[$table->player[($user_cur->table_pos+3)%PLAYERS_N]]->name)),
1145                 (PLAYERS_N == 3 ? "" :  xcape($this->user[$table->player[($user_cur->table_pos+4)%PLAYERS_N]]->name)));
1146             if ($user_cur == $user)
1147               $user_cur->comm[$user_cur->step % COMM_N] .= sprintf('$("myname").innerHTML = "<b>%s</b>";', 
1148                                                                    xcape($user->name,ENT_COMPAT,"UTF-8"));
1149             $user_cur->step_inc();
1150           }
1151         }
1152       }
1153     }
1154     else {
1155       for ($i = 0 ; $i < ($user->stat == 'room' ? MAX_PLAYERS : PLAYERS_N) ; $i++) {
1156         if ($user->stat == 'room') {
1157           $user_cur = &$this->user[$i];
1158           if ($user_cur->sess == '' || $user_cur->stat != 'room')
1159             continue;
1160         }
1161         else {
1162           $user_cur = &$this->user[$table->player[$i]];
1163         }
1164         
1165         $user_cur->comm[$user_cur->step % COMM_N] = "gst.st = ".($user_cur->step+1)."; ";
1166         $user_cur->comm[$user_cur->step % COMM_N] .= sprintf('chatt_sub("%s","%s");',
1167                                                              $dt.xcape($user->name), xcape($user_mesg));
1168         $user_cur->step_inc();
1169       }
1170       log_legal($timecur, $user->sess, $user->name, 
1171                 ($user->stat == 'room' ? 'room' : 'table '.$user->table),$user_mesg);
1172     }
1173   }
1174
1175   function &get_user($sess, &$idx)
1176   {
1177     GLOBAL $PHP_SELF, $G_false;
1178
1179     if (validate_sess($sess)) {
1180       for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
1181         if (strcmp($sess, $this->user[$i]->sess) == 0) {
1182           // find it
1183           $idx = $i;
1184           $ret = &$this->user[$i];
1185           return ($ret);
1186         }
1187       }
1188       log_main(sprintf("get_user: Wrong sess from page [%s]",$PHP_SELF));
1189       // for ($i = 0 ; $i < MAX_PLAYERS ; $i++) 
1190       // log_main(sprintf("get_user: Wrong sess compared with [%s]",$this->user[$i]->sess));
1191     }
1192     else {
1193       log_main(sprintf("get_user: Wrong strlen [%s]",$sess));
1194     }
1195
1196     return ($G_false);
1197   }
1198
1199   /*
1200    * function &add_user(&$room, &$sess, &$idx, $name, $ip)
1201    *
1202    * RETURN VALUE:
1203    *   if ($idx != -1 && ret == FALSE)  =>  duplicated nick
1204    *   if ($idx == -2 && ret == FALSE)  =>  invalid name
1205    *   if ($idx == -1 && ret == FALSE)  =>  no space left
1206    *   if (ret == TRUE)                 =>  SUCCESS
1207    */
1208   function &add_user(&$sess, &$idx, $name, $ip)
1209   {
1210     GLOBAL $G_false;
1211
1212     $idx = -1;
1213     $idfree = -1;
1214     
1215     if (($name_new = validate_name($name)) == FALSE) {
1216       $idx = -2;
1217       return ($G_false);
1218     }
1219
1220     log_auth("XXX", sprintf("ARRIVA: [%s]", $sess));
1221     if (validate_sess($sess) == FALSE) 
1222       $sess = "";
1223
1224     for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
1225       /* free user ? */
1226       if (strcmp($sess, $this->user[$i]->sess) == 0) {
1227         if ($idx == -1)
1228           $idx = $i;
1229       }
1230       if ($idfree == -1 && strcmp("", $this->user[$i]->sess) == 0) {
1231         $idfree = $i;
1232       }
1233       if (strcmp($this->user[$i]->name, $name_new) == 0) {
1234         $idx = $i;
1235         break;
1236       }
1237     }
1238     if ($idx == -1)
1239       $idx = $idfree;
1240
1241     log_auth("XXX", sprintf("TROVATO A QUESTO PUNTO [%d] sess [%s] name [%s]", $idx, $sess, $name_new));
1242
1243     if ($idx != -1 && $i == MAX_PLAYERS) {
1244       /* SUCCESS */
1245       $curtime = time();
1246       if ($sess == "") {
1247         $this->user[$idx]->sess = uniqid("");
1248         $sess = $this->user[$idx]->sess;
1249         
1250       }
1251       else {
1252         $this->user[$idx]->sess = $sess;
1253       }
1254       $this->user[$idx]->name = $name_new;
1255       $this->user[$idx]->stat_set("room");
1256       // MOP $this->user[$idx]->step_set(0);
1257       $this->user[$idx]->subst = "standup";
1258       $this->user[$idx]->lacc =   $curtime;
1259       $this->user[$idx]->laccwr = $curtime;
1260       $this->user[$idx]->bantime = 0;
1261       $this->user[$idx]->ip = $ip;
1262       log_main(sprintf("TROVATO LIBERO A [%d] sess [%s] name [%s]", $idx, $sess, $name_new));
1263       
1264       return ($this->user[$idx]);
1265     }
1266
1267     return ($G_false);
1268   }
1269   
1270   function standup_update(&$user)
1271   {
1272     for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
1273       $user_cur = &$this->user[$i];
1274       if ($user_cur->sess == '')
1275         continue;
1276
1277       log_main("STANDUP START: ".$user_cur->stat);
1278       
1279       if ($user_cur->stat == 'room') {
1280         $user_cur->comm[$user_cur->step % COMM_N] = "gst.st = ".($user_cur->step+1)."; ".standup_content($this, $user_cur);
1281         if ($user_cur == $user)
1282           $user_cur->comm[$user_cur->step % COMM_N] .= sprintf('$("myname").innerHTML = "<b>%s</b>: ";',  xcape($user->name));
1283         
1284         log_main("FROM STANDUP: NAME: ".$user_cur->name." SENDED: ".$user_cur->comm[$user_cur->step % COMM_N]);
1285         
1286         $user_cur->step_inc();
1287       }
1288     }
1289   }
1290
1291   // Static functions
1292   function &init_data()
1293   {
1294     $room =& new Room();
1295     
1296     return $room;
1297   }
1298   
1299
1300   function &load_data() 
1301   {
1302     GLOBAL $G_false, $sess;
1303     
1304     if (($tok = ftok(FTOK_PATH."/main", "B")) == -1) {
1305       echo "FTOK FAILED";
1306       exit;
1307     }
1308     
1309     if ($shm = shm_attach($tok, SHM_DIMS)) {
1310       $room = @shm_get_var($shm, $tok);
1311       
1312       log_only("bri ==  ".($room == FALSE ?   "FALSE" : "TRUE")."  bri ===  ".($room === FALSE ? "FALSE" : "TRUE")."  bri isset ".(isset($room) ?   "TRUE" : "FALSE"));
1313       if (isset($room)) 
1314         log_only("bri count ".count($room));
1315       
1316       if ($room == FALSE) {
1317         log_only("INIT MAIN DATA");
1318         
1319         $room =& Room::init_data();
1320         if (shm_put_var($shm, $tok, $room) == FALSE) {
1321           log_only("PUT_VAR FALLITA ".strlen(serialize($room)));
1322           log_only(serialize($room));
1323         }
1324       }
1325       
1326       shm_detach($shm);
1327       
1328       $ret = &$room;
1329       return ($ret);
1330     }
1331     
1332     return ($G_false);
1333   }
1334   
1335
1336   function save_data(&$room) 
1337   {
1338     GLOBAL $sess;
1339     
1340     $ret =   FALSE;
1341     $shm =   FALSE;
1342     $isacq = FALSE;
1343     
1344     // var_dump($room);
1345     
1346     if (($tok = ftok(FTOK_PATH."/main", "B")) == -1) 
1347       return (FALSE);
1348     
1349     do {
1350       $isacq = TRUE;
1351       
1352       if (($shm = shm_attach($tok, SHM_DIMS)) == FALSE)
1353         break;
1354       
1355       // log_only("PUT_VAR DI ".strlen(serialize($room)));
1356       if (shm_put_var($shm, $tok, $room) == FALSE) {
1357         log_only("PUT_VAR FALLITA ".strlen(serialize($room)));
1358         log_only(serialize($room));
1359         break;
1360       }
1361       // log_main("QUI CI ARRIVA [".$room->user[0]->name."]");
1362       $ret = TRUE;
1363     } while (0);
1364     
1365     if ($shm)
1366       shm_detach($shm);
1367     
1368     return ($ret);
1369   }
1370
1371   function lock_data()
1372   {
1373     GLOBAL $sess; 
1374     
1375     //  echo "LOCK: ".FTOK_PATH."/main";
1376     //  exit;
1377     if (($tok = ftok(FTOK_PATH."/main", "B")) == -1) {
1378       echo "FTOK FAILED";
1379       exit;
1380     }
1381     // echo "FTOK ".$tok."<br>";
1382     if (($res = sem_get($tok)) == FALSE) {
1383       echo "SEM_GET FAILED";
1384       exit;
1385     }
1386     if (sem_acquire($res)) {   
1387       log_lock("LOCK room");
1388       return ($res);
1389     }
1390     else
1391       return (FALSE);
1392   }
1393   
1394   function unlock_data($res)
1395   {
1396     GLOBAL $sess; 
1397     
1398     log_lock("UNLOCK room");
1399
1400     return (sem_release($res));
1401   }
1402 } // end class Room
1403
1404 function make_seed()
1405 {
1406   list($usec, $sec) = explode(' ', microtime());
1407   return (float) $sec + ((float) $usec * 100000);
1408 }
1409
1410
1411 function log_only2($log) {
1412   if ((BRISK_DEBUG & DBG_ONL2) == 0)
1413     return;
1414   
1415   GLOBAL $sess;
1416
1417   if (isset($sess) == FALSE)
1418     $ssess = "XXXX";
1419   else
1420     $ssess = $sess;
1421
1422   if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
1423     fwrite($fp, sprintf("ONL2: [%s] [%s]\n", $ssess, $log));
1424     fclose($fp);
1425   }
1426 }
1427
1428 function log_only($log) {
1429   if ((BRISK_DEBUG & DBG_ONLY) == 0)
1430     return;
1431   
1432   GLOBAL $sess;
1433
1434   if (isset($sess) == FALSE)
1435     $ssess = "XXXX";
1436   else
1437     $ssess = $sess;
1438
1439   if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
1440     fwrite($fp, sprintf("ONLY: [%s] [%s]\n", $ssess, $log));
1441     fclose($fp);
1442   }
1443 }
1444
1445 function log_main($log) {
1446   if ((BRISK_DEBUG & DBG_MAIN) == 0)
1447     return;
1448   
1449   GLOBAL $sess;
1450
1451   if (isset($sess) == FALSE)
1452     $ssess = "XXXX";
1453   else
1454     $ssess = $sess;
1455
1456   if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
1457     fwrite($fp, sprintf("MAIN: [%s] [%s]\n", $ssess, $log));
1458     fclose($fp);
1459   }
1460 }
1461
1462 function log_rd($log) {
1463   if ((BRISK_DEBUG & DBG_READ) == 0)
1464     return;
1465   
1466   GLOBAL $sess;
1467
1468   if (isset($sess) == FALSE)
1469     $ssess = "XXXX";
1470   else
1471     $ssess = $sess;
1472       
1473   if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
1474     fwrite($fp, sprintf("READ: [%s] [%s]\n", $ssess, $log));
1475     fclose($fp);
1476   }
1477 }
1478
1479 function log_rd2($log) {
1480   if ((BRISK_DEBUG & DBG_REA2) == 0)
1481     return;
1482   
1483   GLOBAL $sess;
1484
1485   if (isset($sess) == FALSE)
1486     $ssess = "XXXX";
1487   else
1488     $ssess = $sess;
1489       
1490
1491   if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
1492     fwrite($fp, sprintf("REA2: [%s] [%s]\n", $ssess, $log));
1493     fclose($fp);
1494   }
1495 }
1496
1497 function log_send($log) {
1498   if ((BRISK_DEBUG & DBG_SEND) == 0)
1499     return;
1500   
1501   GLOBAL $sess;
1502
1503   if (isset($sess) == FALSE)
1504     $ssess = "XXXX";
1505   else
1506     $ssess = $sess;
1507       
1508   if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
1509     fwrite($fp, sprintf("SEND: [%s] [%s]\n", $ssess, $log));
1510     fclose($fp);
1511   }
1512 }
1513
1514 function log_lock($log) {
1515   if ((BRISK_DEBUG & DBG_LOCK) == 0)
1516     return;
1517   
1518   GLOBAL $sess;
1519
1520   if (isset($sess) == FALSE)
1521     $ssess = "XXXX";
1522   else
1523     $ssess = $sess;
1524
1525   if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
1526     fwrite($fp, sprintf("LOCK: [%s] [%s]\n", $ssess, $log));
1527     fclose($fp);
1528   }
1529 }
1530
1531 function log_wr($log) {
1532   if ((BRISK_DEBUG & DBG_WRIT) == 0)
1533     return;
1534   
1535   GLOBAL $sess;
1536
1537   if (isset($sess) == FALSE)
1538     $ssess = "XXXX";
1539   else
1540     $ssess = $sess;
1541       
1542   if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
1543     fwrite($fp, sprintf("WRIT: [%s] [%s]\n", $ssess, $log));
1544     fclose($fp);
1545   }
1546 }
1547
1548 function log_load($log) {
1549   if ((BRISK_DEBUG & DBG_LOAD) == 0)
1550     return;
1551   
1552   GLOBAL $sess;
1553
1554   if (isset($sess) == FALSE)
1555     $ssess = "XXXX";
1556   else
1557     $ssess = $sess;
1558       
1559   if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
1560     fwrite($fp, sprintf("LOAD: [%s] [%s]\n", $ssess, $log));
1561     fclose($fp);
1562   }
1563 }
1564
1565 function log_auth($sess, $log) {
1566   if ((BRISK_DEBUG & DBG_AUTH) == 0)
1567     return;
1568
1569   if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
1570     fwrite($fp, sprintf("AUTH: [%s] [%d] [%s]\n", $sess, time(), $log));
1571     fclose($fp);
1572   }
1573 }
1574
1575
1576 function log_legal($timecur, $sess, $name, $where, $mesg) 
1577 {
1578   GLOBAL $_SERVER;
1579
1580   if (($fp = @fopen(LEGAL_PATH."/legal.log", 'a')) != FALSE) {
1581     /* Unix time | session | nickname | IP | where was | mesg */
1582     fwrite($fp, sprintf("%ld|%s|%s|%s|%s|%s|\n", $timecur, $sess, $name, $_SERVER['REMOTE_ADDR'], $where , $mesg));
1583     fclose($fp);
1584   }
1585 }
1586
1587
1588
1589
1590 function lock_banlist()
1591 {
1592   if (($tok = ftok(FTOK_PATH."/main", "L")) == -1) {
1593     echo "FTOK FAILED";
1594     exit;
1595   }
1596   if (($res = sem_get($tok)) == FALSE) {
1597     echo "SEM_GET FAILED";
1598     exit;
1599   }
1600   if (sem_acquire($res)) 
1601     return ($res);
1602   else
1603     return (FALSE);
1604 }
1605
1606 function unlock_banlist($res)
1607 {
1608   return (sem_release($res));
1609 }
1610
1611 function table_act_content($isstanding, $sitted, $table, $cur_table)
1612 {
1613   $ret = "";
1614
1615   if ($isstanding) {
1616     if ($sitted < PLAYERS_N) {
1617       $ret = sprintf('<input type=\\"button\\" class=\\"button\\" name=\\"xhenter%d\\"  value=\\"Mi siedo.\\" onclick=\\"act_sitdown(%d);\\">', $table, $table);
1618     }
1619   }
1620   else {
1621     if ($table == $cur_table)
1622       $ret = sprintf('<input type=\\"button\\" class=\\"button\\" name=\\"xwakeup\\"  value=\\"Mi alzo.\\" onclick=\\"act_wakeup();\\">');
1623     else
1624       $ret = "";
1625   }
1626   return ($ret);
1627 }
1628
1629 function table_content($room, $user, $table_idx)
1630 {
1631   $content = "";
1632   $ret = "";
1633   // TODO
1634   //
1635   //   Si possono usare i dati nella classe table
1636   //
1637
1638   $sess = $user->sess;
1639   $table = &$room->table[$table_idx];
1640
1641   if ($user->stat != 'room')
1642     return;
1643
1644   for ($i = 0 ; $i < $table->player_n ; $i++) {
1645     $user_cur = &$room->user[$table->player[$i]];
1646
1647     if ($user_cur == $user) 
1648         { $hilion = "<b>"; $hilioff = "</b>"; }
1649       else
1650         { $hilion = ""; $hilioff = ""; }
1651
1652     log_main($user_cur->name. sprintf(" IN TABLE [%d]", $table_idx));
1653     
1654     $content .= sprintf("%s%s%s<br>",$hilion, xcape($user_cur->name), $hilioff);
1655   }
1656   /*
1657   for ( ; $i < PLAYERS_N ; $i++)
1658     $content .= "<br>";
1659   */
1660
1661   $ret .= sprintf('$("table%d").innerHTML = "%s";', $table_idx, $content);
1662   
1663   return ($ret);
1664 }
1665
1666 function standup_content(&$room, $user)
1667 {
1668   $ret = "";
1669   $content = "";
1670
1671   if ($user->stat != 'room')
1672     return;
1673
1674   for ($e = 0 , $ct = 0 ; $ct < 4 && $e < MAX_PLAYERS ; $e++) {
1675     if ($room->user[$e]->sess == "" || $room->user[$e]->stat != "room" || $room->user[$e]->name == "")
1676       continue;
1677     $ct++;
1678   }
1679
1680   $content .= sprintf('<table cols=\\"%d\\" class=\\"table_standup\\">', $ct);
1681
1682   for ($e = 0 , $ct = 0 ; $e < MAX_PLAYERS ; $e++) {
1683     if ($room->user[$e]->sess == "" || $room->user[$e]->stat != "room" || $room->user[$e]->name == "")
1684       continue;
1685
1686
1687     if ($room->user[$e]->subst == "standup") {
1688       if (($ct % 4) == 0) {
1689         $content .= '<tr>';
1690       }
1691       if ($room->user[$e] == $user) 
1692         { $hilion = "<b>"; $hilioff = "</b>"; }
1693       else
1694         { $hilion = ""; $hilioff = ""; }
1695
1696       $content .= sprintf('<td class=\\"room_standup\\">%s%s%s</td>',$hilion, xcape($room->user[$e]->name), $hilioff);
1697       if (($ct % 4) == 3) {
1698         $content .= '</tr>';
1699       }
1700       $ct++;
1701     }
1702   }
1703   $content .= '</table>';
1704         
1705   $content2 = '<input class=\\"button\\" name=\\"logout\\" value=\\"Esco.\\" onclick=\\"window.onunload = null; act_logout();\\" type=\\"button\\">';
1706   $ret .= sprintf('$("standup").innerHTML = "%s";  $("esco").innerHTML = "%s";', 
1707                   $content, $content2);
1708
1709   return ($ret);
1710 }
1711
1712
1713 function show_notify($text, $tout, $butt, $w, $h)
1714 {
1715   log_main("SHOW_NOTIFY: ".$text);
1716   return sprintf('var noti = new notify(gst,"%s",%d,"%s",%d,%d);', $text, $tout, $butt, $w, $h);
1717 }
1718
1719 function briscola_show($room, $table, $user)
1720 {
1721   $ptnadd = "";
1722   $ret = "";
1723
1724   if ($table->asta_card == 9) 
1725     $ptnadd = sprintf("<br>con %d punti", $table->asta_pnt);
1726   
1727   /* text of caller cell */
1728   if ($user->table_pos == $table->asta_win) 
1729     $ret .= sprintf('$("callerinfo").innerHTML = "Chiami%s:";', $ptnadd);
1730   else 
1731     $ret .= sprintf('$("callerinfo").innerHTML = "Chiama %s%s:";', 
1732                     xcape($room->user[$table->player[$table->asta_win]]->name), $ptnadd);
1733
1734   $ret .= sprintf('$("caller").style.backgroundImage = \'url("img/brisk_caller_sand%d.png")\';',
1735                   $table->asta_win);
1736   $ret .= sprintf('$("callerimg").src = "img/%02d.png";', $table->briscola);
1737   $ret .= sprintf('$("caller").style.visibility = "visible";');
1738   $ret .= sprintf('$("chooseed").style.visibility = "hidden";');
1739   $ret .= sprintf('$("astalascio").style.visibility = "";');
1740   $ret .= sprintf('$("asta").style.visibility = "hidden";');
1741   $ret .= sprintf('show_astat(-2,-2,-2,-2,-2);');
1742   
1743   return ($ret);
1744 }
1745
1746
1747 function game_result($asta_pnt, $pnt)
1748 {
1749   if ($asta_pnt == 61) {
1750     if ($pnt > 60)
1751       return (1);
1752     else if ($pnt == 60)
1753       return (0);
1754     else
1755       return (-1);
1756   }
1757   else {
1758     if ($pnt >= $asta_pnt)
1759       return (1);
1760     else
1761       return (-1);
1762   }
1763 }
1764
1765 function multoval($mult)
1766 {
1767   if ($mult == 2)
1768     return ("doppio");
1769   else if ($mult == 4)
1770     return ("quadruplo");
1771   else
1772     return (sprintf("%d-plo", $mult));
1773 }
1774
1775 function show_table_info(&$room, &$table, $table_pos)
1776 {
1777   $ret = "";
1778   $user = &$room->user[$table->player[$table_pos]];
1779
1780   $pnt_min = $table->points_n - MAX_POINTS < 0 ? 0 : $table->points_n - MAX_POINTS;
1781   $noty = sprintf('<table class=\"points\"><tr><th></th>');
1782   
1783   // Names.
1784   for ($i = 0 ; $i < PLAYERS_N ; $i++) 
1785     $noty .= sprintf('<th class=\"td_points\">%s</th>', xcape($room->user[$table->player[$i]]->name));
1786   $noty .= sprintf("</tr>");
1787
1788   // Points.
1789   log_main("show_table_info: pnt_min: ".$pnt_min."   Points_n: ".$table->points_n);
1790
1791   for ($i = $pnt_min ; $i < $table->points_n ; $i++) {
1792     $noty .= sprintf('<tr><th class=\"td_points\">%d</th>', $i+1);
1793     for ($e = 0 ; $e < PLAYERS_N ; $e++) 
1794       $noty .= sprintf('<td class=\"td_points\">%d</td>', $table->points[$i % MAX_POINTS][$e]);
1795     $noty .= "</tr>";
1796   }
1797
1798   // Total points.
1799   $noty .= '<tr><th class=\"td_points\">Tot.</th>';
1800   for ($e = 0 ; $e < PLAYERS_N ; $e++) 
1801     $noty .= sprintf('<td class=\"td_points\">%d</td>', $table->total[$e]);
1802   $noty .= "</tr></table>";
1803
1804   if ($table->old_reason != "") {
1805     $noty .= sprintf("<hr><b>%s</b><br>", xcape($table->old_reason));
1806   }
1807
1808   if ($table->old_win != -1) {
1809     $win = $table->player[$table->old_win];
1810     $fri = $table->player[$table->old_friend];
1811
1812     $wol = game_result($table->old_asta_pnt, $table->old_pnt);
1813
1814     if ($win != $fri) {
1815       $noty .= sprintf("<hr>Nell'ultima mano ha chiamato <b>%s</b>, il socio era <b>%s</b>,<br>", 
1816                        xcape($room->user[$win]->name),
1817                        xcape($room->user[$fri]->name));
1818       if ($table->old_pnt == 120) {
1819         $noty .= sprintf("hanno fatto <b>cappotto</b> EBBRAVI!.<hr>");
1820       }
1821       else {
1822         $noty .= sprintf("dovevano fare <b>%s</b> punti e ne hanno fatti <b>%d</b>: hanno <b>%s</b>.<hr>",
1823                          ($table->old_asta_pnt > 61 ? "almeno ".$table->old_asta_pnt :
1824                           'pi&ugrave; di 60'), $table->old_pnt,
1825                          ($wol == 1 ? "vinto" : ($wol == 0 ? "pareggiato" : "perso")));
1826       }
1827     }
1828     else {
1829       $noty .= sprintf("<hr>Nell'ultima mano <b>%s</b> si &egrave; chiamato in mano,<br>", 
1830                        xcape($room->user[$win]->name));
1831       if ($table->old_pnt == 120) {
1832         $noty .= sprintf("ha fatto <b>cappotto</b> EBBRAVO!.<hr>");
1833       }
1834       else {
1835         $noty .= sprintf("doveva fare <b>%s</b> punti e ne ha fatti <b>%d</b>: ha <b>%s</b>.<hr>",
1836                          ($table->old_asta_pnt > 61 ? "almeno ".$table->old_asta_pnt :
1837                           'pi&ugrave; di 60'), $table->old_pnt,
1838                          ($wol == 1 ? "vinto" : ($wol == 0 ? "pareggiato" : "perso")));
1839       }
1840     }
1841   }
1842   if ($table->mazzo == $table_pos) 
1843     $noty .= "Fai <b>tu</b> il mazzo,";
1844   else {
1845     $unam = xcape($room->user[$table->player[$table->mazzo]]->name);
1846     $noty .= "Il mazzo a <b>$unam</b>,";
1847   }
1848
1849   if ($user->subst == 'asta') {
1850     if ($table->asta_win == -1)  // auction case
1851       $curplayer = $table->gstart % PLAYERS_N;
1852     else 
1853       $curplayer = $table->asta_win;
1854   }
1855   else if ($user->subst == 'game') {
1856     $curplayer = ($table->gstart + $table->turn) % PLAYERS_N;
1857   }
1858
1859
1860   if ($curplayer == $table_pos) {
1861     $noty .= " tocca a <b>te</b> giocare.";
1862   }
1863   else {
1864     $unam = xcape($room->user[$table->player[$curplayer]]->name);
1865     $noty .= " tocca a <b>$unam</b> giocare.";
1866   }
1867
1868   if ($table->mult > 1) {
1869     $noty .= sprintf(" La partita vale <b>%s</b>.", multoval($table->mult));
1870   }
1871   $noty .= "<hr><br>";
1872
1873   $ret .= show_notify($noty, 3000, "torna alla partita", 500, 400);
1874   
1875   return ($ret);
1876 }
1877
1878 function root_wellcome($user)
1879 {
1880   GLOBAL $root_wellarr;
1881   $ret = "";
1882
1883   for ($i = 0 ; $i < count($root_wellarr) ; $i++)
1884     $ret .= sprintf('chatt_sub("ChanServ: ","%s");', str_replace('"', '\"', $root_wellarr[$i]));
1885
1886   return ($ret);
1887 }
1888
1889 function table_wellcome($user)
1890 {
1891   GLOBAL $table_wellarr;
1892   $ret = "";
1893
1894   for ($i = 0 ; $i < count($table_wellarr) ; $i++)
1895     $ret .= sprintf('chatt_sub("ChanServ: ","%s");', str_replace('"', '\"', $table_wellarr[$i]));
1896
1897   return ($ret);
1898 }
1899
1900 function show_room(&$room, &$user)
1901 {
1902   $ret = sprintf('gst.st = %d;',  $user->step);
1903   $ret .= sprintf('stat = "%s";',  $user->stat);
1904
1905   $ret .= root_wellcome($user);
1906   $ret .= sprintf('subst = "%s";', $user->subst);
1907   $ret .= sprintf('$("myname").innerHTML = "<b>%s</b>";', xcape($user->name,ENT_COMPAT,"UTF-8"));
1908   for ($i = 0 ; $i < TABLES_N ; $i++) {
1909     $ret .= table_content($room, $user, $i);
1910     $act_content = table_act_content(($user->subst == 'standup'), 
1911                                      $room->table[$i]->player_n, $i, $user->table);
1912     $ret .= sprintf('$("table_act%d").innerHTML = "%s";', $i, $act_content);
1913   }
1914   $ret .= standup_content($room, $user);
1915   
1916   return ($ret);
1917 }
1918
1919
1920
1921 /* show table 
1922 is_transition (is from room to table ?)
1923 is_again      (is another game)
1924
1925 Examples                    of $is_transition, $is_again:
1926   from reload of the page:              FALSE, FALSE
1927   from sitdown in room:                  TRUE, FALSE
1928   from table: asta cmd e tutti passano:  TRUE, TRUE
1929   from table: fine partita:              TRUE, TRUE
1930  */
1931 function show_table(&$room, &$user, $sendstep, $is_transition, $is_again)
1932 {
1933   $table_idx = $user->table;
1934   $table = &$room->table[$table_idx];
1935   $table_pos = $user->table_pos;
1936
1937   $ret = "table_init();";
1938   $ret .= $table->exitlock_show(&$room->user, $table_pos);
1939   if (!$is_again) {
1940     /* GENERAL STATUS */
1941     $ret .= sprintf( 'gst.st = %d; stat = "%s"; subst = "%s"; table_pos = %d;',
1942                      $sendstep, $user->stat, $user->subst, $table_pos);
1943
1944     log_rd(sprintf( 'SHOW_TABLE: gst.st = %d; stat = "%s"; subst = "%s"; table_pos = %d;',
1945                      $sendstep, $user->stat, $user->subst, $table_pos));
1946
1947     /* BACKGROUND */
1948     $ret .= "background_set();";
1949     
1950     /* USERS INFO */
1951     $ret .= sprintf('$("myname").innerHTML = "<b>%s</b>";', xcape($user->name,ENT_COMPAT,"UTF-8"));
1952     $ret .= sprintf('set_names(" %s", " %s", " %s", " %s", " %s"); ',
1953                     xcape($room->user[$table->player[($table_pos)%PLAYERS_N]]->name),
1954                     xcape($room->user[$table->player[($table_pos+1)%PLAYERS_N]]->name),
1955                     xcape($room->user[$table->player[($table_pos+2)%PLAYERS_N]]->name),
1956                     (PLAYERS_N == 3 ? "" :  xcape($room->user[$table->player[($table_pos+3)%PLAYERS_N]]->name)),
1957                     (PLAYERS_N == 3 ? "" :  xcape($room->user[$table->player[($table_pos+4)%PLAYERS_N]]->name)));
1958   }
1959   /* NOTIFY FOR THE CARD MAKER */
1960   if ($is_transition) { //  && $user->subst ==  "asta" superfluo
1961     $ret .= show_table_info(&$room, &$table, $table_pos);
1962   }
1963   if (!$is_again) 
1964     $ret .= table_wellcome($user);
1965
1966   if ($is_transition && !$is_again) { // appena seduti al tavolo, play della mucca
1967     $ret .= playsound("cow.mp3");
1968   }
1969
1970
1971   /* CARDS */
1972   if ($is_transition) { //  && $user->subst ==  "asta" superfluo
1973     $ret .= "|";
1974     
1975     for ($i = 0 ; $i < 8 ; $i++) {
1976       for ($e = 0 ; $e < PLAYERS_N ; $e++) {
1977         $ct = 0;
1978         for ($o = 0 ; $o < 40 && $ct < $i+1 ; $o++) {
1979           if ($table->card[$o]->owner == (($e + $table->gstart) % PLAYERS_N)) {
1980             $ct++;
1981             if ($ct == $i+1)
1982               break;
1983           }
1984         }
1985         log_rd("O ".$o." VAL ".$table->card[$o]->value." Owner: ".$table->card[$o]->owner);
1986         
1987         $ret .= sprintf( ' card_send(%d,%d,%d,%8.2f,%d);|', ($table->gstart + $e) % PLAYERS_N, 
1988                          $i, ((($e + PLAYERS_N - $table_pos + $table->gstart) % PLAYERS_N) == 0 ?
1989                               $table->card[$o]->value : -1), 
1990                          ($i == 7 && $e == (PLAYERS_N - 1) ? 1 : 0.5),$i+1);
1991       }
1992     }    
1993   }
1994   else {
1995     $taked  = array(0,0,0,0,0);
1996     $inhand = array(0,0,0,0,0);
1997     $ontabl  = array(-1,-1,-1,-1,-1);
1998     $cards  = array();
1999
2000     for ($i = 0 ; $i < 40 ; $i++) {
2001       if ($table->card[$i]->stat == 'hand') {
2002         if ($table->card[$i]->owner == $table_pos) {
2003           $cards[$inhand[$table->card[$i]->owner]] = $table->card[$i]->value;
2004         }
2005         $inhand[$table->card[$i]->owner]++;
2006       }
2007       else if ($table->card[$i]->stat == 'take') {
2008         log_main("Card taked: ".$table->card[$i]->value."OWN: ".$table->card[$i]->owner);
2009         $taked[$table->card[$i]->owner]++;
2010       }
2011       else if ($table->card[$i]->stat == 'table') {
2012         $ontabl[$table->card[$i]->owner] = $i;
2013       }
2014     }
2015     $logg = "\n";
2016     for ($i = 0 ; $i < PLAYERS_N ; $i++) {
2017       $logg .= sprintf("INHAND: %d   IN TABLE %d   TAKED %d\n", $inhand[$i], $ontabl[$i], $taked[$i]);
2018     }
2019     log_main("Stat table: ".$logg);
2020
2021     /* Set ours cards. */
2022     $oursarg = "";
2023     for ($i = 0 ; $i < $inhand[$table_pos] ; $i++) 
2024       $oursarg .= ($i == 0 ? "" : ", ").$cards[$i];
2025     for ($i = $inhand[$table_pos] ; $i < 8 ; $i++) 
2026       $oursarg .= ($i == 0 ? "" : ", ")."-1";
2027     $ret .= sprintf('card_setours(%s);', $oursarg);
2028
2029     /* Dispose all cards */
2030     for ($i = 0 ; $i < PLAYERS_N ; $i++) {
2031       /* Qui sotto al posto di + 1 c'era + ->gstart ... credo in modo errato */
2032       $ret .= sprintf('cards_dispose(%d,%d,%d);', $i,
2033                       $inhand[$i], $taked[$i]);
2034
2035       if ($ontabl[$i] != -1) {
2036         $ret .= sprintf('card_place(%d,%d,%d,%d,%d);',$i, $inhand[$i], 
2037                         $table->card[$ontabl[$i]]->value, 
2038                         $table->card[$ontabl[$i]]->x, $table->card[$ontabl[$i]]->y);
2039       }
2040     }
2041   }
2042
2043   /* Show auction */
2044   if ($user->subst == 'asta') {
2045
2046     /* show users auction status */
2047     $showst = "";
2048     for ($i = 0 ; $i < PLAYERS_N ; $i++) {
2049       $user_cur = &$room->user[$table->player[$i]];
2050       $showst .= sprintf("%s%d", ($i == 0 ? "" : ", "), 
2051                          ($user_cur->asta_card < 9 ? $user_cur->asta_card : $user_cur->asta_pnt));
2052     }
2053     if (PLAYERS_N == 3)
2054         $showst .= ",-2,-2";
2055     $ret .= sprintf('show_astat(%s);', $showst);
2056
2057     if ($table->asta_win != -1 && $table->asta_win == $table_pos) {
2058       /* show card chooser */
2059       $ret .= sprintf('choose_seed(%s); $("astalascio").style.visibility = ""; $("asta").style.visibility = "hidden";',
2060                       $table->asta_card);
2061     }
2062     else {
2063       /* show auction */
2064       if ($table_pos == ($table->gstart % PLAYERS_N) &&
2065           $table->asta_win == -1) 
2066         $ret .= sprintf('dispose_asta(%d,%d, %s);', 
2067                         $table->asta_card + 1, $table->asta_pnt+1, ($user->handpt <= 2 ? "true" : "false"));
2068       else
2069         $ret .= sprintf('dispose_asta(%d,%d, %s);',
2070                         $table->asta_card + 1, -($table->asta_pnt+1), ($user->handpt <= 2 ?  "true" : "false"));
2071     }
2072
2073     /* Remark */
2074     if ($table->asta_win == -1) { // auction case
2075       if ($table_pos == ($table->gstart % PLAYERS_N)) 
2076         $ret .= "remark_on();";
2077       else
2078         $ret .= "remark_off();";
2079     }
2080     else { // chooseed case
2081       if ($table_pos == $table->asta_win) 
2082         $ret .= "remark_on();";
2083       else
2084         $ret .= "remark_off();";
2085     }
2086   }
2087   else if ($user->subst == 'game') {
2088     /* HIGHLIGHT */
2089     if (($table->gstart + $table->turn) % PLAYERS_N == $table_pos) 
2090       $ret .= "is_my_time = true; remark_on();";
2091     else
2092       $ret .= "remark_off();";
2093     
2094     /* WHO CALL AND WATH */
2095     $ret .= briscola_show($room, $table, $user);
2096     
2097   }
2098   return ($ret);
2099 } // end function show_table(...
2100
2101 function calculate_winner(&$table)
2102 {
2103   $briontab = FALSE;
2104   $ontab = array();
2105   $ontid = array();
2106   $cur_win  =  -1;
2107   $cur_val  = 100;
2108   $cur_seed = $table->briscola - ($table->briscola % 10);
2109
2110   for ($i = 0 ; $i < 40 ; $i++) {
2111     if ($table->card[$i]->stat != "table")
2112       continue;
2113
2114     log_wr(sprintf("Card On table: [%d]", $i));
2115
2116     $v = $table->card[$i]->value; 
2117     $ontab[$table->card[$i]->owner] = $v;
2118     $ontid[$table->card[$i]->owner] = $i;
2119     /* se briscola setto il flag */
2120     if (($v - ($v % 10)) == $cur_seed)
2121       $briontab = TRUE;
2122   }
2123
2124   if ($briontab == FALSE) {
2125     $cur_win  = $table->gstart;
2126     $cur_val  = $ontab[$cur_win];
2127     $cur_seed = $cur_val - ($cur_val % 10);
2128   }
2129
2130   for ($i = 0 ; $i < PLAYERS_N ; $i++) {
2131     if (($ontab[$i] - ($ontab[$i] % 10)) == $cur_seed) {
2132       if ($ontab[$i] < $cur_val) {
2133         $cur_val = $ontab[$i];
2134         $cur_win = $i;
2135       }
2136     }
2137   }
2138
2139   for ($i = 0 ; $i < PLAYERS_N ; $i++) {
2140     $table->card[$ontid[$i]]->owner = $cur_win;
2141     $table->card[$ontid[$i]]->stat =  "take"; // Card stat
2142   }
2143   return ($cur_win);
2144 }
2145
2146 function calculate_points(&$table)
2147 {
2148   GLOBAL $G_all_points; 
2149
2150   $pro = 0;
2151
2152   if ($table->asta_pnt == 60)
2153     $table->asta_pnt = 61;
2154
2155   $table->old_reason = "";
2156   $table->old_win = $table->asta_win;
2157   $table->old_friend = $table->friend;
2158   $table->old_asta_pnt = $table->asta_pnt;
2159
2160   for ($i = 0 ; $i < 40 ; $i++) {
2161     $ctt = $table->card[$i]->value % 10;
2162     $own = $table->card[$i]->owner;
2163     if ($own == $table->asta_win || $own == $table->friend) 
2164       $pro += $G_all_points[$ctt];
2165   }
2166
2167   log_wr(sprintf("PRO: [%d]", $pro));
2168
2169   
2170   if ($table->asta_pnt == 61 && $pro == 60) { // PATTA !
2171     $table->points[$table->points_n % MAX_POINTS] = array();
2172     for ($i = 0 ; $i < PLAYERS_N ; $i++) 
2173       $table->points[$table->points_n % MAX_POINTS][$i] = 0;
2174     $table->points_n++;
2175     $table->old_pnt = $pro;
2176     $table->mult *= 2;
2177
2178     return;
2179   }
2180
2181   if ($pro >= $table->asta_pnt) 
2182     $sig = 1;
2183   else
2184     $sig = -1;
2185
2186   $table->points[$table->points_n % MAX_POINTS] = array();
2187   for ($i = 0 ; $i < 5 ; $i++) {
2188     if ($i == $table->asta_win) 
2189       $pt = ($i == $table->friend ? 4 : 2);
2190     else if ($i == $table->friend) 
2191       $pt = 1;
2192     else
2193       $pt = -1;
2194
2195     log_wr(sprintf("PRO: pt[%d][%d] = %d", $table->points_n % MAX_POINTS, $i, $pt));
2196
2197     $pt = $pt * $sig * $table->mult * ($pro == 120 ? 2 : 1);
2198
2199     log_wr(sprintf("PRO:[%d][%d][%d]", $sig, $table->mult, ($pro == 120 ? 2 : 1)));
2200     
2201     $table->points[$table->points_n % MAX_POINTS][$i] = $pt;
2202     $table->total[$i] += $pt;
2203   }
2204   $table->points_n++;
2205   $table->old_pnt = $pro;
2206   $table->mult = 1;
2207 }
2208
2209 function validate_sess($sess) 
2210 {
2211   if (strlen($sess) == SESS_LEN) 
2212     return (TRUE);
2213   else
2214     return (FALSE);
2215 }
2216
2217 function validate_name($name) 
2218 {
2219   $name_new = str_replace(' ', '_', substr(trim($name),0,12));
2220
2221   for ($i = 0 ; $i < strlen($name_new) ; $i++) {
2222     $c = $name_new[$i];
2223     if (($c >= "a" && $c <= "z") || ($c >= "A" && $c <= "Z") || ($c >= "0" && $c <= "9"))
2224       return ($name_new);
2225   }
2226
2227   return (FALSE);
2228 }
2229
2230 function playsound($filename)
2231 {
2232   return (sprintf('playsound("flasou", "%s");', $filename));
2233 }
2234
2235 function secstoword($secs)
2236 {
2237   $mins = floor($secs / 60);
2238   $secs = $secs % 60;
2239   if ($mins > 0) 
2240     $ret = sprintf("%d minut%s%s", $mins, ($mins > 1 ? "i" : "o"), ($secs > 0 ? " e " : ""));
2241   
2242   if ($secs > 0)
2243     $ret .= sprintf("%d second%s", $secs, ($secs > 1 ? "i" : "o"));
2244   
2245   return ($ret);
2246 }
2247
2248 ?>