app level keepalive (new ping message) added
[brisk.git] / web / briskin5 / index_wr.php
1 <?php
2 /*
3  *  brisk - index_wr.php
4  *
5  *  Copyright (C) 2006-2011 Matteo Nastasi
6  *                          mailto: nastasi@alternativeoutput.it 
7  *                                  matteo.nastasi@milug.org
8  *                          web: http://www.alternativeoutput.it
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful, but
16  * WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABLILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18  * General Public License for more details. You should have received a
19  * copy of the GNU General Public License along with this program; if
20  * not, write to the Free Software Foundation, Inc, 59 Temple Place -
21  * Suite 330, Boston, MA 02111-1307, USA.
22  *
23  */
24
25
26 $G_base = "../";
27
28 require_once("../Obj/brisk.phh");
29 // require_once("../Obj/proxyscan.phh");
30 require_once("Obj/briskin5.phh");
31
32 // Use of proxies isn't allowed.
33 // if (is_proxy()) {
34 //   sleep(5);
35 //   exit;
36 //}
37
38 /*
39  *  MAIN
40  */
41 function bin5_index_wr_main(&$bri, $remote_addr, $get, $post, $cookie)
42 {
43     GLOBAL $G_base, $G_dbasetype;
44
45     $curtime = time();
46     if ($bri == NULL) {
47         return FALSE;
48     }
49     
50     if (($mesg = gpcs_var('mesg', $get, $post, $cookie)) === FALSE) 
51         unset($mesg);
52     
53     if (($sess = gpcs_var('sess', $get, $post, $cookie)) === FALSE) 
54         $sess = "";
55
56     log_wr('COMM: '.$mesg);
57
58
59     if (($CO_bin5_pref_ring_endauct = gpcs_var('CO_bin5_pref_ring_endauct', $get, $post, $cookie)) === FALSE) 
60         $CO_bin5_pref_ring_endauct = "";
61
62
63     
64     log_wr(0, 'bin::index_wr.php: COMM: '.xcapemesg($mesg));
65     
66     
67     if (($user = &$bri->get_user($sess, &$idx)) == FALSE) {
68         echo "Get User Error";
69         log_wr("Get User Error");
70         return FALSE;
71     }
72     $argz = explode('|', $mesg);
73     
74     log_wr('POSTSPLIT: '.$argz[0].'  user->stat: ['.$user->stat.']');
75     log_wr($user->step, 'bin::index_wr.php: after get_user()');
76     
77     if ($argz[0] == 'ping') {
78         $user->lacc = $curtime;
79     }
80     else if (false && $argz[0] == 'shutdown') {
81         log_auth($user_cur->sess, "Shutdown session. delegate to room gc the autologout");
82         
83         log_rd2("bin5/index_wr.php: AUTO LOGOUT.");
84         if ($user->stat == 'table') {
85             $bri->table_wakeup($user);
86             // to force the logout
87             $user->lacc = 0;
88         }
89         else
90             log_rd2("SHUTDOWN FROM WHAT ???");
91     }
92     /*********************
93      *                   *
94      *    STAT: table    *
95      *                   *
96      *********************/
97     else if ($user->stat == 'table') {
98         $user->laccwr = time();
99         $table = $bri->table[$user->table];
100         
101         if ($argz[0] == 'tableinfo') {
102             log_wr("PER DI TABLEINFO");
103             $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
104             $user->comm[$user->step % COMM_N] .= show_table_info(&$bri, &$table, $user->table_pos);
105             log_wr($user->comm[$user->step % COMM_N]);
106             $user->step_inc();
107         }
108         else if ($argz[0] == 'chatt') {
109             $bri->chatt_send(&$user,$mesg);
110         }
111         else if ($argz[0] == 'preferences_update') {
112             GLOBAL $CO_bin5_pref_ring_endauct;
113             
114             log_wr("PER DI PREFERENCES_UPDATE");
115             
116             if ($CO_bin5_pref_ring_endauct == "true")
117                 $user->privflags |= BIN5_USER_FLAG_RING_ENDAUCT;
118             else
119                 $user->privflags &= ~BIN5_USER_FLAG_RING_ENDAUCT;
120         }
121         else if ($argz[0] == 'logout') {
122             $remcalc = $argz[1];
123             
124             if ($user->exitislock == TRUE) {
125                 $remcalc++;
126                 $user->exitislock = FALSE;
127             }
128             
129             $logout_cont = TRUE;
130             if ($remcalc >= 3) {
131                 $lockcalc = $table->exitlock_calc(&$bri->user, $user->table_pos);
132                 if ($lockcalc < 3) {
133                     $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
134                     $user->comm[$user->step % COMM_N] .= $table->exitlock_show(&$bri->user, $user->table_pos);
135                     $user->comm[$user->step % COMM_N] .=  show_notify("<br>I dati presenti sul server non erano allineati con quelli inviati dal tuo browser, adesso lo sono. Riprova ora.", 2000, "torna alla partita.", 400, 100);
136                     
137                     log_wr($user->comm[$user->step % COMM_N]);
138                     $user->step_inc();
139                     $logout_cont = FALSE;
140                 }
141             }
142             else {
143                 require_once("../Obj/hardban.phh");
144                 Hardbans::add(($user->flags & USER_FLAG_AUTH ? $user->name : FALSE),
145                               $user->ip, $user->sess, $user->laccwr + BAN_TIME);
146             }
147             //      $user->bantime = $user->laccwr + BAN_TIME;
148             
149             if ($logout_cont == TRUE) {
150                 $bri->table_wakeup(&$user);
151             }
152         }
153         else if ($argz[0] == 'exitlock') {
154             if ($user->exitislock == TRUE) {
155                 $user->exitislock = ($user->exitislock == TRUE ? FALSE : TRUE);
156                 for ($ct = 0, $i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {    
157                     $user_cur[$i] = &$bri->user[$table->player[$i]];
158                     if ($user_cur[$i]->exitislock == FALSE)
159                         $ct++;
160                 }
161                 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
162                     $ret = sprintf('gst.st = %d;', $user_cur[$i]->step+1);
163                     $ret .= sprintf('exitlock_show(%d, %s);', $ct, 
164                                     ($user_cur[$i]->exitislock ? 'true' : 'false'));
165                     $user_cur[$i]->comm[$user_cur[$i]->step % COMM_N] = $ret;
166                     log_wr($user_cur[$i]->comm[$user_cur[$i]->step % COMM_N]);
167                     $user_cur[$i]->step_inc();
168                 }
169             }
170         }
171         else if ($user->subst == 'asta') {
172             if ($argz[0] == 'lascio' && $user->handpt <= 2) {
173                 $index_cur = $table->gstart % BIN5_PLAYERS_N;
174                 
175                 log_wr(sprintf("GIOCO FINITO !!!"));
176                 
177                 $table->mult += 1; 
178                 $table->old_reason = sprintf("Ha lasciato %s perché aveva al massimo 2 punti.", xcape($user->name));
179                 
180                 $table->game_next();
181                 $table->game_init(&$bri->user);
182                 
183                 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {     
184                     $user_cur = &$bri->user[$table->player[$i]];
185                     
186                     $ret = sprintf('gst.st = %d;', $user_cur->step+1);
187                     $ret .= show_table(&$bri,&$user_cur,$user_cur->step+1, TRUE, TRUE);
188                     $user_cur->comm[$user_cur->step % COMM_N] = $ret;
189                     $user_cur->step_inc();          
190                 }
191             }
192             else if ($argz[0] == 'asta') {
193                 $again = TRUE;
194                 
195                 $index_cur = $table->gstart % BIN5_PLAYERS_N;
196                 if ($user->table_pos == $index_cur &&
197                     $table->asta_pla[$index_cur]) {
198                     $a_card = $argz[1];
199                     $a_pnt  = $argz[2];
200                     
201                     log_wr("CI SIAMO  a_card ".$a_card."  asta_card ".$table->asta_card);
202                     
203                     // Abbandono dell'asta
204                     if ($a_card <= -1) {
205                         log_wr("Abbandona l'asta.");
206                         $table->asta_pla[$index_cur] = FALSE;
207                         $user->asta_card  = -1;
208                         $table->asta_pla_n--;
209                         $again = FALSE;
210                     }
211                     else if ($a_card <= 9) {
212                         if ($a_card >= 0 && $a_card < 9 && $a_card > $table->asta_card)
213                             $again = FALSE;
214                         else if ($a_card == 9 && $a_pnt > ($table->asta_pnt >= 61 ? $table->asta_pnt : 60) && $a_pnt <= 120)
215                             $again = FALSE;
216                         
217                         
218                         if ($again == FALSE) {
219                             log_wr("NUOVI ORZI.");
220                             $user->asta_card  = $a_card;
221                             $table->asta_card = $a_card;
222                             if ($a_card == 9) {
223                                 $user->asta_pnt   = $a_pnt;
224                                 $table->asta_pnt  = $a_pnt;
225                             }
226                         }
227                     }
228                     
229       
230       
231                     if ($again) { // Qualcosa non andato bene, rifare
232                         $ret = sprintf('gst.st = %d; asta_pnt_set(%d);', $user->step+1, 
233                                        ($table->asta_pnt > 60 ? $table->asta_pnt + 1 : 61) );
234                         $user->comm[$user->step % COMM_N] = $ret;
235                         $user->step_inc();
236                         
237                         log_wr("Ripetere.");
238                     }
239                     else {
240                         /* next step */
241                         $showst = "show_astat("; 
242                         for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
243                             $user_cur = &$bri->user[$table->player[$i]];
244                             $showst .= sprintf("%s%d", ($i == 0 ? "" : ", "), 
245                                                ($user_cur->asta_card < 9 ? $user_cur->asta_card : $user_cur->asta_pnt));
246                         }
247                         if (BIN5_PLAYERS_N == 3)
248                             $showst .= ",-2,-2";
249                         $showst .= ");";
250                         
251                         $maxcard = -2;
252                         for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
253                             $user_cur = &$bri->user[$table->player[$i]];
254                             if ($maxcard < $user_cur->asta_card)
255                                 $maxcard = $user_cur->asta_card;
256                         }
257                         
258                         if (($table->asta_pla_n > ($maxcard > -1 ? 1 : 0)) &&
259                             !($table->asta_card == 9 && $table->asta_pnt == 120)) {
260                             log_wr("ALLOPPA QUI");
261                             for ($i = 1 ; $i < BIN5_PLAYERS_N ; $i++) {
262                                 $index_next = ($table->gstart + $i) % BIN5_PLAYERS_N;
263                                 if ($table->asta_pla[$index_next]) {
264                                     log_wr("GSTART 1");
265                                     $table->gstart += $i;
266                                     break;
267                                 }
268                             }
269                             
270                             
271                             for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
272                                 $user_cur = &$bri->user[$table->player[$i]];
273                                 $ret = sprintf('gst.st = %d; %s', $user_cur->step+1, $showst);
274                                 if ($user_cur->table_pos == ($table->gstart % BIN5_PLAYERS_N)) 
275                                     $ret .= sprintf('dispose_asta(%d,%d, %s); remark_on();', 
276                                                     $table->asta_card + 1, $table->asta_pnt+1, ($user_cur->handpt <= 2 ? "true" : "false"));
277                                 else
278                                     $ret .= sprintf('dispose_asta(%d,%d, %s); remark_off();',
279                                                     $table->asta_card + 1, -($table->asta_pnt+1), ($user_cur->handpt <= 2 ? "true" : "false"));
280                                 $user_cur->comm[$user_cur->step % COMM_N] = $ret;
281                                 $user_cur->step_inc();
282                             }
283                         }
284                         else if ($table->asta_pla_n == 0) {
285                             log_wr("PASSANO TUTTI!");
286                             
287                             log_wr(sprintf("GIOCO FINITO !!!"));
288                             
289                             $table->old_reason = "Hanno passato tutti.";
290                             $table->mult += 1; 
291                             
292                             $table->game_next();
293                             $table->game_init(&$bri->user);
294                             
295                             for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) { 
296                                 $user_cur = &$bri->user[$table->player[$i]];
297                                 
298                                 $ret = sprintf('gst.st = %d;', $user_cur->step+1);
299                                 $ret .= show_table(&$bri,&$user_cur,$user_cur->step+1, TRUE, TRUE);
300                                 $user_cur->comm[$user_cur->step % COMM_N] = $ret;
301                                 $user_cur->step_inc();      
302                             }
303                         }
304                         else {
305                             log_wr("FINITA !");
306                             // if a_pnt == 120 supergame ! else abbandono
307                             if ($a_pnt == 120 || $user->asta_card != -1) {
308                                 $chooser = $index_cur;
309                                 for ($i = 1 ; $i < BIN5_PLAYERS_N ; $i++) 
310                                     if ($i != $chooser)
311                                         $table->asta_pla[$i] = FALSE;
312                             }
313                             else {
314                                 /*
315                                   $user->comm[$user->step % COMM_N] = sprintf( "gst.st = %d; dispose_asta(%d, %d, false); remark_off();", 
316                                   $user->step+1, $table->asta_card + 1,-($table->asta_pnt));
317                                   $user->step_inc();
318                                 */
319                                 for ($i = 1 ; $i < BIN5_PLAYERS_N ; $i++) {
320                                     $chooser = ($table->gstart + $i) % BIN5_PLAYERS_N;
321                                     if ($table->asta_pla[$chooser]) {
322                                         break;
323                                     }
324                                 }
325                             }
326                             $table->asta_win = $chooser;
327                             
328                             for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
329                                 $user_cur = &$bri->user[$table->player[$i]];
330                                 $ret = sprintf('gst.st = %d; %s dispose_asta(%d, %d, false);', $user_cur->step+1, $showst,
331                                                $table->asta_card + 1,-($table->asta_pnt));
332                                 
333                                 if ($i == $chooser) {
334                                     $ret .= "choose_seed(". $table->asta_card."); remark_on();";
335                                 }
336                                 else {
337                                     $ret .= "remark_off();";
338                                 }
339                                 
340                                 $user_cur->comm[$user_cur->step % COMM_N] = $ret;
341                                 $user_cur->step_inc();      
342                             }
343                         }
344                     }
345                 }
346                 else {
347                     log_wr("NON CI SIAMO");
348                 }
349             }
350             /*  asta::choose */
351             else if ($argz[0] == 'choose') {
352                 if ($table->asta_win > -1 && 
353                     $user->table_pos == $table->asta_win) {
354                     $a_brisco = $argz[1];
355                     if ($a_brisco >= 0 && $a_brisco < 40) {
356                         $table->briscola = $a_brisco;
357                         $table->friend   = $table->card[$a_brisco]->owner;
358                         log_wr("GSTART 2");
359                         $table->gstart = ($table->mazzo+1) % BIN5_PLAYERS_N;
360                         log_wr("Setta la briscola a ".$a_brisco);
361                         
362                         $chooser = $table->asta_win;
363                         $user_chooser = &$bri->user[$table->player[$chooser]];
364                         for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
365                             $user_cur = &$bri->user[$table->player[$i]];
366                             $user_cur->subst = 'game';
367                             $ret = sprintf('gst.st = %d; subst = "game";', $user_cur->step+1);
368                             
369                             if ($user_cur->privflags & BIN5_USER_FLAG_RING_ENDAUCT) {
370                                 // $ret .= "var de_che= 33;";
371                                 $ret .= playsound("ringbell.mp3");
372                             }
373                             $ret .= sprintf('document.title = "Brisk - Tavolo %d";', $user->table_orig);
374                             
375                             /* bg of caller cell */
376                             $ret .= briscola_show($bri, $table, $user_cur);
377                             
378                             /* first gamer */
379                             if ($i == ($table->gstart % BIN5_PLAYERS_N))
380                                 $ret .= "is_my_time = true; remark_on();";
381                             else
382                                 $ret .= "is_my_time = false; remark_off();";
383                             
384                             $user_cur->comm[$user_cur->step % COMM_N] = $ret;
385                             $user_cur->step_inc();          
386                         }
387                         /*
388                           TUTTE LE VARIABILI DI STATO PER PASSARE A GIOCARE E LE
389                           VAR PER PASSARE ALLA FASE DI GIOCO
390                         */
391                         
392                     }
393                 }
394             }
395         }
396         else if ($user->subst == 'game') {
397             log_wr("state: table::game".$argz[0]);
398             
399             if ($argz[0] == 'play') {
400                 $a_play = $argz[1];
401                 $a_x =    $argz[2];
402                 $a_y =    $argz[3];
403                 
404                 if (strpos($a_x, "px") != FALSE)
405                     $a_x = substr($a_x,0,-2);
406                 if (strpos($a_y, "px") != FALSE)
407                     $a_y = substr($a_y,0,-2);
408                 
409                 $loggo = sprintf("A_play %s, table_pos %d == %d, mazzo %d, gstart %d, card_stat %d, card_own %d",
410                                  $a_play, $user->table_pos, ($table->gstart % BIN5_PLAYERS_N),
411                                  $table->mazzo, $table->gstart,
412                                  $table->card[$a_play]->stat, $table->card[$a_play]->owner);
413                 log_wr("CIC".$loggo);
414                 
415                 /* se era il suo turno e la carta era sua ed era in mano */
416                 if ($a_play >=0 && $a_play < (BIN5_PLAYERS_N == 5 ? 40 : 24) &&
417                     ($user->table_pos == (($table->gstart + $table->turn) % BIN5_PLAYERS_N)) &&
418                     $table->card[$a_play]->stat == 'hand' &&
419                     $table->card[$a_play]->owner == $user->table_pos) {
420                     log_wr(sprintf("User: %s Play: %d",$user->name, $a_play));
421                     
422                     /* Change the card status. */
423                     $table->card[$a_play]->play($a_x, $a_y);
424                     
425                     /*
426                      *  !!!! TURN INCREMENTED BEFORE !!!!
427                      */
428                     $turn_cur = ($table->gstart + $table->turn) % BIN5_PLAYERS_N;
429                     $table->turn++;
430                     
431                     $card_play = sprintf("card_play(%d,%d,%d,%d);|",
432                                          $user->table_pos, $a_play, $a_x, $a_y);
433                     if (($table->turn % BIN5_PLAYERS_N) != 0) {     /* manche not finished */
434                         $turn_nex = ($table->gstart + $table->turn) % BIN5_PLAYERS_N;
435                         
436                         $player_cur = "remark_off();";
437                         $player_nex = $card_play . "is_my_time = true; remark_on();";
438                         $player_oth = $card_play;
439                     }
440                     else if ($table->turn <= (BIN5_PLAYERS_N * 8)) { /* manche finished */
441                         $winner = calculate_winner($table);
442                         log_wr("GSTART 3");
443                         $table->gstart = $winner;
444                         $turn_nex = ($table->gstart + $table->turn) % BIN5_PLAYERS_N;
445                         
446                         log_wr(sprintf("The winner is: [%d] [%s]", $winner, $bri->user[$table->player[$winner]]->name));
447                         $card_take = sprintf("sleep(gst,2000);|cards_take(%d);|", $winner);
448                         $player_cur = "remark_off();" . $card_take; 
449                         if ($turn_cur != $turn_nex)
450                             $player_nex = $card_play . $card_take;
451                         else
452                             $player_nex = "";
453                         if ($table->turn < (BIN5_PLAYERS_N * 8))  /* game NOT finished */
454                             $player_nex .= "is_my_time = true; remark_on();";
455                         $player_oth = $card_play . $card_take;
456                     }
457                     
458                     log_wr(sprintf("Turn Cur %d Turn Nex %d",$turn_cur, $turn_nex));
459                     for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) { 
460                         $user_cur = &$bri->user[$table->player[$i]];
461                         
462                         $ret = sprintf('gst.st = %d; ', $user_cur->step+1);
463                         
464                         
465                         if ($i == $turn_cur) {
466                             $ret .= $player_cur;          
467                         }
468                         if ($i == $turn_nex) {
469                             $ret .= $player_nex;          
470                         }
471                         if ($i != $turn_cur && $i != $turn_nex) {
472                             $ret .= $player_oth;
473                         }
474                         
475                         $retar[$i] = $ret;
476                     }
477                     
478                     if ($table->turn == (BIN5_PLAYERS_N * 8)) { /* game finished */
479                         log_wr(sprintf("GIOCO FINITO !!!"));
480                         
481                         
482                         /* ************************************************ */
483                         /*    PRIMA LA PARTE PER LO SHOW DI CHI HA VINTO    */
484                         /* ************************************************ */
485                         $pt_cur = calculate_points(&$table);
486                         
487                         $plist = "$table->table_token|$user->table_orig|$table->player_n";
488                         $ucodes = array();
489                         for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
490                             $user_cur = &$bri->user[$table->player[$i]];
491                             $plist .= '|'.xcapelt($user_cur->name).'|'.$pt_cur[$i];
492                             $ucodes[$i] = $user_cur->code_get();
493                         }
494                         for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
495                             $plist .= '|'.xcapelt($ucodes[$i]);
496                         }
497                         log_legal($curtime, 'xxx', $user, "STAT:BRISKIN5:FINISH_GAME", $plist);
498                         if ($user->table_orig < TABLES_AUTH_N) {
499                             require_once("../Obj/dbase_".$G_dbasetype.".phh");
500                             
501                             if (($bdb = BriskDB::create()) != FALSE) {
502                                 $bdb->bin5_points_save($curtime, $table->table_token, $user->table_orig, $ucodes, $pt_cur);
503                                 unset($bdb);
504                             }
505                             else {
506                                 log_points($remote_addr, $curtime, $user, "STAT:BRISKIN5:FINISH_GAME", "DATABASE CONNECTION FAILED");
507                             }
508                             log_points($curtime, $user, "STAT:BRISKIN5:FINISH_GAME", $plist);
509                         }
510                         
511                         $table->game_next();
512                         $table->game_init(&$bri->user);
513                         
514                         for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
515                             $user_cur = &$bri->user[$table->player[$i]];
516                             $retar[$i] .= show_table(&$bri,&$user_cur,$user_cur->step+1,TRUE, TRUE);
517                         }
518                     }
519                     
520                     
521                     for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) { 
522                         $user_cur = &$bri->user[$table->player[$i]];
523                         
524                         $user_cur->comm[$user_cur->step % COMM_N] = $retar[$i];
525                         $user_cur->step_inc();      
526                     }
527                     
528                     log_wr(sprintf("TURN: %d",$table->turn));
529                     /* Have played all the players ? */
530                     /* NO:  switch the focus and enable the next player to play. */
531                     
532                     /* YES: calculate who win and go to the next turn. */
533                 }
534             }
535             else
536                 log_wr("NOSENSE");
537         }
538     }
539     log_wr("before save data");
540     log_wr($user->step, 'bin::index_wr.php: after save_data()');
541     return TRUE;
542 }
543 ?>