X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=e-DoKo.git;a=blobdiff_plain;f=include%2Foutput.php;h=50da5791cf5d073de06dc2d5e5f17b7cd41c6f02;hp=729452aceed350db79d4e78e45d987e139fe274b;hb=f55dbd7a08908c0443b5ed9d20c2dc74bb8b1026;hpb=b9c5f3e252ab1f5725d653528cc8a719e6822f6d diff --git a/include/output.php b/include/output.php index 729452a..50da579 100644 --- a/include/output.php +++ b/include/output.php @@ -53,48 +53,80 @@ function output_form_for_new_game($names) * after we selected them to make sure that each name * only shows up once */ + + /* delete players name, since he will be on position D anyway */ + unset($copy_names[array_search($_SESSION["name"],$copy_names)]); + srand((float) microtime() * 10000000); + + echo '
'; echo '

'._('Select players (Remember: you need to be one of the players)').'

'; - echo '
'; - echo ' table'; - /* ask player for names */ + echo '
'; - $i=0; + echo "
\n"; + $randkey = array_rand($copy_names); + $rand = $copy_names[$randkey]; + /* delete this name from the list of possible names */ + unset($copy_names[$randkey]); + echo " \n
\n"; - /* delete players name, since he will be on position D anyway */ - unset($copy_names[array_search($_SESSION["name"],$copy_names)]); + echo '
'; - srand((float) microtime() * 10000000); - foreach( array("PlayerA","PlayerB","PlayerC","PlayerD") as $player) + $randkey = array_rand($copy_names); + $rand = $copy_names[$randkey]; + /* delete this name from the list of possible names */ + unset($copy_names[$randkey]); + echo "
\n"; + echo " \n
\n"; - echo "
\n"; - $i++; - echo " \n
\n"; + echo ' table'; + $randkey = array_rand($copy_names); + $rand = $copy_names[$randkey]; + /* delete this name from the list of possible names */ + unset($copy_names[$randkey]); + echo "
\n"; + echo " \n
\n"; + + echo '
'; + $rand = $_SESSION["name"]; + echo "
\n"; + $i++; + echo " \n
\n"; + + /* ask player for names */ echo '
'; echo ''; @@ -202,12 +234,15 @@ function display_card($card,$dir="english") return; } -function display_link_card($card,$dir="english",$type="card") +function display_link_card($card,$dir="english",$type="card", $selected=0) { + if($selected) + $selected = 'checked="checked"'; + if( $card/2 - (int)($card/2) == 0.5) - echo "
\"".DB_get_card_name($card)."\"
\n"; + echo "\n"; else - echo "
\"".DB_get_card_name($card-1)."\"
\n"; + echo "\n"; return; } @@ -219,14 +254,14 @@ function output_check_for_sickness($me,$mycards) echo ''; echo ' '._('Do you want to play solo?').''; echo ' '; echo '
'; @@ -368,44 +403,29 @@ function output_header() { global $REV; ?> - - + + e-Doko - - - - + + + + + + + + -
+
'._('Welcome to E-Doko').' '; ?> -
+ "; @@ -417,20 +437,18 @@ function output_footer() global $REV, $PREF, $INDEX; echo "
\n\n"; - echo "
\n"; - echo "

copyright 2006,2007,2008,2009,2010 Arun Persaud, et al.
\n". + echo "

\n"; + echo "

copyright 2006-2011 Arun Persaud, et al.
\n". " Verwendung der [deutschen] Kartenbilder mit Genehmigung
der Spielkartenfabrik Altenburg GmbH,(c) ASS Altenburger
\n". " - ASS Altenburger Spielkarten - Spielkartenfabrik Altenburg GmbH
\n". " a Carta Mundi Company Email: info@spielkarten.com Internet: www.spielkarten.com

\n"; - echo "

See the latest changes \n". + echo "

See the latest changes \n". " via git
or download the source via
\n'git clone http://nubati.net/git/e-DoKo.git'
\n". " \n". - " \"Green\n". + " \"Green\n". "

\n"; - echo "\n"; - echo "
\n"; - + echo "\n\n"; echo "\n"; echo "\n"; @@ -467,15 +485,9 @@ function output_status() echo " | "._('wiki/bugs')."\n"; echo " | "._('atom')."\n"; echo " |    "._('logout')."\n"; - echo "\n"; + echo "\n\n"; - echo "
"._('last login').": ".date("r",$unixtime)."
\n"; - } - else - { - echo "\n
\n"; - echo ""._('login')."\n"; - echo "
\n"; + echo "
"._('last login').": ".date("r",$unixtime)."
\n\n"; } return; } @@ -559,13 +571,13 @@ function output_password_recovery($email,$password) Password recovery - + - + - + @@ -583,10 +595,10 @@ function output_user_notes($userid,$gameid,$userstatus) echo "
"._('Personal notes').":
\n"; $notes = DB_get_notes_by_userid_and_gameid($userid,$gameid); foreach($notes as $note) - echo "$note
\n"; + echo " $note
\n"; if($userstatus!='gameover') - echo "\n"; - echo "
\n"; + echo " \n"; + echo "\n\n"; return; }