summaryrefslogtreecommitdiffstats
path: root/db.php
diff options
context:
space:
mode:
authorarun <arun@nubati.net>2007-05-17 12:29:55 +0000
committerarun <arun>2007-05-17 12:29:55 +0000
commitd4a85c497c76daa0c5d6481ffe2239590bf0c401 (patch)
tree36034354e0cc22ec737cf33d081655cf2d129a35 /db.php
parent16206eb9748e85413976815017a1562d12fa08ed (diff)
downloade-DoKo-d4a85c497c76daa0c5d6481ffe2239590bf0c401.tar.gz
e-DoKo-d4a85c497c76daa0c5d6481ffe2239590bf0c401.tar.bz2
e-DoKo-d4a85c497c76daa0c5d6481ffe2239590bf0c401.zip
wedding should work now, started working on calling 120/90/60/30/0, small bugfixes
Diffstat (limited to 'db.php')
-rw-r--r--db.php19
1 files changed, 18 insertions, 1 deletions
diff --git a/db.php b/db.php
index a19242c..98e7724 100644
--- a/db.php
+++ b/db.php
@@ -163,6 +163,20 @@ function DB_get_handid_by_gameid_and_position($gameid,$pos)
else
return -1;
}
+function DB_get_userid_by_gameid_and_position($gameid,$pos)
+{
+ $result = mysql_query("SELECT user_id FROM Hand WHERE game_id=".
+ DB_quote_smart($gameid)." AND position=".
+ DB_quote_smart($pos));
+ $r = mysql_fetch_array($result,MYSQL_NUM);
+
+ if($r)
+ return $r[0];
+ else
+ return -1;
+}
+
+
function DB_get_handid_by_gameid_and_userid($gameid,$userid)
{
$result = mysql_query("SELECT id FROM Hand WHERE game_id=".
@@ -426,6 +440,7 @@ function DB_get_current_trickid($gameid)
{
$trickid = NULL;
$sequence = NULL;
+ $number = 0;
$result = mysql_query("SELECT Trick.id,MAX(Play.sequence) FROM Play ".
"LEFT JOIN Trick ON Play.trick_id=Trick.id ".
@@ -435,6 +450,7 @@ function DB_get_current_trickid($gameid)
{
$trickid = $r[0];
$sequence = $r[1];
+ $number++;
};
if(!$sequence || $sequence==4)
@@ -442,13 +458,14 @@ function DB_get_current_trickid($gameid)
mysql_query("INSERT INTO Trick VALUES (NULL,NULL,NULL, ".DB_quote_smart($gameid).")");
$trickid = mysql_insert_id();
$sequence = 1;
+ $number++;
}
else
{
$sequence++;
}
- return array($trickid,$sequence);
+ return array($trickid,$sequence,$number);
}
function DB_get_max_trickid($gameid)