X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=e-DoKo.git;a=blobdiff_plain;f=output.php;h=ddea3b83c0e5980b488a73973404a3abc23043f3;hp=d73b9feec9b29e4ac3436c0b43ed24697f424603;hb=d8eac0035f97a64371557e7da8b9730fe28d8788;hpb=651d44e67499ec7cae07c60c5351f65424c93279 diff --git a/output.php b/output.php index d73b9fe..ddea3b8 100644 --- a/output.php +++ b/output.php @@ -2,130 +2,131 @@ /* functions which only ouput html */ -function display_status($gametype) +function output_user_settings($email,$password) { - echo "
"; - echo " Gametype: $gametype"; - echo "
\n"; - - return; -} + global $PREF; -function display_news() -{ - global $wiki; - echo "
\n". - " Please hit shift+reload.

\n". - " The server now keeps score... (only from now on)

". - " If you find more bugs, please list them in the wiki.\n
\n"; - return; -} + echo "
\n"; + echo "

Settings

\n"; + echo "change password
use german cards
"; + else + echo "use english cards
"; -function output_link_to_user_page($email,$password) -{ - echo "
\n"; - echo "
\n"; - echo " \n"; - echo " \n"; - echo " \n"; - echo "
\n"; echo "
\n"; - - return; -} -function output_register() -{ - echo "IMPORTANT: passwords are going over the net as clear text, so pick an easy password. No need to pick anything complicated here ;)

"; - echo "TODO: convert timezone into a menu
\n"; - echo "TODO: figure out a way to handle passwrods
\n"; - ?> -
-
- Register - - - - - - - - - - - - - - - -
- -
-
-
-\n"; echo " \n"; echo " \n"; echo " \n"; echo " \n"; + echo " \n"; + echo " \n"; + echo " \n"; echo " \n"; echo " \n"; - echo "\n"; return; } -function output_form_for_new_game() +function output_form_for_new_game($names) { ?> -

Please add 4 names, please make sure that the names are correct!

+

Players

+

Please select four players (or use the randomly pre-selected names)

- Name: - Name: - Name: - Name: - + \n"; + foreach($names as $name) + { + if($name==$rand) + { + echo " \n"; + } + else + echo " \n"; + } + echo " \n"; + } +?> +

Rules

+

Some areas are grayed out which means that the rule is not implemented yet and therefore cannot be selected

+

ten of hearts: +

+

+

schweinchen (both foxes), only in normal games or silent solos: +

+

+

Call Re/Contra, etc.: +

+

\n"; + echo "\"".DB_get_card_name($card)."\"\n"; else - echo "\"".card_to_name($card-1)."\"\n"; + echo "\"".DB_get_card_name($card-1)."\"\n"; return; } -function display_link_card($card) +function display_link_card($card,$dir="english",$type="card") { if( $card/2 - (int)($card/2) == 0.5) - echo "\"\"\n"; + echo "
\"".DB_get_card_name($card)."\"
\n"; else - echo "\"\"\n"; + echo "
\"".DB_get_card_name($card-1)."\"
\n"; return; } -function check_for_sickness($me,$mycards) +function output_check_for_sickness($me,$mycards) { ?> -

Solo will work, but the first player will not change. Nothing else implemented.

- -
+
Thanks for joining the game...
do you want to play solo?
\n"; }; - echo "do you have poverty?"; + echo "Do you have poverty?"; if(count_trump($mycards)<4) { echo " yes"; @@ -164,7 +165,7 @@ function check_for_sickness($me,$mycards) echo " no
\n"; }; - echo "do you have too many nines?"; + echo "Do you have too many nines?"; if(count_nines($mycards)>4) { echo " yes"; @@ -178,36 +179,81 @@ function check_for_sickness($me,$mycards) echo "\n"; echo "\n"; - echo "\n"; + echo "
\n"; return; } -function check_want_to_play($me) +function output_form_calls($me) +{ + if( can_call(120,$me) ) + echo " re/contra (120):". + "
"; + if( can_call(90,$me) ) + echo " 90:". + "
"; + if( can_call(60,$me) ) + echo " 60:". + "
"; + if( can_call(30,$me) ) + echo " 30:". + "
"; + if( can_call(0,$me) ) + echo " 0:". + "
". + " no call:". + "
"; +} + + +function output_check_want_to_play($me) { ?> -
- Do you want to play a game of DoKo? +
+ Do you want to play a game of DoKo?
yes no
- - Do you want to get an email for every card played or only if it your move? - every card - only on my turn
\n"; echo "\n"; - echo "\n"; - echo " \n"; + echo "\n"; + echo "
\n"; return; } -function output_home_page() +function output_home_page($pre,$game,$done,$avgtime) { ?>

If you want to play a game of Doppelkopf, you found the right place ;)

-

Please register, in case you haven't done yet
+ At the moment there are no games that are being started "; + else if($pre==1) + echo "

At the moment there is one games that is being started "; + else + echo "

At the moment there are $pre games that are being started "; + + echo "and "; + + if($game==0) + echo "zero games that are ongoing. "; + else if($game==1) + echo "one game that is ongoing. "; + else + echo "$game games that are ongoing. "; + + echo "
\n"; + + if($done==0) + echo "No game has been completed on this server.

"; + else if($done==1) + echo "One game has been completed on this server.

"; + else + echo "$done games have been completed on this server. Average time of a game: $avgtime days

"; +?> + +

Please register, in case you haven't done that yet
or login with you email-address or name and password here:

@@ -215,11 +261,15 @@ function output_home_page() Login - + + - + + - + + +
@@ -244,7 +294,7 @@ function output_header() function hl(num) { if(document.getElementById){ var i; - for(i=1;i<13;i++){ + for(i=1;i<14;i++){ if(document.getElementById("trick"+i)) document.getElementById("trick"+i).style.display = 'none'; } @@ -254,7 +304,7 @@ function output_header() function high_last(){ if(document.getElementById){ var i; - for(i=12;i>0;i--) { + for(i=13;i>0;i--) { if(document.getElementById("trick"+i)) { hl(i); @@ -267,21 +317,78 @@ function output_header()
-

Welcome to E-Doko

-

Revision:

+

Welcome to E-Doko (beta)

- +
"; + echo "
\n"; + echo "

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

\n"; + echo "

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

\n"; + echo "\n"; + echo "
\n"; + echo "\n"; echo "\n"; return; } + +function output_status($name) +{ + echo "
\n"; + echo $name; + echo " logout\n"; + echo "
"; + + return; +} + + +function output_password_recovery($email,$password) +{ +?> +
+\n"; + echo " \n"; + echo " \n"; +?> +
+ Password recovery + + + + + + + + + + + + + + +
+
+
+ + \ No newline at end of file