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