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