state present added
[brisk.git] / web / Obj / brisk.phh
index 2614137..5c4d64e 100644 (file)
@@ -27,7 +27,7 @@ define(BRISK_CONF, "brisk.conf.pho");
 define(FTOK_PATH, "/var/lib/brisk");
 define(LEGAL_PATH, "/tmp/legal_brisk");
 define(PROXY_PATH, "/var/lib/brisk_proxy");
-define(TABLES_N, 12);
+define(TABLES_N, 32);
 define(PLAYERS_N, 3);
 define(MAX_POINTS, 5);
 define(MAX_PLAYERS, (20 + (PLAYERS_N * TABLES_N)));
@@ -48,7 +48,7 @@ define(EXPIRE_TIME_SMAMMA, 360);
 define(EXPIRE_TIME_WAG, 10);
 define(WAKEUP_TIME, 12); 
 // BAN_TIME da allineare anche in commons.js
-define(BAN_TIME, 900); 
+define(BAN_TIME, 3600); 
 define(GARBAGE_TIMEOUT, 10);
 define(NICKSERV, "<i>BriskServ</i>");
 
@@ -75,9 +75,9 @@ require_once("$DOCUMENT_ROOT/Etc/".BRISK_CONF);
 $G_false = FALSE;
 
 $G_all_points = array( 11,10,4,3,2, 0,0,0,0,0 );
-$G_brisk_version = "2.0.0";
+$G_brisk_version = "2.1.3 - trusty";
 
-$root_wellarr = Array ( 'Brisk (Ver. '.$G_brisk_version.'), <b>NOVITA\'</b>: Nuova versione stabile.',
+$root_wellarr = Array ( 'Brisk (Ver. '.$G_brisk_version.'), <b>NOVITA\'</b>: Garanzia dal sito e stato degli utenti (guarda l\'help).',
                         '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 ( 'Benvenuto al tavolo. Se almeno tre giocatori non sbloccano l\'uscita cliccando il lucchetto, chi esce non pu&ograve; risedersi a un qualunque tavolo per '.floor(BAN_TIME/60).' minuti.');
 
@@ -105,10 +105,14 @@ Dopo che &egrave; iniziata una partita per uscirne dovete chiedere agli altri gi
 <dt><b>Comandi della chat</b>
 <dd><b>/nick <i>&lt;nuovo_nickname&gt;</i></b> - cambio di nickname
 <dd><b>/tav <i>&lt;frase di invito&gt;</i></b> - invito per gli altri giocatori al tavolo dove si &egrave; seduti 
+<dd><b>/st <i>&lt;stato&gt;</i></b> - cambia l\'icona associata al tuo user; <i>stato</i> pu&ograve; valere: \\"normale\\", \\"fuori\\", \\"pausa\\", \\"cibo\\", \\"cane\\", \\"lavoro\\" oppure \\"sigaretta\\"
+<dd><b>/garante</b> - se si &egrave; autenticati permette di garantire per un utente fidato
 </dl>
 </div>
 ';
 
+//  
+
 $G_room_about= '<br>
 <div id=\\"header\\" class=\\"header\\">
   <img class=\\"nobo\\" src=\\"img/brisk_logo64.png\\">
@@ -126,6 +130,13 @@ function xcape($s)
   return (str_replace($from, $to, htmlentities($s,ENT_COMPAT,"UTF-8")));
 }
 
