mop_flush modify
[brisk.git] / web / Obj / brisk.phh
1 <?php
2 /*
3  *  brisk - brisk.phh
4  *
5  *  Copyright (C) 2006-2011 Matteo Nastasi
6  *                          mailto: nastasi@alternativeoutput.it 
7  *                                  matteo.nastasi@milug.org
8  *                          web: http://www.alternativeoutput.it
9  *
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.
14  *
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.
22  *
23  */
24
25
26 define(BRISK_CONF, "brisk.conf.pho");
27 define(FTOK_PATH, "/var/lib/brisk");
28 define(LEGAL_PATH, "/tmp/legal_brisk");
29 define(PROXY_PATH, "/var/lib/brisk_proxy");
30 define(TABLES_N, 36);
31 define(TABLES_AUTH_N, 4);
32 define(PLAYERS_N, 3);
33 define(MAX_POINTS, 5);
34 define(MAX_PLAYERS, (20 + (PLAYERS_N * TABLES_N)));
35 define(SHM_DIMS_MIN, (50000 + 10000 * TABLES_N + 15000 * MAX_PLAYERS));
36 define(SHM_DIMS_MAX, SHM_DIMS_MIN + 1048576);
37 define(SHM_DIMS_DLT, 65536);
38
39 define(SHM_DIMS_U_MIN, 4096);
40 define(SHM_DIMS_U_MAX, 65536);
41 define(SHM_DIMS_U_DLT, 4096);
42
43 define(COMM_N, 18);
44 define(COMM_GEN_N, 50);
45
46 define(CHAT_N, 3);
47 define(CHAT_ILL_TIME, 6);
48
49 define(SESS_LEN, 13);
50 define(STREAM_TIMEOUT, 20);
51 define(EXPIRE_TIME_RD, 180);
52 define(EXPIRE_TIME_SMAMMA, 360); 
53 define(EXPIRE_TIME_WAG, 10);
54 define(WAKEUP_TIME, 12); 
55 // BAN_TIME da allineare anche in commons.js
56 define(BAN_TIME, 3600); 
57 define(GARBAGE_TIMEOUT, 10);
58 define(NICKSERV, "<i>BriskServ</i>");
59
60 define(LOCK_SHARE_MAX, 10000);
61
62 define(DBG_ONL2, 0x0001);
63 define(DBG_ONLY, 0x0002);
64 define(DBG_MAIN, 0x0004);
65 define(DBG_READ, 0x0008);
66 define(DBG_REA2, 0x0010);
67 define(DBG_SEND, 0x0020);
68 define(DBG_LOCK, 0x0040);
69 define(DBG_WRIT, 0x0080);
70 define(DBG_LOAD, 0x0100);
71 define(DBG_AUTH, 0x0200);
72 define(DBG_CRIT, 0x0400);
73 define(DBG_LMOP, 0x0800);
74 define(DBG_TRAC, 0x1000);
75 define(DBG_SHME, 0x2000);
76 // NOTE: BRISK DEBUG must be a numerical constant, not the result of operations on symbols 
77 define(BRISK_DEBUG, 0xffffffbf);
78
79 define(BRISK_SINGLE_DEBUG,0);
80 define(BRISK_SINGLE_SESS, "");
81 // define(DEBUGGING, "local");
82
83 require_once("$DOCUMENT_ROOT/Etc/".BRISK_CONF);
84
85 $mlang_brisk = array( 'btn_backstand'=> array( 'it' => 'torna in piedi',
86                                                'en' => 'back standing' ),
87                       'btn_close' => array( 'it' => 'chiudi',
88                                             'en' => 'close'),
89
90                       'tit_all' => array( 'it' => 'tutti',
91                                           'en' => 'all' ),
92
93                       'tabtout_a'=> array( 'it' => '<br>Sei stato inattivo per ', 
94                                            'en' => '<br>You are being idle for ' ),
95                       'tabtout_b'=> array( 'it' => ' minuti. <br><br>Quindi ritorni tra i <b>Giocatori in piedi</b>.',
96                                            'en' => ' minutes. <br><br>Then you return with the <b>standing players</b>.'),
97                       'tickmust' => array( 'it' => '<br>Per attivare il messaggio di segnalazione del tavolo occorre essere seduti.<br><br>',
98                                            'en' => '<br>To activate the signalling message of the table it\'s necessary to be sitting<br><br>'),
99                       'tickjust' => array( 'it' => '<br>Il messaggio di segnalazione del tavolo &egrave; gi&agrave; attivato.<br><br> ',
100                                            'en' => 'EN<br>Il messaggio di segnalazione del tavolo &egrave; gi&agrave; attivato.<br><br> '),
101                       'tickwait' => array( 'it' => '<br>Il messaggio di segnalazione del tavolo<br>&egrave; disattivato ancora per %d second%s.<br><br>',
102                                            'en' => 'EN<br>The signalling message of the table<br>will be deactivated for %d second%s.<br><br>'),
103                       'alarpass' => array( 'it' => '<br>La password digitata non &egrave; corretta.<br><br>',
104                                            'en' => '<br>The entered password is not correct.<br><br>'),
105                       'alarret'  => array( 'it' => '"Alarm \\"<b>%s</b>\\" inviato a <b>%s</b>."',
106                                            'en' => '"Alarm \\"<b>%s</b>\\" sent to <b>%s</b>."'),
107                       'authmust' => array( 'it' => '<b>Per autenticare qualcuno devi a tua volta essere autenticato.</b>',
108                                            'en' => '<b>To authenticate someone you have to be authenticated.</b>'), // on your turn
109                       'mesgmust' => array( 'it' => '<b>Per inviare un messaggio devi essere autenticato.</b>',
110                                            'en' => '<b>To send a message you have to be authenticated.</b>'),
111                       'nickmust' => array( 'it' => 'Il nickname deve contenere almeno una lettera dell\'alfabeto o una cifra.',
112                                            'en' => 'The nickname have to contain at least one letter or one number.'),
113                       'nickdupl' => array( 'it' => 'Nickname <b>%s</b> gi&agrave; in uso.',
114                                            'en' => 'The nickname <b>%s</b> is already in use.'),
115                       'authchan' => array( 'it' => '<b>Non puoi cambiare nick a un tavolo per soli autenticati o se sei in modalità isolata.</b>',
116                                            'en' => '<b>You can\'t change your nickname into a table for only authenticated or if you are in isolation mode.</b>'),
117                       'nickjust' => array( 'it' => 'Il nickname <b>\'%s\'</b> &egrave; gi&agrave; registrato, <b>se il suo proprietario si autentificher&agrave; verrai rinominato d\'ufficio come ghost<i>N</i>.</b>',
118                                            'en' => 'The nickname <b>\'%s\'</b> is already registered, <b>if its proprietary will authenticate you will named again officially ghost<i>N</i>.</b>'), // FIXME: him ???
119                       'statunkn' => array( 'it' => 'Questo stato non esiste.',
120                                            'en' => 'This state don\'t exists.'),
121                       'tabincon' => array( 'it' => '<br>I dati del tavolo n&deg; %d sono inconsistenti, verranno resettati.<br><br>Torni in piedi.<br><br>',
122                                            'en' => 'EN <br>I dati del tavolo n&deg; %d sono inconsistenti, verranno resettati.<br><br>Torni in piedi.<br><br>'),
123                       'listmust' => array( 'it' => '<b>Per andare in isolamento non bisogna essere seduti a tavoli non riservati.</b>',
124                                            'en' => '<b>To go to isolation you must don\'t stay on not reserved tables</b>'),
125
126                       'tit_onauth'=>array( 'it' => '(solo aut.)',
127                                            'en' => '(only aut.)'),
128                       'tit_onisol'=>array( 'it' => '(isolam.to)',
129                                            'en' => '(isolation)'),
130                       'db_failed' =>array('it'  => '<br>Il collegamento al database è fallito.<br>Temporaneamente tutte le autenticazioni verranno sospese, accederai a Brisk come un utente normale.<br><br>Ci scusiamo per il disagio.',
131                                           'en'  => 'Connection to the database failed<br>All authentications are suspended temporarly, you login as normal user.<br>We are about the limitation')
132                       
133
134 );
135
136 $G_lng = langtolng($G_lang);
137
138 $G_all_points = array( 11,10,4,3,2, 0,0,0,0,0 );
139 $G_brisk_version = "3.5.6";
140
141 /* MLANG: ALL THE INFO STRINGS IN brisk.phh */
142 $root_wellarr = array( 'it' => array ( 'Brisk (Ver. '.$G_brisk_version.'), <b>NOVITA\'</b>: (tecnica) utilizzo di locking tipo lettori/scrittori al posto del locking esclusivo generico.',
143                                        'Se vuoi iscriverti alla <a target="_blank" href="mailto:ml-briscola+subscribe@milug.org">Mailing List</a>, cliccala!' ),
144                        'en' => array ( 'Brisk (Ver. '.$G_brisk_version.'), <b>NEWS</b>: usage of reader/writer locking instead of generic exclusive locking.',
145                                        'If you want to subscribe our <a target="_blank" href="ml-briscola+subscribe@milug.org">Mailing List</a>, click it!' ) );
146
147 $G_room_help = array( 'it' => '
148 <div style=\\"text-align: left; padding: 8px;\\">
149 <b>Descrizione</b><br>
150 Questa è un\'implementazione della briscola in cinque, cos&igrave; come &egrave; spiegata su
151 <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>
152 <b>Configurazione del browser.</b><br>
153 Occorre abilitare i cookies.<br>
154 <br>
155 <b>Uso del sito</b><br>
156 Potete sedervi a un tavolo o rimanere in piedi.<br>
157 Se al vostro tavolo si raggiungono i 5 giocatori inizia automaticamente la partita.<br>
158 <br>
159 <b>Partita</b><br>
160 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>
161 Chi vince l\'asta dovr&agrave; decidere il seme della carta scelta e inizier&agrave; la mano.<br>
162 Per giocare le carte dovrete trascinarle nel quadrato al centro del vostro schermo.<br><br>
163 Il vostro turno &egrave; sempre segnalato da una cornice verde lampeggiante intorno al quadrato al centro del vostro schermo.<br><br>
164 Durante la partita, se vorrete ricaricare la pagina, usate l\'apposito bottone \\"reload\\" in basso a destra.<br>
165 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.
166 <dl>
167 <dt><b>Comandi della chat</b>
168 <dd><b>/nick <i>&lt;nuovo_nickname&gt;</i></b> - cambio di nickname
169 <dd><b>/tav <i>&lt;frase di invito&gt;</i></b> - invito per gli altri giocatori al tavolo dove si &egrave; seduti 
170 <dd><b>/st <i>&lt;stato&gt;</i></b> - cambia l\'icona associata al tuo user; <i>stato</i> pu&ograve; valere: \\"normale\\", \\"fuori\\", \\"pausa\\", \\"cibo\\", \\"cane\\", \\"lavoro\\", \\"presente\\" oppure \\"sigaretta\\"
171 <dd><b>/authreq</b> - se si &egrave; autenticati permette di garantire per un utente fidato
172 <dd><b>/mesgtoadm</b> - se si &egrave; autenticati permette di lasciare un messaggio all\'amministratore del sito
173 <dd><b>/listen &lt;all or auth&gt;</b> - se si &egrave; autenticati permette leggere solo i messaggi degli altri autenticati (auth) o di tutti (all)
174 </dl>
175 </div>
176 ',
177
178 'en' => '
179 <div style=\\"text-align: left; padding: 8px;\\">
180 <b>EN Descrizione</b><br>
181 EN Questa è un\'implementazione della briscola in cinque, cos&igrave; come &egrave; spiegata su
182 <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>
183 <b>EN Configurazione del browser.</b><br>
184 Occorre abilitare i cookies.<br>
185 <br>
186 <b>Uso del sito</b><br>
187 Potete sedervi a un tavolo o rimanere in piedi.<br>
188 Se al vostro tavolo si raggiungono i 5 giocatori inizia automaticamente la partita.<br>
189 <br>
190 <b>Partita</b><br>
191 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>
192 Chi vince l\'asta dovr&agrave; decidere il seme della carta scelta e inizier&agrave; la mano.<br>
193 Per giocare le carte dovrete trascinarle nel quadrato al centro del vostro schermo.<br><br>
194 Il vostro turno &egrave; sempre segnalato da una cornice verde lampeggiante intorno al quadrato al centro del vostro schermo.<br><br>
195 Durante la partita, se vorrete ricaricare la pagina, usate l\'apposito bottone \\"reload\\" in basso a destra.<br>
196 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.
197 <dl>
198 <dt><b>Comandi della chat</b>
199 <dd><b>/nick <i>&lt;nuovo_nickname&gt;</i></b> - cambio di nickname
200 <dd><b>/tav <i>&lt;frase di invito&gt;</i></b> - invito per gli altri giocatori al tavolo dove si &egrave; seduti 
201 <dd><b>/st <i>&lt;stato&gt;</i></b> - cambia l\'icona associata al tuo user; <i>stato</i> pu&ograve; valere: \\"normale\\", \\"fuori\\", \\"pausa\\", \\"cibo\\", \\"cane\\", \\"lavoro\\", \\"presente\\" oppure \\"sigaretta\\"
202 <dd><b>/authreq</b> - se si &egrave; autenticati permette di garantire per un utente fidato
203 <dd><b>/mesgtoadm</b> - se si &egrave; autenticati permette di lasciare un messaggio all\'amministratore del sito
204 <dd><b>/listen &lt;all or auth&gt;</b> - se si &egrave; autenticati permette leggere solo i messaggi degli altri autenticati (auth) o di tutti (all)
205 </dl>
206 </div>
207 ');
208
209 //  
210 $G_room_passwdhowto = array( 'it' => '<br><h2>Come registrarsi su Brisk</h2>
211 <div style=\\"text-align: left; padding: 8px;\\">
212 Attualmente ci sono due metodi per ottenere una password sul sito:<br><br>
213 <dir>
214 <li><b>Facendosi garantire da un utente di Brisk che gi&agrave; possidede una password</b><br><br>
215 <li><b>Auto-garantendosi utilizzando uno dei seguenti sistemi di identificazione digitale:</b><br><br>
216 <dir>
217 <li>Carta Regionale dei Servizi della Lombardia (la tessera sanitaria)
218 <li>Carta Regionale dei Servizi del Friuli Venezia Giulia (la tessera sanitaria)
219 <li>Smart card di InfoCamere
220 </dir>
221 <br>
222 <b>Per auto-garantisi occorre possedere:</b><br><br>
223 <dir>
224 <li>il codice PIN della propria carta
225 <li>il lettore di smart-card per collegare la carta al PC (acquistabile di solito presso le edicole)
226 </dir>
227 <br>
228 <b>Per effettuare la registrazione collegarsi al sito:</b><br><br>
229 <dl>
230 <dd><a class=\\"flat\\"  target=\\"_blank\\" href=\\"https://brisk.mine.nu\\">https://brisk.mine.nu</a>
231 </dl>
232 <br><br>
233 Se sei in possesso di una carta che permette l\'identificazione via internet che non è nell\'elenco qui sopra
234 <a class=\\"flat\\" href=\\"mailto:authadmbrisk@alternativeoutput.it\\">fai una segnalazione</a>.
235
236 </dir>
237 </div>
238 ',
239                              'en' => '<br><h2>EN Come registrarsi su Brisk</h2>
240 <div style=\\"text-align: left; padding: 8px;\\">
241 EN Attualmente ci sono due metodi per ottenere una password sul sito:<br><br>
242 <dir>
243 <li><b>Facendosi garantire da un utente di Brisk che gi&agrave; possidede una password</b><br><br>
244 <li><b>Auto-garantendosi utilizzando uno dei seguenti sistemi di identificazione digitale:</b><br><br>
245 <dir>
246 <li>Carta Regionale dei Servizi della Lombardia (la tessera sanitaria)
247 <li>Carta Regionale dei Servizi del Friuli Venezia Giulia (la tessera sanitaria)
248 </dir>
249 <br>
250 <b>Per auto-garantisi occorre possedere:</b><br><br>
251 <dir>
252 <li>il codice PIN della propria carta
253 <li>il lettore di smart-card per collegare la carta al PC (acquistabile di solito presso le edicole)
254 </dir>
255 <br>
256 <b>Per effettuare la registrazione collegarsi al sito:</b><br><br>
257 <dl>
258 <dd><a class=\\"flat\\"  target=\\"_blank\\" href=\\"https://brisk.mine.nu\\">https://brisk.mine.nu</a>
259 </dl>
260 <br><br>
261 Se sei in possesso di una carta che permette l\'identificazione via internet che non è nell\'elenco qui sopra
262 <a class=\\"flat\\" href=\\"mailto:authadmbrisk@alternativeoutput.it\\">fai una segnalazione</a>.
263
264 </dir>
265 </div>
266 ' );
267 /*
268 <dd>Seguendo la procedura di auto-garanzia all\'url: <a href="https://brisk.mine.nu">https://brisk.mine.nu</a>
269 ';
270 */
271
272 $G_room_about = array( 'it' => '<br>
273 <div id=\\"header\\" class=\\"header\\">
274   <img class=\\"nobo\\" src=\\"img/brisk_logo64.png\\">
275   briscola chiamata in salsa ajax
276 </div>
277 <br><b>version '.$G_brisk_version.'</b><br><br>
278 Copyright 2006-2009 <a href=\\"mailto:brisk@alternativeoutput.it\\">Matteo Nastasi</a> (aka mop)<br><br>',
279                       'en' => '<br>
280 <div id=\\"header\\" class=\\"header\\">
281   <img class=\\"nobo\\" src=\\"img/brisk_logo64.png\\">
282   declaration briscola in ajax sauce <b>(Beta)</b>
283 </div>
284 <br><b>version '.$G_brisk_version.'</b><br><br>
285 Copyright 2006-2009 <a href=\\"mailto:brisk@alternativeoutput.it\\">Matteo Nastasi</a> (aka mop)<br><br>');
286
287 function mop_flush()
288 {
289     ob_flush();
290     flush();
291 }
292
293 function file_lock($fname, $is_exclusive)
294 {
295     if (($res = fopen($fname, "r+")) == FALSE) {
296         return (FALSE);
297     }
298         
299     if (flock($res, ($is_exclusive ? LOCK_EX : LOCK_SH)) == FALSE) {
300         fclose($res);
301         return (FALSE);
302     }
303
304     return ($res);
305 }
306
307 function file_unlock($res)
308 {
309     if ($res != FALSE) {
310         flock($res, LOCK_UN);
311         fclose($res);
312     }
313 }
314
315 function webservers_exceeded()
316 {
317     return(file_exists(PROXY_PATH."/webservers_exceded.flag"));
318 }
319
320 function webservers_check()
321 {
322     GLOBAL $G_webserver_max;
323
324     $ct = 0;
325
326     $dh = opendir('/proc');
327     while (($file = readdir($dh)) !== false) {
328         if (preg_match('/[0-9]+/', $file)) {
329             $cmdline = explode("\0", file_get_contents('/proc/'.$file.'/cmdline'));
330             // echo "xxx".$cmdline[0].$n;
331             if (strstr('/usr/sbin/apache2', $cmdline[0]) != FALSE) {
332                 // echo "yyy".$cmdline[0].$n;
333                 $ct++;
334             }
335         }
336     }
337     closedir($dh);
338
339     if ($ct >= $G_webserver_max) {
340         touch(PROXY_PATH."/webservers_exceded.flag");
341     }
342     else {
343         unlink(PROXY_PATH."/webservers_exceded.flag");
344     }
345     return ($ct);
346 }
347
348 $escinp_from = array( "\""     );
349 $escinp_to = array(   "&quot;" );
350
351 function escinput($s)
352 {
353     GLOBAL $escinp_from, $escinp_to;
354     
355     return str_replace($escinp_from, $escinp_to, $s);
356 }
357
358 function eschtml($s)
359 {
360     return htmlentities($s);
361 }
362
363 function esclfhtml($s)
364 {
365     return str_replace("\n", "<br>\n", htmlentities($s));
366 }
367
368
369 function langtolng($lang)
370 {
371   GLOBAL $G_lang;
372
373   return ($G_lang == 'en' ? '-en' : '');
374 }
375
376 function csplitter($in, $sep)
377 {
378   $st = 0;
379   $id = 0;
380   $out = array();
381   $out[$id] = "";
382   for ($i = 0 ; $i < strlen($in) ; $i++) {
383     $ini = substr($in, $i, 1);
384     if ($st == 0) {
385       if ($ini == '\\')
386         $st = 1;
387       else if ($ini == $sep) {
388         $id++;
389         $out[$id] = "";
390       }
391       else {
392         $out[$id] .= $ini;
393       }
394     }
395     else if ($st == 1) {
396       $out[$id] .= $ini;
397       $st = 0;
398     }
399   }
400
401   return ($out);
402 }
403
404 function xcape($s)
405 {
406   $from = array (   '\\',     '@',        '|' );
407   $to   = array ( '\\\\', '&#64;', '&brvbar;' );
408
409   return (str_replace($from, $to, htmlentities($s,ENT_COMPAT,"UTF-8")));
410 }
411
412 function xcapelt($s)
413 {
414   $from = array (   '\\',     '|',  "\t",  "\n");
415   $to   = array ( '\\\\',   '\\|', "\\t", "\\n");
416
417   return (str_replace($from, $to, $s));
418 }
419
420 function xcapemesg($s)
421 {
422   $from = array (  "\n");
423   $to   = array ( "\\n");
424
425   return (str_replace($from, $to, $s));
426 }
427
428
429 class Vect {
430     function Vect($a)
431     {
432         $this->el = $a;
433     }
434     
435     function getbyid($idx)
436     {
437         return ($this->el[$idx]);
438     }
439     
440     function setbyid($idx, $v)
441     {
442         $this->el[$idx] = $v;
443     }
444 }
445
446 class Table {
447   var $idx;
448   var $player;
449   var $player_n;
450
451   var $auth_only;     // se tavolo riservato o libero
452
453   var $wag_own;
454   var $wag_com;
455   var $wag_tout;
456
457   var $table_token;
458   var $table_start;   // information field
459
460   var $wakeup_time;
461
462   function Table() 
463   {
464   }
465   
466   function create($idx) 
467   {
468     if (($thiz = new Table()) == FALSE)
469       return (FALSE);
470
471     $thiz->idx       =   $idx;
472     $thiz->player    =   array();
473     $thiz->player_n  =   0;
474     $thiz->auth_only =   FALSE;
475
476     $thiz->wag_own   =  -1;
477     $thiz->wag_com   =  "";
478     $thiz->wag_tout   =  0;
479
480     $thiz->table_token  = "";
481     $thiz->table_start  = 0;
482     
483     $thiz->wakeup_time = 0;
484
485     return ($thiz);
486   }
487
488   function copy($from)
489   {
490     $this->idx = $from->idx;
491     $this->player = array();
492     for ($i = 0 ; $i < $from->player_n ; $i++)
493       $this->player[$i] = $from->player[$i];
494     $this->player_n = $from->player_n;
495
496     log_main("PLAYER_N - parent::copy.".$this->player_n);
497     
498     $this->auth_only =  $from->auth_only;
499
500     $this->wag_own   =  $from->wag_own;
501     $this->wag_com   =  $from->wag_com;
502     $this->wag_tout  =  $from->wag_tout;
503
504     $this->table_token  = $from->table_token;
505     $this->table_start  = $from->table_start;
506
507     $this->wakeup_time = $from->wakeup_time;
508   }
509
510   function myclone($from)
511   {
512     if (($thiz = new Table()) == FALSE)
513       return (FALSE);
514
515     $this->copy($from);
516
517     return ($thiz);
518   }
519   
520   function spawn($from)
521   {
522     if (($thiz = new Table()) == FALSE)
523       return (FALSE);
524     
525     $thiz->idx = $from->idx;
526     $thiz->player = array();
527     for ($i = 0 ; $i < $from->player_n ; $i++)
528       $thiz->player[$i] = $i;
529     $thiz->player_n = $from->player_n;
530
531     $thiz->auth_only =  $from->auth_only;
532
533     $thiz->wag_own = $from->wag_own;
534     $thiz->wag_com = $from->wag_com;
535     $thiz->wag_tout  =  $from->wag_tout;
536
537     $thiz->table_token  = $from->table_token;
538     $thiz->table_start  = $from->table_start;
539
540     $thiz->wakeup_time = $from->wakeup_time;
541
542     return ($thiz);
543   }
544
545   function wag_set($user_idx, $mesg)
546   {
547     log_main("WAG_SET");
548
549     $this->wag_own  =  $user_idx;
550     $this->wag_com  =  $mesg;
551     $this->wag_tout =  0;
552   }
553
554   function wag_reset($timeout)
555   {
556     log_main("WAG_RESET");
557
558     unset($this->wag_own);
559     $this->wag_own  = -1;
560     $this->wag_com  = "";
561     $this->wag_tout = $timeout;
562   }
563
564   function player_get($idx)
565   {
566     return ($this->player[$idx]);
567   }
568
569   function player_set($idx, $player)
570   {
571     $this->player[$idx] = $player;
572   }
573
574   function user_add($idx)
575   {
576     $this->player[$this->player_n] = $idx;
577     $this->player_n++;
578     
579     return ($this->player_n - 1);
580   }
581   
582   function user_rem($room, $user)
583   {
584     $tabpos = $user->table_pos;
585     
586     /* verifico la consistenza dei dati */
587     if ($room->user[$this->player[$tabpos]] == $user) {
588       
589       /* aggiorna l'array dei giocatori al tavolo. */
590       for ($i = $tabpos ; $i < $this->player_n-1 ; $i++) {
591         $this->player[$i] = $this->player[$i+1];
592         $user_cur = $room->user[$this->player[$i]];
593         $user_cur->table_pos = $i;
594       }
595       $this->player_n--;
596     }
597     else {
598       log_main("INCONSISTENCY ON TABLE.");
599     }
600   }
601
602
603
604   //      $ret .= table_act_content(($user->subst == 'standup'), $this->table[$i]->player_n, $i, $user->table, 
605   //                              ($this->table[$i]->auth_only == FALSE ? TRUE : $user->flags & USER_FLAG_AUTH));
606
607   // function act_content($isstanding, $sitted, $table, $cur_table, $allowed)
608   function act_content($user)
609   {
610     $ret = "";
611     $isstanding = ($user->subst == 'standup');
612     $sitted = $this->player_n;
613     $table = $this->idx;
614     $cur_table = $user->table;
615     $allowed = TRUE;
616
617     if ($isstanding) {
618       if ($sitted < PLAYERS_N) {
619         if ($this->auth_only) {
620           if ($user->flags & USER_FLAG_AUTH) 
621             $act = "sitreser";
622           else
623             $act = 'reserved';
624         }
625         else {
626           $act = 'sit';
627         }
628       }
629       else {
630         $act = 'none';
631       }
632     }
633     else {
634       if ($table == $cur_table)
635         $act = 'wake';
636       else
637         $act = 'none';
638     }
639     
640     if ($act != '')
641       $ret = sprintf('j_tab_act_cont(%d, \'%s\');', $table, $act);
642     
643     return ($ret);
644   }
645 } // end class Table
646
647
648 // User flags
649 define(USER_FLAG_AUTH,     0x02);
650
651 define(USER_FLAG_MAP_AUTH, 0x0c);
652 define(USER_FLAG_LISTAUTH, 0x04);
653 define(USER_FLAG_ISOLAUTH, 0x08);
654
655 define(USER_FLAG_DBFAILED, 0x10); 
656
657 //   user status
658 define(USER_FLAG_S_NORM,  0x000); // done
659 define(USER_FLAG_S_PAU,   0x100); // done
660 define(USER_FLAG_S_OUT,   0x200); // done
661 define(USER_FLAG_S_DOG,   0x300); // done
662 define(USER_FLAG_S_EAT,   0x400); // done
663 define(USER_FLAG_S_WRK,   0x500); // done
664 define(USER_FLAG_S_SMK,   0x600); // done
665 define(USER_FLAG_S_EYE,   0x700); // done
666 define(USER_FLAG_S_RABB,  0x800); // done
667 define(USER_FLAG_S_SOCC,  0x900); // done
668 define(USER_FLAG_S_BABY,  0xa00); // done
669 define(USER_FLAG_S_MOP,   0xb00); // done
670
671 define(USER_FLAG_S_ALL,   0xf00); // done
672
673 /* type of user normal, supporter etc ... */
674 define(USER_FLAG_TY_ALL,     0xff0000); // done
675 define(USER_FLAG_TY_NORM,    0x010000); // done
676 define(USER_FLAG_TY_SUPER,   0x020000); // done
677 //  ... other usefull status ...
678 define(USER_FLAG_TY_SUSPEND, 0x400000); // done
679 define(USER_FLAG_TY_DISABLE, 0x800000); // done
680
681 class User {
682   var $idx;        // index in the users array when you are in game
683   var $idx_orig;   // index in the users array when you aren't in game
684   var $code;       // authentication code
685   var $name;       // name of the user
686   var $sess;       // session of the user
687   var $ip;         // ip of the user
688   var $lacc;       // last access (for the cleanup)
689   var $laccwr;     // last access (for the cleanup)
690   var $bantime;    // timeout to temporary ban
691   var $stat;       // status (outdoor, room, table, game, ...)
692   var $subst;      // substatus for each status   
693   var $step;       // step of the current status
694   var $trans_step; // step to enable transition between pages (disable == -1)
695   var $comm;       // commands array
696   // var $asta_card;  // 
697   // var $asta_pnt;   //
698   // var $handpt;     // Total card points at the beginning of the current hand.
699   // var $exitislock; // Player can exit from the table ?
700
701   // FIXME: the table_orig field must be removed after table field verify of index management (in spawned table
702   //        it is allways ZERO
703   var $table;      // id of the current table when you are in game
704   var $table_orig; // id of the current table when you aren't in game
705   var $table_pos;  // idx on the table
706   var $table_token;// token that identify a game on a table
707   var $flags;      // Bitfield with: AUTHENTICATE: 0x02 
708   var $the_end;    // Flag to change the end of the session
709
710   var $chat_lst;      // Last chat line
711   var $chattime;      // Array of chat times
712   var $chat_cur;      // Current chat line number
713   var $chat_ban;      // Time for ban chat
714   var $chat_dlt;      // Delta t for ban
715   var $shm_sz;
716
717   function User() {
718   }
719
720   function create($idx, $name, $sess, $stat = "", $subst = "", $table = -1, $ip="0.0.0.0") {
721     if (($thiz = new User()) == FALSE)
722       return (FALSE);
723
724     $thiz->idx        = $idx;
725     $thiz->idx_orig   = $idx;
726     $thiz->code       = -1;
727     $thiz->name       = $name;
728     $thiz->sess       = $sess;
729     $thiz->ip         = $ip;
730     $thiz->lacc       = time();
731     $thiz->laccwr     = time();
732     $thiz->bantime    = 0;
733     $thiz->stat       = $stat;
734     $thiz->subst      = $subst;
735     $thiz->step       = 1;
736     $thiz->trans_step = -1;
737     $thiz->comm       = array();
738     $thiz->asta_card  = -2;
739     $thiz->asta_pnt   = -1;
740     $thiz->handpt     = -1;
741     $thiz->exitislock = TRUE;
742
743     $thiz->flags      = 0x00;
744     
745     $thiz->chattime   = array_fill(0, CHAT_N, 0);
746     $thiz->chat_cur   = 0;
747     $thiz->chat_lst   = "";
748     $thiz->chat_ban   = 0;
749     $thiz->chat_dlt   = 0;
750
751     $thiz->table_orig = $table;
752     $thiz->table      = $table;
753     $thiz->table_pos  = -1;
754     $thiz->table_token= "";
755     $thiz->shm_sz = SHM_DIMS_U_MIN;
756     return ($thiz);
757   }
758
759   function copy($from)
760   {
761     $this->idx        = $from->idx;
762     $this->idx_orig   = $from->idx;
763     $this->code       = $from->code;
764     $this->name       = $from->name;
765     $this->sess       = $from->sess;
766     $this->ip         = $from->ip;
767     $this->lacc       = $from->lacc;
768     $this->laccwr     = $from->laccwr;
769     $this->bantime    = $from->bantime;
770     $this->stat       = $from->stat;
771     $this->subst      = $from->subst;
772     $this->step       = $from->step;
773     $this->trans_step = $from->trans_step;
774     $this->comm       = array();
775
776     $i_start = (1 > ($from->step - COMM_N) ? 1 : ($from->step - COMM_N)); 
777     for ($i = $i_start ; $i < $from->step ; $i++) {
778         $ii = $i % COMM_N;
779         if (isset($from->comm[$ii])) {
780             $this->comm[$ii] = $from->comm[$ii];
781         }
782     }
783     $this->asta_card  = $from->asta_card;
784     $this->asta_pnt   = $from->asta_pnt;
785     $this->handpt     = $from->handpt;
786     $this->exitislock = $from->exitislock;
787
788     $this->flags      = $from->flags;
789
790     $this->chattime   = array();
791     for ($i = 0 ; $i < CHAT_N ; $i++)
792       $this->chattime[$i] = $from->chattime[$i];
793     $this->chat_cur   = $from->chat_cur;
794     $this->chat_lst   = $from->chat_lst;
795     $this->chat_ban   = $from->chat_ban;
796     $this->chat_dlt   = $from->chat_dlt;
797
798     $this->table_orig = $from->table_orig;
799     $this->table      = $from->table;
800     $this->table_pos  = $from->table_pos;
801     $this->table_token = $from->table_token;
802     $this->the_end    = $from->the_end;
803     $this->shm_sz     = $from->shm_sz;
804     return (TRUE);
805   }
806
807
808   function myclone($from)
809   {
810     if (($thiz = new User()) == FALSE)
811       return (FALSE);
812     
813     $thiz->copy($from);
814
815     return ($thiz);
816   }
817   
818   function spawn($from, $table, $table_pos)
819   {
820     if (($thiz = new User()) == FALSE)
821       return (FALSE);
822     
823     $thiz->idx        = $from->idx;
824     $thiz->idx_orig   = $from->idx;
825     $thiz->code       = $from->code;
826     $thiz->name       = $from->name;
827     $thiz->sess       = $from->sess;
828     $thiz->ip         = $from->ip;
829     $thiz->lacc       = $from->lacc;
830     $thiz->laccwr     = $from->laccwr;
831     $thiz->bantime    = $from->bantime;
832     $thiz->stat       = $from->stat;
833     $thiz->subst      = $from->subst;
834     $thiz->step       = $from->step;
835     $thiz->trans_step = $from->trans_step;
836     $thiz->comm       = array();
837
838     /*
839     $i_start = (1 > ($from->step - COMM_N) ? 1 : ($from->step - COMM_N)); 
840     for ($i = $i_start ; $i < $from->step ; $i++) {
841       log_wr("TRY PUSH:".$i);
842       $ii = $i % COMM_N;
843       $thiz->comm[$ii]   = $from->comm[$ii];
844     }
845     */
846     $thiz->asta_card  = $from->asta_card;
847     $thiz->asta_pnt   = $from->asta_pnt;
848     $thiz->handpt     = $from->handpt;
849     $thiz->exitislock = $from->exitislock;
850     $thiz->the_end    = $from->the_end;
851
852     $thiz->flags      = $from->flags;
853
854     $thiz->chattime   = array_fill(0, CHAT_N, 0);
855     $thiz->chat_cur   = 0;
856     $thiz->chat_lst   = "";
857     $thiz->chat_ban   = 0;
858     $thiz->chat_dlt   = 0;
859
860
861     $thiz->table_orig = $table;
862     $thiz->table      = 0;
863     $thiz->table_pos  = $table_pos;
864     $thiz->table_token = $from->table_token;
865     $thiz->shm_sz      = $from->shm_sz;
866
867     return ($thiz);
868   }
869
870   function idx_get() {
871       return ($this->idx);
872   }
873
874   function code_get() {
875       return ($this->code);
876   }
877   
878   function stat_set($stat) {
879     log_main("sess: [".$this->sess. "] NEW STAT: [".$stat."]"); 
880     $this->stat = "$stat";
881     
882     /*
883     if (validate_sess($this->sess)) {
884       if (file_exists(PROXY_PATH) == FALSE)
885         mkdir(PROXY_PATH, 0775, TRUE);
886       $fp = fopen(PROXY_PATH."/".$this->sess.".stat", 'w');
887       fwrite($fp, sprintf("%s\n",$this->stat));
888       fclose($fp);
889     }
890     */
891   }
892
893   function step_set($step) 
894   {
895       $this->step = $step & 0x7fffffff;
896       
897       return (TRUE);
898   }
899
900   function step_inc($delta = 1) {
901       $this->step += $delta;
902       /* modularization because unpack() not manage unsigned 32bit int correctly */
903       $this->step &= 0x7fffffff;
904       
905       return TRUE;
906   }
907
908   function save_step() 
909   {
910       do {
911           if (validate_sess($this->sess) == FALSE)
912               break;
913           if (file_exists(PROXY_PATH) == FALSE)
914               mkdir(PROXY_PATH, 0775, TRUE);
915           if (($fp = @fopen(PROXY_PATH."/".$this->sess.".step", 'w')) == FALSE)
916               break;
917           fwrite($fp, pack("LL",$this->step, $this->idx));
918           fclose($fp);
919           
920           log_main("step_set [".$this->sess. "] [".$this->step."]"); 
921           
922           return (TRUE);
923       } while (0);
924       
925       return (FALSE);
926   }
927   
928   static function load_step($sess) 
929   {
930       $fp = FALSE;
931       do {
932           if (validate_sess($sess) == FALSE)
933               break;
934           
935           if (file_exists(PROXY_PATH) == FALSE)
936               mkdir(PROXY_PATH, 0775, TRUE);
937           if (($fp = @fopen(PROXY_PATH."/".$sess.".step", 'rb')) == FALSE)
938               break;
939           if (($s = fread($fp, 8)) == FALSE)
940               break;
941           if (mb_strlen($s, "ASCII") != 8)
942               break;
943           $arr = unpack('Ls/Li', $s);
944           fclose($fp);
945           
946           // log_rd2("A0: ".$arr[0]."  A1: ".$arr[1]);
947           return ($arr);
948       } while (0);
949       
950       if ($fp != FALSE)
951           fclose($fp);
952       
953       log_rd2("STEP_GET [".$sess."]: return false ");
954       
955       return (FALSE);
956   }
957
958   static function unproxy_step($sess) {
959       log_rd2("UNPROXY: ".PROXY_PATH."/".$sess.".step");
960       if (file_exists(PROXY_PATH) == FALSE)
961           return;
962       @unlink(PROXY_PATH."/".$sess.".step");
963   }
964
965   function reset() {
966     $curtime = time();
967     log_legal($curtime, $this, "STAT:LOGOUT", '');
968
969     $tmp_sess = $this->sess;
970     $this->sess = "";
971     self::unproxy_step($tmp_sess);
972     $this->name = "";  // OK here
973     while (array_pop($this->comm) != NULL);
974     $this->step = 0;
975     $this->chattime = array_fill(0, CHAT_N, 0);
976     $this->chat_cur = 0;
977     $this->chat_lst = "";
978     $this->chat_ban = 0;
979     $this->chat_dlt = 0;
980     $this->the_end = FALSE;
981   }
982
983   static function load_data($id, $sess) 
984   {
985       log_main("load_data: id [".$id."] sess [".($sess == FALSE ? "FALSE" : $sess)."] ");
986       
987       do {
988           if (($tok = @ftok(FTOK_PATH."/user".$id, "B")) == -1) {
989               log_main("ftok failed");
990               break;
991           }
992           
993           if (($shm_sz = sharedmem_sz($tok)) == -1) {
994               log_main("shmop_open failed");
995           }
996           
997           if ($shm_sz == -1)
998               $shm_sz = SHM_DIMS_U_MIN;
999           
1000           if ($shm = shm_attach($tok, $shm_sz)) {
1001               if (($user = @shm_get_var($shm, $tok)) == FALSE) {
1002                   break;
1003               }
1004               if ($sess != FALSE && $user->sess != $sess) {
1005                   break;
1006               }
1007               log_only("user ==  ".($user == FALSE ?   "FALSE" : "TRUE")."  user ===  ".($user === FALSE ? "FALSE" : "TRUE")."  user isset ".(isset($user) ?   "TRUE" : "FALSE"));
1008               
1009               if ($user == FALSE) {
1010                   log_only("INIT MAIN DATA");
1011                   
1012                   // SHSPLIT FIXME: init_data for User class ??
1013                   $user = User::create($id, "", "");
1014                   if (@shm_put_var($shm, $tok, $user) == FALSE) {
1015                       log_only("PUT_VAR FALLITA ".strlen(serialize($user)));
1016                       log_only(serialize($user));
1017                   }
1018                   log_shme("User::save_data2");
1019               }
1020               else {
1021                   if ($sess != FALSE) {
1022                       /*
1023                        *  NOTE:  this part is for check only, theoretically 
1024                        *         user->step anch proxy_step are set allways at the same value
1025                        */
1026                       $old_step = $user->step;
1027                       $arr = User::load_step($sess);
1028                       $user->step = $arr['s'];
1029                       if ($old_step != $user->step) {
1030                           log_crit("steps are diffetents User->step ".$user->step." Old_step: ".$old_step);
1031                       }
1032                   }
1033               }
1034               $user->shm_sz = $shm_sz;
1035               
1036               shm_detach($shm);
1037           }
1038           
1039           //  
1040           // SHSPLIT: load users from the shared memory
1041           //
1042           return ($user);
1043       } while (0);
1044       
1045       return (FALSE);
1046   }
1047   
1048
1049   static function save_data($user, $id) 
1050   {
1051       GLOBAL $sess;
1052       
1053       $shm =   FALSE;
1054       
1055       if (($tok = @ftok(FTOK_PATH."/user".$id, "B")) == -1) {
1056           return (FALSE);
1057       }
1058       while ($user->shm_sz < SHM_DIMS_U_MAX) {
1059           if (($shm = shm_attach($tok, $user->shm_sz)) == FALSE)
1060               break;
1061           
1062           // log_only("PUT_VAR DI ".strlen(serialize($user)));
1063           if (@shm_put_var($shm, $tok, $user) != FALSE) {
1064               shm_detach($shm);
1065               if ($user->sess != "")
1066                   $user->save_step();
1067
1068               log_shme("User::save_data");
1069
1070               log_main("User[".$id."] saved.");
1071               return (TRUE);
1072           }
1073           if (shm_remove($shm) === FALSE) {
1074               log_only("REMOVE FALLITA");
1075               break;
1076           }
1077           shm_detach($shm);
1078           $user->shm_sz += SHM_DIMS_U_DLT;
1079       } 
1080       
1081       if ($shm)
1082           shm_detach($shm);
1083       
1084       return (FALSE);
1085   }
1086
1087
1088 } // end class User
1089
1090
1091
1092 class Room {
1093     static $delta_t;
1094
1095   var $user;
1096   var $table;
1097   var $comm; // commands for many people
1098   var $step; // current step of the comm array
1099   // externalized var $garbage_timeout;
1100   var $shm_sz;
1101
1102   function Room () {
1103     $this->user = array();
1104     $this->table = array();
1105
1106     for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
1107         $this->user[$i] = User::create($i, "", "");
1108     }
1109
1110     for ($i = 0 ; $i < TABLES_N ; $i++) {
1111       $this->table[$i] = Table::create($i);
1112       /* OLD METHOD
1113       if ($i < 12) {
1114         $row = ( (((int)($i / 4)) % 2) == 0 );
1115         $col = ($i % 2 == 0);
1116         $this->table[$i]->auth_only = (($row && $col) || (!$row && !$col));
1117       }
1118       else {
1119         $this->table[$i]->auth_only = FALSE;
1120       }
1121       */
1122       if ($i < TABLES_AUTH_N) 
1123         $this->table[$i]->auth_only = TRUE;
1124       else
1125         $this->table[$i]->auth_only = FALSE;
1126     }
1127     // externalized $this->garbage_timeout = 0;
1128     Room::garbage_time_expire_set(0);
1129     $this->shm_sz = SHM_DIMS_MIN;
1130   }
1131
1132   function garbage_manager($force)
1133   {
1134     GLOBAL $G_lang, $mlang_brisk, $G_base;
1135
1136     $ismod = FALSE;
1137
1138     log_rd2("garbage_manager START");
1139
1140     /* Garbage collector degli utenti in timeout */
1141     $curtime = time();
1142
1143     // externalized if ($force || $this->garbage_timeout < $curtime) {
1144     if (!$force && !Room::garbage_time_is_expired($curtime)) {
1145         return ($ismod);
1146     }
1147       
1148     webservers_check();
1149       // FIXME BRISK4: include for each kind of table
1150       require_once("${G_base}briskin5/Obj/briskin5.phh");
1151
1152       // Before all align times with table timeout
1153       for ($table_idx = 0 ; $table_idx < TABLES_N ; $table_idx++) {
1154         $table_cur = $this->table[$table_idx];
1155         // if the table is complete and exists its shared mem we get the info about users lacc
1156
1157         if ($table_cur->player_n == PLAYERS_N) {
1158           log_main("PLAYERS == N TABLE ".$table_idx);
1159           
1160           if (($sem = Bin5::lock_data(TRUE, $table_idx)) != FALSE) { 
1161             log_main("bin5 lock data success");
1162             
1163             $no_recovery = FALSE;
1164             if (($bri = Bin5::load_data($table_idx)) != FALSE) {
1165               if ($table_cur->table_token != $bri->table_token) {
1166                 log_main("ERROR: not matching table_token. Room: ".$table_cur->table_token."  Table: ".$bri->table_token);
1167                 log_main("ERROR: not matching table_start. Room: ".$table_cur->table_start."  Table: ".$bri->table_start);
1168                 $no_recovery = TRUE;
1169                 $bri = FALSE;
1170               }
1171             }
1172             
1173             if ($bri != FALSE) {
1174               //
1175               //  SPAWN: JOIN
1176               //
1177               log_main("garbage_manager: bri loaded successfully.");
1178               $bri->garbage_manager(TRUE);
1179               
1180               $bri_table = $bri->table[0];
1181
1182               // is the end of the table
1183               if ($bri->the_end == TRUE) {
1184                   /*
1185                  *  DESTROY OF FINISHED TABLE && MOVE PLAYER TO ROOM AGAIN
1186                  */
1187                 log_main("garbage_manager: INSIDE THE END.");
1188
1189                 $plist = "$table_cur->table_token|$table_cur->idx|$table_cur->player_n";
1190                 for ($i = 0 ; $i < $table_cur->player_n ; $i++) {
1191                   $plist .= '|'.$this->user[$table_cur->player[$i]]->sess;
1192                 }
1193
1194                 for ($i = 0 ; $i < $bri_table->player_n ; $i++) {
1195                   // stat must be "table" by definition
1196                   $user_cur = $this->user[$table_cur->player[$i]];
1197                   $bri_user = $bri->user[$i];
1198                   
1199                   $user_cur->subst      = $bri_user->subst;
1200                   $user_cur->step       = $bri_user->step;
1201                   $user_cur->lacc       = $bri_user->lacc;
1202                   $user_cur->laccwr     = $bri_user->lacc;
1203                   $user_cur->bantime    = $bri_user->bantime;
1204                 }
1205
1206                 log_legal($curtime, $user_cur, "STAT:DESTROY_GAME", $plist);
1207
1208                 $this->room_join_wakeup($user_cur, FALSE, 0); 
1209                 $table_cur->table_token = "";
1210                 $table_cur->wakeup_time = $curtime + WAKEUP_TIME;
1211                         
1212                         $bri->destroy_data($table_idx);
1213               }
1214               else {
1215                 log_main("gm:: save_data");
1216
1217                 for ($i = 0 ; $i < $bri_table->player_n ; $i++) {
1218                   $this->user[$table_cur->player[$i]]->lacc = $bri->user[$i]->lacc;
1219                 }
1220               
1221                 Bin5::save_data($bri);
1222               }
1223             } // else if (($bri = Bin5::load_data($table_idx)) != FALSE) {
1224             else if ($no_recovery == FALSE) {
1225               log_crit("ERROR: table ".$table_idx." unrecoverable join");
1226
1227               for ($i = 0 ; $i < $table_cur->player_n ; $i++) {
1228                 $user_cur = $this->user[$table_cur->player[$i]];
1229                 $user_cur->subst = "shutdowner";
1230                 $user_cur->step_inc();
1231                 
1232                 $ret = sprintf('stat = "%s"; subst = "%s";',  $user_cur->stat, $user_cur->subst);
1233                 $ret .= "gst.st = ".($user_cur->step+1)."; ";
1234                 // MLANG <br>I dati del tavolo n&deg; ".$user_cur->table." sono inconsistenti, verranno resettati.<br><br>Torni in piedi.<br><br>
1235                 $prestr = sprintf($mlang_brisk['tabincon'][$G_lang], $user_cur->table);
1236                 $ret .= show_notify($prestr, 2000, $mlang_brisk['btn_close'][$G_lang], 400, 110);
1237                 $user_cur->comm[$user_cur->step % COMM_N] = $ret;
1238                 $user_cur->step_inc();
1239               }
1240
1241               $plist = "$table_cur->table_token|$user_cur->table|$table_cur->player_n";
1242               for ($i = 0 ; $i < $table_cur->player_n ; $i++) {
1243                 $plist .= '|'.$this->user[$table_cur->player[$i]]->sess;
1244               }
1245               log_legal($curtime, $user_cur, "STAT:DESTROY_GAME(RECOVERY)", $plist);
1246               
1247               $this->room_join_wakeup($user_cur, TRUE, -2); 
1248               $table_cur->table_token = "";
1249             }
1250
1251             Bin5::unlock_data($sem);
1252           } // bri::lock_data
1253         } //  if ($table_cur->player_n == PLAYERS_N) {
1254       } //  for ($table_idx = 0 ; $table_idx < TABLES_N ; $table_idx++) {
1255     
1256       log_rd2("out new loop.");
1257                 
1258       for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
1259         $user_cur = $this->user[$i];
1260         
1261         log_rd2("User: ".$user_cur->name."  stat: ".$user_cur->stat."  subst: ".$user_cur->subst);
1262           
1263         if ($user_cur->sess == "") 
1264           continue;
1265         
1266         if ($user_cur->lacc + EXPIRE_TIME_RD < $curtime) {
1267           // Auto logout dell'utente
1268           log_rd2("AUTO LOGOUT.".($user_cur->lacc + EXPIRE_TIME_RD)." curtime ".$curtime);
1269           
1270           if ($user_cur->stat == 'table' || $user_cur->stat == 'room') {
1271             log_auth($user_cur->sess, "Autologout session.");
1272             
1273             $user_cur->reset();
1274             
1275             log_rd2("AUTO LOGOUT.");
1276             if ($user_cur->subst == 'sitdown' || $user_cur->stat == 'table')
1277               $this->room_wakeup($user_cur);
1278             else if ($user_cur->subst == 'standup')
1279               $this->room_outstandup($user_cur);
1280             else
1281               log_rd2("LOGOUT FROM WHAT ???");
1282           }
1283         }
1284
1285         if ($user_cur->laccwr + EXPIRE_TIME_SMAMMA < $curtime) { // lo rimettiamo in piedi
1286           if ($user_cur->stat == 'room' && $user_cur->subst == 'sitdown') {
1287             $this->room_wakeup($user_cur);
1288             $user_cur->comm[$user_cur->step % COMM_N] = "gst.st = ".($user_cur->step+1)."; ";
1289             /* MLANG: <br>Sei stato inattivo per ".(EXPIRE_TIME_SMAMMA/60.0)." minuti. <br><br>Quindi ritorni tra i <b>Giocatori in piedi</b>.", "torna ai tavoli" */
1290             $user_cur->comm[$user_cur->step % COMM_N] .=  show_notify($mlang_brisk['tabtout_a'][$G_lang].(EXPIRE_TIME_SMAMMA/60.0).$mlang_brisk['tabtout_b'][$G_lang], 0, $mlang_brisk['btn_backstand'][$G_lang], 400, 100);
1291             $user_cur->step_inc();
1292           }
1293         }
1294       }
1295       log_rd2("GARBAGE UPDATED!");
1296       
1297       // externalized $this->garbage_timeout = time() + GARBAGE_TIMEOUT;
1298       Room::garbage_time_expire_set($curtime + GARBAGE_TIMEOUT);
1299       $ismod = TRUE;
1300
1301     return ($ismod);
1302   }
1303
1304   function show_room($user_step, $user)
1305   {
1306     GLOBAL $G_lang, $mlang_brisk;
1307     log_main("show_room: username: ".$user->name);
1308     
1309     $ret = sprintf('gst.st = %d; ',  $user_step);
1310
1311     if ($user->flags & USER_FLAG_ISOLAUTH) {
1312       $ret .= 'list_set(\'isolation\', false, \''.$mlang_brisk['tit_onisol'][$G_lang].'\' ); ';
1313     }
1314     else if ($user->flags & USER_FLAG_LISTAUTH) {
1315       $ret .= 'list_set(\'auth\', false, \''.$mlang_brisk['tit_onauth'][$G_lang].'\' ); ';
1316     }
1317     else {
1318       $ret .= 'list_set(\'all\', false, \'\' ); ';
1319     }
1320
1321     if ($user->subst == 'standup')
1322       $ret .= "tra.show(); ";
1323     else
1324       $ret .= "tra.hide(); ";
1325
1326     $ret .= sprintf('stat = "%s";',  $user->stat);
1327     
1328     $ret .= root_wellcome($user);
1329     if ($user->flags & USER_FLAG_DBFAILED) {
1330         $ret .= "gst.st = ".($user->step+1)."; ";
1331         $ret .= show_notify($mlang_brisk['db_failed'][$G_lang], 0, $mlang_brisk['btn_close'][$G_lang], 400, 140);
1332     }
1333
1334     $ret .= sprintf('subst = "%s";', $user->subst);
1335     $itin = ($user->flags & USER_FLAG_AUTH ? "<i>" : "");
1336     $itou = ($user->flags & USER_FLAG_AUTH ? "</i>" : "");
1337     $ret .= sprintf('$("myname").innerHTML = "<b>%s%s%s</b>";', $itin, xcape($user->name), $itou);
1338     for ($i = 0 ; $i < TABLES_N ; $i++) {
1339
1340       $ret .= $this->table_content($user, $i);
1341       // $ret .= table_act_content(($user->subst == 'standup'), $this->table[$i]->player_n, $i, $user->table, 
1342       //                          ($this->table[$i]->auth_only == FALSE ? TRUE : $user->flags & USER_FLAG_AUTH));
1343       $ret .=  $this->table[$i]->act_content($user);
1344       if ($this->table[$i]->wag_own != -1) 
1345         $ret .= sprintf('tra.add(%d, "%s: %s"); ', $i,  $this->user[$this->table[$i]->wag_own]->name, $this->table[$i]->wag_com);
1346       else 
1347         $ret .= sprintf('tra.rem(%d); ', $i);
1348     }
1349     $ret .= $this->standup_content($user);
1350     
1351     return ($ret);
1352   }
1353   
1354
1355   function room_wakeup($user)
1356   {
1357     $table_idx = $user->table;
1358     $table = $this->table[$table_idx];
1359
1360     log_main("WAKEUP: begin function table:".$table_idx."  stat: ".$user->stat."  subst: ".$user->subst);
1361
1362     $curtime = time();
1363
1364     $from_table = ($user->stat == "table");
1365     if ($from_table) {
1366       log_main("WAKEUP: from table [".$user->table."] nplayers_n: ".$this->table[$user->table]->player_n);
1367
1368       for ($i = 0 ; $i < $table->player_n ; $i++) {
1369         $user_cur = $this->user[$table->player[$i]];
1370         log_main("PREIMPOST: INLOOP name: ".$user_cur->name);
1371
1372         if ($user->idx_get() != $table->player[$i]) {
1373           $user_cur->stat_set("room");
1374           $user_cur->subst = "sitdown";
1375           $user_cur->laccwr = $curtime;
1376         }
1377         else if ($user->sess != "") {
1378           $user_cur->stat_set("room");
1379           $user_cur->subst = "standup";
1380           $user_cur->laccwr = $curtime;
1381           $user_cur->table = -1;
1382         }
1383       }
1384     }
1385     else {
1386       $user->stat_set("room");
1387       $user->subst = "standup";
1388       $user->laccwr = $curtime;
1389     }
1390     
1391     $remove_wagon = FALSE;
1392     if($table->wag_own == $user->idx_get()) {
1393       $table->wag_reset($curtime);
1394       $remove_wagon = TRUE;
1395     }
1396     
1397
1398     /* aggiorna l'array dei giocatori al tavolo. */
1399     $table->user_rem($this, $user);
1400
1401     for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
1402       $user_cur = $this->user[$i];
1403       if ($user_cur->sess == '' || $user_cur->stat != 'room')
1404         continue;
1405       
1406       // log_main("VALORI: name: ".$user_cur->name."from_table: ".$from_table."  tab: ".$user_cur->table." taix: ".$table_idx."  ucur: ".$user_cur."  us: ".$user);
1407
1408       $ret = "gst.st = ".($user_cur->step+1)."; ".($remove_wagon ? sprintf("tra.rem(%d);",$table_idx) : "");
1409       if ($from_table && ($user_cur->table == $table_idx || $user->idx_get() == $i)) {
1410         $ret .= 'gst.st_loc++; the_end=true; window.onunload = null; window.onbeforeunload = null; document.location.assign("index.php");|';
1411         // $ret .= 'gst.st_loc++; document.location.assign("index.php");|';
1412         log_main("DOCUMENT.index.php: from table");
1413       }
1414       else if ($user_cur->stat == "room") {
1415         log_main("DOCUMENT.index.php: from table");
1416
1417         $ret .= $this->table_content($user_cur, $table_idx);
1418         $ret .= $this->standup_content($user_cur);
1419         
1420         // $ret .= table_act_content(FALSE, 0, $table_idx, $user->table, FALSE);
1421         $ret .= $table->act_content($user);
1422
1423         if ($user->idx_get() == $i) {
1424           // set the new status 
1425           $ret .=  'subst = "standup"; tra.show(); ';
1426           // clean the action buttons in other tables
1427           for ($e = 0 ; $e < TABLES_N ; $e++) {
1428             if ($this->table[$e]->player_n < PLAYERS_N) {
1429               // $ret .= table_act_content(TRUE, 0, $e, $user->table, 
1430               //                           ($this->table[$e]->auth_only == FALSE ? TRUE : $user->flags & USER_FLAG_AUTH));
1431               $ret .= $this->table[$e]->act_content($user);
1432             }
1433           }
1434         }
1435         else {
1436           // $ret .= table_act_content(($user_cur->subst == 'standup'), $table->player_n, $table_idx, $user_cur->table,
1437           //                           ($table->auth_only == FALSE ? TRUE : $user_cur->flags & USER_FLAG_AUTH));
1438           $ret .= $table->act_content($user_cur);
1439         }
1440       }
1441       log_wr("ROOM_WAKEUP: ".$ret);
1442       $user_cur->comm[$user_cur->step % COMM_N] = $ret;
1443       $user_cur->step_inc();
1444     }
1445   }
1446
1447   function room_join_wakeup($user, $update_lacc = FALSE, $trans_delta)
1448   {
1449     $table_idx = $user->table;
1450     $table = $this->table[$table_idx];
1451     
1452     log_main("JOIN_WAKEUP: begin function table:".$table_idx."  stat: ".$user->stat."  subst: ".$user->subst);
1453
1454     $curtime = time();
1455     $user_wup = array();
1456     $user_wup_n = 0;
1457     $user_tab = array();
1458     $user_tab_n = 0;
1459     log_main("JOIN WAKEUP: from table [".$user->table."] nplayers_n: ".$this->table[$user->table]->player_n);
1460     
1461     for ($i = 0 ; $i < $table->player_n ; $i++) {
1462       $user_cur = $this->user[$table->player[$i]];
1463       log_main("PREIMPOST INLOOP name: ".$user_cur->name);
1464       if ($user_cur->sess != "") {
1465         if ($update_lacc == TRUE) {
1466           $user_cur->laccwr = $curtime;
1467         }
1468         log_main("cur: ".$user_cur->name."  subst: ".$user_cur->subst);
1469         if ($user_cur->subst == "shutdowned") {
1470           $user_cur->stat_set("room");
1471           $user_cur->subst = "sitdown";
1472         }
1473         else if ($user_cur->subst == "shutdowner") {
1474           $user_cur->stat_set("room");
1475           $user_cur->subst = "standup";
1476           $user_cur->table = -1;
1477           $user_wup[$user_wup_n++] = $user_cur;
1478           
1479           $remove_wagon = FALSE;
1480           if($table->wag_own == $table->player[$i]) {
1481             $remove_wagon = TRUE;
1482             $table->wag_reset($curtime);
1483           }
1484         }
1485         $user_tab[$user_tab_n++] = $table->player[$i];
1486       }
1487     }
1488
1489     for ($wup_idx = 0 ; $wup_idx < $user_wup_n  ; $wup_idx++)
1490       $table->user_rem($this, $user_wup[$wup_idx]);
1491
1492     /* aggiorna l'array dei giocatori al tavolo. */
1493
1494     for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
1495       log_main("START LOOP");
1496       $user_cur = $this->user[$i];
1497       if ($user_cur->sess == '' || $user_cur->stat != 'room') {
1498         log_main("name: ".$user_cur->name."skip   subst: ".$user_cur->subst);
1499         continue;
1500       }
1501
1502       log_main("___");
1503       log_main("VALORI name: ".$user_cur->name."  tab: ".$user_cur->table." taix: ".$table_idx);
1504
1505       $ret = "gst.st = ".($user_cur->step+1)."; ".($remove_wagon ? sprintf("tra.rem(%d);",$table_idx) : "");
1506       if ($user_cur->stat == "room") {
1507         log_main("DOCUMENT.index.php from table");
1508
1509         $ret .= $this->table_content($user_cur, $table_idx);
1510         $ret .= $this->standup_content($user_cur);
1511         
1512         // $ret .= table_act_content(FALSE, 0, $table_idx, $user_cur->table,
1513         //                           ($table->auth_only == FALSE ? TRUE : $user_cur->flags & USER_FLAG_AUTH));
1514         $ret .= $table->act_content($user_cur);
1515
1516
1517         for ($tab_idx = 0 ; $tab_idx < $user_tab_n  ; $tab_idx++)
1518             if ($user_tab[$tab_idx] == $i) 
1519                 break;
1520
1521         // for users that wakeup the room will be reconstructed by index_rd.php
1522         if ($tab_idx < $user_tab_n) {
1523           log_main("PRE show_room username: ".$user_cur->name."  STEP: ".$user_cur->step);
1524
1525 //        ARRAY_POP DISABLED
1526 //        if ($trans_delta == 0)
1527 //          while (array_pop($user_cur->comm) != NULL);
1528
1529           $user_cur->trans_step = $user_cur->step + 1 + $trans_delta;
1530           $user_cur->comm[$user_cur->step % COMM_N] = "";
1531           $user_cur->step_inc();
1532           $user_cur->comm[$user_cur->step % COMM_N] = $this->show_room(($user_cur->step + 1), $user_cur);
1533           $user_cur->step_inc();
1534           log_main("POST show_room username: ".$user_cur->name."  STEP: ".$user_cur->step);
1535
1536           continue;
1537         }
1538         log_main("JOIN_WAKEUP wup_idx ".$wup_idx."  wup_n ".$user_wup_n);
1539
1540         log_main("JOIN_WAKEUP more");
1541         // $ret .= table_act_content(($user_cur->subst == 'standup'), $table->player_n, $table_idx, $user_cur->table,
1542         //                           ($table->auth_only == FALSE ? TRUE : $user_cur->flags & USER_FLAG_AUTH));
1543         $ret .= $table->act_content($user_cur);
1544
1545         log_main("JOIN_WAKEUP end more");
1546       }
1547       log_wr("ROOM_JOIN_WAKEUP: ".$ret);
1548       $user_cur->comm[$user_cur->step % COMM_N] = $ret;
1549       $user_cur->step_inc();
1550     }
1551   }
1552
1553   function room_outstandup($user)
1554   {
1555     $this->room_sitdown($user, -1);
1556   }
1557   
1558   function table_update($user)
1559   {
1560     log_main("table_update: pre - USER: ".$user->name);
1561
1562     $table_idx = $user->table;
1563
1564     if ($table_idx > -1) 
1565       $table = $this->table[$table_idx];
1566     
1567     for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
1568       $ret = "";
1569       $user_cur = $this->user[$i];
1570       if ($user_cur->sess == '' || $user_cur->stat != 'room')
1571       continue;
1572       
1573       $ret = "gst.st = ".($user_cur->step+1)."; ";
1574       if ($table_idx > -1)
1575         $ret .= $this->table_content($user_cur, $table_idx);
1576       
1577       if ($user->idx_get() == $i) {
1578         $itin = ($user->flags & USER_FLAG_AUTH ? "<i>" : "");
1579         $itou = ($user->flags & USER_FLAG_AUTH ? "</i>" : "");
1580         $ret .= sprintf('$("myname").innerHTML = "<b>%s%s%s</b>: ";', $itin, xcape($user->name), $itou);
1581       }
1582       $user_cur->comm[$user_cur->step % COMM_N] = $ret;
1583       $user_cur->step_inc();
1584     }
1585
1586     log_main("table_update: post");
1587   }
1588
1589   function room_sitdown($user, $table_idx)
1590   {
1591     log_main("room_sitdown ".($user == FALSE ? "USER: FALSE" : "USER: ".$user->name));
1592
1593     $train_app = "";
1594
1595     if ($table_idx > -1 && $table_idx < TABLES_N) { 
1596       $table = $this->table[$table_idx];
1597
1598       // wagon shutdown 
1599       if ($table->wag_own != -1 && $table->player_n == PLAYERS_N) {        
1600         for ($i = 0 ; $i < TABLES_N ; $i++) {
1601             if ($table->wag_own == $table->player[$i]) {
1602                 $train_app = sprintf("tra.rem(%d); ", $table_idx); 
1603                 $table->wag_reset(time());
1604                 break;
1605             }
1606         }
1607       }
1608     }
1609
1610     for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
1611       $ret = "";
1612       $user_cur = $this->user[$i];
1613       if ($user_cur->sess == '' || $user_cur->stat != 'room')
1614       continue;
1615       
1616       $ret = "gst.st = ".($user_cur->step+1)."; ".$train_app;
1617       if ($table_idx > -1)
1618       $ret .= $this->table_content($user_cur, $table_idx);
1619       $ret .= $this->standup_content($user_cur);
1620       
1621       if ($user->idx_get() == $i) {
1622         $ret .=  'subst = "sitdown"; tra.hide(); ';
1623         // clean the action buttons in other tables
1624         for ($e = 0 ; $e < TABLES_N ; $e++) {
1625           // $ret .= table_act_content(FALSE, 0, $e, $user_cur->table, FALSE);
1626           $ret .= $this->table[$e]->act_content($user_cur);
1627         }
1628       }
1629       else if ($table_idx > -1) {
1630         if ($table->player_n == PLAYERS_N) {
1631           // $ret .= table_act_content(($user_cur->subst == 'standup'), PLAYERS_N, $table_idx, $user_cur->table,
1632           ///                      ($table->auth_only == FALSE ? TRUE : $user_cur->flags & USER_FLAG_AUTH));
1633           $ret .= $table->act_content($user_cur);
1634         }
1635       }
1636       $user_cur->comm[$user_cur->step % COMM_N] = $ret;
1637       $user_cur->step_inc();
1638     }
1639   }
1640
1641   function chatt_send($user, $mesg)
1642   {
1643     GLOBAL $G_base, $G_alarm_passwd, $mlang_brisk, $G_lang;
1644     $only_you = FALSE;
1645     
1646     // common settings
1647     $msg = substr($mesg, 6, 128);
1648     $curtime = time();
1649     $dt = date("H:i ", $curtime);
1650     $target = "";
1651
1652     //
1653     //  Compute actions
1654     //
1655
1656     $to_user     = FALSE;
1657     $to_all      = FALSE;
1658     $to_room     = FALSE;
1659     $to_tabl     = FALSE;
1660     $is_normchat = FALSE;
1661     /* for old isolation management $is_ticker   = FALSE; */
1662     $update_room = FALSE;
1663
1664     if (strcmp($msg,  "/tav") == 0 || 
1665         strncmp($msg, "/tav ", 5) == 0) {
1666       do {
1667         if ($user->stat != 'room' || $user->subst != 'sitdown') {
1668           /* MLANG: "<br>Per attivare il messaggio di segnalazione del tavolo occorre essere seduti.<br><br>", "<br>Il messaggio di segnalazione del tavolo &egrave; gi&agrave; attivato.<br><br>", "<br>Il messaggio di segnalazione del tavolo<br>&egrave; disattivato ancora per %d second%s.<br><br>" */
1669           $msg = $mlang_brisk['tickmust'][$G_lang];
1670           $to_user = show_notify($msg, 0, "chiudi", 400, 100);
1671
1672           break;
1673         }
1674
1675         $table = $this->table[$user->table];
1676         
1677         if ($table->wag_own != -1) {
1678           // MLANG <br>Il messaggio di segnalazione del tavolo &egrave; gi&agrave; attivato.<br><br> 
1679           $msg = $mlang_brisk['tickjust'][$G_lang];
1680           $to_user = show_notify($msg, 0, "chiudi", 400, 100);
1681
1682           break;
1683         }
1684
1685         $dtime = $curtime - $table->wag_tout;
1686         if ($dtime  < EXPIRE_TIME_WAG) {
1687           // MLANG - <br>Il messaggio di segnalazione del tavolo<br>&egrave; disattivato ancora per %d second%s.<br><br>
1688           $msg = sprintf($mlang_brisk['tickwait'][$G_lang],
1689                          EXPIRE_TIME_WAG - $dtime, (EXPIRE_TIME_WAG - $dtime == 1 ? ($G_lang == 'en' ? "" : "o") : ($G_lang == 'en' ? "s" : "i")));
1690           $to_user = show_notify($msg, 0, $mlang_brisk['btn_close'][$G_lang] , 400, 100);
1691
1692           break;
1693         }
1694         
1695         $msg = substr($msg, 5);
1696         
1697         $table->wag_set($user->idx_get(), $msg);
1698         $to_user = sprintf('tra.add(%d, "%s");', $user->table, xcape(sprintf("%s: %s", $user->name, $msg)));
1699         $to_room = $to_user;
1700         /* for old isolation management $is_ticker = TRUE; */
1701       } while (0);
1702     } // /tav chat command
1703
1704     else if (strncmp($msg, "/alarm ", 7) == 0) {
1705       if (strncmp($msg, "/alarm to ", 10) == 0) {
1706         $sp_pos = strpos($msg, " ", 10);
1707         $target = substr($msg, 10, $sp_pos - 10);
1708         $alarm_check = "/alarm to ".$target." ".$G_alarm_passwd." ";
1709       }
1710       else {
1711         $target = "";
1712         $alarm_check = "/alarm ".$G_alarm_passwd." ";
1713       }
1714       do {
1715         if (strncmp($msg, $alarm_check, strlen($alarm_check)) != 0) {
1716           /* MLANG: "<br>La password digitata non &egrave; corretta.<br><br>" */
1717           $msg = $mlang_brisk['alarpass'][$G_lang];
1718           $to_user = show_notify($msg, 0, $mlang_brisk['btn_close'][$G_lang], 400, 100);
1719
1720           break;
1721         }
1722
1723         /* MLANG: "Alarm <b>%s</b> inviato a <b>%s</b>." */
1724         $prestr = sprintf($mlang_brisk['alarret'][$G_lang], xcape(substr($msg, strlen($alarm_check))), 
1725                            ($target == "" ? $mlang_brisk['tit_all'][$G_lang] : xcape($target)) );
1726         $to_user = sprintf('chatt_sub("%s", [2, "%s"],%s);', 
1727                            $dt, NICKSERV, $prestr);
1728
1729         $msg = sprintf("<br><b>%s<br><br>%s</b><br><br>",
1730                        $dt.NICKSERV, xcape(substr($msg, strlen($alarm_check))));
1731         /* MLANG: "chiudi" */
1732         $to_all = show_notify($msg, 0, $mlang_brisk['btn_close'][$G_lang], 400, 120);
1733       } while (0);
1734     } // /alarm chat command
1735     else if (strncmp($msg, "/listen ", 8) == 0) {
1736       $arg = substr($msg, 8);
1737
1738       if (strcasecmp($arg, "isolation") == 0) {
1739         $flags_old = 0;
1740         if ($user->stat == 'room' && $user->subst == 'sitdown' &&
1741             $user->table >= TABLES_AUTH_N) {
1742           $to_user = sprintf('chatt_sub("%s", [2, "%s"],"%s");', $dt, NICKSERV, $mlang_brisk['listmust'][$G_lang]);
1743           
1744         }
1745         else {
1746           $user->flags &= ~USER_FLAG_MAP_AUTH;
1747           $user->flags |= USER_FLAG_ISOLAUTH;
1748           $to_user = 'list_set(\'isolation\', true, \''.$mlang_brisk['tit_onisol'][$G_lang].'\'); ';
1749         }
1750       }
1751       else if (strcasecmp($arg, "auth") == 0) {
1752         $flags_old = $user->flags;
1753         $user->flags &= ~USER_FLAG_MAP_AUTH;
1754         $user->flags |= USER_FLAG_LISTAUTH;
1755         $to_user = 'list_set(\'auth\', true, \''.$mlang_brisk['tit_onauth'][$G_lang].'\'); ';
1756       }
1757       else {
1758         $flags_old = $user->flags;
1759         $user->flags &= ~USER_FLAG_MAP_AUTH;
1760         $to_user = 'list_set(\'all\', true, \'\'); ';
1761         
1762       }
1763       // if from isolation redraw standup area
1764       if (($flags_old ^ $user->flags) & USER_FLAG_ISOLAUTH) {
1765         $to_user .= 'standup_data_old = null; '.$this->standup_content($user);
1766         
1767       }
1768     }
1769     else if (strcmp($msg, "/authreq") == 0) {
1770       if ($user->flags & USER_FLAG_AUTH) {
1771         $to_user = sprintf('authbox(300,200);');
1772       }
1773       else {
1774         /* MLANG: "<b>Per autenticare qualcuno devi a tua volta essere autenticato.</b>", "Il nickname deve contenere almeno una lettera dell\'alfabeto o una cifra.", "Nickname <b>%s</b> gi&agrave; in uso." */
1775         $to_user = sprintf('chatt_sub("%s", [2, "%s"],"%s");', $dt, NICKSERV, $mlang_brisk['authmust'][$G_lang]);
1776       }
1777     }
1778     else if (strncmp($msg, "/mesgtoadm", 8) == 0) {
1779       if ($user->flags & USER_FLAG_AUTH) {
1780         $to_user = sprintf('mesgtoadmbox(500,300);');
1781       }
1782       else {
1783         /* MLANG: "<b>Per inviare un messaggio devi essere autenticato.</b>" */
1784         $to_user = sprintf('chatt_sub("%s", [2, "%s"],"%s");', $dt, NICKSERV, $mlang_brisk['mesgmust'][$G_lang]);
1785       }
1786     }
1787     else if (strncmp($msg, "/nick ", 6) == 0) {
1788       log_main("chatt_send BEGIN");
1789
1790       do {
1791         if (($name_new = validate_name(substr($msg, 6))) == FALSE) {
1792           $to_user = sprintf('chatt_sub("%s", [2,"%s"],"%s");', $dt, NICKSERV, $mlang_brisk['nickmust'][$G_lang]);
1793           break;
1794         }
1795
1796         $msg = "COMMAND ".$msg;
1797         for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
1798           $user_cur = $this->user[$i];
1799
1800           if ($user_cur->sess == '')
1801             continue;
1802           if ($user_cur->name == $name_new)
1803             break;
1804           }
1805         if ($i <  MAX_PLAYERS) {
1806           $prestr = sprintf($mlang_brisk['nickdupl'][$G_lang], xcape($name_new));
1807           $to_user = sprintf('chatt_sub("%s", [2, "%s"],"%s");', $dt, NICKSERV, $prestr);
1808           break;
1809         }
1810         
1811         /* MLANG: "<b>Non puoi cambiare nick a un tavolo per soli autenticati.</b>", "Il nickname <b>\'%s\'</b> &egrave; gi&agrave; registrato, <b>se il suo proprietario si autentificher&agrave; verrai rinominato d\'ufficio come ghost<i>N</i>.</b>" */
1812         if ($user->flags & USER_FLAG_AUTH) {
1813           if (strcasecmp($user->name,$name_new) != 0) {
1814              if (( ($user->flags & USER_FLAG_MAP_AUTH) != USER_FLAG_ISOLAUTH) &&
1815                 ($user->subst == 'standup' || 
1816                  ($user->subst != 'standup' && $this->table[$user->table]->auth_only == FALSE)
1817                  )
1818                 ) {
1819               $user->flags &= ~(USER_FLAG_AUTH | USER_FLAG_TY_ALL); // Remove auth if name changed
1820               for ($i = 0 ; $i < TABLES_N ; $i++) {
1821                 $to_user .= $this->table[$i]->act_content($user);
1822               }
1823             }
1824             else {
1825               $to_user = sprintf('chatt_sub("%s", [2, "%s"],"%s");', $dt, NICKSERV, $mlang_brisk['authchan'][$G_lang]);
1826               break;
1827             }
1828           }
1829         }
1830         $user->name = $name_new; // OK - nick changed
1831         /* se nome gia' in uso, segnala cosa potrebbe capitare */
1832         if (($user->flags & USER_FLAG_AUTH) == 0) {
1833             if (($bdb = BriskDB::create()) != FALSE) {
1834                 $bdb->users_load();
1835                 /* MLANG: "Il nickname <b>\'%s\'</b> &egrave; gi&agrave; registrato, <b>se il suo proprietario si autentificher&agrave; verrai rinominato d\'ufficio come ghost<i>N</i>.</b>" */
1836                 if ($bdb->login_exists($name_new)) {
1837                     $prestr = sprintf($mlang_brisk['nickjust'][$G_lang], xcape($name_new));
1838                     $to_user .= sprintf('chatt_sub("%s", [2, "%s"],"%s");', $dt, NICKSERV, $prestr);
1839                 }
1840             }
1841         }
1842
1843         log_main("chatt_send start set");
1844
1845         $update_room = TRUE;
1846       } while (0);
1847     } // nick chat command
1848
1849     else if (strncmp($msg, "/st ", 4) == 0) {
1850       log_main("chatt_send BEGIN");
1851
1852       do {
1853         $st_str = substr($msg, 4);
1854         
1855         if (strcasecmp($st_str, "normale") == 0) {
1856           $st = USER_FLAG_S_NORM;
1857         }
1858         else if (strcasecmp($st_str, "pausa") == 0) {
1859           $st = USER_FLAG_S_PAU;
1860         }
1861         else if (strcasecmp($st_str, "fuori") == 0) {
1862           $st = USER_FLAG_S_OUT;
1863         }
1864         else if (strcasecmp($st_str, "cane") == 0) {
1865           $st = USER_FLAG_S_DOG;
1866         }
1867         else if (strcasecmp($st_str, "cibo") == 0) {
1868           $st = USER_FLAG_S_EAT;
1869         }
1870         else if (strcasecmp($st_str, "lavoro") == 0) {
1871           $st = USER_FLAG_S_WRK;
1872         }
1873         else if (strcasecmp($st_str, "sigaretta") == 0) {
1874           $st = USER_FLAG_S_SMK;
1875         }
1876         else if (strcasecmp($st_str, "presente") == 0) {
1877           $st = USER_FLAG_S_EYE;
1878         }
1879         else if (strcasecmp($st_str, "coniglio") == 0) {
1880           $st = USER_FLAG_S_RABB;
1881         }
1882         else if (strcasecmp($st_str, "calcio") == 0) {
1883           $st = USER_FLAG_S_SOCC;
1884         }
1885         else if (strcasecmp($st_str, "pupo") == 0) {
1886           $st = USER_FLAG_S_BABY;
1887         }
1888         else if (strcasecmp($st_str, "pulizie") == 0) {
1889           $st = USER_FLAG_S_MOP;
1890         }
1891         else {
1892           /* MLANG: "Questo stato non esiste." */
1893           $to_user = sprintf('chatt_sub("%s", [2,"%s"],"%s");', $dt, NICKSERV, $mlang_brisk['statunkn'][$G_lang]);
1894           break;
1895         }
1896
1897         log_main("chatt_send start set");
1898         if (($user->flags & USER_FLAG_S_ALL) != $st) {
1899           $update_room = TRUE;
1900           $user->flags = ($user->flags & ~USER_FLAG_S_ALL) | $st;
1901         }
1902       } while (0);
1903     } // nick chat command
1904
1905     else { // normal chat line
1906       $is_normchat = TRUE;
1907       if ($curtime < ($user->chat_ban + $user->chat_dlt)) {
1908         $only_you = TRUE;
1909         $user->chat_dlt = $user->chat_dlt * 2; 
1910         if ($user->chat_dlt > 120)
1911           $user->chat_dlt = 120; 
1912       }
1913       else if ($user->chat_lst == $msg)
1914         $only_you = TRUE;
1915       else if ($curtime - $user->chattime[($user->chat_cur + 1) % CHAT_N] < CHAT_ILL_TIME) {
1916         $user->chat_ban = $curtime;
1917         $user->chat_dlt = 5;
1918         $only_you = TRUE;
1919       }
1920       else {
1921         $user->chat_ban = 0;
1922         $user->chat_dlt = 0;
1923       }
1924
1925       if ($only_you) {
1926         $to_user = sprintf('chatt_sub("%s", [%d, "%s"],"%s");', $dt, $user->flags, xcape($user->name), xcape("== chat ban =="));
1927       }
1928       else {
1929         $to_user = sprintf('chatt_sub("%s", [%d, "%s"],"%s");', $dt, $user->flags, xcape($user->name), xcape($msg));
1930         // temporary silentiation for troll (will became array check)
1931         // if (strcasecmp($user->name,'JackRokka') != 0 && $user->sess != '47ea653f602e8')
1932         $to_room = $to_user;
1933       }
1934
1935       log_legal($curtime, $user, 
1936                 ($user->stat == 'room' ? 'room' : 'table '.$user->table),$msg);
1937       
1938       $user->chat_lst = "$msg";
1939       $user->chattime[$user->chat_cur % CHAT_N] = $curtime;
1940       $user->chat_cur++;
1941     }
1942
1943     if ($to_all) {
1944       $to_room = $to_all;
1945       $to_tabl = $to_all;
1946     }
1947
1948     //
1949     //  Output to clients
1950     //
1951
1952     if ($to_user != FALSE) {
1953       $user->comm[$user->step % COMM_N] =  "gst.st = ".($user->step+1)."; ";
1954       $user->comm[$user->step % COMM_N] .= $to_user;
1955       $user->step_inc();
1956     }
1957
1958     if ($to_room != FALSE) {
1959       for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
1960         $user_cur = $this->user[$i];
1961         if ($target != "" && $user_cur->name != $target)
1962           continue;
1963         if ($user_cur->sess == '' || $user_cur->stat == 'table' || $user->idx_get() == $i)
1964           continue;
1965         
1966         if ($is_normchat == TRUE) {
1967           // use MAP_AUTH to check if auth or isolation
1968           if ($user_cur->flags & USER_FLAG_MAP_AUTH) {
1969             if (($user->flags & USER_FLAG_AUTH) == 0) {
1970               continue;
1971             }
1972           }
1973         }
1974         /*
1975         else if ($is_ticker) {
1976           if (($user_cur->flags & USER_FLAG_MAP_AUTH) == USER_FLAG_ISOLAUTH) {
1977             if ($user->table >= TABLES_AUTH_N)
1978               continue;
1979           }
1980         }
1981         */
1982         $user_cur->comm[$user_cur->step % COMM_N] =  "gst.st = ".($user_cur->step+1)."; ";
1983         $user_cur->comm[$user_cur->step % COMM_N] .= $to_room; 
1984         $user_cur->step_inc();
1985       }
1986     }
1987     
1988     if ($to_tabl) {
1989       // FIXME BRISK4: include for each kind of table
1990       require_once("${G_base}briskin5/Obj/briskin5.phh");
1991       // Before all align times with table timeout
1992       for ($table_idx = 0 ; $table_idx < TABLES_N ; $table_idx++) {
1993         $table_cur = $this->table[$table_idx];
1994         // if the table is complete and exists its shared mem we get the info about users lacc
1995         
1996         if ($table_cur->player_n == PLAYERS_N) {
1997           log_main("PLAYERS == N TABLE ".$table_idx);
1998         
1999           if (($sem = Bin5::lock_data(TRUE, $table_idx)) != FALSE) { 
2000             log_main("bin5 lock data success");
2001             
2002             $no_recovery = FALSE;
2003             if (($bri = Bin5::load_data($table_idx)) != FALSE) {
2004               if ($table_cur->table_token != $bri->table_token) {
2005                 log_main("ERROR: not matching table_token. Room: ".$table_cur->table_token."  Table: ".$bri->table_token);
2006                 $bri = FALSE;
2007               }
2008             }
2009             
2010             if ($bri != FALSE) {
2011               $bri_table = $bri->table[0];
2012               for ($i = 0 ; $i < $bri_table->player_n ; $i++) {
2013                 // stat must be "table" by definition
2014                 $bri_user = $bri->user[$i];
2015               
2016                 if ($target != "" && $bri_user->name != $target)
2017                   continue;
2018                 log_main("writa: ".$user_mesg);
2019                 $bri_user->comm[$bri_user->step % COMM_N] = "gst.st = ".($bri_user->step+1)."; ";
2020                 $bri_user->comm[$bri_user->step % COMM_N] .= $to_tabl;
2021                 $bri_user->step_inc();
2022               }
2023               Bin5::save_data($bri);
2024             }
2025             Bin5::unlock_data($sem);
2026           } // bri::lock_data
2027         } //  if ($table_cur->player_n == PLAYERS_N) {
2028       } //  for ($table_idx = 0 ; $table_idx < TABLES_N ; $table_idx++) {
2029     } // if ($to_tabl == true ...
2030
2031     if ($update_room) {
2032       if ($user->stat == 'room' && $user->subst == 'standup') {
2033         $this->standup_update($user);
2034       }
2035       else if ($user->stat == 'room' && $user->subst == 'sitdown') {
2036         log_main("chatt_send pre table update");
2037         $this->table_update($user);
2038         log_main("chatt_send post table update");
2039       }
2040     } // if ($update_room ...
2041
2042     return;
2043   } // function chatt_send( ...
2044
2045   function get_user($sess, &$idx)
2046   {
2047     GLOBAL $PHP_SELF;
2048
2049     if (validate_sess($sess)) {
2050       for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
2051         if (strcmp($sess, $this->user[$i]->sess) == 0) {
2052           // find it
2053           $idx = $i;
2054           $ret = $this->user[$i];
2055           return ($ret);
2056         }
2057       }
2058       log_main(sprintf("get_user: Wrong sess from page [%s]",$PHP_SELF));
2059       // for ($i = 0 ; $i < MAX_PLAYERS ; $i++) 
2060       // log_main(sprintf("get_user: Wrong sess compared with [%s]",$this->user[$i]->sess));
2061     }
2062     else {
2063       log_main(sprintf("get_user: Wrong strlen [%s]",$sess));
2064     }
2065
2066     return (FALSE);
2067   }
2068
2069   /*
2070    * function add_user(&$room, &$sess, &$idx, $name, $pass, $ip)
2071    *
2072    * RETURN VALUE:
2073    *   if ($idx >  -1    && ret == FALSE)  =>  duplicated nick
2074    *   if ($idx == -2    && ret == FALSE)  =>  invalid name
2075    *   if ($idx == -3    && ret == FALSE)  =>  wrong password
2076    *   if ($idx == -1    && ret == FALSE)  =>  no space left
2077    *   if ($idx ==  0    && ret == user)   =>  SUCCESS
2078    *   if ($idx == -$idx && ret == user)   =>  SUCCESS (but the login exists in the auth db)
2079    */
2080
2081   function add_user(&$sess, &$idx, $name, $pass, $ip)
2082   {
2083     GLOBAL $G_base, $CO_list;
2084
2085     $idx = 0;
2086
2087     $authenticate = FALSE;
2088     $user_type    = 0;
2089     $login_exists = FALSE;
2090     $ghost = -1;
2091     $ghost_auth = FALSE;
2092     $idx = -1;
2093     $idfree = -1;
2094     $code = FALSE;
2095
2096     if (($name_new = validate_name($name)) == FALSE) {
2097       $idx = -2;
2098       return (FALSE);
2099     }
2100
2101     log_auth("XXX", sprintf("ARRIVA: [%s] pass:[%s]", $sess, ($pass == FALSE ? "FALSE" : $pass)));
2102     if (validate_sess($sess) == FALSE) 
2103       $sess = "";
2104
2105     /* if pass != FALSE verify the login with pass */
2106     log_auth("XXX", "auth1");
2107
2108     if (($bdb = BriskDB::create()) != FALSE) {
2109         $bdb->users_load();
2110         if ($pass != FALSE) { // TODO: here add a method to $bdb to check if the db is available.
2111             log_auth("XXX", "auth2");
2112             $authenticate = $bdb->login_verify($name_new, $pass, $code);
2113             log_auth("XXX", "authenticate: ".($authenticate != FALSE ? "TRUE" : "FALSE"));
2114             
2115             if ($authenticate != FALSE) {
2116                 $user_type = $authenticate->type_get();
2117             }
2118             else {
2119                 $idx = -3;
2120                 return (FALSE);
2121             }
2122         }
2123         else {
2124             $login_exists =  $bdb->login_exists($name_new);
2125         }
2126     }
2127     else {
2128         // if db is down, send a warning and verify only current users
2129         // no actions at this moment
2130     }
2131     for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
2132       /* free user ? */
2133       if (strcmp($sess, $this->user[$i]->sess) == 0) {
2134         if ($idx == -1)
2135           $idx = $i;
2136       }
2137       if ($idfree == -1 && strcmp($this->user[$i]->sess, "") == 0) {
2138         $idfree = $i;
2139         continue; // NOTE: CHECK IT !!
2140       }
2141       if (strcasecmp($this->user[$i]->name, $name_new) == 0) {
2142           if ($authenticate != FALSE) {
2143               $ghost = $i;
2144               $ghost_auth = ($this->user[$i]->flags & USER_FLAG_AUTH);
2145           }
2146           else {
2147               $idx = $i;
2148               break;
2149           }
2150       }
2151     }
2152     if ($idx == -1)
2153       $idx = $idfree;
2154
2155     log_auth("XXX", sprintf("TROVATO A QUESTO PUNTO [%d] sess [%s] name [%s]", $idx, $sess, $name_new));
2156
2157     /* there is another user logged with your account and you and him have authenticated => new user
2158        get the session of the old user */
2159     if ($ghost > -1 && $ghost_auth && ($authenticate != FALSE)) {
2160       /* swap session */
2161
2162       $ghost_user = $this->user[$ghost];
2163       $curtime = time();
2164       $ghost_user->step_inc();
2165       if ($sess == "") {
2166         $sess = uniqid(""); 
2167         $ghost_user->sess = $sess;
2168       }
2169       else {
2170         $ghost_user->sess = $sess;
2171       }
2172       
2173       // If user at the table we need to update the table data too
2174       $table_idx = $ghost_user->table;
2175       if ($ghost_user->stat == "table" && $this->table[$table_idx]->player_n == PLAYERS_N) {
2176         // FIXME BRISK4: include for each kind of table
2177         require_once("${G_base}briskin5/Obj/briskin5.phh");
2178         if (($brisem = Bin5::lock_data(TRUE, $table_idx)) != FALSE) { 
2179           if (($bri = Bin5::load_data($table_idx)) != FALSE) {
2180             if ($bri->the_end != TRUE) {
2181               $bri->user[$ghost_user->table_pos]->step_inc();
2182               $bri->user[$ghost_user->table_pos]->sess = $sess;
2183               Bin5::save_data($bri);
2184             }
2185           }
2186           Bin5::unlock_data($brisem);
2187         }
2188       }
2189
2190       $idx = $ghost;
2191       return ($this->user[$ghost]);
2192     }
2193     else if ($idx != -1 && $i == MAX_PLAYERS) {
2194       /* SUCCESS */
2195       $curtime = time();
2196       if ($sess == "") {
2197         $sess = uniqid("");
2198         $this->user[$idx]->sess = $sess;
2199       }
2200       else {
2201         $this->user[$idx]->sess = $sess;
2202       }
2203       $this->user[$idx]->name = $name_new; // OK - add new user
2204       $this->user[$idx]->stat_set("room");
2205       $this->user[$idx]->step_set(0);
2206       while (array_pop($this->user[$idx]->comm) != NULL);
2207       $this->user[$idx]->subst = "standup";
2208       $this->user[$idx]->lacc =   $curtime;
2209       $this->user[$idx]->laccwr = $curtime;
2210       $this->user[$idx]->bantime = 0;
2211       $this->user[$idx]->ip = $ip;
2212
2213       $this->user[$idx]->flags = $user_type;
2214       $this->user[$idx]->flags |= ($authenticate != FALSE ? USER_FLAG_AUTH : 0x00);
2215       $this->user[$idx]->flags |= ( ($pass != FALSE && $bdb == FALSE) ? USER_FLAG_DBFAILED : 0x00);
2216       log_auth("XXX", sprintf("FLAGS: [%x]", $this->user[$idx]->flags));
2217
2218       
2219       if ($authenticate != FALSE) {
2220         $this->user[$idx]->code = $authenticate->code_get();
2221         $this->user[$idx]->flags |= USER_FLAG_LISTAUTH;
2222
2223         if (isset($CO_list)) {
2224           if (strcmp($CO_list, "auth") == 0) {
2225             $this->user[$idx]->flags &= ~USER_FLAG_MAP_AUTH;
2226             $this->user[$idx]->flags |= USER_FLAG_LISTAUTH;
2227           }
2228           if (strcmp($CO_list, "isolation") == 0) {
2229             $this->user[$idx]->flags &= ~USER_FLAG_MAP_AUTH;
2230             $this->user[$idx]->flags |= USER_FLAG_ISOLAUTH;
2231           }
2232           else {
2233             $this->user[$idx]->flags &= ~USER_FLAG_MAP_AUTH;
2234           }
2235         }
2236       }
2237       
2238       if ($ghost > -1) {
2239         log_main("ghost: rename!");
2240         $ghost_user = $this->user[$ghost];
2241
2242         if ($ghost_auth == FALSE) {
2243           for ($sfx = 1 ; $sfx <= MAX_PLAYERS ; $sfx++) {
2244             $ghostname = 'ghost'.$sfx;
2245             for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
2246               if (strcmp("", $this->user[$i]->sess) == 0) 
2247                 continue;
2248               
2249               if (strcmp($this->user[$i]->name, $ghostname) == 0) {
2250                 $ghostname = '';
2251                 break;
2252               }
2253             }
2254             if ($ghostname != '')
2255               break;
2256           }
2257           
2258           $ghost_user->name = $ghostname;
2259           
2260           if ($ghost_user->stat == 'room' && $ghost_user->subst == 'standup') {
2261             $this->standup_update($ghost_user);
2262           }
2263           else {
2264             log_main("chatt_send pre table update");
2265             $this->table_update($ghost_user);
2266           log_main("chatt_send post table update");
2267           }
2268         } // if ($ghost_auth == FALSE
2269         else {
2270           // FIXME: cacciare il vecchio utente room && table (if needed)
2271           $ghost_user->the_end = TRUE;
2272           $ghost_user->lacc = 0;
2273           $this->garbage_manager(TRUE);
2274         }
2275       } //  if ($ghost > -1) {
2276
2277       $real_idx = $idx;
2278       if ($login_exists)
2279         $idx = -($idx + 1);
2280       log_main(sprintf("TROVATO LIBERO A [%d] sess [%s] name [%s] count [%d] name [%s] code [%s]", $idx, $sess, $name_new, count($this->user),$this->user[$real_idx]->name, $this->user[$real_idx]->code));
2281
2282       $ret = $this->user[$real_idx];
2283       return ($ret);
2284     }
2285
2286     return (FALSE);
2287   }
2288   
2289   function standup_update($user)
2290   {
2291     for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
2292       $user_cur = $this->user[$i];
2293       if ($user_cur->sess == '')
2294         continue;
2295
2296       log_main("STANDUP START: ".$user_cur->stat);
2297       
2298       if ($user_cur->stat == 'room') {
2299         $user_cur->comm[$user_cur->step % COMM_N] = "gst.st = ".($user_cur->step+1)."; ".$this->standup_content($user_cur);
2300         if ($user->idx_get() == $i) {
2301           $itin = ($user->flags & USER_FLAG_AUTH ? "<i>" : "");
2302           $itou = ($user->flags & USER_FLAG_AUTH ? "</i>" : "");
2303
2304           $user_cur->comm[$user_cur->step % COMM_N] .= sprintf('$("myname").innerHTML = "<b>%s%s%s</b>: ";', 
2305                                                                $itin, xcape($user->name), $itou);
2306         }
2307         log_main("FROM STANDUP: NAME: ".$user_cur->name." SENDED: ".$user_cur->comm[$user_cur->step % COMM_N]);
2308         
2309         $user_cur->step_inc();
2310       }
2311     }
2312   }
2313
2314   // Static functions
2315   static function create()
2316   {
2317     $room = new Room();
2318     
2319     return $room;
2320   }
2321   
2322   
2323   function load_data() 
2324   {
2325     GLOBAL $sess;
2326
2327     do {
2328       if (($tok = @ftok(FTOK_PATH."/main", "B")) == -1) {
2329         log_main("ftok failed");
2330         break;
2331       }
2332     
2333       if (($shm_sz = sharedmem_sz($tok)) == -1) {
2334         log_main("shmop_open failed");
2335       }
2336         
2337       if ($shm_sz == -1)
2338         $shm_sz = SHM_DIMS_MIN;
2339
2340       if ($shm = shm_attach($tok, $shm_sz)) {
2341           $room = @shm_get_var($shm, $tok); // CHECKED BELOW
2342           
2343           log_only("bri ==  ".($room == FALSE ?   "FALSE" : "TRUE")."  bri ===  ".($room === FALSE ? "FALSE" : "TRUE")."  bri isset ".(isset($room) ?   "TRUE" : "FALSE"));
2344           if (isset($room)) 
2345               log_only("bri count ".count($room));
2346           
2347           if ($room == FALSE) {
2348               log_only("INIT MAIN DATA");
2349               shm_detach($shm);
2350               
2351               $room = Room::create();
2352               
2353               log_shme("Room::create");
2354
2355               if (Room::save_data($room) == FALSE)
2356                   return FALSE;
2357
2358               return $room;
2359           }
2360           $room->shm_sz = $shm_sz;
2361           
2362           shm_detach($shm);
2363
2364           for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
2365               if (($room->user[$i] = User::load_data($i, FALSE)) == FALSE) {
2366                   log_crit("Bin5_user::load_data failed");
2367                   break;
2368               }
2369           }
2370           if ($i < MAX_PLAYERS) {
2371               break;
2372           }
2373       }
2374       
2375       //  
2376       // SHSPLIT: load users from the shared memory
2377       //
2378       return ($room);
2379     } while (0);
2380     
2381     return (FALSE);
2382   }
2383   
2384
2385   function save_data_orig($room) 
2386   {
2387     GLOBAL $sess;
2388     
2389     $shm =   FALSE;
2390     
2391     // var_dump($room);
2392     
2393     if (($tok = @ftok(FTOK_PATH."/main", "B")) == -1) 
2394       return (FALSE);
2395     
2396     while ($room->shm_sz < SHM_DIMS_MAX) {
2397       if (($shm = shm_attach($tok, $room->shm_sz)) == FALSE)
2398         break;
2399       
2400       // log_only("PUT_VAR DI ".strlen(serialize($room)));
2401       if (@shm_put_var($shm, $tok, $room) != FALSE) {
2402         shm_detach($shm);
2403         return (TRUE);
2404       }
2405       if (shm_remove($shm) === FALSE) {
2406         log_only("REMOVE FALLITA");
2407         break;
2408       }
2409       shm_detach($shm);
2410       $room->shm_sz += SHM_DIMS_DLT;
2411     } 
2412
2413     if ($shm)
2414       shm_detach($shm);
2415     
2416     return (FALSE);
2417   }
2418
2419
2420   function save_data($room) 
2421   {
2422       GLOBAL $sess;
2423     
2424       $ret =   FALSE;
2425       $shm =   FALSE;
2426     
2427       if (($tok = @ftok(FTOK_PATH."/main", "B")) == -1) 
2428           return (FALSE);
2429     
2430       // SHSPLIT: before save the $room you must save users, 
2431       //          detach from main struct and (then) reattach
2432       $user_park = array();
2433       for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
2434           $user_park[$i]  = $room->user[$i];
2435           $room->user[$i] = FALSE;
2436       }
2437
2438       while ($room->shm_sz < SHM_DIMS_MAX) {
2439           if (($shm = shm_attach($tok, $room->shm_sz)) == FALSE)
2440               break;
2441       
2442           // log_only("PUT_VAR DI ".strlen(serialize($room)));
2443           if (@shm_put_var($shm, $tok, $room) != FALSE) {
2444               log_shme("Room::save_data");
2445               $ret = TRUE;
2446               break;
2447           }
2448           if (shm_remove($shm) === FALSE) {
2449               log_only("REMOVE FALLITA");
2450               break;
2451           }
2452           shm_detach($shm);
2453           $room->shm_sz += SHM_DIMS_DLT;
2454       } 
2455
2456       if ($shm)
2457           shm_detach($shm);
2458     
2459       // SHSPLIT: reattach users to the room class
2460       for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
2461           User::save_data($user_park[$i], $i);
2462           $room->user[$i] = $user_park[$i];
2463       }
2464       log_load("FINISH: ".($ret == TRUE ? "TRUE" : "FALSE"));
2465
2466       return ($ret);
2467   }
2468
2469   static function lock_data($is_exclusive)
2470   {
2471       if (($res = file_lock(FTOK_PATH."/main", $is_exclusive)) != FALSE) {
2472           self::$delta_t = microtime(TRUE);
2473           log_lock("LOCK   room         [".self::$delta_t."]");
2474           
2475           return ($res);
2476       }
2477
2478       return (FALSE);
2479   }
2480   
2481   static function unlock_data($res)
2482   {
2483     GLOBAL $sess; 
2484     
2485     log_lock("UNLOCK room         [".(microtime(TRUE) - (self::$delta_t))."]");
2486
2487     file_unlock($res);
2488   }
2489
2490
2491   function standup_content($user)
2492   {
2493     $ret = "";
2494     $content = "";
2495     
2496     if ($user->stat != 'room')
2497       return;
2498     
2499     for ($i = 0 , $ct = 0 ; $ct < 4 && $i < MAX_PLAYERS ; $i++) {
2500       if ($this->user[$i]->sess == "" || $this->user[$i]->stat != "room" || $this->user[$i]->name == "")
2501         continue;
2502       $ct++;
2503     }
2504     
2505     // $content .= sprintf('<table cols=\\"%d\\" class=\\"table_standup\\">', $ct);
2506     
2507     $content = ' j_stand_cont( [ ';
2508
2509     for ($i = 0 , $ct = 0 ; $i < MAX_PLAYERS ; $i++) {
2510       if ($this->user[$i]->sess == "" || $this->user[$i]->stat != "room" || $this->user[$i]->name == "")
2511         continue;
2512       
2513       $flags = $this->user[$i]->flags;
2514       
2515       if ($this->user[$i]->subst == "standup") {
2516           if ($user->idx_get() == $i) { 
2517               $flags |= 1;
2518           }
2519           
2520           $content .= sprintf('%s[ %d, "%s" ]',($ct > 0 ? ', ' : ''), $flags, xcape($this->user[$i]->name));
2521           $ct++;
2522       }
2523     }
2524     $content .= ' ]);';
2525     
2526     return ($content);
2527   }
2528   
2529   function table_content($user, $table_idx)
2530   {
2531     $content = "";
2532     $ret = "";
2533     // TODO
2534     //
2535     //   Si possono usare i dati nella classe table
2536     //
2537     
2538     $sess = $user->sess;
2539     $table = $this->table[$table_idx];
2540     
2541     if ($user->stat != 'room')
2542       return;
2543     
2544     $content = "[ ";
2545     for ($i = 0 ; $i < $table->player_n ; $i++) {
2546         $user_cur = $this->user[$table->player[$i]];
2547         
2548         $flags = $user_cur->flags;
2549         
2550         if ($user->idx_get() == $table->player[$i]) 
2551             $flags |= 1;
2552         
2553         log_main($user_cur->name. sprintf(" IN TABLE [%d]", $table_idx));
2554         
2555         $content .= sprintf('%s[ %d, "%s" ]',($i == 0 ? '' : ', '), $flags, xcape($user_cur->name));
2556     }
2557
2558     $content .= ' ]';
2559
2560     $ret .= sprintf('j_tab_cont(%d, %s);', $table_idx, $content);
2561     
2562     return ($ret);
2563   }
2564
2565   static function garbage_time_is_expired($tm) 
2566   {
2567       $ret = TRUE;
2568       $fp = FALSE;
2569       do {
2570           if (file_exists(PROXY_PATH) == FALSE)
2571               mkdir(PROXY_PATH, 0775, TRUE);
2572           if (($fp = @fopen(PROXY_PATH."/garbage_time.expired", 'rb')) == FALSE)
2573               break;
2574           if (($s = fread($fp, 4)) == FALSE)
2575               break;
2576           if (mb_strlen($s, "ASCII") != 4)
2577               break;
2578           $arr = unpack('Le', $s);
2579           if ($arr['e'] > $tm)
2580               $ret = FALSE;
2581       } while (0);
2582       
2583       if ($fp != FALSE)
2584           fclose($fp);
2585       
2586       log_rd2("END: return ".($ret ? "TRUE" : "FALSE"));
2587       
2588       return ($ret);
2589   }
2590
2591   static function garbage_time_expire_set($tm) 
2592   {
2593       do {
2594           if (file_exists(PROXY_PATH) == FALSE)
2595               mkdir(PROXY_PATH, 0775, TRUE);
2596           if (($fp = @fopen(PROXY_PATH."/garbage_time.expired", 'wb')) == FALSE)
2597               break;
2598           fwrite($fp, pack("L",$tm));
2599           fclose($fp);
2600           
2601           return (TRUE);
2602       } while (0);
2603       
2604       return (FALSE);
2605   }
2606
2607
2608 } // end class Room
2609
2610 function make_seed()
2611 {
2612   list($usec, $sec) = explode(' ', microtime());
2613   return (float) $sec + ((float) $usec * 100000);
2614 }
2615
2616 function btrace_line($ar)
2617 {
2618     GLOBAL $G_btrace_pref_sub;
2619
2620     $ret = "";
2621     for ($i = 0 ; $i < count($ar) ; $i++) {
2622         $with_class = isset($ar[$i]['class']);
2623         $with_file  = isset($ar[$i]['file']);
2624         $ret .= sprintf("%s%s%s (%s:%d)", ($i == 0 ? "" : ", "), 
2625                         ($with_class ?  $ar[$i]['class'].$ar[$i]['type'] : ""), 
2626                         $ar[$i]['function'], ($with_file ? str_replace($G_btrace_pref_sub, "", $ar[$i]['file']) : ""), 
2627                         ($with_file ? $ar[$i]['line'] : ""));
2628     }
2629     
2630     return ($ret);
2631 }
2632
2633 function trace_ftok($id, $add)
2634 {
2635     // NOTE: without space to use sed to substitute "= @ftok("  with "= @ftok("
2636     $tok=@ftok($id, $add);
2637
2638     log_shme($tok.": ".$id." + ".$add);
2639
2640     return ($tok);
2641 }
2642
2643 function log_mop($step, $log)
2644 {
2645     GLOBAL $sess, $PHP_SELF;
2646     
2647     if (BRISK_SINGLE_SESS == "" && (BRISK_DEBUG & DBG_LMOP) == 0)
2648         return;
2649     
2650     if (isset($sess) == FALSE)
2651         $ssess = "XXXX";
2652     else
2653         $ssess = $sess;
2654     
2655     if (( (BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_LMOP) == 0)
2656         return;
2657     
2658     if (BRISK_DEBUG & DBG_TRAC) 
2659         $btrace = btrace_line(debug_backtrace());
2660     else
2661         $btrace = "";
2662     if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
2663         fwrite($fp, sprintf("LMOP: [%f] [%05d] [%s] [%s]\n", gettimeofday(TRUE), $step, $log, $btrace));
2664         fclose($fp);
2665     }
2666 }
2667
2668
2669 function log_only2($log)
2670 {
2671     GLOBAL $sess, $PHP_SELF;
2672     
2673     if (BRISK_SINGLE_SESS == "" && (BRISK_DEBUG & DBG_ONL2) == 0)
2674         return;
2675     
2676     if (isset($sess) == FALSE)
2677         $ssess = "XXXX";
2678     else
2679         $ssess = $sess;
2680     
2681     if (( (BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_ONL2) == 0)
2682         return;
2683     
2684     if (BRISK_DEBUG & DBG_TRAC) 
2685         $btrace = btrace_line(debug_backtrace());
2686     else
2687         $btrace = "";
2688     if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
2689         fwrite($fp, sprintf("ONL2: [%s] [%s] [%s]\n", $ssess, $log, $btrace));
2690         fclose($fp);
2691     }
2692 }
2693
2694 function log_crit($log)
2695 {
2696     GLOBAL $sess, $PHP_SELF;
2697     
2698     if (BRISK_SINGLE_SESS == "" && (BRISK_DEBUG & DBG_CRIT) == 0)
2699         return;
2700     
2701     if (isset($sess) == FALSE)
2702         $ssess = "XXXX";
2703     else
2704         $ssess = $sess;
2705     
2706     if (( (BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_CRIT) == 0)
2707         return;
2708     
2709     if (BRISK_DEBUG & DBG_TRAC) 
2710         $btrace = btrace_line(debug_backtrace());
2711     else
2712         $btrace = "";
2713     if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
2714         fwrite($fp, sprintf("CRIT: [%s] [%s] [%s]\n", $ssess, $log, $btrace));
2715         fclose($fp);
2716     }
2717 }
2718
2719 function log_only($log)
2720 {
2721     GLOBAL $sess, $PHP_SELF;
2722     
2723     if (BRISK_SINGLE_SESS == "" && (BRISK_DEBUG & DBG_ONLY) == 0)
2724         return;
2725     
2726     if (isset($sess) == FALSE)
2727         $ssess = "XXXX";
2728     else
2729         $ssess = $sess;
2730     
2731     if (( (BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_ONLY) == 0)
2732         return;
2733     
2734     if (BRISK_DEBUG & DBG_TRAC) 
2735         $btrace = btrace_line(debug_backtrace());
2736     else
2737         $btrace = "";
2738     if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
2739         fwrite($fp, sprintf("ONLY: [%s] [%s] [%s]\n", $ssess, $log, $btrace));
2740         fclose($fp);
2741     }
2742 }
2743
2744 function log_main($log)
2745 {
2746     GLOBAL $sess, $PHP_SELF;
2747     
2748     if (BRISK_SINGLE_SESS == "" && (BRISK_DEBUG & DBG_MAIN) == 0)
2749         return;
2750     
2751     if (isset($sess) == FALSE)
2752         $ssess = "XXXX";
2753     else
2754         $ssess = $sess;
2755     
2756     if (( (BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_MAIN) == 0)
2757         return;
2758     
2759     if (BRISK_DEBUG & DBG_TRAC) 
2760         $btrace = btrace_line(debug_backtrace());
2761     else
2762         $btrace = "";
2763     if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
2764         fwrite($fp, sprintf("MAIN: [%s] [%s] [%s]\n", $ssess, $log, $btrace));
2765         fclose($fp);
2766     }
2767 }
2768
2769 function log_rd($log)
2770 {
2771     GLOBAL $sess, $PHP_SELF;
2772     
2773     if (BRISK_SINGLE_SESS == "" && (BRISK_DEBUG & DBG_READ) == 0)
2774         return;
2775     
2776     if (isset($sess) == FALSE)
2777         $ssess = "XXXX";
2778     else
2779         $ssess = $sess;
2780     
2781     if (( (BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_READ) == 0)
2782         return;
2783
2784     if (BRISK_DEBUG & DBG_TRAC) 
2785         $btrace = btrace_line(debug_backtrace());
2786     else
2787         $btrace = "";    
2788     if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
2789         fwrite($fp, sprintf("READ: [%s] [%s] [%s]\n", $ssess, $log, $btrace));
2790         fclose($fp);
2791     }
2792 }
2793
2794 function log_rd2($log)
2795 {
2796     GLOBAL $sess, $PHP_SELF;
2797     
2798     if (BRISK_SINGLE_SESS == "" && (BRISK_DEBUG & DBG_REA2) == 0)
2799         return;
2800     
2801     if (isset($sess) == FALSE)
2802         $ssess = "XXXX";
2803     else
2804         $ssess = $sess;
2805     
2806     if (( (BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_REA2) == 0)
2807         return;
2808     
2809     if (BRISK_DEBUG & DBG_TRAC) 
2810         $btrace = btrace_line(debug_backtrace());
2811     else
2812         $btrace = "";
2813     
2814     if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
2815         fwrite($fp, sprintf("REA2: [%s] [%s] [%s]\n", $ssess, $log, $btrace));
2816         fclose($fp);
2817     }
2818 }
2819
2820 function log_send($log)
2821 {
2822     GLOBAL $sess, $PHP_SELF;
2823     
2824     if (BRISK_SINGLE_SESS == "" && (BRISK_DEBUG & DBG_SEND) == 0)
2825         return;
2826     
2827     if (isset($sess) == FALSE)
2828         $ssess = "XXXX";
2829     else
2830         $ssess = $sess;
2831     
2832     if (( (BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_SEND) == 0)
2833         return;
2834     
2835     if (BRISK_DEBUG & DBG_TRAC) 
2836         $btrace = btrace_line(debug_backtrace());
2837     else
2838         $btrace = "";
2839     if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
2840         fwrite($fp, sprintf("SEND: [%s] [%s] [%s]\n", $ssess, $log, $btrace));
2841         fclose($fp);
2842     }
2843 }
2844
2845 function log_lock($log)
2846 {
2847     GLOBAL $sess, $PHP_SELF;
2848     
2849     if (BRISK_SINGLE_SESS == "" && (BRISK_DEBUG & DBG_LOCK) == 0)
2850         return;
2851     
2852     if (isset($sess) == FALSE)
2853         $ssess = "XXXX";
2854     else
2855         $ssess = $sess;
2856     
2857     if (( (BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_LOCK) == 0)
2858         return;
2859     
2860     if (BRISK_DEBUG & DBG_TRAC) 
2861         $btrace = btrace_line(debug_backtrace());
2862     else
2863         $btrace = "";
2864     if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
2865         fwrite($fp, sprintf("LOCK: [%s] [%s] [%s]\n", $ssess, $log, $btrace));
2866         fclose($fp);
2867     }
2868 }
2869
2870 function log_wr($log)
2871 {
2872     GLOBAL $sess, $PHP_SELF;
2873     
2874     if (BRISK_SINGLE_SESS == "" && (BRISK_DEBUG & DBG_WRIT) == 0)
2875         return;
2876     
2877     if (isset($sess) == FALSE)
2878         $ssess = "XXXX";
2879     else
2880         $ssess = $sess;
2881     
2882     if (( (BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_WRIT) == 0)
2883         return;
2884     
2885     if (BRISK_DEBUG & DBG_TRAC) 
2886         $btrace = btrace_line(debug_backtrace());
2887     else
2888         $btrace = "";
2889     if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
2890         fwrite($fp, sprintf("WRIT: [%s] [%s] [%s]\n", $ssess, $log, $btrace));
2891         fclose($fp);
2892     }
2893 }
2894
2895 function log_load($log)
2896 {
2897     GLOBAL $sess, $PHP_SELF;
2898     
2899     if (BRISK_SINGLE_SESS == "" && (BRISK_DEBUG & DBG_LOAD) == 0)
2900         return;
2901     
2902     if (isset($sess) == FALSE)
2903         $ssess = "XXXX";
2904     else
2905         $ssess = $sess;
2906     
2907     if (( (BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_LOAD) == 0)
2908         return;
2909     
2910     if (BRISK_DEBUG & DBG_TRAC) 
2911         $btrace = btrace_line(debug_backtrace());
2912     else
2913         $btrace = "";
2914     if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
2915         fwrite($fp, sprintf("LOAD: [%s] [%s] [%s]\n", $ssess, $log, $btrace));
2916         fclose($fp);
2917     }
2918 }
2919
2920 function log_auth($sess, $log)
2921 {
2922     GLOBAL $PHP_SELF;
2923
2924     if (BRISK_SINGLE_SESS == "" && (BRISK_DEBUG & DBG_AUTH) == 0)
2925         return;
2926     
2927     if (( (BRISK_DEBUG | ($sess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_AUTH) == 0)
2928         return;
2929     
2930     if (BRISK_DEBUG & DBG_TRAC) 
2931         $btrace = btrace_line(debug_backtrace());
2932     else
2933         $btrace = "";
2934     if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
2935         fwrite($fp, sprintf("LOAD: [%s] [%d] [%s] [%s]\n", $sess, time(), $log, $btrace));
2936         fclose($fp);
2937     }
2938 }
2939
2940 function log_shme($log)
2941 {
2942     GLOBAL $sess, $PHP_SELF;
2943     
2944     if (BRISK_SINGLE_SESS == "" && (BRISK_DEBUG & DBG_SHME) == 0)
2945         return;
2946     
2947     if (isset($sess) == FALSE)
2948         $ssess = "XXXX";
2949     else
2950         $ssess = $sess;
2951     
2952     if (( (BRISK_DEBUG | ($ssess == BRISK_SINGLE_SESS ? BRISK_SINGLE_DEBUG : 0) ) & DBG_SHME) == 0)
2953         return;
2954     
2955     if (BRISK_DEBUG & DBG_TRAC) 
2956         $btrace = btrace_line(debug_backtrace());
2957     else
2958         $btrace = "";
2959     if (($fp = @fopen(LEGAL_PATH."/brisk.log", 'a')) != FALSE) {
2960         fwrite($fp, sprintf("SHME: [%s] [%s] [%s]\n", $ssess, $log, $btrace));
2961         fclose($fp);
2962     }
2963 }
2964
2965
2966
2967 // function log_legal($curtime, $sess, $name, $where, $mesg) 
2968 function log_legal($curtime, $user, $where, $mesg) 
2969 {
2970   GLOBAL $_SERVER;
2971
2972   if (($fp = @fopen(LEGAL_PATH."/legal.log", 'a')) != FALSE) {
2973     /* Unix time | session | nickname | IP | where was | mesg */
2974     fwrite($fp, sprintf("%ld|%s|%s|%s|%s|%s|%s|\n", $curtime, $user->sess,
2975                         ($user->flags & USER_FLAG_AUTH ? 'A' : 'N'),
2976                         $user->name, $_SERVER['REMOTE_ADDR'], $where , $mesg));
2977     fclose($fp);
2978   }
2979 }
2980
2981 function table_act_content($isstanding, $sitted, $table, $cur_table, $allowed)
2982 {
2983   $ret = "";
2984
2985   if ($isstanding) {
2986     if ($sitted < PLAYERS_N) {
2987       if ($allowed)
2988         $act = 'sit';
2989       else
2990         $act = 'reserved';
2991     }
2992   }
2993   else {
2994     if ($table == $cur_table)
2995       $act = 'wake';
2996     else
2997       $act = 'none';
2998   }
2999
3000   if ($act != '')
3001     $ret = sprintf('j_tab_act_cont(%d, \'%s\');', $table, $act);
3002
3003   return ($ret);
3004 }
3005
3006 function show_notify($text, $tout, $butt, $w, $h)
3007 {
3008   log_main("SHOW_NOTIFY: ".$text);
3009   return sprintf('var noti = new notify(gst,"%s",%d,"%s",%d,%d);', $text, $tout, $butt, $w, $h);
3010 }
3011
3012 function show_notify_ex($text, $tout, $butt, $w, $h, $is_opaque, $block_time)
3013 {
3014   log_main("SHOW_NOTIFY OPAQUE: ".$text);
3015   return sprintf('var noti = new notify_ex(gst,"%s",%d,"%s",%d,%d, %s, %d);', $text, $tout, $butt, $w, $h, ($is_opaque ? "true" : "false"), $block_time);
3016 }
3017
3018
3019 function root_wellcome($user)
3020 {
3021   GLOBAL $root_wellarr, $G_lang;
3022   $ret = "";
3023
3024   $curtime = time();
3025   $dt = date("H:i ", $curtime);
3026     
3027   for ($i = 0 ; $i < count($root_wellarr[$G_lang]) ; $i++)
3028     $ret .= sprintf('chatt_sub("%s", [2, "%s"],"%s");', $dt, NICKSERV, str_replace('"', '\"', $root_wellarr[$G_lang][$i]));
3029
3030   return ($ret);
3031 }
3032
3033
3034
3035 function validate_sess($sess) 
3036 {
3037   if (strlen($sess) == SESS_LEN) 
3038     return (TRUE);
3039   else
3040     return (FALSE);
3041 }
3042
3043 function validate_name($name) 
3044 {
3045   $name_new = str_replace(' ', '_', substr(trim($name),0,12));
3046
3047   for ($i = 0 ; $i < strlen($name_new) ; $i++) {
3048     $c = $name_new[$i];
3049     if (($c >= "a" && $c <= "z") || ($c >= "A" && $c <= "Z") || ($c >= "0" && $c <= "9"))
3050       return ($name_new);
3051   }
3052
3053   return (FALSE);
3054 }
3055
3056 function playsound($filename)
3057 {
3058   return (sprintf('playsound("flasou", "%s");', $filename));
3059 }
3060
3061 function secstoword($secs)
3062 {
3063   GLOBAL $G_lang;
3064
3065   $ret = "";
3066
3067   $mins = floor($secs / 60);
3068   $secs = $secs % 60;
3069   if ($G_lang == 'en') {
3070     if ($mins > 0) 
3071       $ret = sprintf("%d minute%s%s", $mins, ($mins > 1 ? "s" : ""), ($secs > 0 ? " and " : ""));
3072     
3073     if ($secs > 0)
3074       $ret .= sprintf("%d second%s", $secs, ($secs > 1 ? "s" : ""));
3075   }
3076   else {
3077     if ($mins > 0) 
3078       $ret = sprintf("%d minut%s%s", $mins, ($mins > 1 ? "i" : "o"), ($secs > 0 ? " e " : ""));
3079     
3080     if ($secs > 0)
3081       $ret .= sprintf("%d second%s", $secs, ($secs > 1 ? "i" : "o"));
3082   }
3083   return ($ret);
3084 }
3085
3086 function sharedmem_sz($tok)
3087 {
3088   if (($shm_id = @shmop_open($tok, 'a', 0, 0)) == FALSE) {
3089     log_main("shmop_open failed");
3090     return (-1);
3091   }
3092   $shm_sz = shmop_size($shm_id);
3093   shmop_close($shm_id);
3094   
3095   log_main("shm_sz: ".$shm_sz."   SHM_DIMS: ".SHM_DIMS);
3096   return ($shm_sz);
3097 }    
3098
3099 class Warrant {
3100     static $delta_t;
3101
3102   static function lock_data($is_exclusive)
3103   {
3104       if (($res = file_lock(FTOK_PATH."/warrant", $is_exclusive)) != FALSE) {
3105           self::$delta_t = microtime(TRUE);
3106           log_lock("LOCK   warrant      [".self::$delta_t."]");
3107           
3108           return ($res);
3109       }
3110
3111       return (FALSE);
3112   }
3113   
3114   static function unlock_data($res)
3115   {
3116     GLOBAL $sess; 
3117     
3118     log_lock("UNLOCK warrant      [".(microtime(TRUE) - (self::$delta_t))."]");
3119
3120     file_unlock($res);
3121   }
3122 }
3123
3124 class Poll {
3125     static $delta_t;
3126
3127   static function lock_data($is_exclusive)
3128   {
3129       if (($res = file_lock(FTOK_PATH."/poll", $is_exclusive)) != FALSE) {
3130           self::$delta_t = microtime(TRUE);
3131           log_lock("LOCK   poll         [".self::$delta_t."]");
3132           
3133           return ($res);
3134       }
3135
3136       return (FALSE);
3137   }
3138   
3139   static function unlock_data($res)
3140   {
3141     GLOBAL $sess; 
3142     
3143     log_lock("UNLOCK poll         [".(microtime(TRUE) - (self::$delta_t))."]");
3144     
3145     file_unlock($res);
3146   }
3147 }
3148
3149 ?>