NEW FEATURE: provide an RSS feed for each user showing in which games it's his turn
[e-DoKo.git] / include / output.php
index b51f4396886ab3ec2e9f54cefa398d9f15f1ef49..61fef6004fbe5d60d8c1087ec5db8ad54edc1570 100644 (file)
@@ -80,37 +80,38 @@ function output_form_for_new_game($names)
 ?>
     </div>
 
-   <h2 class="rules"> Rules </h2>
-      <p> Some areas are grayed out which means that the rule is not implemented yet and therefore cannot be selected </p>
-      <p> Ten of hearts: </p>
-      <ul>
-        <li> <input type="radio" name="dullen" value="none" /> just normal non-trump  </li>
-        <li> <input type="radio" name="dullen" value="firstwins" /> first ten of hearts wins the trick </li>
-        <li> <input type="radio" name="dullen" value="secondwins" checked="checked" /> second ten of hearts wins the trick </li>
-      </ul>
-      <p> Schweinchen (both foxes), only in normal games or silent solos: </p>
-      <ul>
-        <li> <input type="radio" name="schweinchen" value="none" checked="checked" /> none </li>
-        <li> <input type="radio" name="schweinchen" value="both" />
-              both become highest trump (automatic call at beginning of the game)
-        </li>
-        <li> <input type="radio" name="schweinchen" value="second" />
-             first one normal, second one becomes highest (call during the game) </li>
-        <li> <input type="radio" name="schweinchen" value="secondaftercall" />
-             second one become highest only in case re/contra was announced
-        </li>
-      </ul>
-      <p> Call Re/Contra, etc.: </p>
-      <ul>
-         <li><input type="radio" name="callrule" value="1st-own-card" checked="checked" />
-              Can call re/contra on the first <strong>own</strong> card played, 90 on the second, etc.</li>
-         <li><input type="radio" name="callrule" value="5th-card" />
-              Can call re/contra until 5th card is played, 90 until 9th card is played, etc.</li>
-         <li><input type="radio" name="callrule" value="9-cards"  />
-              Can call re/contra until 5th card is played, 90 if player still has 9 cards, etc.</li>
-      </ul>
-   <input type="submit" value="start game" />
- </form>
+     <h2 class="rules">Rules</h2>
+     <h3>Gameplay-related</h3>
+     <h4>Ten of hearts:</h4>
+     <p>
+       <select name="dullen">
+         <option value="none"> just normal non-trump  </option>
+         <option value="firstwins"> first ten of hearts wins the trick </option>
+         <option value="secondwins" selected="selected"> second ten of hearts wins the trick </option>
+       </select>
+     </p>
+     <h4>Schweinchen (both foxes), only in normal games or silent solos:</h4>
+     <p>
+       <select name="schweinchen">
+         <option value="none" selected="selected"> none </option>
+        <option value="both"> both become highest trump (automatic call at beginning of the game)   </option>
+        <option value="second"> first one normal, second one becomes highest (call during the game) </option>
+        <option value="secondaftercall">  second one become highest only in case re/contra was announced
+        </option>
+       </select>
+     </p>
+     <h4>Call Re/Contra, etc.:</h4>
+     <p>
+       <select name="callrule">
+        <option value="1st-own-card" selected="selected">  Can call re/contra on the first <strong>own</strong> card played, 90 on the second, etc.</option>
+        <option value="5th-card">  Can call re/contra until 5th card is played, 90 until 9th card is played, etc.</option>
+        <option value="9-cards" > Can call re/contra until 5th card is played, 90 if player still has 9 cards, etc.</option>
+       </select>
+     </p>
+     <h3>Scoring-related</h3>
+     <h4>(not yet implemented)</h4>
+     <p><input type="submit" value="start game"></p>
+     </form>
 <?php
 }
 
