summaryrefslogtreecommitdiffstats
path: root/db.php
diff options
context:
space:
mode:
authorArun Persaud <arun@nubati.net>2007-06-17 18:55:34 +0200
committerArun Persaud <arun@nubati.net>2007-06-17 18:55:34 +0200
commit44adf43ccb058fb76e7bdbb18917ca86a7f7ec29 (patch)
treed1bcf0e963337d8280bcef54418c93152653e920 /db.php
parent7c54cc81a26bb8a58a0b5ea4dbf4e819fba65d11 (diff)
downloade-DoKo-44adf43ccb058fb76e7bdbb18917ca86a7f7ec29.tar.gz
e-DoKo-44adf43ccb058fb76e7bdbb18917ca86a7f7ec29.tar.bz2
e-DoKo-44adf43ccb058fb76e7bdbb18917ca86a7f7ec29.zip
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 ;)
Diffstat (limited to 'db.php')
-rw-r--r--db.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/db.php b/db.php
index 935c848..a444360 100644
--- a/db.php
+++ b/db.php
@@ -764,4 +764,19 @@ function DB_get_PREF($myid)
return;
}
+function DB_get_unused_randomnumbers($userstr)
+{
+ $queryresult = mysql_query("SELECT randomnumbers,Game.id FROM Game ".
+ " LEFT JOIN Hand ON Hand.game_id=Game.id ".
+ " AND user_id not in (".$userstr.")".
+ " GROUP BY Game.id ".
+ " HAVING num=4");
+
+ $r = mysql_fetch_array($queryresult,MYSQL_NUM);
+ if($r)
+ return $r[0];
+ else
+ return "";
+}
+
?> \ No newline at end of file