corretta gestione cambio nickname in partita
[brisk.git] / web / brisk.phh
index de21e79..2a7355c 100644 (file)
@@ -34,6 +34,44 @@ define(NICKSERV, "<i>SERVER</i>");
 define(BRISK_DEBUG, FALSE);
 // define(DEBUGGING, "local");
 
+$root_wellarr = Array ( 'Benvenuto in brisk (Ver. 0.4.3).',
+                        'Se vuoi iscriverti alla <a target="_blank" href="http://www.milug.org/cgi-bin/mailman/listinfo/ml-briscola">Mailing List</a>, cliccala!' );
+$table_wellarr = Array ( 'In bocca al lupo!');
+
+$G_brisk_version = "0.4.3";
+
+$G_room_help= '
+<div style=\\"text-align: left; padding: 8px;\\">
+<b>Descrizione</b><br>
+Questa &egrave; un\'implementazione della briscola in cinque, cos&igrave; come &egrave; spiegata su
+<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>
+<b>Uso del sito</b><br>
+Potete sedervi a un tavolo o rimanere in piedi.<br>
+Se al vostro tavolo si raggiungono i 5 giocatori inizia automaticamente la partita.<br>
+<br>
+<b>Partita</b><br>
+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>
+Chi vince l\'asta dovr&agrave; decidere il seme della carta scelta e inizier&agrave; la mano.<br>
+Per giocare le carte dovrete trascinarle nel quadrato al centro del vostro schermo.<br><br>
+Il vostro turno &egrave; sempre segnalato da una cornice verde lampeggiante intorno quadrato al centro del vostro schermo.<br><br>
+Durante la partita, se vorrete ricaricare la pagina, usate l\'apposito bottone \\"reload\\" in basso a destra.<br>
+<dl>
+<dt><b>Comandi della chat</b>
+<dd><b>/nick <i>&lt;nuovo_nickname&gt;</i></b> - cambio di nickname
+<dd>.. to be continue ..
+</dl>
+</div>
+';
+
+$G_room_about= '<br>
+<div id=\\"header\\" class=\\"header\\">
+  <img class=\\"nobo\\" src=\\"img/brisk_logo64.png\\">
+  briscola chiamata in salsa ajax
+</div>
+<br><b>version '.$G_brisk_version.'</b><br><br>
+Copyright 2006-2007 <a href=\\"mailto:brisk@alternativeoutput.it\\">Matteo Nastasi</a> (aka mop)<br><br>';
+
+
 function xcape($s)
 {
   $from = array (   '\\',     '@',        '|' );
@@ -222,8 +260,37 @@ class Table {
   {
     $this->player[$idx] = $player;
   }
-}
 
+  function user_add($idx)
+  {
+    $this->player[$this->player_n] = $idx;
+    $this->player_n++;
+    
+    return ($this->player_n - 1);
+  }
+  
+  function user_rem(&$bri, &$user)
+  {
+    $tabpos = $user->table_pos;
+    
+    /* verifico la consistenza dei dati */
+    if ($bri->user[$this->player[$tabpos]] == $user) {
+      
+      /* aggiorna l'array dei giocatori al tavolo. */
+      for ($i = $tabpos ; $i < $this->player_n-1 ; $i++) {
+       $this->player[$i] = $this->player[$i+1];
+       $user_cur = &$bri->user[$this->player[$i]];
+       $user_cur->table_pos = $i;
+      }
+      $this->player_n--;
+    }
+    else {
+      log_main($user->sess, "INCONSISTENCY ON TABLE.");
+    }
+  }
+
+} // End class Table
+  
 class User {
   var $name;       // name of the user
   var $sess;       // session of the user
@@ -346,14 +413,10 @@ class brisco {
        }
       }
     }
+
     /* aggiorna l'array dei giocatori al tavolo. */
