only ask for a new game in a session, if it was the latest game
[e-DoKo.git] / output.php
index 68cfb28f7fa96fdc3eda723c448853ec78dcf999..ef67cccc04961f41ac892b22fa24b6bc5ca50266 100644 (file)
@@ -2,10 +2,10 @@
 
 /* functions which only ouput html  */
 
-function display_status()
+function display_status($gametype)
 {
   echo "<div class=\"info\">";
-  echo " is someone playing solo, etc?";
+  echo " Gametype: $gametype";
   echo "</div>\n";
   
   return;
@@ -16,22 +16,87 @@ function display_news()
   global $wiki;
   echo "<div class=\"bug\">\n".
     "  Please hit <strong>shift+reload</strong>.<br /><hr />\n".
-    "  added local time display, let me know what you think<br /><hr />\n".
-    "  If you find more bugs, please list them in the <a href=\"".$wiki.
-    "\">wiki</a>.\n</div>\n";
+    "  The server now keeps score... (only from now on) <br /><hr />".
+    "  If you find more bugs, please list them in the <a href=\"".
+    $wiki."\">wiki</a>.\n</div>\n";
   return;
 }
 
+function output_link_to_user_page($email,$password)
+{
+  echo "<div class=\"over\">\n";
+  echo "<form action=\"index.php\" method=\"post\">\n";
+  echo "  <input type=\"hidden\" name=\"email\" value=\"".$email."\" />\n";
+  echo "  <input type=\"hidden\" name=\"password\" value=\"".$password."\" />\n";
+  echo "  <input type=\"submit\" value=\"go to my user page\" />\n";
+  echo "</form>\n";
+  echo "</div>\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 ;)<br /><br />";
+  echo "TODO: convert timezone into a menu<br />\n";
+  echo "TODO: figure out a way to handle passwrods <br />\n";
+  ?>
+        <form action="index.php" method="post">
+          <fieldset>
+            <legend>Register</legend>
+             <table>
+              <tr>
+               <td><label for="Rfullname">Full name:</label></td>
+              <td><input type="text" id="Rfullname" name="Rfullname" size="20" maxsize="30" /> </td>
+              </tr><tr>
+               <td><label for="Remail">Email:</label></td>
+              <td><input type="text" id="Remail" name="Remail" size="20" maxsize="30" /></td>
+              </tr><tr>
+              <td><label for="Rpassword">Password(will be displayed in cleartext on the next page):</label></td>
+               <td><input type="password" id="Rpassword" name="Rpassword" size="20" maxsize="30" /></td>
+              </tr><tr>
+              <td><label for="Rtimezone">Timezone:</label></td>
+               <td>
+                  <input type="text" id="Rtimezone" name="Rtimezone" size="4" maxsize="4" value="+1" />
+              </td>
+              </tr><tr>
+               <td colspan="2"> <input type="submit" value="register" /></td>
+             </table>
+          </fieldset>
+        </form>
+<?php
+  return;
+}                                         
+
+function output_ask_for_new_game($playerA,$playerB,$playerC,$playerD,$oldgameid)
+{
+  echo "Do you want to continue playing?(This will start a new game, with the next person as dealer.)\n";
+  echo "<form action=\"index.php\" method=\"post\">\n";
+  echo "  <input type=\"hidden\" name=\"PlayerA\" value=\"$playerA\" />\n";
+  echo "  <input type=\"hidden\" name=\"PlayerB\" value=\"$playerB\" />\n";
+  echo "  <input type=\"hidden\" name=\"PlayerC\" value=\"$playerC\" />\n";
+  echo "  <input type=\"hidden\" name=\"PlayerD\" value=\"$playerD\" />\n";
+  echo "  <input type=\"hidden\" name=\"followup\" value=\"$oldgameid\" />\n";
+  echo "  <input type=\"submit\" value=\"keep playing\" />\n";
+  echo "</form>\n";
+
+  return;
+}
 
-function output_form_for_new_game()
+function output_form_for_new_game($names)
 {
 ?>
-    <p>Please add 4 names, please make sure that the names are correct! </p>
+    <p>Please select four players </p>
        <form action="index.php" method="post">
-   Name:  <input name="PlayerA" type="text" size="10" maxlength="20" /> 
-   Name:  <input name="PlayerB" type="text" size="10" maxlength="20" /> 
-   Name:  <input name="PlayerC" type="text" size="10" maxlength="20" /> 
-   Name:  <input name="PlayerD" type="text" size="10" maxlength="20" /> 
+<?php
+  foreach( array("PlayerA","PlayerB","PlayerC","PlayerD") as $player)
+  {
+    echo "    Name:  <select name=\"$player\" size=\"1\" />  \n";
+     foreach($names as $name)
+      echo "     <option>$name</option>\n";
+    echo "  </select>\n";
+   }
+?>   
 
    <input type="submit" value="start game" />
  </form>
@@ -63,13 +128,13 @@ function display_link_card($card)
 function check_for_sickness($me,$mycards)
 {
  ?>
-  <p> nothing implemented so far, but give it a try anyway ;) </p>               
+  <p> Solo will work, but the first player will not change. Nothing else implemented. </p>               
 
   <form action="index.php" method="post">
 
     do you want to play solo? 
     <select name="solo" size="1">
-      <option>No</option>
+      <option selected="selected">No</option>
       <option>trumpless</option>
       <option>trump</option>
       <option>queen</option>
@@ -82,10 +147,10 @@ function check_for_sickness($me,$mycards)
 
  <?php   
       
-   echo "wedding?";
+  echo "wedding?";
   if(check_wedding($mycards))
      {
-       echo " yes<input type=\"radio\" name=\"wedding\" value=\"yes\" />";
+       echo " yes<input type=\"radio\" name=\"wedding\" value=\"yes\" checked=\"checked\" />";
        echo " no <input type=\"radio\" name=\"wedding\" value=\"no\" /> <br />\n";
      }
    else
@@ -96,7 +161,7 @@ function check_for_sickness($me,$mycards)
   echo "do you have poverty?";
   if(count_trump($mycards)<4)
     {
-      echo " yes<input type=\"radio\" name=\"poverty\" value=\"yes\" />";
+      echo " yes<input type=\"radio\" name=\"poverty\" value=\"yes\" checked=\"checked\" />";
       echo " no <input type=\"radio\" name=\"poverty\" value=\"no\" /> <br />\n";
     }
   else
@@ -107,7 +172,7 @@ function check_for_sickness($me,$mycards)
    echo "do you have too many nines?";
   if(count_nines($mycards)>4)
      {
-       echo " yes<input type=\"radio\" name=\"nines\" value=\"yes\" />";
+       echo " yes<input type=\"radio\" name=\"nines\" value=\"yes\" checked=\"checked\" />";
        echo " no <input type=\"radio\" name=\"nines\" value=\"no\" /> <br />\n";
      }
    else
@@ -143,7 +208,7 @@ function check_want_to_play($me)
   return;
 }
 
-function home_page()
+function output_home_page()
 {
 ?>
     <p> If you want to play a game of Doppelkopf, you found the right place ;) </p>
@@ -170,6 +235,7 @@ function home_page()
 
 function output_header()
 {
+   global $REV;
 ?>
 <!DOCTYPE html PUBLIC
     "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"
@@ -207,12 +273,15 @@ function output_header()
 <body onload="high_last();">
 <div class="header">
 <h1> Welcome to E-Doko </h1>
+<p> Revision: <?php echo "$REV"; ?></p>
 </div>
 
 <?php
   return;
 }
 
+
+
 function output_footer()
 {
   echo "</body>\n";