BUGFIX: gametype was displayed in pre-phase of the game
[e-DoKo.git] / include / output.php
1 <?php
2 /* Copyright 2006, 2007, 2008, 2009, 2010, 2011, 2012 Arun Persaud <arun@nubati.net>
3  *
4  *   This file is part of e-DoKo.
5  *
6  *   e-DoKo is free software: you can redistribute it and/or modify
7  *   it under the terms of the GNU General Public License as published by
8  *   the Free Software Foundation, either version 3 of the License, or
9  *   (at your option) any later version.
10  *
11  *   e-DoKo is distributed in the hope that it will be useful,
12  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *   GNU General Public License for more details.
15  *
16  *   You should have received a copy of the GNU General Public License
17  *   along with e-DoKo.  If not, see <http://www.gnu.org/licenses/>.
18  *
19  */
20
21 /* make sure that we are not called from outside the scripts,
22  * use a variable defined in config.php to check this
23  */
24 if(!isset($HOST))
25   exit;
26
27 /* functions which only ouput html  */
28
29 function autoversion($file)
30 {
31   /* changes the file name of e.g. css/style.css to css/style.<md5>.css/js
32    * this way the browser can cache the file and will reload it if the file changed
33    * needs to have .htaccess set up correctly to link back to css/style.css */
34
35   /* only use it for file that have an absolut path */
36   if(!file_exists(dirname($_SERVER['SCRIPT_FILENAME']). '/' . $file))
37     return $file;
38
39   $md5 = md5_file(dirname($_SERVER['SCRIPT_FILENAME']). '/' . $file);
40   return preg_replace('{\\.([^./]+)$}', ".$md5.\$1", $file);
41 }
42
43
44 function output_ask_for_new_game($playerA,$playerB,$playerC,$playerD,$oldgameid)
45 {
46   global $RULES;
47
48   echo "<div class=\"message\">\n<form action=\"index.php?action=new\" method=\"post\">\n";
49   $output = sprintf(_('Do you want to continue playing? (This will start a new game, with %s starting the game.)'),$playerA);
50   echo $output."\n";
51   echo "  <input type=\"hidden\" name=\"PlayerA\" value=\"$playerA\" />\n";
52   echo "  <input type=\"hidden\" name=\"PlayerB\" value=\"$playerB\" />\n";
53   echo "  <input type=\"hidden\" name=\"PlayerC\" value=\"$playerC\" />\n";
54   echo "  <input type=\"hidden\" name=\"PlayerD\" value=\"$playerD\" />\n";
55   echo "  <input type=\"hidden\" name=\"dullen\"  value=\"".$RULES['dullen']."\" />\n";
56   echo "  <input type=\"hidden\" name=\"schweinchen\" value=\"".$RULES['schweinchen']."\" />\n";
57   echo "  <input type=\"hidden\" name=\"callrule\" value=\"".$RULES['call']."\" />\n";
58   echo "  <input type=\"hidden\" name=\"lowtrump\" value=\"".$RULES['lowtrump']."\" />\n";
59   echo "  <input type=\"hidden\" name=\"followup\" value=\"$oldgameid\" />\n";
60   echo "  <input type=\"submit\" value=\""._('keep playing')."\" />\n";
61   echo "</form>\n</div>";
62   return;
63 }
64
65 function output_form_for_new_game($names)
66 {
67   $copy_names = $names; /* local copy, so that we can delete names from it
68                          * after we selected them to make sure that each name
69                          * only shows up once
70                          */
71
72   /* delete players name, since he will be on position D anyway */
73   unset($copy_names[array_search($_SESSION["name"],$copy_names)]);
74   srand((float) microtime() * 10000000);
75
76
77   echo '  <form action="index.php?action=new" method="post">';
78   echo '    <h2> '._('Select players (Remember: you need to be one of the players)').' </h2>';
79
80   echo '   <div class="table">';
81
82   echo  "     <div class=\"table1\">\n";
83   $randkey = array_rand($copy_names);
84   $rand = $copy_names[$randkey];
85   /* delete this name from the list of possible names */
86   unset($copy_names[$randkey]);
87   echo "       <select name=\"PlayerB\" size=\"1\">  \n";
88   foreach($names as $name)
89     {
90       if($name==$rand)
91         echo "         <option selected=\"selected\">$name</option>\n";
92       else
93         echo "         <option>$name</option>\n";
94     }
95   echo "       </select>\n     </div>\n";
96
97   echo '   <div class="middle">';
98
99   $randkey = array_rand($copy_names);
100   $rand = $copy_names[$randkey];
101   /* delete this name from the list of possible names */
102   unset($copy_names[$randkey]);
103   echo  "     <div class=\"table0\">\n";
104   echo "       <select name=\"PlayerA\" size=\"1\">  \n";
105   foreach($names as $name)
106     {
107       if($name==$rand)
108         echo "         <option selected=\"selected\">$name</option>\n";
109       else
110         echo "         <option>$name</option>\n";
111     }
112   echo "       </select>\n     </div>\n";
113
114   echo '     <img class="table" src="pics/table.png" alt="table" />';
115   $randkey = array_rand($copy_names);
116   $rand = $copy_names[$randkey];
117   /* delete this name from the list of possible names */
118   unset($copy_names[$randkey]);
119   echo  "     <div class=\"table2\">\n";
120   echo "       <select name=\"PlayerC\" size=\"1\">  \n";
121   foreach($names as $name)
122     {
123       if($name==$rand)
124         echo "         <option selected=\"selected\">$name</option>\n";
125       else
126         echo "         <option>$name</option>\n";
127     }
128   echo "       </select>\n     </div>\n";
129
130   echo '   </div>';
131   $rand = $_SESSION["name"];
132   echo  "     <div class=\"table3\">\n";
133   $i++;
134   echo "       <select name=\"PlayerD\" size=\"1\">  \n";
135   foreach($names as $name)
136     {
137       if($name==$rand)
138         echo "         <option selected=\"selected\">$name</option>\n";
139       else
140         echo "         <option>$name</option>\n";
141     }
142   echo "       </select>\n     </div>\n";
143
144   /* ask player for names */
145
146     echo '    </div>';
147     echo '';
148     echo '     <h2 class="rules">'._('Rules').'</h2>';
149     echo '     <h3>'._('Gameplay-related').'</h3>';
150     echo '     <h4>'._('Ten of hearts').':</h4>';
151     echo '     <p>';
152     echo '       <select name="dullen">';
153     echo '         <option value="none"> '._('just normal non-trump').'  </option>';
154     echo '         <option value="firstwins"> '._('first ten of hearts wins the trick').' </option>';
155     echo '         <option value="secondwins" selected="selected"> '.('second ten of hearts wins the trick').' </option>';
156     echo '       </select>';
157     echo '     </p>';
158     echo '     <h4>'._('Schweinchen (both foxes), only in normal games or silent solos').':</h4>';
159     echo '     <p>';
160     echo '       <select name="schweinchen">';
161     echo '         <option value="none" selected="selected"> '._('none').' </option>';
162     echo '       <option value="both"> '._('both become highest trump (automatic call at beginning of the game)').'   </option>';
163     echo '       <option value="second"> '._('first one normal, second one becomes highest (call during the game)').' </option>';
164     echo '       <option value="secondaftercall">  ',_('second one become highest only in case re/contra was announced');
165     echo '       </option>';
166     echo '       </select>';
167     echo '     </p>';
168     echo '     <h4>'._('Call Re/Contra, etc.').':</h4>';
169     echo '     <p>';
170     echo '       <select name="callrule">';
171     echo '       <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>';
172     echo '       <option value="5th-card"> '._('Can call re/contra until 5th card is played, 90 until 9th card is played, etc.').'</option>';
173     echo '       <option value="9-cards" > '._('Can call re/contra until 5th card is played, 90 if player still has 9 cards, etc.').'</option>';
174     echo '       </select>';
175     echo '     </p>';
176     echo '     <h4>'._('Low trump').'</h4>';
177     echo '     <p>';
178     echo '       '._('Player can\'t trump a fox, that is none of his trump is higher than a fox.');
179     echo '       <select name="lowtrump">';
180     echo '       <option value="poverty">'._('The trump will be treated as poverty and offered to another player.').'</option>';
181     echo '       <option value="cancel"> '._('The game will be canceled unless there is a solo.').'</option>';
182     echo '       <option value="none">   '._('Bad luck, the player needs to play a normal game.').'</option>';
183     echo '       </select>';
184     echo '     </p>';
185     echo '     <h3>'._('Scoring-related').'</h3>';
186     echo '     <h4>'._('(not yet implemented)').'</h4>';
187     echo '     <p><input type="submit" value="'._('start game').'"></p>';
188     echo '     </form>';
189
190 }
191
192 function output_table($data,$caption="",$class="",$id="")
193 {
194
195   $HTML  = "\n<table";
196
197   if($class!="")
198     $HTML.= " class=\"$class\"";
199   if($id!="")
200     $HTML.= " id=\"$id\"";
201
202   $HTML.=">\n";
203
204   $i=0;
205
206   if($caption!="")
207     $HTML .= "  <caption> $caption </caption>\n";
208
209   foreach($data as $record)
210     {
211       if(!$i)
212         $HTML .= "  <thead>\n  <tr>\n";
213       else
214         {
215           if($i==1) $HTML .= "  <tbody>\n";
216           $HTML .= "  <tr>  ";
217         }
218       foreach($record as $point)
219         {
220           if($i)
221             $HTML .= "    <td>$point</td> ";
222           else
223             $HTML .= "    <th>$point</th> ";
224         }
225
226       if(!$i)
227         $HTML .= "  </tr>\n  </thead>\n";
228       else
229         {
230           $HTML .= "  </tr>\n";
231         }
232       $i++;
233     }
234   $HTML .= "  </tbody>\n</table>\n";
235
236   return $HTML;
237 }
238
239 function display_card($card,$dir="english")
240 {
241   /* cards are only availabl for the odd values, e.g. 1.png, 3.png, ...
242    * convert even cards to the matching odd value */
243
244   if( $card/2 - (int)($card/2) == 0.5 || $card == 0)
245     echo "<img src=\"cards/".$dir."/".$card.".png\"  alt=\"".DB_get_card_name($card)."\" />\n";
246   else
247     echo "<img src=\"cards/".$dir."/".($card-1).".png\"  alt=\"".DB_get_card_name($card-1)."\" />\n";
248
249   return;
250 }
251
252 function display_link_card($card,$dir="english",$type="card", $selected=0)
253 {
254   if($selected)
255     $selected = 'checked="checked"';
256
257   if( $card/2 - (int)($card/2) == 0.5)
258     echo "<label class=\"cardinput\"><input type=\"radio\" name=\"".$type."\" value=\"".$card."\" $selected /><img src=\"cards/".$dir."/".$card.".png\" alt=\"".DB_get_card_name($card)."\" /></label>\n";
259   else
260     echo "<label class=\"cardinput\"><input type=\"radio\" name=\"".$type."\" value=\"".$card."\" $selected /><img src=\"cards/".$dir."/".($card-1).".png\" alt=\"".DB_get_card_name($card-1)."\" /></label>\n";
261   return;
262 }
263
264 function output_check_for_sickness($me,$mycards)
265 {
266   global $RULES;
267
268   echo '  <div class="sickness"> '._('Thanks for joining the game').'...<br />';
269   echo '';
270   echo '    '._('Do you want to play solo?').'';
271   echo '    <select name="solo" size="1">';
272   echo '      <option value="No" selected="selected">'.'No'.'</option>';
273   echo '      <option value="trumpless">'._('trumpless').'</option>';
274   echo '      <option value="trump">'._('trump').'</option>';
275   echo '      <option value="queen">'._('queen').'</option>';
276   echo '      <option value="jack">'._('jack').'</option>';
277   echo '      <option value="club">'._('club').'</option>';
278   echo '      <option valvue="spade">'._('spade').'</option>';
279   echo '      <option value="hear">'._('heart').'</option>';
280   echo '    </select>';
281   echo '    <br />';
282
283   echo _('Wedding?');
284   if(check_wedding($mycards))
285      {
286        echo ' '._('yes')."<input type=\"radio\" name=\"wedding\" value=\"yes\" checked=\"checked\" />";
287        echo ' '._('no')." <input type=\"radio\" name=\"wedding\" value=\"no\" /> <br />\n";
288      }
289    else
290      {
291        echo ' '._('no')." <input type=\"hidden\" name=\"wedding\" value=\"no\" /> <br />\n";
292      };
293
294   echo _('Do you have poverty?');
295   if(count_trump($mycards)<4)
296     {
297       echo ' '._('yes')."<input type=\"radio\" name=\"poverty\" value=\"yes\" checked=\"checked\" />";
298       echo ' '._('no')." <input type=\"radio\" name=\"poverty\" value=\"no\" /> <br />\n";
299     }
300   else
301     {
302       echo ' '._('no')." <input type=\"hidden\" name=\"poverty\" value=\"no\" /> <br />\n";
303     };
304
305   echo _('Do you have too many nines?');
306   if(count_nines($mycards)>4)
307      {
308        echo ' '._('yes')."<input type=\"radio\" name=\"nines\" value=\"yes\" checked=\"checked\" />";
309        echo ' '._('no')." <input type=\"radio\" name=\"nines\" value=\"no\" /> <br />\n";
310      }
311    else
312      {
313        echo ' '._('no')." <input type=\"hidden\" name=\"nines\" value=\"no\" /> <br />\n";
314      };
315
316   if($RULES['lowtrump']=='cancel' || $RULES['lowtrump']=='poverty')
317     {
318       if($RULES['lowtrump']=='cancel')
319         echo _('Do you have low trump (cancel game)?');
320       else
321         echo _('Do you have low trump (poverty)?');
322
323       if(check_low_trump($mycards))
324         {
325           echo ' '._('yes')."<input type=\"radio\" name=\"lowtrump\" value=\"yes\" checked=\"checked\" />";
326           echo ' '._('no')." <input type=\"radio\" name=\"lowtrump\" value=\"no\" /> <br />\n";
327         }
328       else
329         {
330           echo ' '._('no')." <input type=\"hidden\" name=\"lowtrump\" value=\"no\" /> <br />\n";
331         };
332     }
333   else
334     echo "<input type=\"hidden\" name=\"lowtrump\" value=\"no\" />";
335
336    echo "<input type=\"hidden\" name=\"me\" value=\"$me\" />\n";
337    echo "<input type=\"submit\" value=\""._('count me in')."\" />\n";
338
339    echo "</div>\n";
340
341   return;
342 }
343
344 function output_form_calls($me,$myparty)
345 {
346   $highstart = '  <span class="highcall">';
347   $highend   = '</span>';
348
349   $tmp = can_call(120,$me);
350   if( $tmp )
351     {
352       if($tmp==2) echo $highstart;
353       if($myparty=='re')
354         echo '  re (120):';
355       else if ($myparty=='contra')
356         echo '  contra (120):';
357       else
358         echo '  re/contra (120):';
359       echo ' <input type="radio" name="call" value="120" />';
360       if($tmp==2) echo $highend;
361       echo "\n";
362     }
363   $tmp = can_call(90,$me);
364   if( $tmp )
365     {
366       if($tmp==2) echo $highstart;
367       echo '  90:'.
368         ' <input type="radio" name="call" value="90" />';
369       if($tmp==2) echo $highend;
370       echo "\n";
371     }
372   $tmp = can_call(60,$me);
373   if( $tmp )
374     {
375       if($tmp==2) echo $highstart;
376       echo '  60:'.
377         ' <input type="radio" name="call" value="60" />';
378       if($tmp==2) echo $highend;
379       echo "\n";
380     }
381   $tmp = can_call(30,$me);
382   if( $tmp )
383     {
384       if($tmp==2) echo $highstart;
385       echo '  30:'.
386         ' <input type="radio" name="call" value="30" />';
387       if($tmp==2) echo $highend;
388       echo "\n";
389     }
390   $tmp = can_call(0,$me);
391   if( $tmp )
392     {
393       if($tmp==2) echo $highstart;
394       echo '  0:'.
395         ' <input type="radio" name="call" value="0" />';
396       if($tmp==2) echo $highend;
397       echo "\n".
398         '  no call:'.
399         ' <input type="radio" name="call" value="no" />'."\n";
400     }
401 }
402
403 function output_check_want_to_play($me)
404 {
405   echo ' <div class="joingame">';
406   echo '   '._('Do you want to play a game of DoKo?').' <br />';
407   echo '   '._('yes').'<input type="radio" name="in" value="yes" />';
408   echo '   '._('no').'<input type="radio" name="in" value="no" /> <br />';
409   echo "<input type=\"hidden\" name=\"me\" value=\"$me\" />\n";
410   echo "\n";
411   echo "<input type=\"submit\" value=\""._('submit')."\" />\n";
412   echo " </div>\n";
413
414   return;
415 }
416
417 function output_header()
418 {
419    global $REV;
420 ?>
421 <!DOCTYPE html>
422 <html lang="en">
423   <head>
424      <title>e-Doko</title>
425      <meta charset="utf-8" />
426      <meta name="viewport" content="width=device-width; initial-scale=1.0;" />
427      <link rel="shortcut icon" href="pics/edoko-favicon.png" />
428      <link rel="stylesheet" href="<?php echo autoversion("css/normalize.css"); ?>" />
429      <link rel="stylesheet" href="<?php echo autoversion("css/standard.css"); ?>" />
430      <link rel="stylesheet" href="<?php echo autoversion("css/dateinput.css"); ?>"/>
431      <script type="text/javascript" src="<?php echo autoversion("js/jquery.js"); ?>"> </script>
432      <script type="text/javascript" src="<?php echo autoversion("js/jquery.tablesorter.js"); ?>"></script>
433      <script type="text/javascript" src="<?php echo autoversion("js/jquery.tools.min.js"); ?>"></script>
434      <script type="text/javascript" src="<?php echo autoversion("js/game.js"); ?>"> </script>
435      <script type="text/javascript">
436      </script>
437   </head>
438 <body onload="high_last();">
439 <header>
440 <?php
441   echo '<h1> '._('Welcome to E-Doko').' </h1>';
442 ?>
443 </header>
444 <?php
445
446   echo "<div class=\"main\">";
447   return;
448 }
449
450 function output_footer()
451 {
452   global $REV, $PREF, $INDEX;
453
454   echo "</div>\n\n";
455   echo "<footer>\n";
456   echo "  <p class=\"left\"> copyright 2006-2012 <a href=\"$INDEX?action=about\">Arun Persaud, et al.</a> <br />\n".
457     "  Verwendung der [deutschen] Kartenbilder mit Genehmigung <br />der Spielkartenfabrik Altenburg GmbH,(c) ASS Altenburger <br />\n".
458     "  - ASS Altenburger Spielkarten - Spielkartenfabrik Altenburg GmbH <br />\n".
459     "  a Carta Mundi Company Email: info@spielkarten.com Internet: www.spielkarten.com</p>\n";
460   echo " <p class=\"right\"> See the latest changes <a href=\"http://nubati.net/cgi-bin/gitweb.cgi?p=e-DoKo.git;a=summary\">\n".
461     "  via git </a> <br />or download the source via <br />\n'git clone http://nubati.net/git/e-DoKo.git' <br />\n".
462     "  <a href=\"http://www.dreamhost.com/green.cgi\">\n".
463     "  <img alt=\"Green Web Hosting! This site hosted by DreamHost.\"".
464     " src=\"pics/green1.gif\" height=\"32\" width=\"100\" /></a>\n".
465     "  </p> \n";
466   echo "</footer>\n\n";
467   echo "</body>\n";
468   echo "</html>\n";
469
470   return;
471 }
472
473 function output_status()
474 {
475   global $defaulttimezone, $INDEX, $WIKI, $RSS;
476
477   if(isset($_SESSION['name']))
478     {
479       $name = $_SESSION['name'];
480
481       /* last logon time */
482       $myid  = DB_get_userid('name',$name);
483       $zone  = DB_get_user_timezone($myid);
484
485       $time     = DB_get_user_timestamp($myid);
486       date_default_timezone_set($defaulttimezone);
487       $unixtime = strtotime($time);
488       date_default_timezone_set($zone);
489
490       /* rss token */
491       $token = get_user_token($myid);
492
493       /* logout info */
494       echo "\n<div class=\"status\">\n";
495       echo $name,"\n";
496       echo " | <a href=\"".$INDEX."\">"._('mypage')."</a>\n";
497       echo " | <a href=\"".$INDEX."?action=prefs\">"._('settings')."</a>\n";
498       echo " | <a href=\"".$INDEX."?action=new\">"._('new game')."</a>\n";
499       echo " | <a href=\"".$INDEX."?action=stats\">"._('statistics')."</a>\n";
500       echo " | <a href=\"".$WIKI."\">"._('wiki/bugs')."</a>\n";
501       echo " | <a href=\"".$RSS."?uid=".$myid."&amp;token=".$token."\">"._('atom')."</a>\n";
502       echo " |&nbsp;&nbsp;&nbsp; <a href=\"".$INDEX."?action=logout\">"._('logout')."</a>\n";
503       echo "</div>\n\n";
504
505       echo "<div class=\"lastlogin\"><span>"._('last login').": ".date("r",$unixtime)."</span></div>\n\n";
506     }
507   return;
508 }
509
510 function output_select_timezone($name,$timezone="")
511 {
512   $Tzone = array ("Pacific/Apia"         => "Apia",                /*UTC-11*/
513                   "Pacific/Honolulu"     => "Honolulu",            /*UTC-10*/
514                   "America/Anchorage"    => "Anchorage",           /*UTC-9*/
515                   "America/Vancouver"    => "Berkeley",            /*UTC-8*/
516                   "America/Phoenix"      => "Phoenix",             /*UTC-7*/
517                   "America/Chicago"      => "Chicago",             /*UTC-6*/
518                   "America/New_York"     => "New York",            /*UTC-5*/
519                   "America/Santiago"     => "Santiago",            /*UTC-4*/
520                   "America/Buenos_Aires" => "Buenos Aires",        /*UTC-3*/
521                   "Atlantic/South_Georgia" => "Fernando de Noronha", /*UTC-2*/
522                   "Atlantic/Azores"       => "Azores",             /*UTC-1"*/
523                   "Europe/London"         => "London",             /*UTC*/
524                   "Europe/Berlin"         => "Berlin",             /*UTC+1*/
525                   "Africa/Cairo"          => "Cairo",              /*UTC+2*/
526                   "Europe/Moscow"         => "Moscow",             /*UTC+3*/
527                   "Asia/Tehran"           => "Tehran",             /*UTC+3:30*/
528                   "Asia/Dubai"            => "Dubai",              /*UTC+4*/
529                   "Asia/Karachi"          => "Karachi",            /*UTC+5*/
530                   "Asia/Calcutta"         => "Delhi",              /*UTC+5:30*/
531                   "Asia/Kathmandu"        => "Kathmandu",          /*UTC+5:45*/
532                   "Asia/Dhaka"            => "Dhaka",              /*UTC+6*/
533                   "Asia/Rangoon"          => "Yangon",             /*UTC+6:30*/
534                   "Asia/Bangkok"          => "Bangkok",            /*UTC+7*/
535                   "Asia/Hong_Kong"        => "Beijing",            /*UTC+8*/
536                   "Asia/Tokyo"            => "Tokyo",              /*UTC+9*/
537                   "Australia/Darwin"      => "Darwin",             /*UTC+9:30*/
538                   "Australia/Sydney"      => "Sydney",             /*UTC+10*/
539                   "Asia/Magadan"          => "Magadan",            /*UTC+11*/
540                   "Pacific/Auckland"      => "Wellington" );       /*UTC+12*/
541
542   echo "  <select id=\"$name\" name=\"$name\" size=\"1\">\n";
543
544   foreach($Tzone as $zone=>$city)
545     {
546       if($timezone==$zone)
547         echo "   <option value=\"$zone\" selected=\"selected\">$city</option>\n";
548       else
549         echo "   <option value=\"$zone\">$city</option>\n";
550     }
551   echo "  </select>\n";
552
553   return;
554 }
555
556 function output_select_language($name,$language="")
557 {
558   $LOCALE = array ("English"     => "en",
559                    "Deutsch"     => "de" );
560
561   echo "  <select id=\"$name\" name=\"$name\" size=\"1\">\n";
562
563   foreach($LOCALE as $place=>$locale)
564     {
565       if($language==$locale)
566         echo "   <option value=\"$locale\" selected=\"selected\">$place</option>\n";
567       else
568         echo "   <option value=\"$locale\">$place</option>\n";
569     }
570   echo "  </select>\n";
571
572   return;
573 }
574
575
576 function output_password_recovery($email,$password)
577 {
578 ?>
579    <form action="index.php" method="post">
580 <?php
581   echo "  <input type=\"hidden\" name=\"email\" value=\"".$email."\" />\n";
582   echo "  <input type=\"hidden\" name=\"password\" value=\"".$password."\" />\n";
583   echo "  <input type=\"hidden\" name=\"passwd\"  value=\"set\" />\n";
584 ?>
585      <fieldset>
586        <legend>Password recovery</legend>
587         <table>
588          <tr>
589             <td><label for="password0">Old password:</label></td>
590             <td><input type="password" id="password0" name="password0" size="20" maxlength="30" /> </td>
591          </tr><tr>
592             <td><label for="password1">New password:</label></td>
593             <td><input type="password" id="password1" name="password1" size="20" maxlength="30" /></td>
594          </tr><tr>
595             <td><label for="password2">Retype:</label></td>
596             <td><input type="password" id="password2" name="password2" size="20" maxlength="30" /></td>
597          </tr><tr>
598            <td></td>
599            <td> <input type="submit" class="submitbutton" name="passwd" value="set" /></td>
600          </tr>
601         </table>
602      </fieldset>
603    </form>
604
605 <?php
606 }
607
608 function output_user_notes($userid,$gameid,$userstatus)
609 {
610   echo "<div class=\"notes\"> "._('Personal notes').": <br />\n";
611   $notes = DB_get_notes_by_userid_and_gameid($userid,$gameid);
612   foreach($notes as $note)
613     echo "  $note <hr />\n";
614   if($userstatus!='gameover')
615     echo "  <input name=\"note\" type=\"text\" size=\"15\" maxlength=\"100\" />\n";
616   echo "</div>\n\n";
617
618   return;
619 }
620
621 function output_robotproof($i)
622 {
623   switch($i)
624     {
625     case 0:
626       return "6*7=";
627     case 1:
628       return "5*7=";
629     case 2:
630       return "4*7=";
631     case 3:
632       return "3*7=";
633     case 4:
634       return "2*7=";
635     }
636 }
637
638 function output_exchanged_cards()
639 {
640   /* in a poverty game this function will output the exchanged cards
641    * players in the team will see the cards, the other team will see
642    * the backside of cards
643    */
644
645   /* need some information about the game */
646   global $gameid,$mygametype, $PREF,$me,$mystatus, $RULES;
647
648   /* some variables to track where the people with poverty are sitting */
649   $partnerpos1 = 0;
650   $povertypos1 = 0;
651   $partnerpos2 = 0;
652   $povertypos2 = 0;
653
654   /* only need to do it in a poverty game, this might not be needed, but
655    * just to make sure everything is ok
656    */
657   if($mygametype == 'poverty' || $mygametype=='dpoverty')
658     {
659       /* find out who has poverty */
660       for($mypos=1;$mypos<5;$mypos++)
661         {
662           $usersick = DB_get_sickness_by_pos_and_gameid($mypos,$gameid);
663           if($usersick == 'poverty' || ($RULES['lowtrump']=='poverty' && $usersick=='lowtrump'))
664             if($povertypos1)
665               $povertypos2 = $mypos;
666             else
667               $povertypos1 = $mypos;
668         }
669       /* get hash and exchanged cards for all involved */
670       $povertyhash1 = DB_get_hash_from_game_and_pos($gameid,$povertypos1);
671       $partnerhash1 = DB_get_partner_hash_by_hash($povertyhash1);
672
673       $povertycards1 = DB_get_exchanged_cards($povertyhash1);
674       $partnercards1 = DB_get_exchanged_cards($partnerhash1);
675
676       $partnerpos1 = DB_get_pos_by_hash($partnerhash1);
677       if($povertypos2)
678         {
679           $povertyhash2 = DB_get_hash_from_game_and_pos($gameid,$povertypos2);
680           $partnerhash2 = DB_get_partner_hash_by_hash($povertyhash2);
681
682           $povertycards2 = DB_get_exchanged_cards($povertyhash2);
683           $partnercards2 = DB_get_exchanged_cards($partnerhash2);
684
685           $partnerpos2 = DB_get_pos_by_hash($partnerhash2);
686         }
687     }
688
689   /* output the cards
690    * go through all positions, check that position has cards that need to be shown and
691    * show those cards
692    */
693   $show=1;
694   for($mypos=1;$mypos<5;$mypos++)
695     {
696       /* output comments */
697       if($mypos==2)
698         {
699           /* display all comments on the top right (card1)*/
700           $comments = DB_get_pre_comment($gameid);
701           /* display card */
702           echo "      <div class=\"card1\">\n";
703           /* display comments */
704           foreach( $comments as $comment )
705             echo "        <span class=\"comment\">".$comment[1].": ".$comment[0]."</span>\n";
706           echo "      </div>\n"; /* end div card */
707         }
708
709       $usersick = DB_get_sickness_by_pos_and_gameid($mypos,$gameid);
710       if($usersick!=NULL ||
711          $mypos==$povertypos1 || $mypos==$partnerpos1 ||
712          $mypos==$povertypos2 || $mypos==$partnerpos2 )
713         {
714           /* figure out if we gave trump back */
715           $trump_back1=0;
716           if($povertypos2)
717             foreach($povertycards1 as $card)
718               {
719                 if(is_trump($card))
720                   {
721                     $trump_back1=1;
722                     break;
723                   }
724               }
725           $trump_back2=0;
726           if($povertypos2)
727             foreach($povertycards2 as $card)
728               {
729                 if(is_trump($card))
730                   {
731                     $trump_back2=1;
732                     break;
733                   }
734               }
735
736           /* output vorbehalt  */
737           echo "      <div class=\"vorbehalt".($mypos-1)."\"> Vorbehalt <br />\n";
738           if($show)
739             echo "       $usersick <br />\n";
740
741           /* output cards */
742           if($mypos==$partnerpos1)
743             {
744               foreach($partnercards1 as $card)
745                 {
746                   echo '        ';
747                   if($povertyhash1 == $me || $partnerhash1 == $me || $mystatus=='gameover')
748                     display_card($card,$PREF['cardset']);
749                   else
750                     display_card(0,$PREF['cardset']);
751                 }
752               if($trump_back1) echo '        '._('Trump back');
753             }
754           else if($mypos==$povertypos1)
755             {
756               foreach($povertycards1 as $card)
757                 {
758                   echo '        ';
759                   if($povertyhash1 == $me || $partnerhash1 == $me || $mystatus=='gameover')
760                     display_card($card,$PREF['cardset']);
761                   else
762                     display_card(0,$PREF['cardset']);
763               }
764               if($trump_back1) echo '        '._('Trump back');
765             }
766           else if($mypos==$povertypos2)
767             {
768               foreach($povertycards2 as $card)
769                 {
770                   echo '        ';
771                   if($povertyhash2 == $me || $partnerhash2 == $me || $mystatus=='gameover')
772                     display_card($card,$PREF['cardset']);
773                   else
774                     display_card(0,$PREF['cardset']);
775                 }
776               if($trump_back2) echo '        '._('Trump back');
777             }
778           else if($mypos==$partnerpos2)
779             {
780               foreach($partnercards2 as $card)
781                 {
782                   if(is_trump($card)) $trump_back=1;
783                   echo '        ';
784                   if($povertyhash2 == $me || $partnerhash2 == $me || $mystatus=='gameover')
785                     display_card($card,$PREF['cardset']);
786                   else
787                     display_card(0,$PREF['cardset']);
788                 }
789               if($trump_back2) echo '        '._('Trump back');
790             }
791           echo  "      </div>\n";
792         }
793       if($mygametype == $usersick)
794         $show = 0;
795     }
796 }
797
798
799 ?>