multi-language
[brisk.git] / web / index_wr.php
1 <?php
2 /*
3  *  brisk - index_wr.php
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  * $Id$
24  *
25  */
26
27 require_once("Obj/brisk.phh");
28 require_once("Obj/auth.phh");
29 // require_once("Obj/proxyscan.phh");
30
31 // Use of proxies isn't allowed.
32 // if (is_proxy()) {
33 //   sleep(5);
34 //   exit;
35 // }
36
37 $mlang_indwr = array( 'btn_backtotab' => array( 'it' => 'Torna ai tavoli.',
38                                                 'en' => 'Back to tables.' ),
39                       'warrrepl'  => array( 'it' => '<br>Il nominativo &egrave; stato inoltrato all\'amministratore.<br><br>Nell\'arco di pochi giorni verr&agrave;<br><br>notificata al garantito l\'avvenuta registrazione.',
40                                             'en' => '<br>The subscription was forwarded to the administrator.<br><br>In a few days we will notify<br><br>your friend the occurred registration.'),
41                       'btn_close' => array( 'it' => 'chiudi',
42                                             'en' => 'close' ),
43                       'commerr' => array( 'it' => '<b>E\' occorso un errore durante il salvataggio, riprova o contatta l\'amministratore.</b>',
44                                           'en' => '<b>An error was occurred during the saving, try again or contact the administrator.</b>'),
45                       'warrmust' => array( 'it' => '<b>Per autenticare qualcuno devi a tua volta essere autenticato.</b>',
46                                            'en' => 'To authenticate somebody you have to be authenticated in your turn'),
47                       'mesgrepl' => array( 'it' => '<br><br>Il messaggio &egrave; stato inoltrato all\'amministratore.',
48                                            'en' => '<br><br>The message was forwarded to the administrator'),
49                       'mesgmust' => array( 'it' => '<b>Per mandare messaggi all\'amministratore devi essere autenticato.</b>',
50                                            'en' => 'To send a message to the administrator you have to be authenticated'),
51                       'shutmsg'  => array( 'it' => '<b>Il server sta per essere riavviato, non possono avere inizio nuove partite.</b>',
52                                            'en' => '<b>The server is going to be rebooted, new games are not allowed.</b>'),
53                       'mustauth' => array( 'it' => '<b>Il tavolo a cui volevi sederti richiede autentifica.</b>',
54                                            'en' => '<b>the table where you want to sit require authentication</b>'),
55                       'tabwait_a'=> array( 'it' => '<b>Il tavolo si &egrave; appena liberato, ci si potr&agrave; sedere tra ',
56                                            'en' => '<b>The table is only just opened, you will sit down in '), // FIXME
57                       'tabwait_b'=> array( 'it' => ' secondi.</b>',
58                                            'en' => ' seconds.</b>'),
59                       'pollmust' => array( 'it' => '<b>Per partecipare al sondaggio devi essere autenticato.</b>',
60                                            'en' => '<b>To vote for the poll you have to be authenticated</b>'),
61                       'pollnone' => array( 'it' => '<br><br>Al momento non è attivo alcun sondaggio.',
62                                            'en' => '<br><br>At this moment no polls are active.'),
63                       'pollchoo' => array( 'it' => '<br><br>Non hai espresso nessuna preferenza.',
64                                            'en' => '<br><br>You don\'t choose any preference, do it'), 
65                       'pollagai' => array( 'it' => '<br>Per questo sondaggio hai già votato.<br><br>Non si può esprimere la propria preferenza più di una volta.',
66                                            'en' => '<br>You just express your preference about this poll.<br><br>You cannot do it again.'),
67                       'pollrec'  => array ('it' => '<br><br>Il tuo voto è stato registrato.',
68                                            'en' => '<br><br>Your vote had be stored.'),
69                       'badwake_a'=> array( 'it' => '<br>Ti sei alzato da un tavolo senza il consenso degli altri giocatori.<br><br>Dovrai aspettare ancora ',
70                                            'en' => '<br>You stand up without the permission of the other players.<br><br>You will wait '),
71                       'badwake_b'=> array( 'it' => ' prima di poterti sedere nuovamente.',
72                                            'en' => ' before you can sit down again.'),
73                       'btn_stays'=> array( 'it' => 'resta in piedi.',
74                                            'en' => 'stay standing.'),
75                       'badsit_a' => array( 'it' => '<br>Tu o qualcuno col tuo stesso indirizzo IP si è alzato da un tavolo senza il consenso degli altri giocatori.<br><br>Dovrai aspettare ancora ',
76                                            'en' => '<br>You or someone with your same IP address is standing up from a table without the permission of the other players <br><br>You will wait '), 
77                       'badsit_b' => array( 'it' => ' prima di poterti sedere nuovamente.<br><br>Se non sei stato tu ad alzarti e possiedi un login con password, autenticandoti con quello, potrai accedere.',
78                                            'en' => ' before you can sit down again. If you don\'t leave the table and you have a login with a password, authenticating with this one you will access')
79
80                       );
81
82 log_load("index_wr.php");
83
84 if (DEBUGGING == "local" && $_SERVER['REMOTE_ADDR'] != '127.0.0.1') {
85   echo "Debugging time!";
86   exit;
87 }
88
89 /*
90  *  MAIN
91  */
92
93 /* if the IP is banned, exit without do nothing */
94 if (array_search($_SERVER['REMOTE_ADDR'], $G_black_list) !== FALSE) {
95   sleep(5);
96   exit;
97 }
98
99 $is_spawn = FALSE;
100
101 log_wr('COMM: '.xcapemesg($mesg));
102
103 $sem = Room::lock_data();
104 if (($room = &Room::load_data()) == FALSE) {
105   echo "Load data error";
106   log_wr("Load data error");
107   Room::unlock_data($sem);
108   exit;
109 }
110 if (($user = &$room->get_user($sess, &$idx)) == FALSE) {
111   Room::unlock_data($sem);
112   $argz = explode('|', xcapemesg($mesg));
113
114   if ($argz[0] == 'getchallenge') {
115     GLOBAL $cli_name;
116     if (($a_sem = Challenges::lock_data()) != FALSE) { 
117       log_main("chal lock data success");
118       
119       if (($chals = &Challenges::load_data()) != FALSE) {
120         $curtime = time();
121
122         $token =  uniqid("");
123         // echo '2|'.$argz[1].'|'.$token.'|'.$_SERVER['REMOTE_ADDR'].'|'.$curtime.'|';
124         // exit;
125
126         if (($login_new = validate_name(urldecode($cli_name))) != FALSE) {
127           if ($chals->add($login_new, $token, $_SERVER['REMOTE_ADDR'], $curtime) != FALSE) {
128             echo '0|'.$token;
129           }
130           else {
131             echo '1|';
132           }
133         }
134         else {
135           echo '1|';
136         }
137         if ($chals->ismod()) {
138           Challenges::save_data(&$chals);
139         }
140       }
141       
142
143       Challenges::unlock_data($a_sem);
144     }
145   }
146   else if ($argz[0] == 'auth') {
147     printf("challenge|ok");
148   }
149   else if ($argz[0] == 'help') {
150     /* MLANG: "torna ai tavoli" */ 
151     echo show_notify(str_replace("\n", " ", $G_room_help[$G_lang]), 0, $mlang_indwr['btn_backtotab'][$G_lang], 600, 500);
152   }
153   else if ($argz[0] == 'about') {
154     echo show_notify(str_replace("\n", " ", $G_room_about[$G_lang]), 0, $mlang_indwr['btn_backtotab'][$G_lang], 400, 200);
155   }
156   else if ($argz[0] == 'passwdhowto') {
157     echo show_notify(str_replace("\n", " ", $G_room_passwdhowto[$G_lang]), 0, $mlang_indwr['btn_backtotab'][$G_lang], 400, 200);
158   }
159   else if ($argz[0] == 'roadmap') {
160     echo show_notify(str_replace("\n", " ", $G_room_roadmap[$G_lang]), 0, $mlang_indwr['btn_backtotab'][$G_lang], 400, 200);
161   }
162   else if ($argz[0] == 'whysupport') {
163     echo show_notify(str_replace("\n", " ", $G_room_whysupport[$G_lang]), 0, $mlang_indwr['btn_backtotab'][$G_lng], 400, 200);
164   }
165   else { 
166     log_wr("Get User Error");
167     echo "Get User Error:" + $argz[0];
168   }
169   exit;
170 }
171 $argz = explode('|', xcapemesg($mesg));
172
173 log_wr('POSTSPLIT: '.$argz[0]);
174
175 if ($argz[0] == 'shutdown') {
176   log_auth($user->sess, "Shutdown session.");
177
178   $user->reset();
179
180   log_rd2("AUTO LOGOUT.");
181   if ($user->subst == 'sitdown' || $user->stat == 'table')
182     $room->room_wakeup(&$user);
183   else if ($user->subst == 'standup')
184     $room->room_outstandup(&$user);
185   else {
186     log_rd2("SHUTDOWN FROM WHAT ???");
187   }
188 }
189 else if ($argz[0] == 'warranty') {
190   GLOBAL $cli_name, $cli_email;
191
192   $curtime = time();
193   $mesg_to_user = "";
194
195   log_wr("INFO:SKIP:argz == warranty name: [".$cli_name."] AUTH: ".($user->flags & USER_FLAG_AUTH));
196   if ($user->flags & USER_FLAG_AUTH) {
197     if (($wa_lock = Warrant::lock_data()) != FALSE) {
198       if (($fp = @fopen(LEGAL_PATH."/warrant.txt", 'a')) != FALSE) {
199         /* Unix time | session | nickname | IP | where was | mesg */
200         fwrite($fp, sprintf("%ld|%s|%s|%s|\n", $curtime, $user->name, xcapelt(urldecode($cli_name)), xcapelt(urldecode($cli_email))));
201         fclose($fp);
202       }
203       Warrant::unlock_data($wa_lock);
204       $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
205       /* MLANG: "<br>Il nominativo &egrave; stato inoltrato all\'amministratore.<br><br>Nell\'arco di pochi giorni vi verr&agrave;<br><br>notificata l\'avvenuta registrazione." */
206       $user->comm[$user->step % COMM_N] .=  show_notify($mlang_indwr['warrrepl'][$G_lang], 0, $mlang_indwr['btn_close'][$G_lang], 400, 150);
207       $user->step_inc();
208       echo "1";
209     }
210     else {
211       /* MLANG: "<b>E\' occorso un errore durante il salvataggio, riprova o contatta l\'amministratore.</b>" */
212       $mesg_to_user = sprintf('chatt_sub("%s", [2, "%s"],"%s");', $dt, NICKSERV, $mlang_indwr['commerr'][$G_lang]);
213     }
214     
215   }
216   else {
217     /* MLANG: "<b>Per autenticare qualcuno devi a tua volta essere autenticato.</b>" */
218     $mesg_to_user = sprintf('chatt_sub("%s", [2, "%s"],"%s");', $dt, NICKSERV, $mlang_indwr['warrmust'][$G_lang]);
219   }
220
221   if ($mesg_to_user != "") {
222     $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
223     
224     $dt = date("H:i ", $curtime);
225     $user->comm[$user->step % COMM_N] .= $mesg_to_user;
226     $user->step_inc();
227   }
228 }
229 else if ($argz[0] == 'mesgtoadm') {
230   GLOBAL $cli_subj, $cli_mesg;
231
232   $curtime = time();
233   $mesg_to_user = "";
234
235   log_wr("INFO:SKIP:argz == mesgtoadm name: [".$cli_name."] AUTH: ".($user->flags & USER_FLAG_AUTH));
236   if ($user->flags & USER_FLAG_AUTH) {
237     if (($wa_lock = Warrant::lock_data()) != FALSE) {
238       $userdb = new LoginDB();
239       
240       if (($ema = $userdb->getmail($user->name)) != FALSE) {
241         //  mail("nastasi", 
242         mail("brisk@alternativeoutput.it", urldecode($cli_subj), urldecode($cli_mesg), sprintf("From: %s <%s>", $user->name, $ema));
243       }
244
245       if (($fp = @fopen(LEGAL_PATH."/messages.txt", 'a')) != FALSE) {
246         /* Unix time | session | nickname | IP | where was | mesg */
247         fwrite($fp, sprintf("%ld|%s|%s|%s\n", $curtime, $user->name, 
248                             xcapelt(urldecode($cli_subj)), xcapelt(urldecode($cli_mesg))));
249         fclose($fp);
250       }
251       Warrant::unlock_data($wa_lock);
252       $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
253       /* MLANG: "" */
254       $user->comm[$user->step % COMM_N] .=  show_notify($mlang_indwr['mesgrepl'][$G_lang], 0, $mlang_indwr['btn_close'][$G_lang], 400, 110);
255       $user->step_inc();
256       echo "1";
257     }
258     else {
259       /* MLANG: "<b>E\' occorso un errore durante il salvataggio, riprova o contatta l\'amministratore.</b>" */
260       $mesg_to_user = sprintf('chatt_sub("%s", [2, "%s"],"%s");', $dt, NICKSERV, $mlang_indwr['commerr'][$G_lang]);
261     }
262     
263   }
264   else {
265     /* MLANG: "<b>Per autenticare qualcuno devi a tua volta essere autenticato.</b>" */
266     $mesg_to_user = sprintf('chatt_sub("%s", [2, "%s"],"%s");', $dt, NICKSERV, $mlang_indwr['mesgmust'][$G_lang]);
267   }
268
269   if ($mesg_to_user != "") {
270     $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
271     
272     $dt = date("H:i ", $curtime);
273     $user->comm[$user->step % COMM_N] .= $mesg_to_user;
274     $user->step_inc();
275   }
276 }
277
278
279
280 else if ($argz[0] == 'poll') {
281   GLOBAL $G_with_poll, $G_poll_name, $cli_choose, $cli_poll_name;
282
283   $poll_lock = FALSE;
284   $curtime = time();
285   $mesg_to_user = "";
286   
287   $fp = FALSE;
288   $echont = "0";
289
290   /*
291           DONE - autorizzato ?
292           DONE - ci sono poll attivi ?
293           - verifica che il poll_name del client sia uguale a quello sul server
294           DONE - lock
295           DONE - apro file r+ con fallback in w+
296           DONE - vedo se ha già votato
297           DONE - se si: messaggio di voto già dato
298           se no: accetto il voto e lo segno; messaggio
299           chiudo file
300   */
301
302   $dobreak = FALSE;
303   do {
304     log_wr("INFO:SKIP:argz == poll name: [".$cli_name."] AUTH: ".($user->flags & USER_FLAG_AUTH));
305     if (($user->flags & USER_FLAG_AUTH) != USER_FLAG_AUTH) {
306       // MLANG: <b>Per partecipare al sondaggio devi essere autenticato.</b>
307       $mesg_to_user = sprintf('chatt_sub("%s", [2, "%s"],"%s");', $dt, NICKSERV, $mlang_indwr['pollmust'][$G_lang]);
308       log_wr("break1");
309       break;
310     }
311
312     if ($G_with_poll == FALSE && $G_poll_name != FALSE && $G_poll_name != "") {
313       $mesg_to_user = show_notify($mlang_indwr['pollnone'][$G_lang], 0, $mlang_indwr['btn_close'][$G_lang], 400, 110);
314       log_wr("break2");
315       break;
316     }
317     
318     if ($cli_choose == "" || !isset($cli_choose)) {
319       $mesg_to_user = show_notify($mlang_indwr['pollchoo'][$G_lang], 0, $mlang_indwr['btn_close'][$G_lang], 400, 110);
320       log_wr("break2.5");
321       break;
322     }
323     
324     if (($poll_lock = Poll::lock_data()) == FALSE) {
325       /* MLANG: "<b>E\' occorso un errore durante il salvataggio, riprova o contatta l\'amministratore.</b>" */
326       $mesg_to_user = sprintf('chatt_sub("%s", [2, "%s"],"%s");', $dt, NICKSERV, $mlang_indwr['commerr'][$G_lang]);
327       log_wr("break3");
328       break;
329     }
330     
331     if (($fp = @fopen(LEGAL_PATH."/".$G_poll_name.".txt", 'r+')) == FALSE) 
332       $fp = @fopen(LEGAL_PATH."/".$G_poll_name.".txt", 'w+');
333     
334     if ($fp == FALSE) {
335       $mesg_to_user = sprintf('chatt_sub("%s", [2, "%s"],"%s");', $dt, NICKSERV, $mlang_indwr['commerr'][$G_lang]);
336       log_wr("break4");
337       break;
338     }
339     
340     log_wr("poll: cp");
341     fseek($fp, 0);
342     
343     log_wr("poll: cp2");
344     while (!feof($fp)) {
345       log_wr("poll: cp3");
346       $bf = fgets($fp, 4096);
347       log_wr("poll: cp3.1");
348       $arli = csplitter($bf, '|');
349       if (count($arli) == 0)
350         break;
351     log_wr("poll: cp3.2");
352       if (strcasecmp($arli[1], $user->name) == 0) {
353         $mesg_to_user = show_notify($mlang_indwr['pollagai'][$G_lang], 0, $mlang_indwr['btn_close'][$G_lang], 400, 110);
354         $dobreak = TRUE;
355         break;
356       }
357     }
358     log_wr("poll: cp4");
359
360     if ($dobreak) {
361       log_wr("break5");
362       break;
363     }
364       
365     /* Unix time | nickname | choose */
366     fwrite($fp, sprintf("%ld|%s|%s\n", $curtime, xcapelt($user->name), xcapelt(urldecode($cli_choose))));
367     fflush($fp);
368     $mesg_to_user =  show_notify($mlang_indwr['pollrec'][$G_lang], 0, $mlang_indwr['btn_close'][$G_lang], 400, 110);
369     $echont = "1";
370     log_wr("poll: cp5");
371   } while (0);
372
373   if ($fp != FALSE)
374     fclose($fp);
375
376   if ($poll_lock != FALSE)
377     Poll::unlock_data($poll_lock);
378   
379   if ($mesg_to_user != "") {
380     $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
381     
382     $dt = date("H:i ", $curtime);
383     $user->comm[$user->step % COMM_N] .= $mesg_to_user;
384     $user->step_inc();
385   }
386
387   echo "$echont";
388 }
389
390 /******************
391  *                *
392  *   STAT: room   *
393  *                *
394  ******************/
395 else if ($user->stat == 'room') {
396   $user->laccwr = time();
397
398   if ($argz[0] == 'help') {
399     $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
400     $user->comm[$user->step % COMM_N] .=  show_notify(str_replace("\n", " ", $G_room_help[$G_lang]), 0, $mlang_indwr['btn_backtotab'][$G_lang], 600, 500);
401
402     log_wr($user->comm[$user->step % COMM_N]);
403     $user->step_inc();
404     
405   }
406   else if ($argz[0] == 'passwdhowto') {
407     $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
408     $user->comm[$user->step % COMM_N] .=  show_notify(str_replace("\n", " ", $G_room_passwdhowto[$G_lang]), 0, $mlang_indwr['btn_backtotab'][$G_lang], 600, 500);
409
410     log_wr($user->comm[$user->step % COMM_N]);
411     $user->step_inc();
412     
413   }
414   else if ($argz[0] == 'about') {
415     $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
416     $user->comm[$user->step % COMM_N] .=  show_notify(str_replace("\n", " ", $G_room_about[$G_lang]), 0, $mlang_indwr['btn_backtotab'][$G_lang], 400, 200);
417
418     log_wr($user->comm[$user->step % COMM_N]);
419     $user->step_inc();
420     
421   }
422   else if ($argz[0] == 'roadmap') {
423     $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
424     $user->comm[$user->step % COMM_N] .=  show_notify(str_replace("\n", " ", $G_room_roadmap[$G_lang]), 0, $mlang_indwr['btn_backtotab'][$G_lang], 400, 200);
425
426     log_wr($user->comm[$user->step % COMM_N]);
427     $user->step_inc();
428     
429   }
430   else if ($argz[0] == 'whysupport') {
431     $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
432     $user->comm[$user->step % COMM_N] .=  show_notify(str_replace("\n", " ", $G_room_whysupport[$G_lang]), 0, $mlang_indwr['btn_backtotab'][$G_lang], 400, 200);
433
434     log_wr($user->comm[$user->step % COMM_N]);
435     $user->step_inc();
436     
437   }
438   else if ($argz[0] == 'chatt') {
439     $room->chatt_send(&$user, xcapemesg($mesg));
440   }
441   /**********************
442    *                    *
443    *   SUBST: standup   *
444    *                    *
445    **********************/
446   else if ($user->subst == 'standup') {
447    
448     if ($argz[0] == 'sitdown') {
449       log_wr("SITDOWN command");
450
451       if ($user->the_end == TRUE) {
452         log_wr("INFO:SKIP:argz == sitdown && the_end == TRUE => ignore request.");
453         Room::unlock_data($sem);
454         exit;
455       }
456
457       // Take parameters
458       $table_idx = $argz[1];
459       $table = &$room->table[$table_idx];
460     
461       $curtime = time();
462
463       if ($G_shutdown || $table->wakeup_time > $curtime || 
464           ($table->auth_only && (($user->flags & USER_FLAG_AUTH) == 0)) ) {
465         $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
466
467         $dt = date("H:i ", $curtime);
468         /* MLANG: "<b>Il server sta per essere riavviato, non possono avere inizio nuove partite.</b>", "<b>Il tavolo a cui volevi sederti richiede autentifica.</b>", "<b>Il tavolo si &egrave; appena liberato, ci si potr&agrave; sedere tra %d secondi.</b>" */
469         if ($G_shutdown) {
470           $user->comm[$user->step % COMM_N] .= sprintf('chatt_sub("%s", [2, "%s"],"%s");', $dt, NICKSERV, $mlang_indwr['shutmsg'][$G_lang]);
471         }
472         else if ($table->auth_only && (($user->flags & USER_FLAG_AUTH) == 0)) {
473           $user->comm[$user->step % COMM_N] .= sprintf('chatt_sub("%s", [2, "%s"],"%s");', $dt, NICKSERV, $mlang_indwr['mustauth'][$G_lang]);
474         }
475         else {
476           $user->comm[$user->step % COMM_N] .= sprintf('chatt_sub("%s", [2, "%s"],"%s%d%s");', $dt, NICKSERV, $mlang_indwr['tabwait_a'][$G_lang], $table->wakeup_time - $curtime, $mlang_indwr['tabwait_b'][$G_lang]);
477         }
478         $user->step_inc();
479         Room::save_data($room);
480         Room::unlock_data($sem);
481         exit;
482       }
483
484       /* TODO: refact to a function */
485       // if ($user->bantime > $user->laccwr) {
486       require_once("Obj/hardban.phh");
487
488       if (($bantime = Hardbans::check(($user->flags & USER_FLAG_AUTH ? $user->name : FALSE),
489                           $user->ip, $user->sess)) != -1) {
490         $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
491         /* MLANG: "<br>Ti sei alzato da un tavolo senza il consenso degli altri giocatori. <br><br>Dovrai aspettare ancora ".secstoword($user->bantime - $user->laccwr)." prima di poterti sedere nuovamente.", "resta in piedi.", "<br>Tu o qualcuno col tuo stesso indirizzo IP si è alzato da un tavolo senza il consenso degli altri giocatori.<br><br>Dovrai aspettare ancora ".secstoword($bantime - $user->laccwr)." prima di poterti sedere nuovamente.<br><br>Se non sei stato tu ad alzarti e possiedi un login con password, autenticandoti con quello, potrai accedere." */
492         if ($user->flags & USER_FLAG_AUTH) {
493           $user->comm[$user->step % COMM_N] .= show_notify($mlang_indwr['badwake_a'][$G_lang].secstoword($user->bantime - $user->laccwr).$mlang_indwr['badwake_b'][$G_lang], 2000, $mlang_indwr['btn_stays'][$G_lang], 400, 100);
494         }
495         else {
496           $user->comm[$user->step % COMM_N] .= show_notify($mlang_indwr['badsit_a'][$G_lang].secstoword($bantime - $user->laccwr).$mlang_indwr['badsit_a'][$G_lang], 2000, $mlang_indwr['btn_stays'][$G_lang], 400, 180);
497         }
498         $user->step_inc();
499         Room::save_data($room);
500         Room::unlock_data($sem);
501         exit;
502       }
503     
504       if ($table->player_n == PLAYERS_N) {
505         log_wr("WARN:FSM: Sitdown unreachable, table full.");
506         Room::unlock_data($sem);
507         exit;
508       } 
509       
510       // set new status
511       $user->subst = "sitdown";
512       $user->table = $table_idx;
513       $user->table_pos = $table->user_add($idx);
514       
515       log_wr("MOP before");
516
517       if ($table->player_n == PLAYERS_N) {
518         require_once("briskin5/Obj/briskin5.phh");
519         log_wr("MOP inall");
520
521         // Start game for this table.
522         log_wr("Start game!");
523         
524         //
525         //  START THE SPAWN HERE!!!!
526         //
527
528         $curtime = time();
529
530         // Create new spawned table
531         $bri_sem = Briskin5::lock_data($table_idx);
532         $table_token = uniqid("");
533         $room->table[$table_idx]->table_token = $table_token;
534         $room->table[$table_idx]->table_start = $curtime;
535         
536         $plist = "$table_token|$user->table|$table->player_n";
537         for ($i = 0 ; $i < $table->player_n ; $i++) {
538           $plist .= '|'.$room->user[$table->player[$i]]->sess;
539         }
540         log_legal($curtime, $user, "STAT:CREATE_GAME", $plist);
541
542         if (($bri =& new Briskin5(&$room, $table_idx, $table_token)) == FALSE)
543           log_wr("bri create: FALSE");
544         else
545           log_wr("bri create: ".serialize($bri));
546         
547         // init table
548         $bri_table =& $bri->table[0];
549         $bri_table->init(&$bri->user);
550         $bri_table->game_init(&$bri->user);
551         //
552         // Init spawned users.
553         //
554         //  MULTIGAME: here init of selected game instead of hardcabled briskin5 init (look subst status)
555         // 
556         log_wr("game_init after");
557         for ($i = 0 ; $i < $table->player_n ; $i++) {
558           $bri_user_cur = &$bri->user[$i];
559           $user_cur = &$room->user[$table->player[$i]];
560           
561           $bri_user_cur->stat_set('table');
562           $bri_user_cur->subst = 'asta';
563           $bri_user_cur->laccwr = $curtime;
564           
565           $bri_user_cur->trans_step = $user_cur->step + 1;
566           $bri_user_cur->comm[$bri_user_cur->step % COMM_N] = "";
567           $bri_user_cur->step_inc();
568           $bri_user_cur->comm[$bri_user_cur->step % COMM_N] = show_table(&$bri,&$bri_user_cur,$bri_user_cur->step+1,TRUE, FALSE);
569           
570           $bri_user_cur->step_inc();
571           
572           log_wr("TRY PRESAVE: ".$bri_user_cur->step." TRANS STEP: ".$bri_user_cur->trans_step);
573           
574           log_wr("Pre if!");
575           
576           //          ARRAY_POP DISABLED
577           //        // CHECK
578           while (array_pop($user_cur->comm) != NULL);
579           
580           $ret = "";
581           $ret .= sprintf('gst.st_loc++; gst.st=%d; createCookie("table_idx", %d, 24*365, cookiepath); createCookie("table_token", "%s", 24*365, cookiepath); createCookie("lang", "%s", 24*365, cookiepath); the_end=true; window.onunload = null ; window.onbeforeunload = null ; document.location.assign("briskin5/index.php");|', $user_cur->step+1, $table_idx, $table_token, $G_lang);
582           
583           $user_cur->comm[$user_cur->step % COMM_N] = $ret;
584           $user_cur->trans_step = $user_cur->step + 1;
585           log_wr("TRANS ATTIVATO");
586           
587           
588           $user_cur->stat_set('table');
589           $user_cur->subst = 'asta';
590           $user_cur->laccwr = $curtime;
591           $user_cur->step_inc();
592         }
593         log_wr("presave bri");
594         Briskin5::save_data($bri);
595         Briskin5::unlock_data($bri_sem);
596         log_wr("postsave bri");
597       }
598       // change room
599       $room->room_sitdown(&$user, $table_idx);
600
601       log_wr("MOP finish");
602
603       
604     }
605     else if ($argz[0] == 'logout') {
606       $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
607       $user->comm[$user->step % COMM_N] .= 'postact_logout();';
608       $user->the_end = TRUE;
609       $user->step_inc();
610     }
611   }
612   /**********************
613    *                    *
614    *   SUBST: sitdown   *
615    *                    *
616    **********************/
617   else if ($user->subst == 'sitdown') {
618     if ($argz[0] == 'wakeup') {
619       $room->room_wakeup(&$user);      
620     }
621     else if ($argz[0] == 'logout') {
622       $room->room_wakeup(&$user);      
623       $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
624       $user->comm[$user->step % COMM_N] .= 'postact_logout();';
625       $user->the_end = TRUE;
626       $user->step_inc();
627     }
628   }
629 }
630 log_wr("before save data");
631 Room::save_data($room);
632
633 Room::unlock_data($sem);
634 exit;
635 ?>