X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Fbrisk.phh;h=79db2f8ed1ff62dc84a8171858d31a69333840ab;hb=4f9c86e94a217ec6fc9bbcab73b4f0a034dd2288;hp=b4b7c2a6de0643abea70d8c118bd555f4cb6774c;hpb=114f8791e2dfc070229874c1377bd0077e7cc2a1;p=brisk.git diff --git a/web/brisk.phh b/web/brisk.phh index b4b7c2a..79db2f8 100644 --- a/web/brisk.phh +++ b/web/brisk.phh @@ -28,19 +28,51 @@ define(COMM_N, 12); define(COMM_GEN_N, 50); define(SESS_LEN, 13); define(STREAM_TIMEOUT, 20); -define(EXPIRE_TIME, 180); +define(EXPIRE_TIME_RD, 180); +define(EXPIRE_TIME_SMAMMA, 180); define(GARBAGE_TIMEOUT, 10); define(NICKSERV, "SERVER"); define(BRISK_DEBUG, FALSE); // define(DEBUGGING, "local"); -/* -$root_wellarr = Array ( 'GOOGLE', - 'pinollo lanollo', - 'rorella liolla' ); -*/ -$root_wellarr = Array ( ); -$table_wellarr = Array ( ); +$G_brisk_version = "0.4.5"; + +$root_wellarr = Array ( 'Benvenuto in brisk (Ver. '.$G_brisk_version.').', + 'Se vuoi iscriverti alla Mailing List, cliccala!' ); +$table_wellarr = Array ( 'Benvenuto al tavolo.'); + + +$G_room_help= ' +
+Descrizione
+Questa è un\'implementazione della briscola in cinque, così come è spiegata su +Wikipedia; in breve è la variante con l\'asta prima sulla carta e poi sui punti.

+Uso del sito
+Potete sedervi a un tavolo o rimanere in piedi.
+Se al vostro tavolo si raggiungono i 5 giocatori inizia automaticamente la partita.
+
+Partita
+All\'inizio vengono distribuite le carte e parte l\'asta; per partecipare all\'asta, quando sarà 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.

+Chi vince l\'asta dovrà decidere il seme della carta scelta e inizierà la mano.
+Per giocare le carte dovrete trascinarle nel quadrato al centro del vostro schermo.

+Il vostro turno è sempre segnalato da una cornice verde lampeggiante intorno quadrato al centro del vostro schermo.

+Durante la partita, se vorrete ricaricare la pagina, usate l\'apposito bottone \\"reload\\" in basso a destra.
+
+
Comandi della chat +
/nick <nuovo_nickname> - cambio di nickname +
.. to be continue .. +
+
+'; + +$G_room_about= '
+
+ + briscola chiamata in salsa ajax +
+
version '.$G_brisk_version.'

+Copyright 2006-2007 Matteo Nastasi (aka mop)