@@ -246,30 +247,61 @@ function output_check_for_sickness($me,$mycards)
 
 function output_form_calls($me,$myparty)
 {
-  if( can_call(120,$me) )
+  $highstart = "<span class=\"highcall\">";
+  $highend   = "</span>";
+
+  $tmp = can_call(120,$me);
+  if( $tmp )
+    {
+      if($tmp==2) echo $highstart;
+      if($myparty=='re')
+       echo "re (120):";
+      else if ($myparty=='contra')
+       echo "contra (120):";
+      else
+       echo " re/contra (120):";
+      echo " <input type=\"radio\" name=\"call\" value=\"120\" />";
+      if($tmp==2) echo $highend;
+      echo "<br />\n";
+    }
+  $tmp =  can_call(90,$me);
+  if( $tmp )
+    {
+      if($tmp==2) echo $highstart;
+      echo " 90:".
+       " <input type=\"radio\" name=\"call\" value=\"90\" />";
+      if($tmp==2) echo $highend;
+      echo "<br />\n";
+    }
+  $tmp = can_call(60,$me);
+  if( $tmp )
     {
-    if($myparty=='re')
-      echo "re (120):";
-    else if ($myparty=='contra')
-      echo "contra (120):";
-    else
-      echo " re/contra (120):";
-    echo " <input type=\"radio\" name=\"call\" value=\"120\" /> <br />";
+      if($tmp==2) echo $highstart;
+      echo " 60:".
+       " <input type=\"radio\" name=\"call\" value=\"60\" />";
+      if($tmp==2) echo $highend;
+      echo "<br />\n";
+    }
+  $tmp = can_call(30,$me);
+  if( $tmp )
+    {
+      if($tmp==2) echo $highstart;
+      echo " 30:".
+       " <input type=\"radio\" name=\"call\" value=\"30\" />";
+      if($tmp==2) echo $highend;
+      echo "<br />\n";
+    }
+  $tmp = can_call(0,$me);
+  if( $tmp )
+    {
+      if($tmp==2) echo $highstart;
+      echo " 0:".
+       " <input type=\"radio\" name=\"call\" value=\"0\" />";
+      if($tmp==2) echo $highend;
+      echo "<br />\n".
+       " no call:".
+       " <input type=\"radio\" name=\"call\" value=\"no\" /> <br />";
     }
-  if( can_call(90,$me) )
-    echo " 90:".
-      " <input type=\"radio\" name=\"call\" value=\"90\" /> <br />";
-  if( can_call(60,$me) )
-    echo " 60:".
-      " <input type=\"radio\" name=\"call\" value=\"60\" /> <br />";
-  if( can_call(30,$me) )
-    echo " 30:".
-      " <input type=\"radio\" name=\"call\" value=\"30\" /> <br />";
-  if( can_call(0,$me) )
-    echo " 0:".
-      " <input type=\"radio\" name=\"call\" value=\"0\" /> <br />".
-      " no call:".
-      " <input type=\"radio\" name=\"call\" value=\"no\" /> <br />";
 }
 
 function output_check_want_to_play($me)
@@ -300,7 +332,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/standard021.css" />
+     <link rel="stylesheet" type="text/css" href="css/standard023.css" />
      <script type="text/javascript" src="include/game.js"> </script>
      <script type="text/javascript" src="include/jquery.js"> </script>
      <script type="text/javascript" src="include/jquery.tablesorter.js"></script>