-    for ($i = $user->table_pos ; $i < $table->player_n-1 ; $i++) {
-      $table->player[$i] = $table->player[$i+1];
-      $user_cur = &$this->user[$table->player[$i]];
-      $user_cur->table_pos = $i;
-    }
-    $this->table[$table_idx]->player_n--;
-    
+    $table->user_rem(&$this, &$user);
+
     for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
       $user_cur = &$this->user[$i];
       if ($user_cur->sess == '' || $user_cur->stat != 'room')
@@ -483,7 +546,7 @@ class brisco {
     if (strncmp($user_mesg, "/nick ", 6) == 0) {
       log_main($user->sess, "chatt_send BEGIN");
 
-      $name_new = substr(trim(substr($user_mesg, 6)),0,12);
+      $name_new = str_replace(' ', '_', substr(trim(substr($user_mesg, 6)),0,12));
       $user_mesg = "COMMAND ".$user_mesg;
       // Search dup name
       // change
@@ -491,7 +554,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)."; ";
@@ -883,7 +947,14 @@ function standup_content(&$bri, $user)
   if ($user->stat != 'room')
     return;
 
-  $content .= '<table class=\\"table_standup\\">';
+  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('<table cols=\\"%d\\" class=\\"table_standup\\">', $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;
@@ -898,7 +969,7 @@ function standup_content(&$bri, $user)
       else
        { $hilion = ""; $hilioff = ""; }
 
-      $content .= sprintf('<td style=\\"text-align: center\\">%s%s%s</td>',$hilion, xcape($bri->user[$e]->name), $hilioff);
+      $content .= sprintf('<td class=\\"room_standup\\">%s%s%s</td>',$hilion, xcape($bri->user[$e]->name), $hilioff);
       if (($ct % 4) == 3) {
        $content .= '</tr>';
       }
@@ -915,18 +986,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 = "";
@@ -984,6 +1049,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('<table class=\"points\"><tr><th></th>');
   
@@ -1043,10 +1110,29 @@ function show_table_info(&$bri, &$table, $table_pos)
     }
   }
   if ($table->mazzo == $table_pos) 
-    $noty .= "Fai <b>tu</b> il mazzo.";
+    $noty .= "Fai <b>tu</b> il mazzo,";
   else {
     $unam = xcape($bri->user[$table->player[$table->mazzo]]->name);
-    $noty .= "Il mazzo a <b>$unam</b>.";
+    $noty .= "Il mazzo a <b>$unam</b>,";
+  }
+
+  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 <b>te</b> giocare.";
+  }
+  else {
+    $unam = xcape($bri->user[$table->player[$curplayer]]->name);
+    $noty .= " tocca a <b>$unam</b> giocare.";
   }
 
   if ($table->mult > 1) {
@@ -1054,24 +1140,27 @@ function show_table_info(&$bri, &$table, $table_pos)
   }
   $noty .= "<hr><br>";
 
-  $ret .= show_notify($noty, 3000, "torna alla partita");
+  $ret .= show_notify($noty, 3000, "torna alla partita", 500, 400);
   
   return ($ret);
 }
 
-
 function root_wellcome($user)
 {
-  //  $ret = sprintf('chatt_sub("BROBRO","BRUBRU");');
-  $ret = "";
+  GLOBAL $root_wellarr;
+
+  for ($i = 0 ; $i < count($root_wellarr) ; $i++)
+    $ret .= sprintf('chatt_sub("ChanServ: ","%s");', str_replace('"', '\"', $root_wellarr[$i]));
 
   return ($ret);
 }
 
 function table_wellcome($user)
 {
-  // $ret = sprintf('chatt_sub("TABU","BRUBRU");');
-  $ret = "";
+  GLOBAL $table_wellarr;
+
+  for ($i = 0 ; $i < count($table_wellarr) ; $i++)
+    $ret .= sprintf('chatt_sub("ChanServ: ","%s");', str_replace('"', '\"', $table_wellarr[$i]));
 
   return ($ret);
 }
@@ -1100,6 +1189,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)
 {
@@ -1139,8 +1234,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