'; + function xcape($s) { @@ -265,6 +297,7 @@ class User { var $name; // name of the user var $sess; // session of the user var $lacc; // last access (for the cleanup) + var $laccwr; // last access (for the cleanup) var $stat; // status (outdoor, room, table, game, ...) var $subst; // substatus for each status var $step; // step of the current status @@ -279,7 +312,8 @@ class User { function User($name, $sess, $stat = "", $subst = "", $table = -1) { $this->name = $name; $this->sess = $sess; - $this->lacc = time(); + $this->lacc = time(); + $this->laccwr = time(); $this->stat = $stat; $this->subst = $subst; $this->step = 1; @@ -322,15 +356,9 @@ class brisco { if ($user_cur->sess == "") continue; - if ($user_cur->lacc < $curtime) { // Auto logout dell'utente + if ($user_cur->lacc + EXPIRE_TIME_RD < $curtime) { // Auto logout dell'utente log_rd2($user_cur->sess, "AUTO LOGOUT."); - /* - if ($user_cur->stat == 'table') { - log_rd2($user_cur->sess, "AUTO LOGOUT: Yet not implemented in table stat!"); - continue; - } - else - */ + if ($user_cur->stat == 'table' || $user_cur->stat == 'room') { log_auth($user_cur->sess, "Autologout session."); @@ -346,8 +374,15 @@ class brisco { else log_rd2($sess, "LOGOUT FROM WHAT ???"); } - // } // if (0 == 1) - + } + + if ($user_cur->laccwr + EXPIRE_TIME_SMAMMA < $curtime) { // lo rimettiamo in piedi + if ($user_cur->stat == 'room' && $user_cur->subst == 'sitdown') { + $this->room_wakeup(&$user_cur); + $user_cur->comm[$user_cur->step % COMM_N] = "gst.st = ".($user_cur->step+1)."; "; + $user_cur->comm[$user_cur->step % COMM_N] .= show_notify("
Sei stato inattivo per ".(EXPIRE_TIME_SMAMMA/60.0)." minuti.

Quindi ritorni tra i Giocatori in piedi.", 0, "torna ai tavoli", 400, 100); + $user_cur->step++; + } } } log_rd2($user_cur->sess, "GARBAGE UPDATED!"); @@ -362,12 +397,13 @@ class brisco { $table_idx = $user->table; $table = &$this->table[$table_idx]; - log_main("WAKEUP", "begin function table:".$table_idx); + log_main("WAKEUP", "begin function table:".$table_idx." stat: ".$user->stat." subst: ".$user->subst); + + $curtime = time(); $from_table = ($user->stat == "table"); if ($from_table) { log_main("WAKEUP", "from table [".$user->table."] nplayers_n: ".$this->table[$user->table]->player_n); - for ($i = 0 ; $i < $table->player_n ; $i++) { $user_cur = &$this->user[$table->player[$i]]; log_main("PREIMPOST", "INLOOP name: ".$user_cur->name); @@ -375,15 +411,21 @@ class brisco { if ($user_cur != $user) { $user_cur->stat = "room"; $user_cur->subst = "sitdown"; + $user_cur->laccwr = $curtime; } else if ($user->sess != "") { $user_cur->stat = "room"; $user_cur->subst = "standup"; + $user_cur->laccwr = $curtime; $user_cur->table = -1; } } } - + else { + $user->stat = "room"; + $user->subst = "standup"; + $user->laccwr = $curtime; + } /* aggiorna l'array dei giocatori al tavolo. */ $table->user_rem(&$this, &$user); @@ -394,8 +436,6 @@ class brisco { log_main("VALORI", "name: ".$user_cur->name."from_table: ".$from_table." tab: ".$user_cur->table." taix: ".$table_idx." ucur: ".$user_cur." us: ".$user); - // function show_room(&$bri, &$user) - $ret = "gst.st = ".($user_cur->step+1)."; "; if ($from_table && ($user_cur->table == $table_idx || $user_cur == $user)) { $ret .= 'gst.st_loc++; the_end=true; window.onunload = null; document.location.assign("index.php");|'; @@ -403,6 +443,8 @@ class brisco { log_main("DOCUMENT.index.php", "from table"); } else if ($user_cur->stat == "room") { + log_main("DOCUMENT.index.php", "from table"); + $ret .= table_content($this, $user_cur, $table_idx); $ret .= standup_content($this, $user_cur); @@ -524,7 +566,8 @@ class brisco { // update remote graphs for ($i = 0 ; $i < MAX_PLAYERS ; $i++) { $user_cur = &$this->user[$i]; - if ($user_cur->sess == '' || $user_cur->stat != 'room') + // if ($user_cur->sess == '' || $user_cur->stat != 'room') + if ($user_cur->sess == '') continue; if ($user_cur->name == $name_new) { $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; "; @@ -666,6 +709,7 @@ class brisco { $this->user[$idx]->name = $name; $this->user[$idx]->stat = "room"; $this->user[$idx]->subst = "standup"; + $this->user[$idx]->laccwr = time(); log_main("XXX", sprintf("TROVATO LIBERO A [%d] sess [%s] name [%s]", $idx, $sess, $name)); @@ -916,7 +960,14 @@ function standup_content(&$bri, $user) if ($user->stat != 'room') return; - $content .= ''; + for ($e = 0 , $ct = 0 ; $ct < 4 && $e < MAX_PLAYERS ; $e++) { + if ($bri->user[$e]->sess == "" || $bri->user[$e]->stat != "room" || $bri->user[$e]->name == "") + continue; + $ct++; + } + + $content .= sprintf('
', $ct); + for ($e = 0 , $ct = 0 ; $e < MAX_PLAYERS ; $e++) { if ($bri->user[$e]->sess == "" || $bri->user[$e]->stat != "room" || $bri->user[$e]->name == "") continue; @@ -931,7 +982,7 @@ function standup_content(&$bri, $user) else { $hilion = ""; $hilioff = ""; } - $content .= sprintf('',$hilion, xcape($bri->user[$e]->name), $hilioff); + $content .= sprintf('',$hilion, xcape($bri->user[$e]->name), $hilioff); if (($ct % 4) == 3) { $content .= ''; } @@ -948,18 +999,12 @@ function standup_content(&$bri, $user) } - - - -function show_notify($text, $tout, $butt) +function show_notify($text, $tout, $butt, $w, $h) { log_main("SHOW_NOTIFY", $text); - return sprintf('var noti = new notify(gst,$("bg"),"%s",%d,"%s");', $text, $tout,$butt); + return sprintf('var noti = new notify(gst,"%s",%d,"%s",%d,%d);', $text, $tout, $butt, $w, $h); } - - - function briscola_show($bri, $table, $user) { $ptnadd = ""; @@ -1017,6 +1062,8 @@ function multoval($mult) function show_table_info(&$bri, &$table, $table_pos) { + $user = &$bri->user[$table->player[$table_pos]]; + $pnt_min = $table->points_n - MAX_POINTS < 0 ? 0 : $table->points_n - MAX_POINTS; $noty = sprintf('
%s%s%s%s%s%s
'); @@ -1076,10 +1123,29 @@ function show_table_info(&$bri, &$table, $table_pos) } } if ($table->mazzo == $table_pos) - $noty .= "Fai tu il mazzo."; + $noty .= "Fai tu il mazzo,"; else { $unam = xcape($bri->user[$table->player[$table->mazzo]]->name); - $noty .= "Il mazzo a $unam."; + $noty .= "Il mazzo a $unam,"; + } + + if ($user->subst == 'asta') { + if ($table->asta_win == -1) // auction case + $curplayer = $table->gstart % PLAYERS_N; + else + $curplayer = $table->asta_win; + } + else if ($user->subst == 'game') { + $curplayer = ($table->gstart + $table->turn) % PLAYERS_N; + } + + + if ($curplayer == $table_pos) { + $noty .= " tocca a te giocare."; + } + else { + $unam = xcape($bri->user[$table->player[$curplayer]]->name); + $noty .= " tocca a $unam giocare."; } if ($table->mult > 1) { @@ -1087,7 +1153,7 @@ function show_table_info(&$bri, &$table, $table_pos) } $noty .= "

"; - $ret .= show_notify($noty, 3000, "torna alla partita"); + $ret .= show_notify($noty, 3000, "torna alla partita", 500, 400); return ($ret); } @@ -1136,6 +1202,12 @@ function show_room(&$bri, &$user) /* show table is_transition (is from room to table ?) is_again (is another game) + +Examles of $is_transition, $is_again: + from reload of the page: FALSE, FALSE + from sitdown in room: TRUE, FALSE + from table: asta cmd e tutti passano: TRUE, TRUE + from table: fine partita: TRUE, TRUE */ function show_table(&$bri, &$user, $sendstep, $is_transition, $is_again) { @@ -1175,8 +1247,9 @@ function show_table(&$bri, &$user, $sendstep, $is_transition, $is_again) /* NOTIFY FOR THE CARD MAKER */ if ($is_transition) { // && $user->subst == "asta" superfluo $ret .= show_table_info(&$bri, &$table, $user->table_pos); - $ret .= table_wellcome($user); } + if (!$is_again) + $ret .= table_wellcome($user); /* CARDS */ if ($is_transition) { // && $user->subst == "asta" superfluo