diff options
author | Arun Persaud <arun@nubati.net> | 2008-07-13 14:40:59 -0700 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2008-07-13 20:35:17 -0700 |
commit | 3e07ecbf6f6b1f9f027bc5895a43d5efa774d083 (patch) | |
tree | 3fd80e735d3f738e597f2b60f59359e7b5794e4d /include | |
parent | 4f932986e02718cba7aef75d69702e2b7daa88fe (diff) | |
download | e-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')
-rw-r--r-- | include/db.php | 20 | ||||
-rw-r--r-- | include/game.php | 81 | ||||
-rw-r--r-- | include/output.php | 4 |
3 files changed, 102 insertions, 3 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 diff --git a/include/game.php b/include/game.php index 3ed9497..e471d5d 100644 --- a/include/game.php +++ b/include/game.php @@ -693,6 +693,7 @@ switch($mystatus) { $result = DB_query("UPDATE Hand_Card SET hand_id='$partnerhand'". " WHERE hand_id='$myhand' AND card_id=".DB_quote_smart($exchange)); + DB_add_exchanged_card(DB_quote_smart($exchange),$myhand,$partnerhand); }; } @@ -844,6 +845,12 @@ switch($mystatus) $userhand = DB_get_handid('gameid-userid',$gameid,$trump); $userhash = DB_get_hash_from_gameid_and_userid($gameid,$trump); + /* remember which cards were handed over*/ + $partnerhand = DB_get_all_hand($userhash); + foreach ($partnerhand as $card) + if($card<27) + DB_add_exchanged_card($card,$userhand,$myhand); + /* copy trump from player A to B */ $result = DB_query("UPDATE Hand_Card SET hand_id='$myhand' WHERE hand_id='$userhand' AND card_id<'27'" ); @@ -1067,15 +1074,87 @@ switch($mystatus) { echo " <li onclick=\"hl('0');\" class=\"current\"><a href=\"#\">Pre</a>\n". " <div class=\"trick\" id=\"trick0\">\n"; + /* get information so show the cards that have been handed over in a poverty game */ + $partnerpos1 = 0; + $povertypos1 = 0; + $partnerpos2 = 0; + $povertypos2 = 0; + if($mygametype == 'poverty' || $mygametype=='dpoverty') + { + /* who has poverty */ + for($mypos=1;$mypos<5;$mypos++) + { + $usersick = DB_get_sickness_by_pos_and_gameid($mypos,$gameid); + if($usersick == 'poverty') + if($povertypos1) + $povertypos2 = $mypos; + else + $povertypos1 = $mypos; + } + /* get hash and cards for all */ + $povertyhash1 = DB_get_hash_from_game_and_pos($gameid,$povertypos1); + $partnerhash1 = DB_get_partner_hash_by_hash($povertyhash1); + + $povertycards1 = DB_get_exchanged_cards($povertyhash1); + $partnercards1 = DB_get_exchanged_cards($partnerhash1); + + $partnerpos1 = DB_get_pos_by_hash($partnerhash1); + if($povertypos2) + { + $povertyhash2 = DB_get_hash_from_game_and_pos($gameid,$povertypos2); + $partnerhash2 = DB_get_partner_hash_by_hash($povertyhash2); + + $povertycards2 = DB_get_exchanged_cards($povertyhash2); + $partnercards2 = DB_get_exchanged_cards($partnerhash2); + + $partnerpos2 = DB_get_pos_by_hash($partnerhash2); + } + } + $show = 1; for($mypos=1;$mypos<5;$mypos++) { $usersick = DB_get_sickness_by_pos_and_gameid($mypos,$gameid); - if($usersick!=NULL) + if($usersick!=NULL || + $mypos==$povertypos1 || $mypos==$partnerpos1 || + $mypos==$povertypos2 || $mypos==$partnerpos2 ) { echo " <div class=\"vorbehalt".($mypos-1)."\"> Vorbehalt <br />"; if($show) echo " $usersick <br />"; + if($mypos==$partnerpos1) + { + foreach($partnercards1 as $card) + if($povertyhash1 == $me || $partnerhash1 == $me || $mystatus=='gameover') + display_card($card,$PREF['cardset']); + else + display_card(0,$PREF['cardset']); + } + else if($mypos==$povertypos1) + { + foreach($povertycards1 as $card) + if($povertyhash1 == $me || $partnerhash1 == $me || $mystatus=='gameover') + display_card($card,$PREF['cardset']); + else + display_card(0,$PREF['cardset']); + } + else if($mypos==$povertypos2) + { + foreach($povertycards2 as $card) + if($povertyhash2 == $me || $partnerhash2 == $me || $mystatus=='gameover') + display_card($card,$PREF['cardset']); + else + display_card(0,$PREF['cardset']); + } + else if($mypos==$partnerpos2) + { + foreach($partnercards2 as $card) + if($povertyhash2 == $me || $partnerhash2 == $me || $mystatus=='gameover') + display_card($card,$PREF['cardset']); + else + display_card(0,$PREF['cardset']); + } + echo " </div>\n"; if($mygametype == $usersick) diff --git a/include/output.php b/include/output.php index 21f7e8e..8272739 100644 --- a/include/output.php +++ b/include/output.php @@ -143,7 +143,7 @@ function display_card($card,$dir="english") /* cards are only availabl for the odd values, e.g. 1.png, 3.png, ... * convert even cards to the matching odd value */ - if( $card/2 - (int)($card/2) == 0.5) + if( $card/2 - (int)($card/2) == 0.5 || $card == 0) echo "<img src=\"cards/".$dir."/".$card.".png\" alt=\"".DB_get_card_name($card)."\" />\n"; else echo "<img src=\"cards/".$dir."/".($card-1).".png\" alt=\"".DB_get_card_name($card-1)."\" />\n"; @@ -270,7 +270,7 @@ function output_header() <title>e-Doko</title> <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type" /> <link rel="shortcut icon" type="image/x-icon" href="pics/edoko-favicon.png" /> - <link rel="stylesheet" type="text/css" href="css/standard009.css" /> + <link rel="stylesheet" type="text/css" href="css/standard010.css" /> <script type="text/javascript"> var current=0; function hl(num) { |