From 3e07ecbf6f6b1f9f027bc5895a43d5efa774d083 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Sun, 13 Jul 2008 14:40:59 -0700 Subject: 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 --- include/db.php | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'include/db.php') 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 -- cgit v1.2.3-18-g5258