summaryrefslogtreecommitdiffstats
path: root/include/db.php
diff options
context:
space:
mode:
authorArun Persaud <arun@nubati.net>2008-07-13 14:40:59 -0700
committerArun Persaud <arun@nubati.net>2008-07-13 20:35:17 -0700
commit3e07ecbf6f6b1f9f027bc5895a43d5efa774d083 (patch)
tree3fd80e735d3f738e597f2b60f59359e7b5794e4d /include/db.php
parent4f932986e02718cba7aef75d69702e2b7daa88fe (diff)
downloade-DoKo-3e07ecbf6f6b1f9f027bc5895a43d5efa774d083.tar.gz
e-DoKo-3e07ecbf6f6b1f9f027bc5895a43d5efa774d083.tar.bz2
e-DoKo-3e07ecbf6f6b1f9f027bc5895a43d5efa774d083.zip
NEW FEATURE: in poverty you can now see what cards have been handed over
cards exchanged during poverty show now up in the pre-game trick. Signed-off-by: Arun Persaud <arun@nubati.net>
Diffstat (limited to 'include/db.php')
-rw-r--r--include/db.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/db.php b/include/db.php
index 9b691ec..b7c6f70 100644
--- a/include/db.php
+++ b/include/db.php
@@ -1084,4 +1084,24 @@ function DB_get_name($type,$var1='')
return "";
}
+function DB_add_exchanged_card($card,$old_hand_id,$new_hand_id)
+{
+ DB_query("INSERT INTO Card_Exchange VALUES (NULL,$new_hand_id,$old_hand_id,$card)");
+ return;
+}
+
+function DB_get_exchanged_cards($hash)
+{
+ $cards = array();
+
+ $handid = DB_get_handid('hash',$hash);
+
+ $result = DB_query("SELECT card_id FROM Card_Exchange WHERE orig_hand_id=".DB_quote_smart($handid));
+ while($r = DB_fetch_array($result))
+ $cards[]=$r[0];
+
+ return $cards;
+}
+
+
?> \ No newline at end of file