From 2d5c1d8ff205decdad1c91222e5e5366007ef785 Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Sat, 13 Dec 2008 15:33:57 +0000 Subject: [PATCH] new table disposition, 1 hour ban time --- web/Obj/brisk.phh | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/web/Obj/brisk.phh b/web/Obj/brisk.phh index ea4350c..6b30672 100644 --- a/web/Obj/brisk.phh +++ b/web/Obj/brisk.phh @@ -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, "BriskServ"); @@ -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.1.1 - trusty"; +$G_brisk_version = "2.1.2 - trusty"; -$root_wellarr = Array ( 'Brisk (Ver. '.$G_brisk_version.'), NOVITA\': Autenticazione e tavoli riservati.', +$root_wellarr = Array ( 'Brisk (Ver. '.$G_brisk_version.'), NOVITA\': Autenticazione, tavoli riservati e ban efficaci.', 'Se vuoi iscriverti alla Mailing List, cliccala!' ); $table_wellarr = Array ( 'Benvenuto al tavolo. Se almeno tre giocatori non sbloccano l\'uscita cliccando il lucchetto, chi esce non può risedersi a un qualunque tavolo per '.floor(BAN_TIME/60).' minuti.'); @@ -567,6 +567,9 @@ class Table { $act = 'sit'; } } + else { + $act = 'none'; + } } else { if ($table == $cur_table) @@ -876,9 +879,14 @@ class Room { for ($i = 0 ; $i < TABLES_N ; $i++) { $this->table[$i] =& Table::create($i); - $row = ( (((int)($i / 4)) % 2) == 0 ); - $col = ($i % 2 == 0); - $this->table[$i]->auth_only = (($row && $col) || (!$row && !$col)); + 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; } -- 2.17.1