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