From 44adf43ccb058fb76e7bdbb18917ca86a7f7ec29 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Sun, 17 Jun 2007 18:55:34 +0200 Subject: NEW FEATURE: reuse random numbers from old games random numbers generated for old games are reused in case none of the players were in that old game. Will be interesting how different people play with the same hand ;) --- functions.php | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'functions.php') diff --git a/functions.php b/functions.php index 997ba43..4f33f1e 100644 --- a/functions.php +++ b/functions.php @@ -423,7 +423,7 @@ function card_value($card) } -function create_array_of_random_numbers() +function create_array_of_random_numbers($useridA,$useridB,$useridC,$useridD) { global $debug; @@ -446,10 +446,21 @@ function create_array_of_random_numbers() } else { + /* check if we can find a game were non of the player was involved and return + * cards insted + */ + $userstr = implode(",",array($useridA,$useridB,$useridC,$useridD)); + $randomnumbers = DB_get_unused_randomnumbers($userstr); + $randomnumbers = explode(":",$randomnumbers); + + if(sizeof($randomnumbers)==48) + return $randomnumbers; + + /* need to create new numbers */ for($i=0;$i<48;$i++) $r[$i]=$i+1; - shuffle($r); + shuffle($r); }; return $r; -- cgit v1.2.3-18-g5258