From 924f395a39eeccbcd54d540613e440cbedd6ba3d Mon Sep 17 00:00:00 2001
From: Arun Persaud
Date: Sat, 26 Apr 2008 13:01:41 -0700
Subject: CLEANUP: cleaned up index.php a bit more by introducing an 'action'
variable
no more if, but one nice switch statement in index.php
Signed-off-by: Arun Persaud
---
include/game.php | 40 ++++++++++++++++++++++++----------------
1 file changed, 24 insertions(+), 16 deletions(-)
(limited to 'include/game.php')
diff --git a/include/game.php b/include/game.php
index 0e16292..51d4320 100644
--- a/include/game.php
+++ b/include/game.php
@@ -5,6 +5,14 @@
if(!isset($HOST))
exit;
+if(!myisset("me"))
+ {
+ echo "Hmm, you really shouldn't mess with the urls.
\n";
+ output_footer();
+ DB_close();
+ exit();
+ }
+
$me = $_REQUEST["me"];
/* test for valid ID */
@@ -70,7 +78,7 @@ for($i=1;$i<5;$i++)
};
/* put everyting in a form */
-echo "
";
DB_set_hand_status_by_hash($me,'init');
}
else
@@ -274,7 +282,7 @@ switch($mystatus)
DB_set_sickness_by_hash($me,"nines");
}
- echo " Ok, done with checking, please go to the next step of the setup.";
+ echo " Ok, done with checking, please go to the next step of the setup.";
/* move on to the next stage*/
DB_set_hand_status_by_hash($me,'poverty');
@@ -304,7 +312,7 @@ switch($mystatus)
{
$message = "Everyone finish the questionary in game ".DB_format_gameid($gameid).", ".
"please visit this link now to continue: \n".
- " ".$HOST.$INDEX."?me=".$userhash."\n\n" ;
+ " ".$HOST.$INDEX."?action=game&me=".$userhash."\n\n" ;
mymail($To,$EmailName." finished setup in game ".DB_format_gameid($gameid),$message);
}
};
@@ -513,7 +521,7 @@ switch($mystatus)
DB_set_party_by_hash($me,"contra");
echo "Whoever will make the first trick will be on the re team.
\n";
- echo " Ok, the game can start now, please finish the setup.
";
+ echo " Ok, the game can start now, please finish the setup.
";
DB_set_hand_status_by_hash($me,'play');
break;
@@ -576,7 +584,7 @@ switch($mystatus)
DB_set_player_by_gameid($gameid,$userid);
$message = "Someone has poverty, it's your turn to decide, if you want to take the trump. Please visit:".
- " ".$HOST.$INDEX."?me=".$userhash."\n\n" ;
+ " ".$HOST.$INDEX."?action=game&me=".$userhash."\n\n" ;
mymail($To,$EmailName." poverty (game ".DB_format_gameid($gameid).")",$message);
}
@@ -658,7 +666,7 @@ switch($mystatus)
$message = "Someone has poverty, it's your turn to decide, ".
"if you want to take the trump. Please visit:".
- " ".$HOST.$INDEX."?me=".$userhash."\n\n" ;
+ " ".$HOST.$INDEX."?action=game&me=".$userhash."\n\n" ;
mymail($To,$EmailName." poverty (game ".DB_format_gameid($gameid).")",$message);
}
}
@@ -732,10 +740,10 @@ switch($mystatus)
/* count trump */
if($nrtrump<4)
echo "Player $name has $nrtrump trump. Do you want to take them?".
- "yes
\n";
+ "yes
\n";
}
}
- echo "No,way I take those trump...
\n";
+ echo "No,way I take those trump...
\n";
echo "\n";
echo "Your cards are:
\n";
@@ -803,11 +811,11 @@ switch($mystatus)
{
/* email startplayer) */
$message = "It's your turn now in game ".DB_format_gameid($gameid).".\n".
- "Use this link to play a card: ".$HOST.$INDEX."?me=".$hash."\n\n" ;
+ "Use this link to play a card: ".$HOST.$INDEX."?action=game&me=".$hash."\n\n" ;
mymail($email,$EmailName."ready, set, go... (game ".DB_format_gameid($gameid).") ",$message);
}
else
- echo " Please,
start the game.
";
+ echo " Please,
start the game.
";
}
else
echo "\n
";
@@ -1260,7 +1268,7 @@ switch($mystatus)
$message = "A card has been played in game ".DB_format_gameid($gameid).".\n\n".
"It's your turn now.\n".
- "Use this link to play a card: ".$HOST.$INDEX."?me=".$next_hash."\n\n" ;
+ "Use this link to play a card: ".$HOST.$INDEX."?action=game&me=".$next_hash."\n\n" ;
if( DB_get_email_pref_by_uid($who)!="emailaddict" )
mymail($email,$EmailName."a card has been played in game ".DB_format_gameid($gameid),$message);
}
@@ -1526,7 +1534,7 @@ switch($mystatus)
$hash = DB_get_hash_from_gameid_and_userid($gameid,$user);
$link = "Use this link to have a look at game ".DB_format_gameid($gameid).": ".
- $HOST.$INDEX."?me=".$hash."\n\n" ;
+ $HOST.$INDEX."?action=game&me=".$hash."\n\n" ;
if( DB_get_email_pref_by_uid($user) != "emailaddict" )
mymail($To,$EmailName."game over (game ".DB_format_gameid($gameid).") part 2(2)",$link);
}
--
cgit v1.2.3-18-g5258