+function xcapelt($s)
+{
+  $from = array (   '\\',     '|' );
+  $to   = array ( '\\\\',   '\\|' );
+
+  return (str_replace($from, $to, $s));
+}
 
 class Card {
   var $value; /* 0 - 39 card value */
@@ -168,13 +179,15 @@ class Card {
 } // end class Card
 
 class Table {
+  var $idx;
   var $player;
   var $player_n;
   var $card;
   var $mazzo;
   var $gstart;
   var $turn;
-  
+  var $auth_only;
+
   var $wag_own;
   var $wag_com;
   var $wag_tout;
@@ -208,13 +221,14 @@ class Table {
   {
   }
   
-  function &create() 
+  function &create($idx
   {
     GLOBAL $G_false;
 
     if (($thiz =& new Table()) == FALSE)
       return ($G_false);
 
+    $thiz->idx       =   $idx;
     $thiz->player    =   array();
     $thiz->player_n  =   0;
     $thiz->card      =   FALSE;
@@ -223,6 +237,9 @@ class Table {
     $thiz->asta_card =  -1;
     $thiz->asta_pnt  =  -1;
     $thiz->mult      =   1;
+    
+    $thiz->auth_only =   FALSE;
+
     $thiz->points    =   array( );
     $thiz->points_n  =   0;
     $thiz->total     =   array( 0, 0, 0, 0, 0);
@@ -256,6 +273,7 @@ class Table {
     if (($thiz =& new Table()) == FALSE)
       return ($G_false);
     
+    $thiz->idx = $from->idx;
     $thiz->player = array();
     for ($i = 0 ; $i < $from->player_n ; $i++)
       $thiz->player[$i] = $from->player[$i];
@@ -265,6 +283,8 @@ class Table {
     $thiz->gstart = $from->gstart;
     $thiz->turn = $from->turn;
 
+    $thiz->auth_only =  $from->auth_only;
+
     $thiz->wag_own   =  $from->wag_own;
     $thiz->wag_com   =  $from->wag_com;
     $thiz->wag_tout  =  $from->wag_taut;
@@ -304,12 +324,15 @@ class Table {
     if (($thiz =& new Table()) == FALSE)
       return ($G_false);
     
+    $thiz->idx = $from->idx;
     $thiz->player_n = $from->player_n;
     $thiz->card = &$thiz->bunch_create();
     $thiz->mazzo = $from->mazzo;
     $thiz->gstart = $from->gstart;
     $thiz->turn = $from->turn;
 
+    $thiz->auth_only =  $from->auth_only;
+
     $thiz->wag_own = $from->wag_own;
     $thiz->wag_com = $from->wag_com;
     $thiz->wag_tout  =  $from->wag_taut;
@@ -526,8 +549,71 @@ class Table {
 
     return ($ct);
   }
+
+
+
+
+  //      $ret .= table_act_content(($user->subst == 'standup'), $this->table[$i]->player_n, $i, $user->table, 
+  //                              ($this->table[$i]->auth_only == FALSE ? TRUE : $user->flags & USER_FLAG_AUTH));
+
+  // function act_content($isstanding, $sitted, $table, $cur_table, $allowed)
+  function act_content(&$user)
+  {
+    $ret = "";
+    $isstanding = ($user->subst == 'standup');
+    $sitted = $this->player_n;
+    $table = $this->idx;
+    $cur_table = $user->table;
+    $allowed = TRUE;
+
+    if ($isstanding) {
+      if ($sitted < PLAYERS_N) {
+        if ($this->auth_only) {
+          if ($user->flags & USER_FLAG_AUTH) 
+            $act = "sitreser";
+          else
+            $act = 'reserved';
+        }
+        else {
+          $act = 'sit';
+        }
+      }
+      else {
+        $act = 'none';
+      }
+    }
+    else {
+      if ($table == $cur_table)
+        $act = 'wake';
+      else
+        $act = 'none';
+    }
+    
+    if ($act != '')
+      $ret = sprintf('j_tab_act_cont(%d, \'%s\');', $table, $act);
+    
+    return ($ret);
+  }
+
+
 } // end class Table
   
+
+// User flags
+define(USER_FLAG_AUTH, 0x02);
+
+//   user status
+define(USER_FLAG_S_NORM,  0x000); // done
+define(USER_FLAG_S_PAU,   0x100); // done
+define(USER_FLAG_S_OUT,   0x200); // done
+define(USER_FLAG_S_DOG,   0x300); // done
+define(USER_FLAG_S_EAT,   0x400); // done
+define(USER_FLAG_S_WRK,   0x500); // done
+define(USER_FLAG_S_SMK,   0x600); // done
+define(USER_FLAG_S_EYE,   0x700); // done
+
+define(USER_FLAG_S_ALL,   0xf00); // done
+
 class User {
   var $name;       // name of the user
   var $sess;       // session of the user
@@ -547,6 +633,7 @@ class User {
   var $table;      // id of the current table (if in table state)
   var $table_pos;  // idx on the table
   var $table_token;// token that identify a game on a table
+  var $flags;      // Bitfield with: AUTHENTICATE: 0x02 
   var $the_end;    // Flag to change the end of the session
 
   var $chat_lst;      // Last chat line
@@ -578,6 +665,8 @@ class User {
     $thiz->asta_pnt  = -1;
     $thiz->handpt = -1;
     $thiz->exitislock = TRUE;
+
+    $thiz->flags = 0x00;
     
     $thiz->chattime = array_fill(0, CHAT_N, 0);
     $thiz->chat_cur = 0;
@@ -621,6 +710,8 @@ class User {
     $thiz->handpt     = $from->handpt;
     $thiz->exitislock = $from->exitislock;
 
+    $thiz->flags = $from->flags;
+
     $thiz->chattime = array();
     for ($i = 0 ; $i < CHAT_N ; $i++)
       $thiz->chattime[$i] = $from->chattime[$i];
@@ -670,12 +761,15 @@ class User {
     $thiz->exitislock = $from->exitislock;
     $thiz->the_end    = $from->the_end;
 
+    $thiz->flags      = $from->flags;
+
     $thiz->chattime   = array_fill(0, CHAT_N, 0);
     $thiz->chat_cur   = 0;
     $thiz->chat_lst   = "";
     $thiz->chat_ban   = 0;
     $thiz->chat_dlt   = 0;
 
+
     $thiz->table      = $table;
     $thiz->table_pos  = $table_pos;
     $thiz->table_token = $from->table_token;
@@ -806,8 +900,17 @@ class Room {
       $this->user[$i] =& User::create("", "");
     }
 
-    for ($i = 0 ; $i < TABLES_N ; $i++) 
-      $this->table[$i] =& Table::create();
+    for ($i = 0 ; $i < TABLES_N ; $i++) {
+      $this->table[$i] =& Table::create($i);
+      if ($i < 12) {
+        $row = ( (((int)($i / 4)) % 2) == 0 );
+        $col = ($i % 2 == 0);
+        $this->table[$i]->auth_only = (($row && $col) || (!$row && !$col));
+      }
+      else {
+        $this->table[$i]->auth_only = FALSE;
+      }
+    }
     $this->garbage_timeout = 0;
   }
 
@@ -984,12 +1087,14 @@ class Room {
     
     $ret .= root_wellcome($user);
     $ret .= sprintf('subst = "%s";', $user->subst);
-    $ret .= sprintf('$("myname").innerHTML = "<b>%s</b>";', xcape($user->name));
+    $itin = ($user->flags & USER_FLAG_AUTH ? "<i>" : "");
+    $itou = ($user->flags & USER_FLAG_AUTH ? "</i>" : "");
+    $ret .= sprintf('$("myname").innerHTML = "<b>%s%s%s</b>";', $itin, xcape($user->name), $itou);
     for ($i = 0 ; $i < TABLES_N ; $i++) {
       $ret .= $this->table_content($user, $i);
-      $ret .= table_act_content(($user->subst == 'standup')
-                                    $this->table[$i]->player_n, $i, $user->table);
-      // $ret .= sprintf('$("table_act%d").innerHTML = "%s";', $i, $act_content);
+      // $ret .= table_act_content(($user->subst == 'standup'), $this->table[$i]->player_n, $i, $user->table
+      //                          ($this->table[$i]->auth_only == FALSE ? TRUE : $user->flags & USER_FLAG_AUTH));
+      $ret .=  $this->table[$i]->act_content($user);
       if ($this->table[$i]->wag_own != NULL) 
         $ret .= sprintf('tra.add(%d, "%s: %s"); ', $i,  $this->table[$i]->wag_own->name, $this->table[$i]->wag_com);
       else 
@@ -1057,7 +1162,7 @@ class Room {
 
       $ret = "gst.st = ".($user_cur->step+1)."; ".($remove_wagon ? sprintf("tra.rem(%d);",$table_idx) : "");
       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");|';
+       $ret .= 'gst.st_loc++; the_end=true; window.onunload = null; window.onbeforeunload = null; document.location.assign("index.php");|';
        // $ret .= 'gst.st_loc++; document.location.assign("index.php");|';
        log_main("DOCUMENT.index.php: from table");
       }
@@ -1067,24 +1172,25 @@ class Room {
        $ret .= $this->table_content($user_cur, $table_idx);
        $ret .= $this->standup_content($user_cur);
        
-       $ret .= table_act_content(FALSE, 0, $table_idx, $user->table);
-       // $ret .= sprintf('$("table_act%d").innerHTML = "%s";', $table_idx, $act_content);
-       
-       
+       // $ret .= table_act_content(FALSE, 0, $table_idx, $user->table, FALSE);
+       $ret .= $table->act_content($user);
+
        if ($user_cur == $user) {
          // set the new status 
          $ret .=  'subst = "standup"; tra.show(); ';
          // clean the action buttons in other tables
          for ($e = 0 ; $e < TABLES_N ; $e++) {
            if ($this->table[$e]->player_n < PLAYERS_N) {
-             // $ret .= sprintf('$("table_act%d").innerHTML = "%s";', $e, table_act_content(TRUE, 0, $e, $user->table));
-             $ret .= table_act_content(TRUE, 0, $e, $user->table);
+             // $ret .= table_act_content(TRUE, 0, $e, $user->table, 
+              //                           ($this->table[$e]->auth_only == FALSE ? TRUE : $user->flags & USER_FLAG_AUTH));
+              $ret .= $this->table[$e]->act_content($user);
             }
          }
        }
        else {
-         $ret .= table_act_content(($user_cur->subst == 'standup'), $table->player_n, $table_idx, $user_cur->table);
-         // $ret .= sprintf('$("table_act%d").innerHTML = "%s";', $table_idx, $act_content);
+         // $ret .= table_act_content(($user_cur->subst == 'standup'), $table->player_n, $table_idx, $user_cur->table,
+          //                           ($table->auth_only == FALSE ? TRUE : $user_cur->flags & USER_FLAG_AUTH));
+          $ret .= $table->act_content($user_cur);
        }
       }
       log_wr("ROOM_WAKEUP: ".$ret);
@@ -1158,9 +1264,11 @@ class Room {
        $ret .= $this->table_content($user_cur, $table_idx);
        $ret .= $this->standup_content($user_cur);
        
-       $ret .= table_act_content(FALSE, 0, $table_idx, $user_cur->table);
-       // $ret .= sprintf('$("table_act%d").innerHTML = "%s";', $table_idx, $act_content);
-       
+       // $ret .= table_act_content(FALSE, 0, $table_idx, $user_cur->table,
+        //                           ($table->auth_only == FALSE ? TRUE : $user_cur->flags & USER_FLAG_AUTH));
+        $ret .= $table->act_content($user_cur);
+
+
        for ($tab_idx = 0 ; $tab_idx < $user_tab_n  ; $tab_idx++)
          if ($user_cur == $user_tab[$tab_idx]) 
            break;
@@ -1185,8 +1293,10 @@ class Room {
        log_main("JOIN_WAKEUP wup_idx ".$wup_idx."  wup_n ".$user_wup_n);
 
        log_main("JOIN_WAKEUP more");
-       $ret .= table_act_content(($user_cur->subst == 'standup'), $table->player_n, $table_idx, $user_cur->table);
-       // $ret .= sprintf('$("table_act%d").innerHTML = "%s";', $table_idx, $act_content);
+       // $ret .= table_act_content(($user_cur->subst == 'standup'), $table->player_n, $table_idx, $user_cur->table,
+        //                           ($table->auth_only == FALSE ? TRUE : $user_cur->flags & USER_FLAG_AUTH));
+        $ret .= $table->act_content($user_cur);
+
        log_main("JOIN_WAKEUP end more");
       }
       log_wr("ROOM_JOIN_WAKEUP: ".$ret);
@@ -1220,7 +1330,9 @@ class Room {
        $ret .= $this->table_content($user_cur, $table_idx);
       
       if ($user_cur == $user) {
-       $ret .= sprintf('$("myname").innerHTML = "<b>%s</b>: ";',  xcape($user->name));
+        $itin = ($user->flags & USER_FLAG_AUTH ? "<i>" : "");
+        $itou = ($user->flags & USER_FLAG_AUTH ? "</i>" : "");
+       $ret .= sprintf('$("myname").innerHTML = "<b>%s%s%s</b>: ";', $itin, xcape($user->name), $itou);
       }
       $user_cur->comm[$user_cur->step % COMM_N] = $ret;
       $user_cur->step_inc();
@@ -1266,14 +1378,15 @@ class Room {
        $ret .=  'subst = "sitdown"; tra.hide(); ';
        // clean the action buttons in other tables
        for ($e = 0 ; $e < TABLES_N ; $e++) {
-         $ret .= table_act_content(FALSE, 0, $e, $user_cur->table);
-         // $ret .= sprintf('$("table_act%d").innerHTML = "%s";', $e, $act_content);
+         // $ret .= table_act_content(FALSE, 0, $e, $user_cur->table, FALSE);
+          $ret .= $this->table[$e]->act_content($user_cur);
        }
       }
       else if ($table_idx > -1) {
        if ($table->player_n == PLAYERS_N) {
-         $ret .= table_act_content(($user_cur->subst == 'standup'), PLAYERS_N, $table_idx, $user_cur->table);
-         // $ret .= sprintf('$("table_act%d").innerHTML = "%s";', $table_idx, $act_content);
+         // $ret .= table_act_content(($user_cur->subst == 'standup'), PLAYERS_N, $table_idx, $user_cur->table,
+          ///                      ($table->auth_only == FALSE ? TRUE : $user_cur->flags & USER_FLAG_AUTH));
+          $ret .= $table->act_content($user_cur);
        }
       }
       $user_cur->comm[$user_cur->step % COMM_N] = $ret;
@@ -1339,7 +1452,15 @@ class Room {
     } // /tav chat command
 
     else if (strncmp($msg, "/alarm ", 7) == 0) {
-      $alarm_check = "/alarm ".$G_alarm_passwd." ";
+      if (strncmp($msg, "/alarm to ", 10) == 0) {
+        $sp_pos = strpos($msg, " ", 10);
+        $target = substr($msg, 10, $sp_pos - 10);
+        $alarm_check = "/alarm to ".$target." ".$G_alarm_passwd." ";
+      }
+      else {
+        $target = "";
+        $alarm_check = "/alarm ".$G_alarm_passwd." ";
+      }
       do {
         if (strncmp($msg, $alarm_check, strlen($alarm_check)) != 0) {
           $msg = "<br>La password digitata non &egrave; corretta.<br><br>";
@@ -1348,21 +1469,29 @@ class Room {
           break;
         }
 
-        $to_user = sprintf('chatt_sub("%s","Alarm <b>%s</b> inviato a tutti.");', 
-                               $dt.NICKSERV, xcape(substr($msg, strlen($alarm_check))));
+        $to_user = sprintf('chatt_sub("%s", [2, "%s"],"Alarm <b>%s</b> inviato a <b>%s</b>.");', 
+                           $dt, NICKSERV, xcape(substr($msg, strlen($alarm_check))), 
+                           ($target == "" ? "tutti" : xcape($target)) );
 
         $msg = sprintf("<br><b>%s<br><br>%s</b><br><br>",
                        $dt.NICKSERV, xcape(substr($msg, strlen($alarm_check))));
         $to_all = show_notify($msg, 0, "chiudi", 400, 120);
       } while (0);
     } // /alarm chat command
-      
+    else if (strncmp($msg, "/garante", 8) == 0) {
+      if ($user->flags & USER_FLAG_AUTH) {
+        $to_user = sprintf('authbox(300,200);');
+      }
+      else {
+        $to_user = sprintf('chatt_sub("%s", [2, "%s"],"<b>Per autenticare qualcuno devi a tua volta essere autenticato.</b>");', $dt, NICKSERV);
+      }
+    }
     else if (strncmp($msg, "/nick ", 6) == 0) {
       log_main("chatt_send BEGIN");
 
       do {
         if (($name_new = validate_name(substr($msg, 6))) == FALSE) {
-          $to_user = sprintf('chatt_sub("%s","Il nickname deve contenere almeno una lettera dell\'alfabeto o una cifra.");', $dt.NICKSERV);
+          $to_user = sprintf('chatt_sub("%s", [2,"%s"],"Il nickname deve contenere almeno una lettera dell\'alfabeto o una cifra.");', $dt, NICKSERV);
           break;
         }
 
@@ -1376,18 +1505,83 @@ class Room {
             break;
           }
         if ($i <  MAX_PLAYERS) {
-          $to_user = sprintf('chatt_sub("%s","Nickname <b>%s</b> gi&agrave; in uso.");', $dt.NICKSERV, xcape($name_new));
+          $to_user = sprintf('chatt_sub("%s", [2, "%s"],"Nickname <b>%s</b> gi&agrave; in uso.");', $dt, NICKSERV, xcape($name_new));
           break;
         }
-      
+        
+        if ($user->flags & USER_FLAG_AUTH) {
+          if (strcasecmp($user->name,$name_new) != 0) {
+            if ($user->subst == 'standup' || ($user->subst != 'standup' && $this->table[$user->table]->auth_only == FALSE)) {
+              $user->flags &= ~USER_FLAG_AUTH; // Remove auth if name changed
+              for ($i = 0 ; $i < TABLES_N ; $i++) {
+                $to_user .= $this->table[$i]->act_content($user);
+              }
+            }
+            else {
+              $to_user = sprintf('chatt_sub("%s", [2, "%s"],"<b>Non puoi cambiare nick a un tavolo per soli autenticati.</b>");', $dt, NICKSERV);
+              break;
+            }
+          }
+        }
        $user->name = $name_new; // OK - nick changed
         
+        /* se nome gia' in uso, segnala cosa potrebbe capitare */
+        if (($user->flags & USER_FLAG_AUTH) == 0) {
+          $userdb = new LoginDB();
+          if ($userdb->login_exists($name_new)) {
+            $to_user .= sprintf('chatt_sub("%s", [2, "%s"],"Il nickname <b>\'%s\'</b> &egrave; gi&agrave; registrato, <b>se il suo proprietario si autentificher&agrave; verrai rinominato d\'ufficio come ghost<i>N</i>.</b>");', $dt, NICKSERV, xcape($name_new));
+          }
+        }
+
         log_main("chatt_send start set");
 
         $update_room = TRUE;
       } while (0);
     } // nick chat command
 
+    else if (strncmp($msg, "/st ", 4) == 0) {
+      log_main("chatt_send BEGIN");
+
+      do {
+        $st_str = substr($msg, 4);
+        
+        if (strcasecmp($st_str, "normale") == 0) {
+          $st = USER_FLAG_S_NORM;
+        }
+        else if (strcasecmp($st_str, "pausa") == 0) {
+          $st = USER_FLAG_S_PAU;
+        }
+        else if (strcasecmp($st_str, "fuori") == 0) {
+          $st = USER_FLAG_S_OUT;
+        }
+        else if (strcasecmp($st_str, "cane") == 0) {
+          $st = USER_FLAG_S_DOG;
+        }
+        else if (strcasecmp($st_str, "cibo") == 0) {
+          $st = USER_FLAG_S_EAT;
+        }
+        else if (strcasecmp($st_str, "lavoro") == 0) {
+          $st = USER_FLAG_S_WRK;
+        }
+        else if (strcasecmp($st_str, "sigaretta") == 0) {
+          $st = USER_FLAG_S_SMK;
+        }
+        else if (strcasecmp($st_str, "presente") == 0) {
+          $st = USER_FLAG_S_EYE;
+        }
+        else {
+          $to_user = sprintf('chatt_sub("%s", [2,"%s"],"Questo stato non esiste.");', $dt, NICKSERV);
+          break;
+        }
+
+        log_main("chatt_send start set");
+        if (($user->flags & USER_FLAG_S_ALL) != $st) {
+          $update_room = TRUE;
+          $user->flags = ($user->flags & ~USER_FLAG_S_ALL) | $st;
+        }
+      } while (0);
+    } // nick chat command
+
     else { // normal chat line
       if ($curtime < ($user->chat_ban + $user->chat_dlt)) {
         $only_you = TRUE;
@@ -1408,13 +1602,13 @@ class Room {
       }
 
       if ($only_you) {
-        $to_user = sprintf('chatt_sub("%s","%s");', $dt.xcape($user->name), xcape("== chat ban =="));
+        $to_user = sprintf('chatt_sub("%s", [%d, "%s"],"%s");', $dt, $user->flags, xcape($user->name), xcape("== chat ban =="));
       }
       else {
-        $to_user = sprintf('chatt_sub("%s","%s");', $dt.xcape($user->name), xcape($msg));
+        $to_user = sprintf('chatt_sub("%s", [%d, "%s"],"%s");', $dt, $user->flags, xcape($user->name), xcape($msg));
        // temporary silentiation for troll (will became array check)
        if (strcasecmp($user->name,'JackRokka') != 0 && $user->sess != '47ea653f602e8')
-           $to_room = $to_user;
+          $to_room = $to_user;
       }
 
       log_legal($curtime, $user->sess, $user->name, 
@@ -1443,6 +1637,8 @@ class Room {
     if ($to_room != FALSE) {
       for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
         $user_cur = &$this->user[$i];
+        if ($target != "" && $user_cur->name != $target)
+          continue;
         //     if ($user_cur->sess == '' || $user_cur->stat != 'room')
         if ($user_cur->sess == '' || $user_cur->stat == 'table' || $user_cur == $user)
           continue;
@@ -1479,6 +1675,8 @@ class Room {
                 // stat must be "table" by definition
                 $bri_user =& $bri->user[$i];
               
+                if ($target != "" && $bri_user->name != $target)
+                  continue;
                 log_main("writa: ".$user_mesg);
                 $bri_user->comm[$bri_user->step % COMM_N] = "gst.st = ".($bri_user->step+1)."; ";
                 $bri_user->comm[$bri_user->step % COMM_N] .= $to_tabl;
@@ -1530,19 +1728,32 @@ class Room {
     return ($G_false);
   }
 
+  
+
   /*
-   * function &add_user(&$room, &$sess, &$idx, $name, $ip)
+   * function &add_user(&$room, &$sess, &$idx, $name, $pass, $ip)
    *
    * RETURN VALUE:
-   *   if ($idx != -1 && ret == FALSE)  =>  duplicated nick
-   *   if ($idx == -2 && ret == FALSE)  =>  invalid name
-   *   if ($idx == -1 && ret == FALSE)  =>  no space left
-   *   if (ret == TRUE)                 =>  SUCCESS
+   *   if ($idx >  -1    && ret == FALSE)  =>  duplicated nick
+   *   if ($idx == -2    && ret == FALSE)  =>  invalid name
+   *   if ($idx == -3    && ret == FALSE)  =>  wrong password
+   *   if ($idx == -1    && ret == FALSE)  =>  no space left
+   *   if ($idx ==  0    && ret == user)   =>  SUCCESS
+   *   if ($idx == -$idx && ret == user)   =>  SUCCESS (but the login exists in the auth db 
    */
-  function &add_user(&$sess, &$idx, $name, $ip)
+
+
+
+  function &add_user(&$sess, &$idx, $name, $pass, $ip)
   {
     GLOBAL $G_false;
 
+    $idx = 0;
+
+    $authenticate = FALSE;
+    $login_exists = FALSE;
+    $ghost = -1;
+    $ghost_auth = FALSE;
     $idx = -1;
     $idfree = -1;
     
@@ -1551,10 +1762,26 @@ class Room {
       return ($G_false);
     }
 
-    log_auth("XXX", sprintf("ARRIVA: [%s]", $sess));
+    log_auth("XXX", sprintf("ARRIVA: [%s] pass:[%s]", $sess, ($pass == FALSE ? "FALSE" : $pass)));
     if (validate_sess($sess) == FALSE) 
       $sess = "";
 
+    /* if pass != FALSE verify the login with pass */
+    log_auth("XXX", "auth1");
+    $userdb = new LoginDB();
+    if ($pass != FALSE) {
+      log_auth("XXX", "auth2");
+      $authenticate = $userdb->login_verify($name_new, $pass);
+      log_auth("XXX", "authenticate: ".($authenticate == TRUE ? "TRUE" : "FALSE"));
+      
+      if ($authenticate == FALSE) {
+        $idx = -3;
+        return ($G_false);
+      }
+    }
+    else {
+      $login_exists =  $userdb->login_exists($name_new);
+    }
     for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
       /* free user ? */
       if (strcmp($sess, $this->user[$i]->sess) == 0) {
@@ -1563,10 +1790,17 @@ class Room {
       }
       if ($idfree == -1 && strcmp("", $this->user[$i]->sess) == 0) {
        $idfree = $i;
+        continue; // NOTE: CHECK IT !!
       }
-      if (strcmp($this->user[$i]->name, $name_new) == 0) {
-       $idx = $i;
-       break;
+      if (strcasecmp($this->user[$i]->name, $name_new) == 0) {
+       if ($authenticate == FALSE) {
+          $idx = $i;
+          break;
+        }
+        else {
+          $ghost = $i;
+          $ghost_auth = ($this->user[$i]->flags & USER_FLAG_AUTH);
+        }
       }
     }
     if ($idx == -1)
@@ -1574,13 +1808,44 @@ class Room {
 
     log_auth("XXX", sprintf("TROVATO A QUESTO PUNTO [%d] sess [%s] name [%s]", $idx, $sess, $name_new));
 
-    if ($idx != -1 && $i == MAX_PLAYERS) {
+    if ($ghost > -1 && $authenticate) {
+      /* swap session */
+
+      $ghost_user =& $this->user[$ghost];
+      $curtime = time();
+      $ghost_user->step_inc();
+      if ($sess == "") {
+        $sess = uniqid(""); 
+        $ghost_user->sess = $sess;
+      }
+      else {
+        $ghost_user->sess = $sess;
+      }
+      
+      // If user at the table we need to update the table data too
+      $table_idx = $ghost_user->table;
+      if ($ghost_user->stat == "table" && $this->table[$table_idx]->player_n == PLAYERS_N) {
+        if (($brisem = Briskin5::lock_data($table_idx)) != FALSE) { 
+          if (($bri = &Briskin5::load_data($table_idx)) != FALSE) {
+            if ($bri->the_end != TRUE) {
+              $bri->user[$ghost_user->table_pos]->step_inc();
+              $bri->user[$ghost_user->table_pos]->sess = $sess;
+              Briskin5::save_data(&$bri);
+            }
+          }
+          Briskin5::unlock_data($brisem);
+        }
+      }
+
+      $idx = $ghost;
+      return ($this->user[$ghost]);
+    }
+    else if ($idx != -1 && $i == MAX_PLAYERS) {
       /* SUCCESS */
       $curtime = time();
       if ($sess == "") {
-       $this->user[$idx]->sess = uniqid("");
-       $sess = $this->user[$idx]->sess;
-       
+        $sess = uniqid("");
+       $this->user[$idx]->sess = $sess;
       }
       else {
        $this->user[$idx]->sess = $sess;
@@ -1594,9 +1859,53 @@ class Room {
       $this->user[$idx]->laccwr = $curtime;
       $this->user[$idx]->bantime = 0;
       $this->user[$idx]->ip = $ip;
+
+      $this->user[$idx]->flags = ($authenticate ? USER_FLAG_AUTH : 0x00);
+
+      if ($ghost > -1) {
+        log_main("ghost: rename!");
+        $ghost_user =& $this->user[$ghost];
+
+        if ($ghost_auth == FALSE) {
+          for ($sfx = 1 ; $sfx <= MAX_PLAYERS ; $sfx++) {
+            $ghostname = 'ghost'.$sfx;
+            for ($i = 0 ; $i < MAX_PLAYERS ; $i++) {
+              if (strcmp("", $this->user[$i]->sess) == 0) 
+                continue;
+              
+              if (strcmp($this->user[$i]->name, $ghostname) == 0) {
+                $ghostname = '';
+                break;
+              }
+            }
+            if ($ghostname != '')
+              break;
+          }
+          
+          $ghost_user->name = $ghostname;
+          
+          if ($ghost_user->stat == 'room' && $ghost_user->subst == 'standup') {
+            $this->standup_update(&$ghost_user);
+          }
+          else {
+            log_main("chatt_send pre table update");
+            $this->table_update(&$ghost_user);
+          log_main("chatt_send post table update");
+          }
+        } // if ($ghost_auth == FALSE
+        else {
+          // FIXME: cacciare il vecchio utente room && table (if needed)
+          $ghost_user->the_end = TRUE;
+          $ghost_user->lacc = 0;
+          $this->garbage_manager(TRUE);
+        }
+      } //  if ($ghost > -1) {
+
       log_main(sprintf("TROVATO LIBERO A [%d] sess [%s] name [%s]", $idx, $sess, $name_new));
-      
-      return ($this->user[$idx]);
+      $real_idx = $idx;
+      if ($login_exists)
+        $idx = -($idx + 1);
+      return ($this->user[$real_idx]);
     }
 
     return ($G_false);
@@ -1613,9 +1922,13 @@ class Room {
       
       if ($user_cur->stat == 'room') {
        $user_cur->comm[$user_cur->step % COMM_N] = "gst.st = ".($user_cur->step+1)."; ".$this->standup_content($user_cur);
-       if ($user_cur == $user)
-         $user_cur->comm[$user_cur->step % COMM_N] .= sprintf('$("myname").innerHTML = "<b>%s</b>: ";',  xcape($user->name));
-       
+       if ($user_cur == $user) {
+          $itin = ($user->flags & USER_FLAG_AUTH ? "<i>" : "");
+          $itou = ($user->flags & USER_FLAG_AUTH ? "</i>" : "");
+
+         $user_cur->comm[$user_cur->step % COMM_N] .= sprintf('$("myname").innerHTML = "<b>%s%s%s</b>: ";', 
+                                                               $itin, xcape($user->name), $itou);
+       }
        log_main("FROM STANDUP: NAME: ".$user_cur->name." SENDED: ".$user_cur->comm[$user_cur->step % COMM_N]);
        
        $user_cur->step_inc();
@@ -1747,53 +2060,6 @@ class Room {
     return (sem_release($res));
   }
 
-  function standup_content_old($user)
-  {
-    $ret = "";
-    $content = "";
-    
-    if ($user->stat != 'room')
-      return;
-    
-    for ($e = 0 , $ct = 0 ; $ct < 4 && $e < MAX_PLAYERS ; $e++) {
-      if ($this->user[$e]->sess == "" || $this->user[$e]->stat != "room" || $this->user[$e]->name == "")
-        continue;
-      $ct++;
-    }
-    
-    $content .= sprintf('<table cols=\\"%d\\" class=\\"table_standup\\">', $ct);
-    
-    for ($e = 0 , $ct = 0 ; $e < MAX_PLAYERS ; $e++) {
-      if ($this->user[$e]->sess == "" || $this->user[$e]->stat != "room" || $this->user[$e]->name == "")
-        continue;
-      
-      
-      if ($this->user[$e]->subst == "standup") {
-        if (($ct % 4) == 0) {
-          $content .= '<tr>';
-        }
-        if ($this->user[$e] == $user) 
-          { $hilion = "<b>"; $hilioff = "</b>"; }
-        else
-          { $hilion = ""; $hilioff = ""; }
-        
-        $content .= sprintf('<td class=\\"room_standup\\">%s%s%s</td>',$hilion, xcape($this->user[$e]->name), $hilioff);
-        if (($ct % 4) == 3) {
-          $content .= '</tr>';
-        }
-        $ct++;
-      }
-    }
-    $content .= '</table>';
-    
-    $content2 = '<input class=\\"button\\" name=\\"logout\\" value=\\"Esco.\\" onclick=\\"window.onunload = null; act_logout();\\" type=\\"button\\">';
-    $ret .= sprintf('$("standup").innerHTML = "%s";  $("esco").innerHTML = "%s";', 
-                    $content, $content2);
-    
-    return ($ret);
-  }
-
-
 
   function standup_content($user)
   {
@@ -1817,7 +2083,7 @@ class Room {
       if ($this->user[$e]->sess == "" || $this->user[$e]->stat != "room" || $this->user[$e]->name == "")
         continue;
       
-      $flags = 0;
+      $flags = $this->user[$e]->flags;
       
       if ($this->user[$e]->subst == "standup") {
         if ($this->user[$e] == $user) 
@@ -1825,16 +2091,12 @@ class Room {
             $flags |= 1;
           }
         
-        $content .= sprintf('%s[ %d, \'%s\' ]',($ct > 0 ? ', ' : ''), $flags, xcape($this->user[$e]->name));
+        $content .= sprintf('%s[ %d, "%s" ]',($ct > 0 ? ', ' : ''), $flags, xcape($this->user[$e]->name));
         $ct++;
       }
     }
     $content .= ' ]);';
     
-    // $content2 = '<input class=\\"button\\" name=\\"logout\\" value=\\"Esco.\\" onclick=\\"window.onunload = null; act_logout();\\" type=\\"button\\">';
-    // $ret .= sprintf('$("standup").innerHTML = "%s";  $("esco").innerHTML = "%s";', 
-    // $content, $content2);
-    
     return ($content);
   }
   
@@ -1895,14 +2157,14 @@ class Room {
     for ($i = 0 ; $i < $table->player_n ; $i++) {
       $user_cur = &$this->user[$table->player[$i]];
 
-      $flags = 0;
+      $flags = $user_cur->flags;
 
       if ($user_cur == $user) 
-        $flags = 1;
+        $flags |= 1;
       
       log_main($user_cur->name. sprintf(" IN TABLE [%d]", $table_idx));
       
-      $content .= sprintf('%s[ %d, \'%s\' ]',($i == 0 ? '' : ', '), $flags, xcape($user_cur->name));
+      $content .= sprintf('%s[ %d, "%s" ]',($i == 0 ? '' : ', '), $flags, xcape($user_cur->name));
     }
 
     $content .= ' ]';
@@ -2188,13 +2450,16 @@ function table_act_content_old($isstanding, $sitted, $table, $cur_table)
   return ($ret);
 }
 
-function table_act_content($isstanding, $sitted, $table, $cur_table)
+function table_act_content($isstanding, $sitted, $table, $cur_table, $allowed)
 {
   $ret = "";
 
   if ($isstanding) {
     if ($sitted < PLAYERS_N) {
-      $act = 'sit';
+      if ($allowed)
+        $act = 'sit';
+      else
+        $act = 'reserved';
     }
   }
   else {
@@ -2389,7 +2654,7 @@ function root_wellcome($user)
   $dt = date("H:i ", $curtime);
     
   for ($i = 0 ; $i < count($root_wellarr) ; $i++)
-    $ret .= sprintf('chatt_sub("%s","%s");', $dt.NICKSERV, str_replace('"', '\"', $root_wellarr[$i]));
+    $ret .= sprintf('chatt_sub("%s", [2, "%s"],"%s");', $dt, NICKSERV, str_replace('"', '\"', $root_wellarr[$i]));
 
   return ($ret);
 }
@@ -2400,7 +2665,7 @@ function table_wellcome($user)
   $ret = "";
 
   for ($i = 0 ; $i < count($table_wellarr) ; $i++)
-    $ret .= sprintf('chatt_sub("ChanServ: ","%s");', str_replace('"', '\"', $table_wellarr[$i]));
+    $ret .= sprintf('chatt_sub("%s", [2, "ChanServ: "],"%s");', "", str_replace('"', '\"', $table_wellarr[$i]));
 
   return ($ret);
 }
@@ -2437,12 +2702,24 @@ function show_table(&$room, &$user, $sendstep, $is_transition, $is_again)
     $ret .= "background_set();";
     
     /* USERS INFO */
-    $ret .= sprintf('$("myname").innerHTML = "<b>%s</b>";', xcape($user->name));
-    $ret .= sprintf('set_names(" %s", " %s", " %s", " %s", " %s"); ',
+    $itin = ($user->flags & USER_FLAG_AUTH ? "<i>" : "");
+    $itou = ($user->flags & USER_FLAG_AUTH ? "</i>" : "");
+
+    $ret .= sprintf('$("myname").innerHTML = "<b>%s%s%s</b>";', $itin, xcape($user->name), $itou);
+    $ret .= sprintf('set_names([%d, "%s"], [%d, "%s"], [%d, "%s"], [%d, "%s"], [%d, "%s"]); ',
+                   $room->user[$table->player[($table_pos)%PLAYERS_N]]->flags,
                    xcape($room->user[$table->player[($table_pos)%PLAYERS_N]]->name),
+
+                   $room->user[$table->player[($table_pos+1)%PLAYERS_N]]->flags,
                    xcape($room->user[$table->player[($table_pos+1)%PLAYERS_N]]->name),
+
+                   $room->user[$table->player[($table_pos+2)%PLAYERS_N]]->flags,
                    xcape($room->user[$table->player[($table_pos+2)%PLAYERS_N]]->name),
+
+                   (PLAYERS_N == 3 ? 0 : $room->user[$table->player[($table_pos+3)%PLAYERS_N]]->flags),
                    (PLAYERS_N == 3 ? "" :  xcape($room->user[$table->player[($table_pos+3)%PLAYERS_N]]->name)),
+
+                   (PLAYERS_N == 3 ? 0 : $room->user[$table->player[($table_pos+4)%PLAYERS_N]]->flags),
                    (PLAYERS_N == 3 ? "" :  xcape($room->user[$table->player[($table_pos+4)%PLAYERS_N]]->name)));
   }
   /* NOTIFY FOR THE CARD MAKER */
@@ -2747,5 +3024,37 @@ function sharedmem_sz($tok)
   return ($shm_sz);
 }    
 
+class Warrant {
+  function lock_data()
+  {
+    GLOBAL $sess; 
+    
+    if (($tok = @ftok(FTOK_PATH."/warrant", "B")) == -1) {
+      echo "FTOK FAILED";
+      exit;
+    }
+    // echo "FTOK ".$tok."<br>";
+    if (($res = sem_get($tok)) == FALSE) {
+      echo "SEM_GET FAILED";
+      exit;
+    }
+    if (sem_acquire($res)) {   
+      log_lock("LOCK room");
+      return ($res);
+    }
+    else
+      return (FALSE);
+  }
+  
+  function unlock_data($res)
+  {
+    GLOBAL $sess; 
+    
+    log_lock("UNLOCK room");
+    
+    return (sem_release($res));
+  }
 
+  
+}
 ?>