@@ -348,48 +380,78 @@ function output_footer()
 
 function output_status()
 {
-  global $defaulttimezone,$INDEX,$WIKI;
-   if(isset($_SESSION["name"]))
-     {
-       $name = $_SESSION["name"];
-
-       /* logout info */
-       echo "\n<div class=\"status\">\n";
-       echo $name,"\n";
-       echo " | <a href=\"".$INDEX."\"> mypage </a>\n";
-       echo " | <a href=\"".$INDEX."?action=prefs\">settings</a>\n";
-       echo " | <a href=\"".$INDEX."?action=new\">new game</a>\n";
-       echo " | <a href=\"".$INDEX."?action=stats\">statistics</a>\n";
-       echo " | <a href=\"".$WIKI."\">wiki</a>\n";
-       echo " |&nbsp;&nbsp;&nbsp; <a href=\"".$INDEX."?action=logout\">logout</a>\n";
-       echo "</div>\n";
-
-       /* last logon time */
-       $myid  = DB_get_userid("name",$name);
-       $zone  = DB_get_user_timezone($myid);
-
-       $time     = DB_get_user_timestamp($myid);
-       date_default_timezone_set($defaulttimezone);
-       $unixtime = strtotime($time);
-       date_default_timezone_set($zone);
-
-       echo "<div class=\"lastlogin\"><span>last login: ".date("r",$unixtime)."</span></div>\n";
-     }
-   else
-     {
-       echo "\n<div class=\"status\">\n";
-       echo "<a href=\"".$INDEX."\">login</a>\n";
-       echo "</div>\n";
-     }
+  global $defaulttimezone, $INDEX, $WIKI, $RSS;
+
+  if(isset($_SESSION["name"]))
+    {
+      $name = $_SESSION["name"];
+
+      /* last logon time */
+      $myid  = DB_get_userid("name",$name);
+      $zone  = DB_get_user_timezone($myid);
+
+      $time     = DB_get_user_timestamp($myid);
+      date_default_timezone_set($defaulttimezone);
+      $unixtime = strtotime($time);
+      date_default_timezone_set($zone);
+
+      /* rss token */
+      $token = get_user_token($myid);
+
+      /* logout info */
+      echo "\n<div class=\"status\">\n";
+      echo $name,"\n";
+      echo " | <a href=\"".$INDEX."\"> mypage </a>\n";
+      echo " | <a href=\"".$INDEX."?action=prefs\">settings</a>\n";
+      echo " | <a href=\"".$INDEX."?action=new\">new game</a>\n";
+      echo " | <a href=\"".$INDEX."?action=stats\">statistics</a>\n";
+      echo " | <a href=\"".$WIKI."\">wiki</a>\n";
+      echo " | <a href=\"".$RSS."?uid=".$myid."&amp;token=".$token."\">rss</a>\n";
+      echo " |&nbsp;&nbsp;&nbsp; <a href=\"".$INDEX."?action=logout\">logout</a>\n";
+      echo "</div>\n";
+
+      echo "<div class=\"lastlogin\"><span>last login: ".date("r",$unixtime)."</span></div>\n";
+    }
+  else
+    {
+      echo "\n<div class=\"status\">\n";
+      echo "<a href=\"".$INDEX."\">login</a>\n";
+      echo "</div>\n";
+    }
   return;
 }
 
 function output_select_timezone($name,$timezone="")
 {
-  $Tzone = array ( "Europe/London"     => "London",
-                  "Europe/Berlin"     => "Berlin",
-                  "America/Vancouver" => "Berkeley",
-                  "Pacific/Auckland"  => "Wellington" );
+  $Tzone = array ("Pacific/Apia"         => "Apia",                /*UTC-11*/
+                  "Pacific/Honolulu"     => "Honolulu",            /*UTC-10*/
+                  "America/Anchorage"    => "Anchorage",           /*UTC-9*/
+                  "America/Vancouver"    => "Berkeley",            /*UTC-8*/
+                  "America/Phoenix"      => "Phoenix",             /*UTC-7*/
+                  "America/Chicago"      => "Chicago",             /*UTC-6*/
+                  "America/New_York"     => "New York",            /*UTC-5*/
+                  "America/Santiago"     => "Santiago",            /*UTC-4*/
+                  "America/Buenos_Aires" => "Buenos Aires",        /*UTC-3*/
+                  "Atlantic/South_Georgia" => "Fernando de Noronha", /*UTC-2*/
+                  "Atlantic/Azores"       => "Azores",             /*UTC-1"*/
+                  "Europe/London"         => "London",             /*UTC*/
+                  "Europe/Berlin"         => "Berlin",             /*UTC+1*/
+                  "Africa/Cairo"          => "Cairo",              /*UTC+2*/
+                  "Europe/Moscow"         => "Moscow",             /*UTC+3*/
+                  "Asia/Tehran"           => "Tehran",             /*UTC+3:30*/
+                  "Asia/Dubai"            => "Dubai",              /*UTC+4*/
+                  "Asia/Karachi"          => "Karachi",            /*UTC+5*/
+                  "Asia/Calcutta"         => "Delhi",              /*UTC+5:30*/
+                  "Asia/Kathmandu"        => "Kathmandu",          /*UTC+5:45*/
+                  "Asia/Dhaka"            => "Dhaka",              /*UTC+6*/
+                  "Asia/Rangoon"          => "Yangon",             /*UTC+6:30*/
+                  "Asia/Bangkok"          => "Bangkok",            /*UTC+7*/
+                  "Asia/Hong_Kong"        => "Beijing",            /*UTC+8*/
+                  "Asia/Tokyo"            => "Tokyo",              /*UTC+9*/
+                  "Australia/Darwin"      => "Darwin",             /*UTC+9:30*/
+                  "Australia/Sydney"      => "Sydney",             /*UTC+10*/
+                  "Asia/Magadan"          => "Magadan",            /*UTC+11*/
+                  "Pacific/Auckland"      => "Wellington" );       /*UTC+12*/
 
   echo "  <select id=\"$name\" name=\"$name\" size=\"1\">\n";
 
@@ -535,7 +597,7 @@ function output_exchanged_cards()
          if($povertypos2)
            foreach($povertycards1 as $card)
              {
-               if(is_trump($card)) 
+               if(is_trump($card))
                  {
                    $trump_back1=1;
                    break;
@@ -545,13 +607,13 @@ function output_exchanged_cards()
          if($povertypos2)
            foreach($povertycards2 as $card)
              {
-               if(is_trump($card)) 
+               if(is_trump($card))
                  {
                    $trump_back2=1;
                    break;
                  }
              }
-         
+
          /* output vorbehalt  */
          echo "      <div class=\"vorbehalt".($mypos-1)."\"> Vorbehalt <br />\n";
          if($show)
@@ -615,4 +677,4 @@ function output_exchanged_cards()
 }
 
 
-?>
\ No newline at end of file
+?>