5 * Copyright (C) 2006-2012 Matteo Nastasi
6 * mailto: nastasi@alternativeoutput.it
7 * matteo.nastasi@milug.org
8 * web: http://www.alternativeoutput.it
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.
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.
28 require_once("../Obj/brisk.phh");
29 // require_once("../Obj/proxyscan.phh");
30 require_once("Obj/briskin5.phh");
32 // Use of proxies isn't allowed.
41 function bin5_index_wr_main(&$bri, $remote_addr, $get, $post, $cookie)
43 GLOBAL $G_base, $G_dbasetype;
50 if (($mesg = gpcs_var('mesg', $get, $post, $cookie)) === FALSE)
53 if (($sess = gpcs_var('sess', $get, $post, $cookie)) === FALSE)
56 log_wr('COMM: '.$mesg);
59 if (($CO_bin5_pref_ring_endauct = gpcs_var('CO_bin5_pref_ring_endauct', $get, $post, $cookie)) === FALSE)
60 $CO_bin5_pref_ring_endauct = "";
64 log_wr(0, 'bin::index_wr.php: COMM: '.xcapemesg($mesg));
67 if (($user = &$bri->get_user($sess, &$idx)) == FALSE) {
68 echo "Get User Error";
69 log_wr("Get User Error");
72 $argz = explode('|', $mesg);
74 log_wr('POSTSPLIT: '.$argz[0].' user->stat: ['.$user->stat.']');
75 log_wr($user->step, 'bin::index_wr.php: after get_user()');
77 $user->lacc = $curtime;
79 if ($argz[0] == 'ping') {
80 log_wr("PING RECEIVED");
82 else if (false && $argz[0] == 'shutdown') {
83 log_auth($user_cur->sess, "Shutdown session. delegate to room gc the autologout");
85 log_rd2("bin5/index_wr.php: AUTO LOGOUT.");
86 if ($user->stat == 'table') {
87 $bri->table_wakeup($user);
88 // to force the logout
92 log_rd2("SHUTDOWN FROM WHAT ???");
94 /*********************
98 *********************/
99 else if ($user->stat == 'table') {
100 $user->laccwr = time();
101 $table = $bri->table[$user->table];
103 if ($argz[0] == 'tableinfo') {
104 log_wr("PER DI TABLEINFO");
105 $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; ";
106 $user->comm[$user->step % COMM_N] .= show_table_info(&$bri, &$table, $user->table_pos);
107 log_wr($user->comm[$user->step % COMM_N]);
110 else if ($argz[0] == 'chatt') {
111 $bri->chatt_send(&$user,$mesg);
113 else if ($argz[0] == 'preferences_update') {
114 log_wr("PER DI PREFERENCES_UPDATE");
116 if ($CO_bin5_pref_ring_endauct == "true")
117 $user->privflags |= BIN5_USER_FLAG_RING_ENDAUCT;
119 $user->privflags &= ~BIN5_USER_FLAG_RING_ENDAUCT;
121 else if ($argz[0] == 'logout') {
124 if ($user->exitislock == TRUE) {
126 $user->exitislock = FALSE;
131 $lockcalc = $table->exitlock_calc(&$bri->user, $user->table_pos);
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);
137 log_wr($user->comm[$user->step % COMM_N]);
139 $logout_cont = FALSE;
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);
147 // $user->bantime = $user->laccwr + BAN_TIME;
149 if ($logout_cont == TRUE) {
150 $bri->table_wakeup(&$user);
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)
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();
171 else if ($user->subst == 'asta') {
172 if ($argz[0] == 'lascio' && $user->handpt <= 2) {
173 $index_cur = $table->gstart % BIN5_PLAYERS_N;
175 log_wr(sprintf("GIOCO FINITO !!!"));
178 $table->old_reason = sprintf("Ha lasciato %s perché aveva al massimo 2 punti.", xcape($user->name));
180 // Non si cambia mazzo se si abbandona la partita
181 // $table->game_next();
182 $table->game_init(&$bri->user);
184 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
185 $user_cur = &$bri->user[$table->player[$i]];
187 $ret = sprintf('gst.st = %d;', $user_cur->step+1);
188 $ret .= show_table(&$bri,&$user_cur,$user_cur->step+1, TRUE, TRUE);
189 $user_cur->comm[$user_cur->step % COMM_N] = $ret;
190 $user_cur->step_inc();
193 else if ($argz[0] == 'asta') {
196 $index_cur = $table->gstart % BIN5_PLAYERS_N;
197 if ($user->table_pos == $index_cur &&
198 $table->asta_pla[$index_cur]) {
202 log_wr("CI SIAMO a_card ".$a_card." asta_card ".$table->asta_card);
204 // Abbandono dell'asta
206 log_wr("Abbandona l'asta.");
207 $table->asta_pla[$index_cur] = FALSE;
208 $user->asta_card = -1;
209 $table->asta_pla_n--;
212 else if ($a_card <= 9) {
213 if ($a_card >= 0 && $a_card < 9 && $a_card > $table->asta_card)
215 else if ($a_card == 9 && $a_pnt > ($table->asta_pnt >= 61 ? $table->asta_pnt : 60) && $a_pnt <= 120)
219 if ($again == FALSE) {
220 log_wr("NUOVI ORZI.");
221 $user->asta_card = $a_card;
222 $table->asta_card = $a_card;
224 $user->asta_pnt = $a_pnt;
225 $table->asta_pnt = $a_pnt;
232 if ($again) { // Qualcosa non andato bene, rifare
233 $ret = sprintf('gst.st = %d; asta_pnt_set(%d);', $user->step+1,
234 ($table->asta_pnt > 60 ? $table->asta_pnt + 1 : 61) );
235 $user->comm[$user->step % COMM_N] = $ret;
242 $showst = "show_astat(";
243 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
244 $user_cur = &$bri->user[$table->player[$i]];
245 $showst .= sprintf("%s%d", ($i == 0 ? "" : ", "),
246 ($user_cur->asta_card < 9 ? $user_cur->asta_card : $user_cur->asta_pnt));
248 if (BIN5_PLAYERS_N == 3)
253 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
254 $user_cur = &$bri->user[$table->player[$i]];
255 if ($maxcard < $user_cur->asta_card)
256 $maxcard = $user_cur->asta_card;
259 if (($table->asta_pla_n > ($maxcard > -1 ? 1 : 0)) &&
260 !($table->asta_card == 9 && $table->asta_pnt == 120)) {
261 log_wr("ALLOPPA QUI");
262 for ($i = 1 ; $i < BIN5_PLAYERS_N ; $i++) {
263 $index_next = ($table->gstart + $i) % BIN5_PLAYERS_N;
264 if ($table->asta_pla[$index_next]) {
266 $table->gstart += $i;
272 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
273 $user_cur = &$bri->user[$table->player[$i]];
274 $ret = sprintf('gst.st = %d; %s', $user_cur->step+1, $showst);
275 if ($user_cur->table_pos == ($table->gstart % BIN5_PLAYERS_N))
276 $ret .= sprintf('dispose_asta(%d,%d, %s); remark_on();',
277 $table->asta_card + 1, $table->asta_pnt+1, ($user_cur->handpt <= 2 ? "true" : "false"));
279 $ret .= sprintf('dispose_asta(%d,%d, %s); remark_off();',
280 $table->asta_card + 1, -($table->asta_pnt+1), ($user_cur->handpt <= 2 ? "true" : "false"));
281 $user_cur->comm[$user_cur->step % COMM_N] = $ret;
282 $user_cur->step_inc();
285 else if ($table->asta_pla_n == 0) {
286 log_wr("PASSANO TUTTI!");
288 log_wr(sprintf("GIOCO FINITO !!!"));
290 $table->old_reason = "Hanno passato tutti.";
294 $table->game_init(&$bri->user);
296 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
297 $user_cur = &$bri->user[$table->player[$i]];
299 $ret = sprintf('gst.st = %d;', $user_cur->step+1);
300 $ret .= show_table(&$bri,&$user_cur,$user_cur->step+1, TRUE, TRUE);
301 $user_cur->comm[$user_cur->step % COMM_N] = $ret;
302 $user_cur->step_inc();
307 // if a_pnt == 120 supergame ! else abbandono
308 if ($a_pnt == 120 || $user->asta_card != -1) {
309 $chooser = $index_cur;
310 for ($i = 1 ; $i < BIN5_PLAYERS_N ; $i++)
312 $table->asta_pla[$i] = FALSE;
316 $user->comm[$user->step % COMM_N] = sprintf( "gst.st = %d; dispose_asta(%d, %d, false); remark_off();",
317 $user->step+1, $table->asta_card + 1,-($table->asta_pnt));
320 for ($i = 1 ; $i < BIN5_PLAYERS_N ; $i++) {
321 $chooser = ($table->gstart + $i) % BIN5_PLAYERS_N;
322 if ($table->asta_pla[$chooser]) {
327 $table->asta_win = $chooser;
329 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
330 $user_cur = &$bri->user[$table->player[$i]];
331 $ret = sprintf('gst.st = %d; %s dispose_asta(%d, %d, false);', $user_cur->step+1, $showst,
332 $table->asta_card + 1,-($table->asta_pnt));
334 if ($i == $chooser) {
335 $ret .= "choose_seed(". $table->asta_card."); remark_on();";
338 $ret .= "remark_off();";
341 $user_cur->comm[$user_cur->step % COMM_N] = $ret;
342 $user_cur->step_inc();
348 log_wr("NON CI SIAMO");
352 else if ($argz[0] == 'choose') {
353 if ($table->asta_win > -1 &&
354 $user->table_pos == $table->asta_win) {
355 $a_brisco = $argz[1];
356 if ($a_brisco >= 0 && $a_brisco < 40) {
357 $table->briscola = $a_brisco;
358 $table->friend = $table->card[$a_brisco]->owner;
360 $table->gstart = ($table->mazzo+1) % BIN5_PLAYERS_N;
361 log_wr("Setta la briscola a ".$a_brisco);
363 $chooser = $table->asta_win;
364 $user_chooser = &$bri->user[$table->player[$chooser]];
365 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
366 $user_cur = &$bri->user[$table->player[$i]];
367 $user_cur->subst = 'game';
368 $ret = sprintf('gst.st = %d; subst = "game";', $user_cur->step+1);
370 if ($user_cur->privflags & BIN5_USER_FLAG_RING_ENDAUCT) {
371 // $ret .= "var de_che= 33;";
372 $ret .= playsound("ringbell.mp3");
374 $ret .= sprintf('document.title = "Brisk - Tavolo %d";', $user->table_orig);
376 /* bg of caller cell */
377 $ret .= briscola_show($bri, $table, $user_cur);
380 if ($i == ($table->gstart % BIN5_PLAYERS_N))
381 $ret .= "is_my_time = true; remark_on();";
383 $ret .= "is_my_time = false; remark_off();";
385 $user_cur->comm[$user_cur->step % COMM_N] = $ret;
386 $user_cur->step_inc();
389 TUTTE LE VARIABILI DI STATO PER PASSARE A GIOCARE E LE
390 VAR PER PASSARE ALLA FASE DI GIOCO
397 else if ($user->subst == 'game') {
398 log_wr("state: table::game".$argz[0]);
400 if ($argz[0] == 'play') {
405 if (strpos($a_x, "px") != FALSE)
406 $a_x = substr($a_x,0,-2);
407 if (strpos($a_y, "px") != FALSE)
408 $a_y = substr($a_y,0,-2);
410 $loggo = sprintf("A_play %s, table_pos %d == %d, mazzo %d, gstart %d, card_stat %d, card_own %d",
411 $a_play, $user->table_pos, ($table->gstart % BIN5_PLAYERS_N),
412 $table->mazzo, $table->gstart,
413 $table->card[$a_play]->stat, $table->card[$a_play]->owner);
414 log_wr("CIC".$loggo);
416 /* se era il suo turno e la carta era sua ed era in mano */
417 if ($a_play >=0 && $a_play < (BIN5_PLAYERS_N == 5 ? 40 : 24) &&
418 ($user->table_pos == (($table->gstart + $table->turn) % BIN5_PLAYERS_N)) &&
419 $table->card[$a_play]->stat == 'hand' &&
420 $table->card[$a_play]->owner == $user->table_pos) {
421 log_wr(sprintf("User: %s Play: %d",$user->name, $a_play));
423 /* Change the card status. */
424 $table->card[$a_play]->play($a_x, $a_y);
427 * !!!! TURN INCREMENTED BEFORE !!!!
429 $turn_cur = ($table->gstart + $table->turn) % BIN5_PLAYERS_N;
432 $card_play = sprintf("card_play(%d,%d,%d,%d);|",
433 $user->table_pos, $a_play, $a_x, $a_y);
434 if (($table->turn % BIN5_PLAYERS_N) != 0) { /* manche not finished */
435 $turn_nex = ($table->gstart + $table->turn) % BIN5_PLAYERS_N;
437 $player_cur = "remark_off();";
438 $player_nex = $card_play . "is_my_time = true; remark_on();";
439 $player_oth = $card_play;
441 else if ($table->turn <= (BIN5_PLAYERS_N * 8)) { /* manche finished */
442 $winner = calculate_winner($table);
444 $table->gstart = $winner;
445 $turn_nex = ($table->gstart + $table->turn) % BIN5_PLAYERS_N;
447 log_wr(sprintf("The winner is: [%d] [%s]", $winner, $bri->user[$table->player[$winner]]->name));
448 $card_take = sprintf("sleep(gst,2000);|cards_take(%d);|", $winner);
449 $player_cur = "remark_off();" . $card_take;
450 if ($turn_cur != $turn_nex)
451 $player_nex = $card_play . $card_take;
454 if ($table->turn < (BIN5_PLAYERS_N * 8)) /* game NOT finished */
455 $player_nex .= "is_my_time = true; remark_on();";
456 $player_oth = $card_play . $card_take;
459 log_wr(sprintf("Turn Cur %d Turn Nex %d",$turn_cur, $turn_nex));
460 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
461 $user_cur = &$bri->user[$table->player[$i]];
463 $ret = sprintf('gst.st = %d; ', $user_cur->step+1);
466 if ($i == $turn_cur) {
469 if ($i == $turn_nex) {
472 if ($i != $turn_cur && $i != $turn_nex) {
479 if ($table->turn == (BIN5_PLAYERS_N * 8)) { /* game finished */
480 log_wr(sprintf("GIOCO FINITO !!!"));
483 /* ************************************************ */
484 /* PRIMA LA PARTE PER LO SHOW DI CHI HA VINTO */
485 /* ************************************************ */
486 $pt_cur = calculate_points(&$table);
488 $plist = "$table->table_token|$user->table_orig|$table->player_n";
490 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
491 $user_cur = &$bri->user[$table->player[$i]];
492 $plist .= '|'.xcapelt($user_cur->name).'|'.$pt_cur[$i];
493 $ucodes[$i] = $user_cur->code_get();
495 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
496 $plist .= '|'.xcapelt($ucodes[$i]);
498 log_legal($curtime, 'xxx', $user, "STAT:BRISKIN5:FINISH_GAME", $plist);
499 if ($user->table_orig < TABLES_AUTH_N) {
500 require_once("../Obj/dbase_".$G_dbasetype.".phh");
502 if (($bdb = BriskDB::create()) != FALSE) {
503 $bdb->bin5_points_save($curtime, $table->table_token, $user->table_orig, $ucodes, $pt_cur);
507 log_points($remote_addr, $curtime, $user, "STAT:BRISKIN5:FINISH_GAME", "DATABASE CONNECTION FAILED");
509 log_points($curtime, $user, "STAT:BRISKIN5:FINISH_GAME", $plist);
513 $table->game_init(&$bri->user);
515 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
516 $user_cur = &$bri->user[$table->player[$i]];
517 $retar[$i] .= show_table(&$bri,&$user_cur,$user_cur->step+1,TRUE, TRUE);
522 for ($i = 0 ; $i < BIN5_PLAYERS_N ; $i++) {
523 $user_cur = &$bri->user[$table->player[$i]];
525 $user_cur->comm[$user_cur->step % COMM_N] = $retar[$i];
526 $user_cur->step_inc();
529 log_wr(sprintf("TURN: %d",$table->turn));
530 /* Have played all the players ? */
531 /* NO: switch the focus and enable the next player to play. */
533 /* YES: calculate who win and go to the next turn. */
540 log_wr("before save data");
541 log_wr($user->step, 'bin::index_wr.php: after save_data()');