BUGFIX: don't show schweinchen in poverty games during pre-game phase
[e-DoKo.git] / include / game.php
1 <?php
2 /* Copyright 2006, 2007, 2008, 2009, 2010 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 /* calling game.php only makes sense when we give it a hash for a game */
28 if(!myisset('me'))
29   {
30     echo "Hmm, you really shouldn't mess with the urls.<br />\n";
31     return;
32   }
33 $me = $_REQUEST['me'];
34
35 /* Ok, got a hash, but is it valid? */
36 $myid = DB_get_userid('hash',$me);
37 if(!$myid)
38   {
39     echo "Can't find you in the database, please check the url.<br />\n";
40     echo "perhaps the game has been canceled, check by login in <a href=\"$INDEX\">here</a>.";
41     return;
42   }
43
44 global $GAME,$RULES,$CARDS;
45
46 /* get some information from the DB */
47 $gameid   = DB_get_gameid_by_hash($me);
48 $myname   = DB_get_name('hash',$me);
49 $mystatus = DB_get_status_by_hash($me);
50 $origmystatus = DB_get_status_by_hash($me); /* to show "it's your turn" menu when game has just finished */
51 $mypos    = DB_get_pos_by_hash($me);
52 $myhand   = DB_get_handid('hash',$me);
53 $myparty  = DB_get_party_by_hash($me);
54 $session  = DB_get_session_by_gameid($gameid);
55
56 /* get prefs and save them in a variable*/
57 $PREF = DB_get_PREF(isset($_SESSION['id'])?$_SESSION['id']:$myid);
58
59 /* get rule set for this game */
60 $RULES = DB_get_RULES($gameid);
61
62 /* get some infos about the game */
63 $gametype   = DB_get_gametype_by_gameid($gameid);
64 $gamestatus = DB_get_game_status_by_gameid($gameid);
65 $GT         = $gametype;
66 if($gametype=='solo')
67   {
68     $gametype = DB_get_solo_by_gameid($gameid);
69     $GT  = $gametype.' '.$GT;
70   }
71
72 /* do we need to worry about Schweinchen?
73  * check gametype and rules
74  * if yes, figure out if someone actually has Schweinchen
75  * save information in $GAME
76  */
77 $ok=0;
78 if( $gamestatus == 'pre' )
79   {
80     /* always need to use Schweinchen to figure out for example who has poverty */
81     $ok=1;
82     /* unless the gametype is set and we know that we are in poverty were schweinchen is not valid */
83     if( in_array( $gametype,array('poverty','dpoverty') ))
84       $ok=0;
85   }
86 else
87   {
88     /* in a game Schweinchen is not valid in all types of games */
89     if( in_array($gametype,array('normal','wedding','trump','silent') ))
90       if( in_array($RULES['schweinchen'],array('both','second','secondaftercall')) )
91         $ok=1;
92   }
93
94 /* these are the defaults */
95 $GAME['schweinchen-who']    = NULL;
96 $GAME['schweinchen-first']  = NULL;
97 $GAME['schweinchen-second'] = NULL;
98
99 if($ok)
100 {
101   /* need to check for Schweinchen */
102   for($i=1;$i<5;$i++)
103     {
104       $hash  = DB_get_hash_from_game_and_pos($gameid,$i);
105       $cards = DB_get_all_hand($hash);
106       if( in_array('19',$cards) && in_array('20',$cards) )
107         $GAME['schweinchen-who']=$hash;
108     };
109   $GAME['schweinchen-first']  = 0; /* to keep track if they have been played already */
110   $GAME['schweinchen-second'] = 0;
111 }
112 /* end check for Schweinchen */
113
114 /* set the $CARDS variable, needed for sorting the cards
115  * we set it to normal so that the pre-game phase is handled ok
116  * and later set it to the correct game type that is played
117  */
118 set_gametype('normal');
119
120 /* put everyting in a form */
121 echo "<form action=\"index.php?action=game&amp;me=$me\" method=\"post\">\n";
122
123 /* handle user notes (only possible while game is running)*/
124 if( $mystatus!='gameover'  )
125   if(myisset('note'))
126     {
127       $note = $_REQUEST['note'];
128
129       if($note != '')
130         DB_insert_note($note,$gameid,$myid);
131     };
132
133 /* make sure that we don't show the notes to the wrong person
134  * (e.g. other people looking at an old game)
135  */
136 if( $mystatus != 'gameover' ||
137     (  $mystatus == 'gameover' &&
138        isset($_SESSION['id'])  &&
139        $myid == $_SESSION['id']))
140   output_user_notes($myid,$gameid,$mystatus);
141
142 /* handle calls, output a comment to show when the call was made */
143 /* initialize comments */
144 $comment  =  '';
145
146 /* check for calls, set comment */
147 if(myisset('call')  && $_REQUEST['call']  == '120' && can_call(120,$me))
148   {
149     $result = DB_query("UPDATE Hand SET point_call='120' WHERE hash='$me' ");
150     if($myparty=='re')
151       $comment .= "Re";
152     else if($myparty=='contra')
153       $comment .= "Contra";
154   }
155 if(myisset('call')  && $_REQUEST['call']  == '90' && can_call(90,$me))
156   {
157     $result = DB_query("UPDATE Hand SET point_call='90'  WHERE hash='$me' ");
158     $comment .= "No 90";
159   }
160 if(myisset('call')  && $_REQUEST['call']  == '60' && can_call(60,$me))
161   {
162     $result = DB_query("UPDATE Hand SET point_call='60'  WHERE hash='$me' ");
163     $comment .= "No 60";
164   }
165 if(myisset('call')  && $_REQUEST['call']  == '30' && can_call(30,$me))
166   {
167     $result = DB_query("UPDATE Hand SET point_call='30'  WHERE hash='$me' ");
168     $comment .= "No 30";
169   }
170 if(myisset('call')  && $_REQUEST['call']  == '0' && can_call(0,$me))
171   {
172     $result = DB_query("UPDATE Hand SET point_call='0'   WHERE hash='$me' ");
173     $comment .= "Zero";
174   }
175
176 /* get information needed to submit comment */
177 $playid = DB_get_current_playid($gameid);
178
179 /* set comment */
180 if($comment != '')
181   DB_insert_comment($comment,$playid,$myid);
182 /* clear up */
183 unset($comment);
184 /* end check for calls */
185
186
187 /* output extra division in case this game is part of a session */
188 if($session)
189   {
190     echo "<div class=\"session\">\n";
191     echo '  <div class="sessionrules">'._('Rules').': ';
192     switch($RULES['dullen'])
193       {
194       case 'none':
195         echo "  <img class=\"rulesicon\" alt=\""._('no ten of hearts')."\" src=\"pics/button/no-ten-of-hearts.png\"/>\n"; break;
196       case 'firstwins':
197         echo "  <img class=\"rulesicon\" alt=\""._('ten of hearts')."\" src=\"pics/button/ten-of-hearts.png\"/>\n"; break;
198       case 'secondwins':
199         echo "  <img class=\"rulesicon\" alt=\""._('second ten of hearts')."\" src=\"pics/button/second-ten-of-hearts.png\"/>\n"; break;
200       }
201     switch($RULES['schweinchen'])
202       {
203       case 'none':
204         echo "  <img class=\"rulesicon\" alt=\""._('no schweinchen')."\" ".
205           "src=\"pics/button/no-schweinchen.png\"/>\n"; break;
206       case 'both':
207         echo "  <img class=\"rulesicon\" alt=\""._('two schweinchen')."\" ".
208           "src=\"pics/button/two-schweinchen.png\"/>\n"; break;
209       case 'second':
210         echo "  <img class=\"rulesicon\" alt=\"".('second schweinchen')."\" ".
211           "src=\"pics/button/second-schweinchen.png\"/>\n"; break;
212       case 'secondaftercall':
213         echo "  <img class=\"rulesicon\" alt=\""._('second schweinchen after call')."\" ".
214           "src=\"pics/button/second-schweinchen-after-call.png\"/>\n"; break;
215       }
216     switch($RULES['call'])
217       {
218       case '1st-own-card':
219         echo "  <img class=\"rulesicon\" alt=\""._('1st-own-card')."\" src=\"pics/button/1st-own-card.png\"/>\n"; break;
220       case '5th-card':
221         echo "  <img class=\"rulesicon\" alt=\""._('5th-card')."\" src=\"pics/button/5th-card.png\"/>\n"; break;
222       case '9-cards':
223         echo "  <img class=\"rulesicon\" alt=\""._('9-cards')."\" src=\"pics/button/9-cards.png\"/>\n"; break;
224       }
225     echo "  <div>\n";
226     echo '       '._('10ofhearts').":  {$RULES['dullen']}      <br />\n";
227     echo '       '._('schweinchen').": {$RULES['schweinchen']} <br />\n";
228     echo '       '._('call').":        {$RULES['call']}        <br />\n";
229     echo '       '._('lowtrump').":    {$RULES['lowtrump']}    <br />\n";
230     echo "  </div>\n  </div>\n";
231
232     /* show score */
233
234     echo "  <div class=\"sessionscore\">";
235
236     $score   = generate_score_table($session);
237
238     /* get the last entry to show on the main page */
239     $tmpscore= $score;
240     $finalscore = array_pop($tmpscore);
241     $finalscore = $finalscore['players'];
242
243     if($finalscore)
244       {
245         echo _('Score').": \n";
246         foreach($finalscore as $user=>$value)
247           {
248             $name = DB_get_name('userid',$user);
249             echo " ".substr($name,0,2).": $value ";
250           }
251       }
252     else
253       {
254         /* first game, no score yet */
255         echo "&nbsp;";
256       }
257
258     /* output all games for the score table */
259     echo format_score_table_html($score,$myid);
260     echo "  </div>\n";
261
262     /* figure out which game in a session we are in and link to the
263      * previous and next game if possible
264      */
265     $hashes = DB_get_hashes_by_session($session,$myid);
266     $next     = NULL;
267     $i = 1;
268     foreach($hashes as $hash)
269       {
270         if($hash == $me)
271           $j=$i;
272         $i++;
273         $lasthash=$hash;
274       }
275     $i--;
276
277     if($j>1)
278       $previous = $hashes[$j-2];
279     else
280       $previous = NULL;
281     if($j<$i)
282       $next = $hashes[$j];
283     else
284       $next = NULL;
285
286     if(isset($_SESSION['id']) && $_SESSION['id']==$myid)
287       {
288         if($previous)
289           echo "<a href=\"{$INDEX}?action=game&amp;me=$previous\">"._('previous game')."</a>&nbsp;&nbsp;&nbsp; \n";
290         echo "This is game number $j of <a href=\"{$INDEX}?action=game&amp;me=$lasthash\">$i</a> in session $session.\n";
291         if($next)
292           echo "&nbsp;&nbsp;&nbsp;<a href=\"{$INDEX}?action=game&amp;me=$next\">"._('next game')."</a> \n";
293       }
294     else
295       echo "This is game number $j of $i in session $session.";
296     echo "\n</div>\n";
297   }
298
299 /* display the table and the names */
300 display_table();
301
302 /* mystatus gets the player through the different stages of a game.
303  * start:    does the player want to play?
304  * init:     check for sickness
305  * check:    check for return values from init
306  * poverty:  handle poverty, wait here until all player have reached this state
307  *           display sickness and move on to game
308  * play:     game in progress
309  * gameover: are we revisiting a game
310  */
311
312 /* the user has done something, update the timestamp. Use $myid in
313  * active games and check for session-id in old games (myid might be wrong in that case)
314  */
315 if($mystatus!='gameover')
316   DB_update_user_timestamp($myid);
317  else
318    if(isset($_SESSION['id']))
319      DB_update_user_timestamp($_SESSION['id']);
320
321 switch($mystatus)
322   {
323   case 'start':
324     /* don't ask if user has autosetup set to yest */
325     $skip = 0;
326     if($PREF['autosetup']=='yes') $skip = 1;
327
328     if( !myisset('in') && !$skip)
329       {
330         /* asks the player, if he wants to join the game */
331         output_check_want_to_play($me);
332         echo '<div class="mycards"></div>';
333         break;
334       }
335     else
336       {
337         /* check the result, if player wants to join, got next stage, else cancel game */
338         if(!$skip && $_REQUEST['in'] == 'no' )
339           {
340             /* cancel the game */
341             $message = "Hello, \n\n".
342               "the game has been canceled due to the request of one of the players.\n\n";
343
344             $userids = DB_get_all_userid_by_gameid($gameid);
345             foreach($userids as $user)
346               {
347                 $subject = 'Game '.DB_format_gameid($gameid).' canceled';
348                 mymail($user,$subject,$message);
349               }
350
351             /* update game status */
352             cancel_game('noplay',$gameid);
353             break;
354           }
355         else
356           {
357             /* user wants to join the game */
358
359             /* move on to the next stage,
360              * no break statement to immediately go to the next stage
361              */
362
363             DB_set_hand_status_by_hash($me,'init');
364
365             /* check if everyone has reached this stage, send out email */
366             $userids = DB_get_all_userid_by_gameid($gameid);
367             $ok = 1;
368             foreach($userids as $user)
369               {
370                 $userstat = DB_get_hand_status_by_userid_and_gameid($user,$gameid);
371                 if($userstat!='init')
372                   {
373                     /* whos turn is it? */
374                     DB_set_player_by_gameid($gameid,$user);
375                     $ok = 0;
376                     break;
377                   }
378               };
379             if($ok)
380               {
381                 /* all done, send out email unless this player is the startplayer */
382                 $startplayer = DB_get_startplayer_by_gameid($gameid);
383                 if($mypos == $startplayer)
384                   {
385                     /* do nothing, go to next stage */
386                   }
387                 else
388                   {
389                     /* email startplayer */
390                     /*
391                      $hash        = DB_get_hash_from_game_and_pos($gameid,$startplayer);
392                      $who         = DB_get_userid('hash',$hash);
393                      DB_set_player_by_gameid($gameid,$who);
394
395                      $message = "It's your turn now in game ".DB_format_gameid($gameid).".\n".
396                      "Use this link to go the game: ".$HOST.$INDEX."?action=game&me=".$hash."\n\n" ;
397                      mymail($who,"Ready, set, go... (game ".DB_format_gameid($gameid).") ",$message);
398                     */
399                   }
400               }
401           }
402       }
403   case 'init':
404     /* here we ask the player if he is sick */
405     $mycards = DB_get_hand($me);
406     $mycards = mysort($mycards,$gametype);
407
408     if(!myisset('solo','wedding','poverty','nines','lowtrump') )
409       {
410         /* output sickness of other playes, in case the already selected and are sitting in front of the current player */
411         echo "\n<ul class=\"tricks\">\n";
412         echo "  <li class=\"nohighlight\"> Game ".DB_format_gameid($gameid).": </li>\n";
413         echo "  <li onclick=\"hl('0');\" class=\"current\"><a href=\"#\">Pre</a>\n".
414           "    <div class=\"trick\" id=\"trick0\">\n";
415
416         for($pos=1;$pos<5;$pos++)
417           {
418             $usersick   = DB_get_sickness_by_pos_and_gameid($pos,$gameid);
419             $userid     = DB_get_userid('gameid-position',$gameid,$pos);
420             $userstatus = DB_get_hand_status_by_userid_and_gameid($userid,$gameid);
421
422             if($userstatus=='start' || $userstatus=='init')
423               echo " <div class=\"vorbehalt".($pos-1)."\"> still needs <br/ > to decide </div>\n"; /* show this to everyone */
424             else
425               if($usersick!=NULL && $pos<=$mypos ) /* only show this for people sitting before the player */
426                 echo " <div class=\"vorbehalt".($pos-1)."\"> sick </div>\n";
427               else if($usersick==NULL && $pos<=$mypos)
428                 echo " <div class=\"vorbehalt".($pos-1)."\"> healthy </div>\n";
429           }
430         echo "    </div>\n  </li>\n</ul>\n";  /* end div trick, end li trick , end tricks*/
431         /* end displaying sickness */
432
433         output_check_for_sickness($me,$mycards);
434
435         echo '<div class="mycards">'._('Your cards are').": <br />\n";
436         foreach($mycards as $card)
437           display_card($card,$PREF['cardset']);
438         echo "</div>\n";
439
440         break;
441       }
442     else
443       {
444         /* check if someone selected more than one sickness */
445         $Nsickness = 0;
446         if($_REQUEST['solo']!='No')       $Nsickness++;
447         if($_REQUEST['wedding']  == 'yes') $Nsickness++;
448         if($_REQUEST['poverty']  == 'yes') $Nsickness++;
449         if($_REQUEST['nines']    == 'yes') $Nsickness++;
450         if($_REQUEST['lowtrump'] == 'yes') $Nsickness++;
451
452         if($Nsickness>1)
453           {
454             echo "<p class=\"message\"> You selected more than one sickness, please go back ".
455               "and answer the <a href=\"$INDEX?action=game&amp;me=$me&amp;in=yes\">question</a> again.</p>";
456
457             echo '<div class="mycards">'._('Your cards are').": <br />\n";
458             foreach($mycards as $card)
459               display_card($card,$PREF['cardset']);
460             echo "</div>\n";
461
462             break;
463           }
464         else
465           {
466             /* everything is ok, save what user said and proceed */
467             echo "<p class=\"message\">Processing what you selected in the last step...";
468
469             /* check if this sickness needs to be handled first */
470             $gametype    = DB_get_gametype_by_gameid($gameid);
471             $startplayer = DB_get_startplayer_by_gameid($gameid); /* need this to check which solo goes first */
472
473             if( $_REQUEST['solo']!='No' )
474               {
475                 /* user wants to play a solo */
476
477                 /* store the info in the user's hand info */
478                 DB_set_solo_by_hash($me,$_REQUEST['solo']);
479                 DB_set_sickness_by_hash($me,'solo');
480
481                 echo "<br />Seems like you want to play a {$_REQUEST['solo']} solo. Got it.<br />\n";
482
483                 if($gametype == 'solo' && $startplayer<$mypos)
484                   {}/* do nothing, since someone else already is playing solo */
485                 else
486                   {
487                     /* this solo comes first
488                      * store info in game table
489                      */
490                     DB_set_gametype_by_gameid($gameid,'solo');
491                     DB_set_startplayer_by_gameid($gameid,$mypos);
492                     DB_set_solo_by_gameid($gameid,$_REQUEST['solo']);
493                   };
494               }
495             else if($_REQUEST['wedding'] == 'yes')
496               {
497                 /* silent solo is set further down */
498                 echo _("Ok, you don't want to play a silent solo...wedding was chosen.")."<br />\n";
499                 DB_set_sickness_by_hash($me,'wedding');
500               }
501             else if($_REQUEST['poverty'] == 'yes')
502               {
503                 echo _("Don't think you can win with just a few trump...? Ok, poverty chosen.")." <br />\n";
504                 DB_set_sickness_by_hash($me,'poverty');
505               }
506             else if($_REQUEST['nines'] == 'yes')
507               {
508                 echo _("What? You just don't want to play a game because you have a few nines? Well, if no one".
509                        " is playing solo, this game will be canceled.")."<br />\n";
510                 DB_set_sickness_by_hash($me,'nines');
511               }
512             else if($_REQUEST['lowtrump'] == 'yes')
513               {
514                 if($RULES['lowtrump']=='cancel')
515                   echo _("What? You just don't want to play a game because you have low trump? Well, if no one".
516                          " is playing solo, this game will be canceled.")."<br />\n";
517                 else
518                   echo _("Don't think you can win with low trumps...? Ok, poverty chosen.")." <br />.<br />\n";
519
520                 DB_set_sickness_by_hash($me,'lowtrump');
521               }
522
523             echo "</p>\n";
524
525             /* move on to the next stage*/
526             DB_set_hand_status_by_hash($me,'check');
527             $mystatus='check';
528           };
529       };
530
531   case 'check':
532     /* here we check what all players said and figure out what game we are playing
533      * this can therefore only be handled once all players finished the last stage
534      */
535
536     $mycards = DB_get_hand($me);
537     $mycards = mysort($mycards,$gametype);
538
539     /* output sickness of other playes, in case they already selected and are sitting in front of the current player */
540     echo "\n<ul class=\"tricks\">\n";
541     echo "  <li class=\"nohighlight\"> Game ".DB_format_gameid($gameid).": </li>\n";
542     echo "  <li onclick=\"hl('0');\" class=\"current\"><a href=\"#\">Pre</a>\n".
543       "    <div class=\"trick\" id=\"trick0\">\n";
544
545     for($pos=1;$pos<5;$pos++)
546       {
547         $usersick   = DB_get_sickness_by_pos_and_gameid($pos,$gameid);
548         $userid     = DB_get_userid('gameid-position',$gameid,$pos);
549         $userstatus = DB_get_hand_status_by_userid_and_gameid($userid,$gameid);
550
551         if($userstatus=='start' || $userstatus=='init')
552           echo " <div class=\"vorbehalt".($pos-1)."\"> still needs <br />to decide </div>\n"; /* show this to everyone */
553         else
554           if($usersick!=NULL) /* in the init-phase we only showed players with $pos<$mypos, now we can show all */
555             echo " <div class=\"vorbehalt".($pos-1)."\"> sick </div>\n";
556           else
557             echo " <div class=\"vorbehalt".($pos-1)."\"> healthy </div>\n";
558       }
559     echo "    </div>\n  </li>\n</ul>\n";  /* end div trick, end li trick , end tricks*/
560     /* end displaying sickness */
561
562     echo "<div class=\"message\">\n";
563     echo '<p> '._('Checking if someone else selected solo, nines, wedding or poverty.').'</p>';
564
565     /* check if everyone has reached this stage */
566     $userids = DB_get_all_userid_by_gameid($gameid);
567     $ok = 1;
568     foreach($userids as $user)
569       {
570         $userstat = DB_get_hand_status_by_userid_and_gameid($user,$gameid);
571         if($userstat!='check')
572           {
573             $ok = 0;
574             DB_set_player_by_gameid($gameid,$user);
575             break;
576           }
577       };
578
579     if(!$ok)
580       {
581         echo '<p>'._('This step can only be handled after everyone finished the last step. '.
582           'Seems like this is not the case, so you need to wait a bit... '.
583           'you will get an email once that is the case, please use the link in '.
584           'that email to continue the game.').'</p></div>';
585
586         /* display cards, if player was just at the init-phase he will still see the cards from there
587          * we can put this one here, since the last player to finish the init state won't get here and
588          * will still see his card anyway from the init-phase
589          */
590         if($mystatus=='check')
591           {
592             /* show cards */
593             echo '<div class="mycards">'._('Your cards are').": <br />\n";
594             foreach($mycards as $card)
595               display_card($card,$PREF['cardset']);
596             echo "</div>\n";
597           }
598         break;
599       }
600     else
601       {
602         /* Ok, everyone finished the init-phase, time to figure out what game we
603          * are playing, in case there are any solos this already
604          * will have the correct information in it */
605
606         echo '<p>'._('Ok, everyone is done... figuring out what kind of game we are playing.').'</p>';
607
608         $gametype    = DB_get_gametype_by_gameid($gameid);
609         $startplayer = DB_get_startplayer_by_gameid($gameid);
610
611         /* check for sickness */
612         $cancel  = 0;
613         $poverty = 0;
614         $wedding = 0;
615         $solo    = 0;
616         foreach($userids as $user)
617           {
618             $name     = DB_get_name('userid',$user);
619             $usersick = DB_get_sickness_by_userid_and_gameid($user,$gameid);
620             if($usersick == 'nines' || ($RULES['lowtrump']=='cancel' && $usersick=='lowtrump') )
621               {
622                 $cancel     = $user;
623                 $cancelsick = $usersick;
624                 break; /* no need to check for other poverties, since only solo can win and that is already set */
625               }
626             else if($usersick == 'poverty' || ($RULES['lowtrump']=='poverty' && $usersick=='lowtrump'))
627               $poverty++;
628             else if($usersick == 'wedding')
629               $wedding=$user;
630             else if($usersick == 'solo')
631               $solo++;
632           }
633
634         /* now check which sickness comes first and set the gametype to it */
635         if($gametype == 'solo')
636           {
637             /* do nothing */
638           }
639         else if($cancel)
640           {
641             /* cancel game */
642             if($cancelsick == 'nines')
643               {
644                 $message = "The game has been canceled because ".DB_get_name('userid',$cancel).
645                   " has five or more nines and nobody is playing solo.\n\n".
646                   "To redeal either start a new game or, in case the game was part of a tournament,\n".
647                   "go to the last game and use the link at the bottom of the page to redeal.\n\n";
648
649                 /* update game status */
650                 cancel_game('nines',$gameid);
651
652                 echo "<p>The game has been canceled because ".DB_get_name('userid',$cancel).
653                   " has five or more nines and nobody is playing solo.</p>\n";
654               }
655             else if ($cancelsick == 'lowtrump')
656               {
657                 $message = "The game has been canceled because ".DB_get_name('userid',$cancel).
658                   " has low trump and nobody is playing solo.\n\n".
659                   "To redeal either start a new game or, in case the game was part of a tournament,\n".
660                   "go to the last game and use the link at the bottom of the page to redeal.\n\n";
661
662                 /* update game status */
663                 cancel_game('lowtrump',$gameid);
664
665                 echo "<p>The game has been canceled because ".DB_get_name('userid',$cancel).
666                   " has low trump and nobody is playing solo.</p>\n";
667               };
668
669             $userids = DB_get_all_userid_by_gameid($gameid);
670             foreach($userids as $user)
671               {
672                 $subject = 'Game '.DB_format_gameid($gameid).' canceled';
673                 mymail($user,$subject,$message);
674               }
675
676             echo "</div>\n"; /* end div message */
677             break;
678           }
679         else if($poverty==1) /* one person has poverty */
680           {
681             DB_set_gametype_by_gameid($gameid,'poverty');
682             $gametype = 'poverty';
683             $who      = DB_get_sickness_by_gameid($gameid);
684             if(!$who)
685               {
686                 $firstsick = DB_get_sickness_by_pos_and_gameid(1,$gameid);
687                 if($firstsick == 'poverty' || ($RULES['lowtrump']=='poverty' && $firstsick=='lowtrump'))
688                   DB_set_sickness_by_gameid($gameid,2); /* who needs to be asked first */
689                 else
690                   DB_set_sickness_by_gameid($gameid,1); /* who needs to be asked first */
691               }
692           }
693         else if($poverty==2) /* two people have poverty */
694           {
695             DB_set_gametype_by_gameid($gameid,'dpoverty');
696             $gametype = 'dpoverty';
697             $who      = DB_get_sickness_by_gameid($gameid);
698             if(!$who)
699               {
700                 $firstsick = DB_get_sickness_by_pos_and_gameid(1,$gameid);
701                 if($firstsick == 'poverty' || ($RULES['lowtrump']=='poverty' && $firstsick=='lowtrump'))
702                   {
703                     $secondsick = DB_get_sickness_by_pos_and_gameid(1,$gameid);
704                     if($secondsick == 'poverty'  || ($RULES['lowtrump']=='poverty' && $secondsick=='lowtrump'))
705                       DB_set_sickness_by_gameid($gameid,30); /* who needs to be asked first */
706                     else
707                       DB_set_sickness_by_gameid($gameid,20); /* who needs to be asked first */
708                   }
709                 else
710                   DB_set_sickness_by_gameid($gameid,10); /* who needs to be asked first */
711               }
712           }
713         else if($wedding> 0)
714           {
715             DB_set_gametype_by_gameid($gameid,'wedding');
716             DB_set_sickness_by_gameid($gameid,'-1'); /* wedding not resolved yet */
717             $gametype = 'wedding';
718           };
719         /* now the gametype is set correctly in the database */
720         echo '<p>'._('Got it').' :)</p>';
721
722         /* loop over all players, set re/contra if possible and start the game if possible */
723         $userids = DB_get_all_userid_by_gameid($gameid);
724         foreach($userids as $userid)
725           {
726             $userhash = DB_get_hash_from_gameid_and_userid($gameid,$userid);
727
728             switch($gametype)
729               {
730               case 'solo':
731                 /* are we the solo player? set us to re, else set us to contra */
732                 $pos = DB_get_pos_by_hash($userhash);
733                 if($pos == $startplayer)
734                   DB_set_party_by_hash($userhash,'re');
735                 else
736                   DB_set_party_by_hash($userhash,'contra');
737                 DB_set_hand_status_by_hash($userhash,'play');
738                 break;
739
740               case 'wedding':
741                 /* set person with the wedding to re, do the rest during the game */
742                 $usersick = DB_get_sickness_by_userid_and_gameid($userid,$gameid);
743                 if($usersick == 'wedding')
744                   DB_set_party_by_hash($userhash,'re');
745                 else
746                   DB_set_party_by_hash($userhash,'contra');
747
748                 DB_set_hand_status_by_hash($userhash,'play');
749                 break;
750
751               case 'normal':
752                 $hand = DB_get_all_hand($userhash);
753
754                 if(in_array('3',$hand)||in_array('4',$hand))
755                   DB_set_party_by_hash($userhash,'re');
756                 else
757                   DB_set_party_by_hash($userhash,'contra');
758                 DB_set_hand_status_by_hash($userhash,'play');
759                 break;
760               case 'poverty':
761               case 'dpoverty':
762                 /* set person with poverty to play status */
763                 $usersick = DB_get_sickness_by_userid_and_gameid($userid,$gameid);
764                 if($usersick == 'poverty'  || ($RULES['lowtrump']=='poverty' && $usersick=='lowtrump'))
765                   DB_set_hand_status_by_hash($userhash,'play');
766
767                 /* set status of first player to be asked to poverty */
768                 $who = DB_get_sickness_by_gameid($gameid);
769                 if($who > 6) $who= $who/10; /* in case we have dpoverty */
770                 $whoid = DB_get_userid('gameid-position',$gameid,$who);
771                 if($whoid==$userid)
772                   DB_set_hand_status_by_hash($userhash,'poverty');
773               }
774           }
775         /* check for silent solo, set game type to solo in this case */
776         $gametype = DB_get_gametype_by_gameid($gameid);
777         $userids  = DB_get_all_userid_by_gameid($gameid);
778         foreach($userids as $userid)
779           {
780             $userhash = DB_get_hash_from_gameid_and_userid($gameid,$userid);
781
782             if($gametype=='normal')
783               {
784                 $userhand = DB_get_all_hand($userhash);
785                 if(check_wedding($userhand))
786                   {
787                     /* normal game type and player has both queens -> silent solo */
788                     /* keep startplayer, just set gametype to silent solo */
789                     DB_set_gametype_by_gameid($gameid,'solo');
790                     DB_set_solo_by_gameid($gameid,'silent');
791                   }
792               }
793           }
794
795         /* send out email to first player or poverty person*/
796         if($gametype!='poverty' && $gametype!='dpoverty')
797           {
798             $startplayer = DB_get_startplayer_by_gameid($gameid);
799             $hash        = DB_get_hash_from_game_and_pos($gameid,$startplayer);
800             $who         = DB_get_userid('hash',$hash);
801             DB_set_player_by_gameid($gameid,$who);
802
803             if($hash!=$me)
804               {
805                 if(DB_get_email_pref_by_hash($hash)!='emailaddict')
806                   {
807                     /* email startplayer */
808                     $message = "It's your turn now in game ".DB_format_gameid($gameid).".\n".
809                       "Use this link to play a card: ".$HOST.$INDEX."?action=game&me=".$hash."\n\n" ;
810                     $subject = 'Ready, set, go... (game '.DB_format_gameid($gameid).')';
811                     mymail($who,$subject,$message);
812                   }
813               }
814             else
815               echo "Please, <a href=\"$INDEX?action=game&amp;me=$me\">start</a> the game.<br />\n";
816           }
817         else
818           {
819             /* set status of first player to be asked to poverty */
820             $who   = DB_get_sickness_by_gameid($gameid);
821             if($who > 6) $who= $who/10; /* in case we have dpoverty */
822
823             $whoid = DB_get_userid('gameid-position',$gameid,$who);
824             if($whoid==$myid)
825               echo "Please, <a href=\"$INDEX?action=game&amp;me=$me\">start</a> the game.<br /\n";
826             else
827               {
828                 $whohash = DB_get_hash_from_game_and_pos($gameid,$who);
829                 DB_set_player_by_gameid($gameid,$whoid);
830
831                 if(DB_get_email_pref_by_hash($hash)!='emailaddict')
832                   {
833                     /* email player for poverty */
834                     $message = "Poverty: It's your turn now in game ".DB_format_gameid($gameid).".\n".
835                       "Use this link to play a card: ".$HOST.$INDEX."?action=game&me=".$whohash."\n\n" ;
836                     $subject = 'Poverty (game '.DB_format_gameid($gameid).') ';
837                     mymail($whoid,$subject,$message);
838                   }
839               }
840           }
841         echo "</div>\n";
842         /* show cards */
843         echo '<div class="mycards">'._('Your cards are').": <br />\n";
844         foreach($mycards as $card)
845           display_card($card,$PREF['cardset']);
846         echo "</div>\n";
847
848         break;
849       }
850
851   case 'poverty':
852     /* user only gets here in a poverty game, several things have to be handled here:
853      * A) ask, if user wants to take trump
854      *      yes-> take trump,
855      *            poverty: set re/contra
856      *            dpoverty: first time: set re, send email to second player
857      *                      second time: set contra
858      *            poverty: set status of other players to 'play'
859      *            set status to play in case 0 trump
860      *      no -> set status to play,
861      *            ask next player or cancle the game if no more players
862      * B) user took trump and has too many cards (e.g. count(cards)>12 and re/contra set)
863      *         ask to give cards back, set status to play, once player has 12 cards
864      *
865      * it is easier to check B) first
866      */
867
868     set_gametype($gametype); /* this sets the $CARDS variable */
869     $myparty = DB_get_party_by_hash($me);
870
871     /* the following is part B) of whats needs to be done)
872     /*    check if user wants to give cards back */
873     if(myisset('exchange'))
874       {
875         $exchange    = $_REQUEST['exchange'];
876         $partnerhash = DB_get_partner_hash_by_hash($me);
877         $partnerid   = DB_get_userid('hash',$partnerhash);
878         $partnerhand = DB_get_handid('gameid-userid',$gameid,$partnerid);
879
880         /* if exchange is set to a value>0, exchange that card back to the partner */
881         if($exchange >0)
882           {
883             $result = DB_query("UPDATE Hand_Card SET hand_id='$partnerhand'".
884                                " WHERE hand_id='$myhand' AND card_id=".DB_quote_smart($exchange));
885             DB_add_exchanged_card(DB_quote_smart($exchange),$myhand,$partnerhand);
886           };
887       }
888
889     /* update hand */
890     $mycards = DB_get_hand($me);
891     $mycards = mysort($mycards,$gametype);
892
893     /* output pre-game trick in case user reloads,
894      * only needs to be done when a team has been formed */
895     if($myparty=='re' || $myparty=='contra')
896       {
897         echo "\n<ul class=\"tricks\">\n";
898         echo "  <li class=\"nohighlight\"> Game ".DB_format_gameid($gameid).": </li>\n";
899
900         $mygametype =  DB_get_gametype_by_gameid($gameid);
901
902         echo "  <li onclick=\"hl('0');\" class=\"current\"><a href=\"#\">Pre</a>\n".
903           "    <div class=\"trick\" id=\"trick0\">\n";
904
905         /* get information so show the cards that have been handed over in a poverty game */
906         output_exchanged_cards();
907
908         echo "    </div>\n  </li>\n</ul>\n\n";  /* end div trick, end li trick , end ul tricks */
909       }
910     /* end output pre-game trick */
911
912     /* check if user need to give more cards back */
913     if( ($myparty=='re' || $myparty=='contra') && count($mycards)>12)
914       {
915         echo '<div class="poverty"> '._('You need to get rid of a few cards')."</div>\n";
916
917         $type='exchange';
918         echo '<div class="mycards">'._('Your cards are').": <br />\n";
919         foreach($mycards as $card)
920           display_link_card($card,$PREF['cardset'],$type);
921         echo "  <input type=\"submit\" class=\"submitbutton\" value=\"select card to give back\" />\n";
922         echo "</div>\n";
923       }
924     else if( ($myparty=='re' || $myparty=='contra') && count($mycards)==12)
925       {
926         /* user is done, ready to play */
927         DB_set_hand_status_by_hash($me,'play');
928
929         /* email start player */
930         $startplayer = DB_get_startplayer_by_gameid($gameid);
931         $hash        = DB_get_hash_from_game_and_pos($gameid,$startplayer);
932         $who         = DB_get_userid('hash',$hash);
933         DB_set_player_by_gameid($gameid,$who);
934
935         if($hash!=$me)
936           {
937             if(DB_get_email_pref_by_hash($hash)!='emailaddict')
938               {
939                 /* email startplayer */
940                 $message = "It's your turn now in game ".DB_format_gameid($gameid).".\n".
941                   "Use this link to play a card: ".$HOST.$INDEX."?action=game&me=".$hash."\n\n" ;
942                 $subject = 'Ready, set, go... (game '.DB_format_gameid($gameid).') ';
943                 mymail($who,$subject,$message);
944               }
945           }
946         else
947           echo "<div class=\"message\">Please, <a href=\"$INDEX?action=game&amp;me=$me\">start</a> the game.</div>\n";
948       }
949
950     /* the following is part A) of what needs to be done */
951     if(!myisset('trump'))
952       {
953         if(!$myparty)
954           {
955             echo "<div class=\"poverty\">\n";
956             $userids = DB_get_all_userid_by_gameid($gameid);
957             foreach($userids as $user)
958               {
959                 $name      = DB_get_name('userid',$user);
960                 $usersick  = DB_get_sickness_by_userid_and_gameid($user,$gameid);
961                 $userhash  = DB_get_hash_from_gameid_and_userid($gameid,$user);
962                 $userparty = DB_get_party_by_hash($userhash);
963
964                 if(($usersick=='poverty'|| ($RULES['lowtrump']=='poverty' && $usersick=='lowtrump')) && !$userparty)
965                   {
966                     $hash    = DB_get_hash_from_gameid_and_userid($gameid,$user);
967                     $cards   = DB_get_hand($hash);
968                     /* count trump */
969                     $nrtrump = 0;
970                     foreach($cards as $card)
971                       if($card<27) $nrtrump++;
972                     $low='';
973                     if($usersick=='lowtrump')
974                       $low='low';
975                     echo "Player $name has $nrtrump $low trump. Do you want to take them?".
976                       "<a href=\"index.php?action=game&amp;me=$me&amp;trump=$user\">Yes</a> <br />\n";
977                   }
978               }
979             echo "<a href=\"index.php?action=game&amp;me=$me&amp;trump=no\">No way</a> <br />\n";
980             echo "</div><div>\n";
981
982             echo '<div class="mycards">'._('Your cards are').": <br />\n";
983             foreach($mycards as $card)
984               display_card($card,$PREF['cardset']);
985             echo "</div></div>\n";
986           }
987         break;
988       }
989     else
990       {
991         $trump = $_REQUEST['trump'];
992
993         if($trump=='no')
994           {
995             /* user doesn't want to take trump */
996             DB_set_hand_status_by_hash($me,'play');
997
998             /* set next player who needs to be asked and email him*/
999             $firstsick  = (string) DB_get_sickness_by_pos_and_gameid($mypos+1,$gameid);
1000             $secondsick = (string) DB_get_sickness_by_pos_and_gameid($mypos+2,$gameid);
1001
1002             /* don't ask people who have poverty */
1003             $next=1;
1004             if($firstsick=='poverty' || ($RULES['lowtrump']=='poverty' && $firstsick=='lowtrump'))
1005               {
1006                 if($secondsick=='poverty'|| ($RULES['lowtrump']=='poverty' && $secondsick=='lowtrump'))
1007                   $next=3;
1008                 else
1009                   $next=2;
1010               }
1011             if($gametype=='dpoverty')
1012               {
1013                 $next=999; /* need to cancel for sure, since both would need to take the trump */
1014               }
1015
1016             /* no more people to ask, need to cancel the game */
1017             if($mypos+$next>4)
1018               {
1019                 $message = "Hello, \n\n".
1020                   "Game ".DB_format_gameid($gameid)." has been canceled since nobody wanted to take the trump.\n\n";
1021
1022                 $userids = DB_get_all_userid_by_gameid($gameid);
1023                 foreach($userids as $user)
1024                   {
1025                     $subject = 'Game '.DB_format_gameid($gameid).' canceled (poverty not resolved)';
1026                     mymail($user,$subject,$message);
1027                   }
1028
1029                 /* update game status */
1030                 cancel_game('trump',$gameid);
1031
1032                 echo "<p class=\"message\";>Game ".DB_format_gameid($gameid)." has been canceled.<br /><br /></p>";
1033                 break;
1034               }
1035             else
1036               {
1037                 /* email next player, set his status to poverty */
1038                 $userhash = DB_get_hash_from_game_and_pos($gameid,$mypos+$next);
1039                 $userid   = DB_get_userid('hash',$userhash);
1040
1041                 DB_set_player_by_gameid($gameid,$userid);
1042                 DB_set_hand_status_by_hash($userhash,'poverty');
1043
1044                 $message = "Someone has poverty, it's your turn to decide, if you want to take the trump. Please visit:".
1045                   " ".$HOST.$INDEX."?action=game&me=".$userhash."\n\n" ;
1046                 $subject = 'Poverty (game '.DB_format_gameid($gameid).')';
1047                 mymail($userid,$subject,$message);
1048               }
1049           }
1050         else
1051           {
1052             /* player wants to take trump, change cards */
1053
1054             /* user wants to take trump */
1055             $trump = $_REQUEST['trump'];
1056             $userhand = DB_get_handid('gameid-userid',$gameid,$trump);
1057             $userhash = DB_get_hash_from_gameid_and_userid($gameid,$trump);
1058
1059             /* remember which cards were handed over*/
1060             $partnerhand = DB_get_all_hand($userhash);
1061             foreach ($partnerhand as $card)
1062               if($card<27)
1063                 DB_add_exchanged_card($card,$userhand,$myhand);
1064
1065             /* copy trump from player A to B */
1066             $result = DB_query("UPDATE Hand_Card SET hand_id='$myhand' WHERE hand_id='$userhand' AND card_id<'27'" );
1067
1068             /* reload cards */
1069             $mycards = DB_get_hand($me);
1070
1071             /* set re/contra */
1072             if($gametype=='poverty')
1073               {
1074                 $userids = DB_get_all_userid_by_gameid($gameid);
1075                 foreach($userids as $user)
1076                   {
1077                     $hash = DB_get_hash_from_gameid_and_userid($gameid,$user);
1078                     if($hash==$userhash||$hash==$me)
1079                       {
1080                         DB_set_party_by_hash($hash,'re');
1081                       }
1082                     else
1083                       {
1084                         DB_set_party_by_hash($hash,'contra');
1085                         DB_set_hand_status_by_hash($hash,'play'); /* the contra party is ready to play */
1086                       }
1087                   }
1088                 /* check if we are done (in case of no trump handed over), if so, go to 'play' phase right away*/
1089                 if(count($mycards)==12)
1090                   {
1091                     DB_set_hand_status_by_hash($me,'play');
1092                   }
1093               }
1094             else /*dpoverty*/
1095               {
1096                 /* has the re party already been set?*/
1097                 $re_set=0;
1098                 $userids = DB_get_all_userid_by_gameid($gameid);
1099                 foreach($userids as $user)
1100                   {
1101                     $hash = DB_get_hash_from_gameid_and_userid($gameid,$user);
1102                     $party = DB_get_party_by_hash($hash);
1103                     if($party=='re')
1104                       $re_set=1;
1105                   }
1106                 if($re_set)
1107                   {
1108                     DB_set_party_by_hash($me,'contra');
1109                     DB_set_party_by_hash($userhash,'contra');
1110                   }
1111                 else
1112                   {
1113                     DB_set_party_by_hash($me,'re');
1114                     DB_set_party_by_hash($userhash,'re');
1115
1116                     /* send out email to second non-poverty player */
1117                     $firstsick  = (string) DB_get_sickness_by_pos_and_gameid($mypos+1,$gameid);
1118                     $secondsick = (string) DB_get_sickness_by_pos_and_gameid($mypos+2,$gameid);
1119
1120                     $next=1;
1121                     if($firstsick=='poverty'|| ($RULES['lowtrump']=='poverty' && $firstsick=='lowtrump'))
1122                       if($secondsick=='poverty'|| ($RULES['lowtrump']=='poverty' && $secondsick=='lowtrump'))
1123                         $next=3;
1124                       else
1125                         $next=2;
1126
1127                     if($mypos+$next>4)
1128                       echo "<div class=\"message\">Error in poverty, please contact the Admin</div>\n";
1129
1130                     $userhash = DB_get_hash_from_game_and_pos($gameid,$mypos+$next);
1131                     $userid   = DB_get_userid('hash',$userhash);
1132
1133                     DB_set_player_by_gameid($gameid,$userid);
1134                     DB_set_hand_status_by_hash($userhash,'poverty');
1135
1136                     $message = "Two people have poverty, it's your turn to decide, if you want to take the trump. Please visit:".
1137                       " ".$HOST.$INDEX."?action=game&me=".$userhash."\n\n" ;
1138                     $subject = 'Double poverty (game '.DB_format_gameid($gameid).')';
1139                     mymail($userid,$subject,$message);
1140                   }
1141               }
1142             echo "<div class=\"message\">Please, <a href=\"$INDEX?action=game&amp;me=$me\">continue</a> here.</div>\n";
1143           }
1144       }
1145     echo "</div>\n";
1146     break;
1147
1148   case 'play':
1149   case 'gameover':
1150     /* both entries here,  so that the tricks are visible for both.
1151      * in case of 'play' there is a break later that skips the last part
1152      */
1153
1154     /* first check if the game has been canceled and display */
1155     switch($gamestatus)
1156       {
1157       case 'cancel-noplay':
1158         echo "<div class=\"message\"><p>The game has been canceled due to the request of one player.</p><p>If this was a mistake all 4 players need to send an Email to $ADMIN_NAME at $ADMIN_EMAIL requesting that the game should be restarted.</p></div>";
1159         break;
1160       case 'cancel-timedout':
1161         echo "<div class=\"message\"><p>The game has been canceled because one player wasn't responding.</p><p>If this was a mistake all 4 players need to send an Email to $ADMIN_NAME at $ADMIN_EMAIL requesting that the game should be restarted.</p></div>";
1162         break;
1163       case 'cancel-nines':
1164         echo "<div class=\"message\"><p>The game has been canceled because one player had too many nines.</p></div>";
1165         break;
1166       case 'cancel-lowtrump':
1167         echo "<div class=\"message\"><p>The game has been canceled because one player had low trump.</p></div>";
1168         break;
1169       case 'cancel-trump':
1170         echo "<div class=\"message\"><p>The game has been canceled because nobody wanted to take the trump.</p></div>";
1171         break;
1172       }
1173     /* for these two types, we shouldn't show the cards, since we might want to restart the game */
1174     if (in_array($gamestatus,array('cancel-noplay','cancel-timedout')))
1175       break;
1176
1177     /* check if all players are ready to play,
1178      * if so, send out email to the startplayer
1179      * only need to do this if the game hasn't started yet
1180      */
1181     $gamestatus = DB_get_game_status_by_gameid($gameid);
1182     if($gamestatus == 'pre')
1183       {
1184         $ok = 1;
1185         $userids = DB_get_all_userid_by_gameid($gameid);
1186         foreach($userids as $user)
1187           {
1188             $userstatus = DB_get_hand_status_by_userid_and_gameid($user,$gameid);
1189             if($userstatus !='play' && $userstatus!='gameover')
1190               {
1191                 $ok = 0;
1192                 DB_set_player_by_gameid($gameid,$user);
1193                 break;
1194               }
1195           }
1196         if($ok)
1197           {
1198             /* only set this after all poverty, etc. are handled*/
1199             DB_set_game_status_by_gameid($gameid,'play');
1200
1201             /* email startplayer */
1202             $startplayer = DB_get_startplayer_by_gameid($gameid);
1203             $hash        = DB_get_hash_from_game_and_pos($gameid,$startplayer);
1204             $who         = DB_get_userid('hash',$hash);
1205             DB_set_player_by_gameid($gameid,$who);
1206
1207             if($hash!=$me && DB_get_email_pref_by_hash($hash)!='emailaddict')
1208               {
1209                 /* email startplayer) */
1210                 $message = "It's your turn now in game ".DB_format_gameid($gameid).".\n".
1211                   "Use this link to play a card: ".$HOST.$INDEX."?action=game&me=".$hash."\n\n" ;
1212                 $subject = 'Ready, set, go... (game '.DB_format_gameid($gameid).')';
1213                 mymail($who,$subject,$message);
1214               }
1215           }
1216       }
1217     /* figure out what kind of game we are playing,
1218      * set the global variables $CARDS['trump'],$CARDS['diamonds'],$CARDS['hearts'],
1219      * $CARDS['clubs'],$CARDS['spades'],$CARDS['foxes']
1220      * accordingly
1221      */
1222
1223     $gametype = DB_get_gametype_by_gameid($gameid);
1224     $GT       = $gametype;
1225     if($gametype=='solo')
1226       {
1227         $gametype = DB_get_solo_by_gameid($gameid);
1228         if($gametype=='silent')
1229           $GT = 'normal';
1230         else
1231           $GT = $gametype.' '.$GT;
1232       }
1233     else
1234       $gametype = 'normal';
1235
1236     set_gametype($gametype); /* this sets the $CARDS variable */
1237
1238     /* get some infos about the game, need to reset this, since it might have changed */
1239     $gamestatus = DB_get_game_status_by_gameid($gameid);
1240
1241     /* has the game started? No, then just wait here...*/
1242     if($gamestatus == 'pre')
1243       {
1244         echo '<p class="message"> '._('You finished the setup, but not everyone else finished it... '.
1245           'You need to wait for the others. Just wait for an email.').' </p>';
1246
1247         $mycards = DB_get_hand($me);
1248         $mycards = mysort($mycards,$gametype);
1249
1250         echo '<div class="mycards">'._('Your cards are').": <br />\n";
1251         foreach($mycards as $card)
1252           display_card($card,$PREF['cardset']);
1253         echo "</div>\n";
1254
1255         break; /* not sure this works... the idea is that you can
1256                 * only  play a card after everyone is ready to play */
1257       }
1258
1259
1260     /* get time from the last action of the game */
1261     $r = DB_query_array("SELECT mod_date from Game WHERE id='$gameid' " );
1262     $gameend = time() - strtotime($r[0]);
1263
1264     /* handle comments in case player didn't play a card, allow comments a week after the end of the game */
1265     if( (!myisset('card') && $mystatus=='play') || ($mystatus=='gameover' && ($gameend < 60*60*24*7)) )
1266       if(myisset('comment'))
1267         {
1268           $comment = $_REQUEST['comment'];
1269           $playid = DB_get_current_playid($gameid);
1270
1271           if($comment != '')
1272             DB_insert_comment($comment,$playid,$myid);
1273         };
1274
1275     /* get everything relevant to display the tricks */
1276     $result = DB_query("SELECT Hand_Card.card_id as card,".
1277                        "       Hand.position as position,".
1278                        "       Play.sequence as sequence, ".
1279                        "       Trick.id, ".
1280                        "       GROUP_CONCAT(CONCAT('<span>',User.fullname,': ',Comment.comment,'</span>')".
1281                        "                    SEPARATOR '\n' ), ".
1282                        "       Play.create_date, ".
1283                        "       Hand.user_id ".
1284                        "FROM Trick ".
1285                        "LEFT JOIN Play ON Trick.id=Play.trick_id ".
1286                        "LEFT JOIN Hand_Card ON Play.hand_card_id=Hand_Card.id ".
1287                        "LEFT JOIN Hand ON Hand_Card.hand_id=Hand.id ".
1288                        "LEFT JOIN Comment ON Play.id=Comment.play_id ".
1289                        "LEFT JOIN User On User.id=Comment.user_id ".
1290                        "WHERE Trick.game_id='".$gameid."' ".
1291                        "GROUP BY Trick.id, sequence ".
1292                        "ORDER BY Trick.id, sequence  ASC");
1293     $trickNR   = 0;
1294     $lasttrick = DB_get_max_trickid($gameid);
1295
1296     $play = array(); /* needed to calculate winner later  */
1297     $seq  = 1;
1298     $pos  = DB_get_startplayer_by_gameid($gameid)-1;
1299     $firstcard = ''; /* first card in a trick */
1300
1301     echo "\n<ul class=\"tricks\">\n";
1302     echo '  <li class="nohighlight"> '._('Game').' '.DB_format_gameid($gameid).": </li>\n";
1303
1304     /* output vorbehalte */
1305     $mygametype = DB_get_gametype_by_gameid($gameid);
1306     $mygamesolo = DB_get_solo_by_gameid($gameid);
1307     if($mygametype != 'normal') /* only show when needed */
1308       if(!( $mygametype == 'solo' && $mygamesolo == 'silent') )
1309         {
1310           echo "  <li onclick=\"hl('0');\" class=\"current\"><a href=\"#\">Pre</a>\n".
1311             "    <div class=\"trick\" id=\"trick0\">\n";
1312
1313           /* get information so show the cards that have been handed over in a poverty game */
1314           output_exchanged_cards();
1315
1316           echo "    </div>\n  </li>\n";  /* end div trick, end li trick */
1317         }
1318
1319     /* output tricks */
1320     while($r = DB_fetch_array($result))
1321       {
1322         $pos     = $r[1];
1323         $seq     = $r[2];
1324         $trick   = $r[3];
1325         $comment = $r[4];
1326         $user    = $r[6];
1327
1328         /* count number of tricks */
1329         if($seq==1)
1330           $trickNR++;
1331
1332         /* check if first schweinchen has been played */
1333         if( $GAME['schweinchen-who'] && ($r[0] == 19 || $r[0] == 20) )
1334           if(!$GAME['schweinchen-first'])
1335             $GAME['schweinchen-first'] = 1; /* playing the first fox */
1336           else
1337             $GAME['schweinchen-second'] = 1; /* this must be the second fox */
1338
1339         /* save card to be able to find the winner of the trick later */
1340         $play[$seq] = array('card'=>$r[0],'pos'=>$pos);
1341
1342         if($seq==1)
1343           {
1344             /* first card in a trick, output some html */
1345             if($trick!=$lasttrick)
1346               {
1347                 /* start of an old trick? */
1348                 echo "  <li onclick=\"hl('$trickNR');\" class=\"old\"><a href=\"#\">"._('Trick')." $trickNR</a>\n".
1349                   "    <div class=\"trick\" id=\"trick".$trickNR."\">\n".
1350                   "      <img class=\"arrow\" src=\"pics/arrow".($pos-1).".png\" alt=\"table\" />\n";
1351               }
1352             else if($trick==$lasttrick)
1353               {
1354                 /* start of a last trick? */
1355                 echo "  <li onclick=\"hl('$trickNR');\" class=\"current\"><a href=\"#\">"._('Trick')." $trickNR</a>\n".
1356                   "    <div class=\"trick\" id=\"trick".$trickNR."\">\n".
1357                   "      <img class=\"arrow\" src=\"pics/arrow".($pos-1).".png\" alt=\"table\" />\n";
1358               };
1359
1360             /* remember first card, so that we are able to check, what cards can be played */
1361             $firstcard = $r[0];
1362           };
1363
1364         /* display card */
1365         echo "      <div class=\"card".($pos-1)."\">\n";
1366
1367         /* display comments */
1368         if($comment!='')
1369           echo "        <span class=\"comment\">".$comment."</span>\n";
1370
1371         echo '        ';
1372         display_card($r[0],$PREF['cardset']);
1373
1374         echo "      </div>\n"; /* end div card */
1375
1376         /* end of trick? */
1377         if($seq==4)
1378           {
1379             $winner    = get_winner($play,$gametype); /* returns the position */
1380             echo "    </div>\n  </li>\n";  /* end div trick, end li trick */
1381           }
1382       }
1383
1384     /* whos turn is it? */
1385     if($seq==4)
1386       {
1387         $winner    = get_winner($play,$gametype); /* returns the position */
1388         $next      = $winner;
1389         $firstcard = ''; /* new trick, no first card */
1390       }
1391     else
1392       {
1393         $next = $pos+1;
1394         if($next==5) $next = 1;
1395       }
1396
1397     /* my turn?, display cards as links, ask for comments*/
1398     if(DB_get_pos_by_hash($me) == $next)
1399       $myturn = 1;
1400     else
1401       $myturn = 0;
1402
1403     /* do we want to play a card? */
1404     if(myisset('card') && $myturn)
1405       {
1406         $card   = $_REQUEST['card'];
1407         $handid = DB_get_handid('hash',$me);
1408         $commentSchweinchen =''; /* used to add a comment when Schweinchen is being played */
1409
1410         /* check if we have card and that we haven't played it yet*/
1411         /* set played in hand_card to true where hand_id and card_id*/
1412         $r = DB_query_array("SELECT id FROM Hand_Card WHERE played='false' and ".
1413                               "hand_id='$handid' AND card_id=".DB_quote_smart($card));
1414         $handcardid = $r[0];
1415
1416         if($handcardid) /* everything ok, play card  */
1417           {
1418             /* update Game timestamp */
1419             DB_update_game_timestamp($gameid);
1420
1421             /* mark card as played */
1422             DB_query("UPDATE Hand_Card SET played='true' WHERE hand_id='$handid' AND card_id=".
1423                      DB_quote_smart($card));
1424
1425             /* get trick id or start new trick */
1426             $a = DB_get_current_trickid($gameid);
1427             $trickid  = $a[0];
1428             $sequence = $a[1];
1429             $tricknr  = $a[2];
1430
1431             $playid = DB_play_card($trickid,$handcardid,$sequence);
1432
1433             /* check special output for schweinchen in case in case a fox is being played
1434              * check for correct rules, etc. has already been done
1435              */
1436             if( $GAME['schweinchen-who'] && ($card == 19 || $card == 20) )
1437               {
1438                 if(!$GAME['schweinchen-first'])
1439                   $GAME['schweinchen-first'] = 1; /* playing the first fox */
1440                 else
1441                   $GAME['schweinchen-second'] = 1; /* this must be the second fox */
1442
1443                 if( $RULES['schweinchen']=='both' ||
1444                     ($RULES['schweinchen']=='second' && $GAME['schweinchen-second']==1 )||
1445                     ($RULES['schweinchen']=='secondaftercall' && $GAME['schweinchen-second']==1 &&
1446                      (DB_get_call_by_hash($GAME['schweinchen-who']) || DB_get_partner_call_by_hash($GAME['schweinchen-who']) ))
1447                   )
1448                   {
1449                     DB_insert_comment('Schweinchen! ',$playid,$myid);
1450                     $commentSchweinchen = 'Schweinchen! ';
1451                   }
1452                 if ($debug)
1453                   echo 'schweinchen = '.$GAME['schweinchen-who'].' ---<br />';
1454               }
1455
1456             /* if sequence == 4 check who one in case of wedding */
1457             if($sequence == 4 && $GT == 'wedding')
1458               {
1459                 /* is wedding resolve */
1460                 $resolved = DB_get_sickness_by_gameid($gameid);
1461                 if($resolved<0)
1462                   {
1463                     /* who has wedding */
1464                     $userids = DB_get_all_userid_by_gameid($gameid);
1465                     foreach($userids as $user)
1466                       {
1467                         $usersick = DB_get_sickness_by_userid_and_gameid($user,$gameid);
1468                         if($usersick == 'wedding')
1469                           $whosick = $user;
1470                       }
1471                     /* who won the trick */
1472                     $play     = DB_get_cards_by_trick($trickid);
1473                     $winner   = get_winner($play,$gametype); /* returns the position */
1474                     $winnerid = DB_get_userid('gameid-position',$gameid,$winner);
1475                     /* is tricknr <=3 */
1476                     if($tricknr <=3 && $winnerid!=$whosick)
1477                       {
1478                         /* set resolved at tricknr*/
1479                         $resolved = DB_set_sickness_by_gameid($gameid,$tricknr);
1480                         /* set partner */
1481                         $whash = DB_get_hash_from_gameid_and_userid($gameid,$winnerid);
1482                         DB_set_party_by_hash($whash,'re');
1483                       }
1484                     if($tricknr == 3 && $winnerid==$whosick)
1485                       {
1486                         /* set resolved at tricknr*/
1487                         $resolved = DB_set_sickness_by_gameid($gameid,'3');
1488                       }
1489                   }
1490               }
1491
1492             /* if sequence == 4, set winner of the trick, count points and set the next player */
1493             if($sequence==4)
1494               {
1495                 $play   = DB_get_cards_by_trick($trickid);
1496                 $winner = get_winner($play,$gametype); /* returns the position */
1497
1498                 /*
1499                  * check if someone caught a fox
1500                  *******************************/
1501
1502                 /* first check if we should account for solos at all,
1503                  * since it doesn't make sense in some games
1504                  */
1505                 $ok = 0; /* fox shouldn't be counted */
1506                 if(DB_get_gametype_by_gameid($gameid)=='solo')
1507                   {
1508                     $solo = DB_get_solo_by_gameid($gameid);
1509                     if($solo == 'trump' || $solo == 'silent')
1510                       $ok = 1; /* for trump solos and silent solos, foxes are ok */
1511                   }
1512                 else
1513                   $ok = 1; /* for all other games (not solos) foxes are ok too */
1514
1515                 if($ok==1)
1516                   foreach($play as $played)
1517                     {
1518                       if ( $played['card']==19 || $played['card']==20 )
1519                         if ($played['pos']!= $winner )
1520                           {
1521                             /* possible caught a fox, check party */
1522                             $uid1 = DB_get_userid('gameid-position',$gameid,$winner);
1523                             $uid2 = DB_get_userid('gameid-position',$gameid,$played['pos']);
1524
1525                             $party1 = DB_get_party_by_gameid_and_userid($gameid,$uid1);
1526                             $party2 = DB_get_party_by_gameid_and_userid($gameid,$uid2);
1527
1528                             if($party1 != $party2)
1529                               DB_query("INSERT INTO Score".
1530                                        " VALUES( NULL,NULL,$gameid,'$party1',$uid1,$uid2,'fox')");
1531                           }
1532                     }
1533
1534                 /*
1535                  * check for karlchen (jack of clubs in the last trick)
1536                  ******************************************************/
1537
1538                 /* same as for foxes, karlchen doesn't always make sense
1539                  * check what kind of game it is and set karlchen accordingly */
1540
1541                 if($tricknr == 12 ) /* Karlchen works only in the last trick */
1542                   {
1543                     /* check for solo */
1544                     $solo = 'none';
1545                     if(DB_get_gametype_by_gameid($gameid)=='solo' )
1546                       $solo = DB_get_solo_by_gameid($gameid);
1547
1548                     /* no Karlchen in these solos */
1549                     if($solo != 'trumpless' && $solo != 'jack' && $solo != 'queen' )
1550                       {
1551                         foreach($play as $played)
1552                           if ( $played['card']==11 || $played['card']==12 )
1553                             if ($played['pos'] == $winner )
1554                               {
1555                                 /* save Karlchen */
1556                                 $uid1   = DB_get_userid('gameid-position',$gameid,$winner);
1557                                 $party1 = DB_get_party_by_gameid_and_userid($gameid,$uid1);
1558
1559                                 DB_query("INSERT INTO Score".
1560                                          " VALUES( NULL,NULL,$gameid,'$party1',$uid1,NULL,'karlchen')");
1561                               };
1562                       };
1563                   }; /* end scoring Karlchen */
1564
1565                 /*
1566                  * check for doppelopf (>40 points)
1567                  ***********************************/
1568
1569                 $points = 0;
1570                 foreach($play as $played)
1571                   {
1572                     $points += DB_get_card_value_by_cardid($played['card']);
1573                   }
1574                 if($points > 39)
1575                   {
1576                     $uid1   = DB_get_userid('gameid-position',$gameid,$winner);
1577                     $party1 = DB_get_party_by_gameid_and_userid($gameid,$uid1);
1578
1579                     DB_query("INSERT INTO Score".
1580                              " VALUES( NULL,NULL,$gameid,'$party1',$uid1,NULL,'doko')");
1581                   }
1582
1583                 /*
1584                  * set winner (for this trick)
1585                  */
1586
1587                 if($winner>0)
1588                   DB_query("UPDATE Trick SET winner='$winner' WHERE id='$trickid'");
1589                 else
1590                   echo "ERROR during scoring";
1591
1592                 if($debug)
1593                   echo "DEBUG: position $winner won the trick <br />";
1594
1595                 /* who is the next player? */
1596                 $next = $winner;
1597               }
1598             else
1599               {
1600                 $next = DB_get_pos_by_hash($me)+1;
1601               }
1602             if($next==5) $next=1;
1603
1604             /* check for coment */
1605             if(myisset('comment'))
1606               {
1607                 $comment = $_REQUEST['comment'];
1608                 if($comment != '')
1609                   DB_insert_comment($comment,$playid,$myid);
1610                 if($commentSchweinchen)
1611                   $comment = $commentSchweinchen . $comment;
1612               };
1613
1614             /* display played card */
1615             $pos = DB_get_pos_by_hash($me);
1616             if($sequence==1)
1617               {
1618                 echo "  <li onclick=\"hl('".($tricknr)."');\" class=\"current\"><a href=\"#\">"._('Trick').' '.($tricknr)."</a>\n".
1619                   "    <div class=\"trick\" id=\"trick".($tricknr)."\">\n".
1620                   "      <img class=\"arrow\" src=\"pics/arrow".($pos-1).".png\" alt=\"table\" />\n";
1621               }
1622
1623             echo "      <div class=\"card".($pos-1)."\">\n        ";
1624
1625             /* display comments */
1626             display_card($card,$PREF['cardset']);
1627             if($comment!='')
1628               echo "\n        <span class=\"comment\"> ".$comment."</span>\n";
1629             echo "      </div>\n";
1630
1631             echo "    </div>\n  </li>\n";  /* end div trick, end li trick */
1632
1633             /*check if we still have cards left, else set status to gameover */
1634             if(sizeof(DB_get_hand($me))==0)
1635               {
1636                 DB_set_hand_status_by_hash($me,'gameover');
1637                 $mystatus = 'gameover';
1638               }
1639
1640             /* if all players are done, set game status to game over,
1641              * get the points of the last trick and send out an email
1642              * to all players
1643              */
1644             $userids = DB_get_all_userid_by_gameid($gameid);
1645
1646             $done=1;
1647             foreach($userids as $user)
1648               if(DB_get_hand_status_by_userid_and_gameid($user,$gameid)!='gameover')
1649                 $done=0;
1650
1651             if($done)
1652               DB_set_game_status_by_gameid($gameid,'gameover');
1653
1654             /* email next player, if game is still running */
1655             if(DB_get_game_status_by_gameid($gameid)=='play')
1656               {
1657                 $next_hash = DB_get_hash_from_game_and_pos($gameid,$next);
1658                 $who       = DB_get_userid('hash',$next_hash);
1659                 DB_set_player_by_gameid($gameid,$who);
1660
1661                 $message = "A card has been played in game ".DB_format_gameid($gameid).".\n\n".
1662                   "It's your turn  now.\n".
1663                   "Use this link to play a card: ".$HOST.$INDEX."?action=game&me=".$next_hash."\n\n" ;
1664                 if( DB_get_email_pref_by_uid($who)!='emailaddict' )
1665                   {
1666                     $subject = 'A card has been played in game '.DB_format_gameid($gameid);
1667                     mymail($who,$subject,$message);
1668                   }
1669               }
1670             else /* send out final email */
1671               {
1672                 /* individual score */
1673                 $result = DB_query("SELECT User.fullname, IFNULL(SUM(Card.points),0), Hand.party FROM Hand".
1674                                    " LEFT JOIN Trick ON Trick.winner=Hand.position AND Trick.game_id=Hand.game_id".
1675                                    " LEFT JOIN User ON User.id=Hand.user_id".
1676                                    " LEFT JOIN Play ON Trick.id=Play.trick_id".
1677                                    " LEFT JOIN Hand_Card ON Hand_Card.id=Play.hand_card_id".
1678                                    " LEFT JOIN Card ON Card.id=Hand_Card.card_id".
1679                                    " WHERE Hand.game_id='$gameid'".
1680                                    " GROUP BY User.fullname" );
1681                 $message  = "The game is over. Thanks for playing :)\n";
1682                 $message .= "Final score:\n";
1683                 while( $r = DB_fetch_array($result) )
1684                   $message .= "   ".$r[0]."(".$r[2].") ".$r[1]."\n";
1685
1686                 $result = DB_query("SELECT  Hand.party, IFNULL(SUM(Card.points),0) FROM Hand".
1687                                    " LEFT JOIN Trick ON Trick.winner=Hand.position AND Trick.game_id=Hand.game_id".
1688                                    " LEFT JOIN User ON User.id=Hand.user_id".
1689                                    " LEFT JOIN Play ON Trick.id=Play.trick_id".
1690                                    " LEFT JOIN Hand_Card ON Hand_Card.id=Play.hand_card_id".
1691                                    " LEFT JOIN Card ON Card.id=Hand_Card.card_id".
1692                                    " WHERE Hand.game_id='$gameid'".
1693                                    " GROUP BY Hand.party" );
1694                 $message .= "\nTotals:\n";
1695                 $re     = 0;
1696                 $contra = 0;
1697                 while( $r = DB_fetch_array($result) )
1698                   {
1699                     $message .= "    ".$r[0]." ".$r[1]."\n";
1700                     if($r[0] == 're')
1701                       $re = $r[1];
1702                     else if($r[0] == 'contra')
1703                       $contra = $r[1];
1704                   }
1705
1706                 /*
1707                  * save score in database
1708                  *
1709                  */
1710
1711                 /* get calls from re/contra */
1712                 $call_re     = -1;
1713                 $call_contra = -1;
1714                 foreach($userids as $user)
1715                   {
1716                     $hash  = DB_get_hash_from_gameid_and_userid($gameid,$user);
1717                     $call  = DB_get_call_by_hash($hash);
1718                     $party = DB_get_party_by_hash($hash);
1719
1720                     if($call!=NULL)
1721                       {
1722                         $call = (int) $call;
1723
1724                         if($party=='re')
1725                           {
1726                             if($call_re== -1)
1727                               $call_re = $call;
1728                             else if( $call < $call_re)
1729                               $call_re = $call;
1730                           }
1731                         else if($party=='contra')
1732                           {
1733                             if($call_contra== -1)
1734                               $call_contra = $call;
1735                             else if( $call < $call_contra)
1736                               $call_contra = $call;
1737                           }
1738                       }
1739                   }
1740
1741                 /* figure out who one */
1742                 $winning_party = NULL;
1743
1744                 if($call_re == -1 && $call_contra == -1)
1745                   {
1746                     /* nobody made a call, so it's easy to figure out who won */
1747                     if($re>120)
1748                       $winning_party='re';
1749                     else
1750                       $winning_party='contra';
1751                   }
1752                 else
1753                   {
1754                     /* if one party makes a call, they only win, iff they make enough points
1755                      * if only one party made a call, the other one wins,
1756                      * if the first one didn't make it
1757                      */
1758                     if($call_re != -1)
1759                       {
1760                         $offset = 120 - $call_re;
1761                         if($call_re == 0)
1762                           $offset--; /* since we use a > in the next equation */
1763
1764                         if($re > 120+$offset)
1765                           $winning_party='re';
1766                         else if ($call_contra == -1 )
1767                           $winning_party='contra';
1768                       }
1769
1770                     if($call_contra != -1)
1771                       {
1772                         $offset = 120 - $call_contra;
1773                         if($call_contra == 0)
1774                           $offset--; /* since we use a > in the next equation */
1775
1776                         if($contra > 120+$offset)
1777                           $winning_party='contra';
1778                         else if ($call_re == -1 )
1779                           $winning_party='re';
1780                       }
1781                   }
1782
1783                 /* one point for each call of the other party in case the other party didn't win
1784                  * and one point each in case the party made more than points than one of the calls
1785                  */
1786                 if($winning_party!='contra' && $call_contra!= -1)
1787                   {
1788                     for( $p=$call_contra;$p<=120; $p+=30 )
1789                       {
1790                           DB_query("INSERT INTO Score".
1791                                    " VALUES( NULL,NULL,$gameid,'re',NULL,NULL,'against$p')");
1792                         }
1793
1794                       for( $p=$call_contra; $p<120; $p+=30)
1795                         {
1796                           if( $re >= $p )
1797                             DB_query("INSERT INTO Score".
1798                                      " VALUES( NULL,NULL,$gameid,'re',NULL,NULL,'made$p')");
1799                         }
1800                     }
1801                   if($winning_party!='re' and $call_re!= -1)
1802                     {
1803                       for( $p=$call_re;$p<=120; $p+=30 )
1804                         {
1805                           DB_query("INSERT INTO Score".
1806                                    " VALUES( NULL,NULL,$gameid,'contra',NULL,NULL,'against$p')");
1807                         }
1808
1809                       for( $p=$call_re; $p<120; $p+=30)
1810                         {
1811                           if( $contra>=$p )
1812                             DB_query("INSERT INTO Score".
1813                                      " VALUES( NULL,NULL,$gameid,'contra',NULL,NULL,'made$p')");
1814                         }
1815                     }
1816
1817                   /* point in case contra won */
1818                   if($winning_party=='contra')
1819                     {
1820                       DB_query("INSERT INTO Score".
1821                                " VALUES( NULL,NULL,$gameid,'contra',NULL,NULL,'againstqueens')");
1822                     }
1823
1824                   /* one point each for winning and each 30 points + calls */
1825                   if($winning_party=='re')
1826                     {
1827                       foreach(array(120,150,180,210,240) as $p)
1828                         {
1829                           $offset = 0;
1830                           if($p==240 || $call_contra != -1)
1831                             $offset = 1;
1832
1833                           if($re>$p-$offset)
1834                             DB_query("INSERT INTO Score".
1835                                      " VALUES( NULL,NULL,$gameid,'re',NULL,NULL,'".(240-$p)."')");
1836                         }
1837                       /* re called something and won */
1838                       foreach(array(0,30,60,90,120) as $p)
1839                         {
1840                           if($call_re!= -1 && $call_re<$p+1)
1841                             DB_query("INSERT INTO Score".
1842                                      " VALUES( NULL,NULL,$gameid,'re',NULL,NULL,'call$p')");
1843                         }
1844                     }
1845                   else if( $winning_party=='contra')
1846                     {
1847                       foreach(array(120,150,180,210,240) as $p)
1848                         {
1849                           $offset = 0;
1850                           if($p==240 || $call_re != -1)
1851                             $offset = 1;
1852
1853                           if($contra>$p-$offset)
1854                             DB_query("INSERT INTO Score".
1855                                      " VALUES( NULL,NULL,$gameid,'contra',NULL,NULL,'".(240-$p)."')");
1856                         }
1857                       /* re called something and won */
1858                       foreach(array(0,30,60,90,120) as $p)
1859                         {
1860                           if($call_contra != -1 && $call_contra<$p+1)
1861                             DB_query("INSERT INTO Score".
1862                                      " VALUES( NULL,NULL,$gameid,'contra',NULL,NULL,'call$p')");
1863                         }
1864                     }
1865
1866
1867                   /* add score points to email */
1868                   $message .= "\n";
1869                   $Tpoint = 0;
1870                   $message .= " Points Re: \n";
1871                   $queryresult = DB_query("SELECT score FROM Score ".
1872                                           "  WHERE game_id=$gameid AND party='re'".
1873                                           " ");
1874                   while($r = DB_fetch_array($queryresult) )
1875                     {
1876                       $message .= "   ".$r[0]."\n";
1877                       $Tpoint ++;
1878                     }
1879                   $message .= " Points Contra: \n";
1880                   $queryresult = DB_query("SELECT score FROM Score ".
1881                                           "  WHERE game_id=$gameid AND party='contra'".
1882                                           " ");
1883                   while($r = DB_fetch_array($queryresult) )
1884                     {
1885                       $message .= "   ".$r[0]."\n";
1886                       $Tpoint --;
1887                     }
1888                   $message .= " Total Points (from the Re point of view): $Tpoint\n";
1889                   $message .= "\n";
1890
1891                   $session = DB_get_session_by_gameid($gameid);
1892                   $score = generate_score_table($session);
1893
1894                   $message .= "Score Table:\n";
1895                   $message .= format_score_table_ascii($score);
1896                   $message .= "\nUse these links to have a look at game ".DB_format_gameid($gameid).": \n";
1897
1898                   /* send out final email */
1899                   foreach($userids as $user)
1900                     {
1901                       /* add links for all players */
1902                       $hash = DB_get_hash_from_gameid_and_userid($gameid,$user);
1903                       $name = DB_get_name('userid',$user);
1904
1905                       $link = "$name: ".$HOST.$INDEX."?action=game&me=".$hash."\n" ;
1906                       $message .= $link;
1907                     }
1908                   $message .= "\n\n (you can use reply all on this email to reach all the players.)\n\n";
1909                   $subject = ' Game over (game '.DB_format_gameid($gameid).') ';
1910                   mymail($userids,$subject,$message);
1911               }
1912           }
1913         else
1914           {
1915             echo "can't find that card?! <br />\n";
1916           }
1917       }
1918     else if(myisset('card') && !$myturn )
1919       {
1920         echo _("please wait until it's your turn!")."<br />\n";
1921       }
1922
1923     if($seq!=4 && $trickNR>=1 && !(myisset('card') && $myturn) )
1924       echo "    </div>\n  </li>\n";  /* end div trick, end li trick */
1925
1926     /* display points in case game is over */
1927     if($mystatus=='gameover' && DB_get_game_status_by_gameid($gameid)=='gameover' )
1928       {
1929         echo "  <li onclick=\"hl('13');\" class=\"current\"><a href=\"#\">"._('Score')."</a>\n".
1930           "    <div class=\"trick\" id=\"trick13\">\n";
1931         /* add pic for re/contra
1932          "      <img class=\"arrow\" src=\"pics/arrow".($pos-1).".png\" alt=\"table\" />\n";*/
1933
1934         $result = DB_query("SELECT User.fullname, IFNULL(SUM(Card.points),0), Hand.party,Hand.position FROM Hand".
1935                            " LEFT JOIN Trick ON Trick.winner=Hand.position AND Trick.game_id=Hand.game_id".
1936                            " LEFT JOIN User ON User.id=Hand.user_id".
1937                            " LEFT JOIN Play ON Trick.id=Play.trick_id".
1938                            " LEFT JOIN Hand_Card ON Hand_Card.id=Play.hand_card_id".
1939                            " LEFT JOIN Card ON Card.id=Hand_Card.card_id".
1940                            " WHERE Hand.game_id='$gameid'".
1941                            " GROUP BY User.fullname" );
1942         while( $r = DB_fetch_array($result))
1943           echo "      <div class=\"card".($r[3]-1)."\">\n".
1944             "        <div class=\"score\">".$r[2]."<br /> ".$r[1]."</div>\n".
1945             "      </div>\n";
1946
1947         /* display totals */
1948         $result = DB_query("SELECT Hand.party, IFNULL(SUM(Card.points),0) FROM Hand".
1949                            " LEFT JOIN Trick ON Trick.winner=Hand.position AND Trick.game_id=Hand.game_id".
1950                            " LEFT JOIN User ON User.id=Hand.user_id".
1951                            " LEFT JOIN Play ON Trick.id=Play.trick_id".
1952                            " LEFT JOIN Hand_Card ON Hand_Card.id=Play.hand_card_id".
1953                            " LEFT JOIN Card ON Card.id=Hand_Card.card_id".
1954                            " WHERE Hand.game_id='$gameid'".
1955                            " GROUP BY Hand.party" );
1956         echo "<div class=\"total\">\n  Totals:<br />\n";
1957         while( $r = DB_fetch_array($result))
1958           echo "  ".$r[0]." ".$r[1]."<br />\n";
1959
1960         $queryresult = DB_query("SELECT timediff(mod_date,create_date) ".
1961                                 " FROM Game WHERE id='$gameid'");
1962         $r = DB_fetch_array($queryresult);
1963         echo "  <p>This game took ".$r[0]." hours.</p>\n";
1964
1965         echo "  <div class=\"re\">\n   Points Re: <br />\n";
1966         $queryresult = DB_query("SELECT score FROM Score ".
1967                                 "  WHERE game_id=$gameid AND party='re'".
1968                                 " ");
1969         while($r = DB_fetch_array($queryresult) )
1970           echo "   ".$r[0]."<br />\n";
1971         echo "  </div>\n";
1972
1973         echo "  <div class=\"contra\">\n   Points Contra: <br />\n";
1974         $queryresult = DB_query("SELECT score FROM Score ".
1975                                 "  WHERE game_id=$gameid AND party='contra'".
1976                                 " ");
1977         while($r = DB_fetch_array($queryresult) )
1978           echo "   ".$r[0]."<br />\n";
1979         echo "  </div>\n";
1980
1981         echo "</div>\n";
1982
1983         echo "    </div>\n  </li>\n";  /* end div trick, end li trick */
1984       }
1985
1986     echo "  <li onclick=\"hl_prev();\" class=\"old\"><a href=\"#\">"._('prev')."</a></li>\n";
1987     echo "  <li onclick=\"hl_next();\" class=\"old\"><a href=\"#\">"._('next')."</a></li>\n";
1988     echo "</ul>\n"; /* end ul tricks*/
1989
1990     $mycards = DB_get_hand($me);
1991     $mycards = mysort($mycards,$gametype);
1992     echo "<div class=\"mycards\">\n";
1993
1994     if($myturn && !myisset('card') && $mystatus=='play' )
1995       {
1996         echo "Hello ".$myname.", it's your turn!  <br />\n";
1997         echo _('Your cards are').": <br />\n";
1998
1999         /* do we have to follow suite? */
2000         $followsuit = 0;
2001         if(have_suit($mycards,$firstcard))
2002           $followsuit = 1;
2003
2004         /* count how many cards we can play, so that we can pre-select it if there is only one */
2005         $howmanycards = 0;
2006         foreach($mycards as $card)
2007           {
2008             if($howmanycards>1)
2009               break;
2010
2011             /* display only cards that the player is allowed to play as links, the rest just display normal
2012              * also check if we have both schweinchen, in that case only display on of them as playable
2013              */
2014             if( ($followsuit && !same_type($card,$firstcard)) ||
2015                 ( (int)($card)==19 &&
2016                   !$GAME['schweinchen-first'] &&
2017                   ( $RULES['schweinchen']=='second' ||
2018                     ( $RULES['schweinchen']=='secondaftercall' &&
2019                      (DB_get_call_by_hash($GAME['schweinchen-who']) ||
2020                       DB_get_partner_call_by_hash($GAME['schweinchen-who']) )
2021                     )
2022                   ) &&
2023                   $GAME['schweinchen-who']==$me &&
2024                   in_array($gametype,array('normal','wedding','trump','silent'))
2025                   )
2026                 )
2027               continue;
2028             else
2029               $howmanycards++;
2030           }
2031
2032         if($howmanycards==1)
2033           $howmanycards=1;
2034         else
2035           $howmanycards=0;
2036
2037         foreach($mycards as $card)
2038           {
2039             /* display only cards that the player is allowed to play as links, the rest just display normal
2040              * also check if we have both schweinchen, in that case only display on of them as playable
2041              */
2042             if( ($followsuit && !same_type($card,$firstcard)) ||
2043                 ( (int)($card)==19 &&
2044                   !$GAME['schweinchen-first'] &&
2045                   ( $RULES['schweinchen']=='second' ||
2046                     ( $RULES['schweinchen']=='secondaftercall' &&
2047                      (DB_get_call_by_hash($GAME['schweinchen-who']) ||
2048                       DB_get_partner_call_by_hash($GAME['schweinchen-who']) )
2049                     )
2050                   ) &&
2051                   $GAME['schweinchen-who']==$me &&
2052                   in_array($gametype,array('normal','wedding','trump','silent'))
2053                   )
2054                 )
2055               display_card($card,$PREF['cardset']);
2056             else
2057               display_link_card($card,$PREF['cardset'],$type='card',$selected=$howmanycards);
2058           }
2059       }
2060     else if($mystatus=='play' )
2061       {
2062         echo _('Your cards are').": <br />\n";
2063         foreach($mycards as $card)
2064           display_card($card,$PREF['cardset']);
2065       }
2066     else if($mystatus=='gameover')
2067       {
2068         $oldcards = DB_get_all_hand($me);
2069         $oldcards = mysort($oldcards,$gametype);
2070
2071         if(isset($_SESSION['id']) && $myid==$_SESSION['id'])
2072           echo _('Your cards were').": <br />\n";
2073         else
2074           {
2075             $name = DB_get_name('userid',$myid);
2076             echo "$name's were: <br />\n";
2077           }
2078
2079         foreach($oldcards as $card)
2080           display_card($card,$PREF['cardset']);
2081
2082         $userids = DB_get_all_userid_by_gameid($gameid);
2083         foreach($userids as $user)
2084           {
2085             $userhash = DB_get_hash_from_gameid_and_userid($gameid,$user);
2086
2087             if($userhash!=$me)
2088               {
2089                 echo "<br />";
2090
2091                 $name = DB_get_name('userid',$user);
2092                 $oldcards = DB_get_all_hand($userhash);
2093                 $oldcards = mysort($oldcards,$gametype);
2094                 echo "$name's cards were: <br />\n";
2095                 foreach($oldcards as $card)
2096                   display_card($card,$PREF['cardset']);
2097               }
2098           };
2099       }
2100     echo "</div>\n";
2101
2102     /* if the game is over do some extra stuff, therefore exit the swtich statement if we are still playing*/
2103     if($mystatus=='play')
2104       break;
2105
2106     /* the following happens only when the gamestatus is 'gameover' */
2107     /* check if game is over, display results */
2108     if(DB_get_game_status_by_gameid($gameid)=='play')
2109       {
2110         echo _('The game is over for you... other people still need to play though');
2111       }
2112     break;
2113   default:
2114     myerror("error in testing the status");
2115   }
2116
2117 /* output other games where it is the users turn
2118  * make sure that the people looking at old games don't see the wrong games here
2119  */
2120 if( $gamestatus != 'gameover' )
2121   {
2122     /* game isn't over, only valid user can get here, so show menu */
2123     display_user_menu($myid);
2124   }
2125 else if(  $origmystatus != 'gameover' )
2126   {
2127     /* user just played the very last card, game is now over, it's still ok to show the menu though */
2128     display_user_menu($myid);
2129   }
2130 else if(  $mystatus == 'gameover' &&
2131           isset($_SESSION['id']) )
2132   {
2133     /* user is looking at someone else's game, show the menu for the correct user */
2134     display_user_menu($_SESSION['id']);
2135   }
2136 else
2137   {
2138     echo "<div class=\"usermenu\">\n";
2139     echo "It's your turn in these games:<br />\n";
2140     echo "Please log in to see this information.\n";
2141     echo "</div>\n";
2142   }
2143
2144 /*
2145  * display gameinfo: re/contra, comment-box, play-card button, games played by others
2146  */
2147
2148 echo "<div class=\"gameinfo\">\n";
2149
2150 /* get time from the last action of the game */
2151 $r = DB_query_array("SELECT mod_date from Game WHERE id='$gameid' " );
2152 $gameend = time() - strtotime($r[0]);
2153
2154 /* comment box */
2155 if($gamestatus == 'play' || $gameend < 60*60*24*7)
2156   {
2157     echo '  '._('A short comment').":<input name=\"comment\" type=\"text\" size=\"20\" maxlength=\"100\" />\n";
2158   }
2159
2160 /* re-contra */
2161 if($gamestatus == 'play' )
2162   {
2163     $myparty = DB_get_party_by_hash($me);
2164     output_form_calls($me,$myparty);
2165   }
2166
2167 /* play-card button */
2168 if($gamestatus == 'play' || $gameend < 60*60*24*7)
2169   {
2170     echo "  <input type=\"submit\" value=\""._('submit')."\" />\n";
2171   }
2172
2173 /* has this hand been played by others? */
2174 $other_game_ids = DB_played_by_others($gameid);
2175 if(sizeof($other_game_ids)>0 && $mystatus=='gameover')
2176   {
2177     $mypos = DB_get_pos_by_hash($me);
2178     echo "  <p>See how other played the same hand: \n";
2179     foreach($other_game_ids as $id)
2180       {
2181         $otherhash = DB_get_hash_from_game_and_pos($id,$mypos);
2182         $othername = DB_get_name('hash',$otherhash);
2183         echo "    <a href=\"$INDEX?action=game&amp;me=$otherhash\">$othername</a> ";
2184       }
2185     echo "  </p>\n";
2186   }
2187
2188 echo "</div>\n"; /* end gameinfo */
2189
2190 echo "</form>\n";
2191
2192 $gamestatus = DB_get_game_status_by_gameid($gameid);
2193 if($mystatus=='gameover' &&
2194    ($gamestatus =='gameover' || $gamestatus =='cancel-nines' || $gamestatus =='cancel-trump') &&
2195    isset($_SESSION['id']) && $_SESSION['id']==$myid)
2196   {
2197     $session = DB_get_session_by_gameid($gameid);
2198     $result  = DB_query("SELECT id,create_date FROM Game".
2199                         " WHERE session=$session".
2200                         " ORDER BY create_date DESC".
2201                         " LIMIT 1");
2202     $r = -1;
2203     if($result)
2204       $r = DB_fetch_array($result);
2205
2206     if(!$session || $gameid==$r[0])
2207       {
2208         /* suggest a new game with the same people in it, just rotated once (unless last game was solo) */
2209         $names = DB_get_all_names_by_gameid($gameid);
2210         $type  = DB_get_gametype_by_gameid($gameid);
2211
2212         if($type=='solo')
2213           {
2214             $solo = DB_get_solo_by_gameid($gameid);
2215
2216             if($solo!='silent') /* repeat game with same first player */
2217               output_ask_for_new_game($names[0],$names[1],$names[2],$names[3],$gameid);
2218             else /* rotate normally */
2219               output_ask_for_new_game($names[1],$names[2],$names[3],$names[0],$gameid);
2220           }
2221         else if($gamestatus == 'cancel-nines' || $gamestatus == 'cancel-trump')
2222           output_ask_for_new_game($names[0],$names[1],$names[2],$names[3],$gameid);
2223         else /* rotate normally */
2224           output_ask_for_new_game($names[1],$names[2],$names[3],$names[0],$gameid);
2225       }
2226   }
2227 ?>