summaryrefslogtreecommitdiffstats
path: root/db.php
diff options
context:
space:
mode:
authorarun <arun@nubati.net>2007-01-08 09:16:20 +0000
committerarun <arun>2007-01-08 09:16:20 +0000
commitf91a22b698415eacda6af7403814caa6f34ad7e5 (patch)
tree9c1ffdca2fb8738a41f4fddb062a143481bce5cc /db.php
parenta260a1abdfb22b421fbb4305cf2a0c8d57b89c9e (diff)
downloade-DoKo-f91a22b698415eacda6af7403814caa6f34ad7e5.tar.gz
e-DoKo-f91a22b698415eacda6af7403814caa6f34ad7e5.tar.bz2
e-DoKo-f91a22b698415eacda6af7403814caa6f34ad7e5.zip
FEATURE: added solo and now you also can only play cards that are valid on a trick
Diffstat (limited to 'db.php')
-rw-r--r--db.php55
1 files changed, 54 insertions, 1 deletions
diff --git a/db.php b/db.php
index 254c460..6da3bd9 100644
--- a/db.php
+++ b/db.php
@@ -283,12 +283,18 @@ function DB_get_cards_by_trick($id)
}
-function DB_set_solo_by_hash($me,$solo)
+function DB_set_solo_by_hash($hash,$solo)
{
mysql_query("UPDATE Hand SET solo=".DB_quote_smart($solo)." WHERE hash=".DB_quote_smart($hash));
return;
}
+function DB_set_solo_by_gameid($id,$solo)
+{
+ mysql_query("UPDATE Game SET solo=".DB_quote_smart($solo)." WHERE id=".DB_quote_smart($id));
+ return;
+}
+
function DB_set_sickness_by_hash($hash,$sickness)
{
mysql_query("UPDATE Hand SET sickness=".DB_quote_smart($sickness)." WHERE hash=".DB_quote_smart($hash));
@@ -420,4 +426,51 @@ function DB_insert_comment($comment,$playid,$userid)
mysql_query("INSERT INTO Comment VALUES (NULL,NULL,NULL,$userid,$playid, ".DB_quote_smart($comment).")");
return;
}
+
+function DB_get_gametype_by_gameid($id)
+{
+ $result = mysql_query("SELECT type FROM Game WHERE id=".DB_quote_smart($id));
+ $r = mysql_fetch_array($result,MYSQL_NUM);
+
+ if($r)
+ return $r[0]."";
+ else
+ return "";
+}
+
+function DB_set_gametype_by_gameid($id,$p)
+{
+ mysql_query("UPDATE Game SET type='".$p."' WHERE id=".DB_quote_smart($id));
+ return;
+}
+
+function DB_get_solo_by_gameid($id)
+{
+ $result = mysql_query("SELECT solo FROM Game WHERE id=".DB_quote_smart($id));
+ $r = mysql_fetch_array($result,MYSQL_NUM);
+
+ if($r)
+ return $r[0]."";
+ else
+ return "";
+}
+
+
+function DB_get_startplayer_by_gameid($id)
+{
+ $result = mysql_query("SELECT startplayer FROM Game WHERE id=".DB_quote_smart($id));
+ $r = mysql_fetch_array($result,MYSQL_NUM);
+
+ if($r)
+ return $r[0];
+ else
+ return 0;
+}
+
+function DB_set_startplayer_by_gameid($id,$p)
+{
+ mysql_query("UPDATE Game SET startplayer='".$p."' WHERE id=".DB_quote_smart($id));
+ return;
+}
+
?> \ No newline at end of file