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