diff options
author | Arun Persaud <arun@nubati.net> | 2008-09-13 09:23:34 -0700 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2008-09-13 09:51:25 -0700 |
commit | b0430639c8bb809dc46252ad240bb883a0937527 (patch) | |
tree | 444eaa79b852a4fedc7e661ba59cddbb8569dd74 /include | |
parent | dca957af7210156af72555bb8544fde47e756376 (diff) | |
download | e-DoKo-b0430639c8bb809dc46252ad240bb883a0937527.tar.gz e-DoKo-b0430639c8bb809dc46252ad240bb883a0937527.tar.bz2 e-DoKo-b0430639c8bb809dc46252ad240bb883a0937527.zip |
BUGFIX: added missing icons for rules
made some very simple icons for displaying the rules
Signed-off-by: Arun Persaud <arun@nubati.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/game.php | 37 | ||||
-rw-r--r-- | include/output.php | 2 |
2 files changed, 36 insertions, 3 deletions
diff --git a/include/game.php b/include/game.php index 8feda71..b509de3 100644 --- a/include/game.php +++ b/include/game.php @@ -126,8 +126,41 @@ if(myisset('call') && $_REQUEST['call'] == '0' && can_call(0,$me)) if($session) { echo "<div class=\"session\">\n"; - echo " <div class=\"sessionrules\">Rules (+icons for rules) \n"; - echo " <div>\n"; + echo " <div class=\"sessionrules\">Rules: "; + switch($RULES['dullen']) + { + case 'none': + echo "<img class=\"rulesicon\" alt=\"not ten of hearts\" src=\"pics/button/no-ten-of-hearts.png\"/>\n"; break; + case 'firstwins': + echo "<img class=\"rulesicon\" alt=\"ten of hearts\" src=\"pics/button/ten-of-hearts.png\"/>\n"; break; + case 'secondwins': + echo "<img class=\"rulesicon\" alt=\"second ten of hearts\" src=\"pics/button/second-ten-of-hearts.png\"/>\n"; break; + } + switch($RULES['schweinchen']) + { + case 'none': + echo "<img class=\"rulesicon\" alt=\"no schweinchen\" ". + "src=\"pics/button/no-schweinchen.png\"/>\n"; break; + case 'both': + echo "<img class=\"rulesicon\" alt=\"two schweinchen \" ". + "src=\"pics/button/two-schweinchen.png\"/>\n"; break; + case 'second': + echo "<img class=\"rulesicon\" alt=\"second schweinchen\" ". + "src=\"pics/button/second-schweinchen.png\"/>\n"; break; + case 'secondaftercall': + echo "<img class=\"rulesicon\" alt=\"second schweinchen after call\" ". + "src=\"pics/button/second-schweinchen-after-call.png\"/>\n"; break; + } + switch($RULES['call']) + { + case '1st-own-card': + echo "<img class=\"rulesicon\" alt=\"1st-own-card\" src=\"pics/button/1st-own-card.png\"/>\n"; break; + case '5th-card': + echo "<img class=\"rulesicon\" alt=\"5th-card\" src=\"pics/button/5th-card.png\"/>\n"; break; + case '9-cards': + echo "<img class=\"rulesicon\" alt=\"9-cards\" src=\"pics/button/9-cards.png\"/>\n"; break; + } + echo " <div>\n"; echo " 10ofhearts : {$RULES['dullen']} <br />\n"; echo " schweinchen: {$RULES['schweinchen']} <br />\n"; echo " call: {$RULES['call']} <br />\n"; diff --git a/include/output.php b/include/output.php index 0c75173..db9e2f1 100644 --- a/include/output.php +++ b/include/output.php @@ -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/standard010.css" /> + <link rel="stylesheet" type="text/css" href="css/standard011.css" /> <script type="text/javascript"> var current=0; function hl(num) { |