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