X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Fbrisk.phh;h=9db417c7154f9607d55303dce416c95f2d9a7bdf;hb=1c864a7f5b393bddf3ef4ce94886703d2ac3b21c;hp=03ec212463f1b4dd39a06b60008f74a8a6b93a1e;hpb=4d94544c8f156818cc5c016121bc4c45a627ba5d;p=brisk.git diff --git a/web/brisk.phh b/web/brisk.phh index 03ec212..9db417c 100644 --- a/web/brisk.phh +++ b/web/brisk.phh @@ -34,9 +34,29 @@ 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.2"; + +/*$G_room_help = ' +Brisk - Ver. '.$G_brisk_version.'

+Copyright 2006 Matteo Nastasi

'; +*/ +$G_room_help = 'Brisk - Ver. '.$G_brisk_version.'

Copyright 2006 Matteo Nastasi

'; + + function xcape($s) { - return (str_replace('\\', '\\\\', str_replace('@', '@', str_replace('|', '¦', htmlentities($s,ENT_COMPAT,"UTF-8"))))); + $from = array ( '\\', '@', '|' ); + $to = array ( '\\\\', '@', '¦' ); + + return (str_replace($from, $to, htmlentities($s,ENT_COMPAT,"UTF-8"))); } @@ -219,8 +239,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 @@ -343,14 +392,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') @@ -480,7 +525,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 @@ -511,7 +556,7 @@ class brisco { continue; if ($user_cur->stat == 'room') { if ($user->stat == 'room' && $user->subst == 'standup') { - standup_update(&$this,&$user); + $this->standup_update(&$user); } else if ($user->stat == 'room' && $user->subst == 'sitdown' || $user->stat == 'table') { @@ -639,8 +684,28 @@ class brisco { return (FALSE); } + function standup_update(&$user) + { + for ($i = 0 ; $i < MAX_PLAYERS ; $i++) { + $user_cur = &$this->user[$i]; + if ($user_cur->sess == '') + continue; + + log_main("STANDUP START", $user_cur->stat); + + if ($user_cur->stat == 'room') { + $user_cur->comm[$user_cur->step % COMM_N] = "gst.st = ".($user_cur->step+1)."; ".standup_content($this, $user_cur); + if ($user_cur == $user) + $user_cur->comm[$user_cur->step % COMM_N] .= sprintf('$("myname").innerHTML = "%s: ";', xcape($user->name)); + + log_main("FROM STANDUP", "NAME: ".$user_cur->name." SENDED: ".$user_cur->comm[$user_cur->step % COMM_N]); + + $user_cur->step++; + } + } + } + - } // end class brisco function make_seed() @@ -860,7 +925,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; @@ -875,7 +947,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 .= ''; } @@ -891,35 +963,14 @@ function standup_content(&$bri, $user) return ($ret); } -function standup_update(&$bri, &$user) -{ - for ($i = 0 ; $i < MAX_PLAYERS ; $i++) { - $user_cur = &$bri->user[$i]; - if ($user_cur->sess == '') - continue; - log_main("STANDUP START", $user_cur->stat); - if ($user_cur->stat == 'room') { - $user_cur->comm[$user_cur->step % COMM_N] = "gst.st = ".($user_cur->step+1)."; ".standup_content($bri, $user_cur); - if ($user_cur == $user) - $user_cur->comm[$user_cur->step % COMM_N] .= sprintf('$("myname").innerHTML = "%s: ";', xcape($user->name)); - log_main("FROM STANDUP", "NAME: ".$user_cur->name." SENDED: ".$user_cur->comm[$user_cur->step % COMM_N]); - $user_cur->step++; - } - } -} - - - - - -function show_notify($text, $tout, $butt) +function show_notify($anc, $text, $tout, $butt) { 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"),"%s",%d,"%s");', $anc, $text, $tout,$butt); } @@ -1052,17 +1103,37 @@ function show_table_info(&$bri, &$table, $table_pos) } $noty .= "

"; - $ret .= show_notify($noty, 3000, "torna alla partita"); + $ret .= show_notify("bg", $noty, 3000, "torna alla partita"); return ($ret); } +function root_wellcome($user) +{ + 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) +{ + GLOBAL $table_wellarr; + + for ($i = 0 ; $i < count($table_wellarr) ; $i++) + $ret .= sprintf('chatt_sub("ChanServ: ","%s");', str_replace('"', '\"', $table_wellarr[$i])); + return ($ret); +} function show_room(&$bri, &$user) { $ret .= sprintf('gst.st = %d;', $user->step); $ret .= sprintf('stat = "%s";', $user->stat); + + $ret .= root_wellcome($user); $ret .= sprintf('subst = "%s";', $user->subst); $ret .= sprintf('$("myname").innerHTML = "%s";', xcape($user->name,ENT_COMPAT,"UTF-8")); for ($i = 0 ; $i < TABLES_N ; $i++) { @@ -1120,6 +1191,7 @@ 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); } /* CARDS */ @@ -1138,7 +1210,7 @@ function show_table(&$bri, &$user, $sendstep, $is_transition, $is_again) } log_rd($sess, "O ".$o." VAL ".$table->card[$o]->value." Owner: ".$table->card[$o]->owner); - $ret .= sprintf( ' card_send(%d,%d,%d,%f,%d);|', ($table->gstart + $e) % PLAYERS_N, + $ret .= sprintf( ' card_send(%d,%d,%d,%8.2f,%d);|', ($table->gstart + $e) % PLAYERS_N, $i, ((($e + PLAYERS_N - $user->table_pos + $table->gstart) % PLAYERS_N) == 0 ? $table->card[$o]->value : -1), ($i == 7 && $e == (PLAYERS_N - 1) ? 1 : 0.5),$i+1);
%s%s%s%s%s%s