movedb
<?php
include 'preamble.php';
?>
<html>
<head>
<title>MW Move Banker</title>
</head>
<body>
<FORM METHOD=post name="MWForm" ACTION="<?php echo $GameEngineURL; ?>">
| <a href="movedb.php?T=<?php echo $DefTeam;?>&P=<?php echo $DefPlayer;?>">Refresh</a> | <a href="#Board">Board</a> | <a href="#Bank">Bank a Move</a> | <a href="#Defaults">Set Defaults</a> | <a href="#List">Banked Move List</a> |
<a href="javascript: document.MWForm.scoreboard.click();">MW Scoreboard</a> |
<a href="javascript: document.MWForm.db_search.click();">MW Recent Moves</a> |
<input type="submit" name="scoreboard" value="Scoreboard" style="visibility:hidden; font-size: 0">
<input type="submit" name="db_search" value="Recent Moves" style="visibility:hidden; font-size: 0">
<input type="hidden" name="SqLatH" value=<?php echo $Deflts["LatHem"][$DefPlayer];?>>
<input type="hidden" name="SqLonH" value=<?php echo $Deflts["LonHem"][$DefPlayer];?>>
<input type="hidden" name="SqLat" value=<?php echo $Deflts["LatDeg"][$DefPlayer];?>>
<input type="hidden" name="SqLon" value=<?php echo $Deflts["LonDeg"][$DefPlayer];?>>
<input type="hidden" name="show_map" value=>
<input type="hidden" name="search_for" value="">
<input type="hidden" name="search_field" value="all">
<input type="hidden" name="sort_on" value="0">
<input type="hidden" name="display" value="with">
</FORM>
<hr>
<?php
echo "<!--\n$MoveData\n-->";
echo "Welcome <b>$DefPlayer</b>. ";
echo " Your offset is ".$Deflts["LatOff"][$DefPlayer]." ".$Deflts["LonOff"][$DefPlayer].".";
echo " It is currently ".gmdate("Y-M-d H:i:s",time())." UTC"; // could also show time until next move is awarded
if ($_POST["Delete"]) {
$MoveList = explode($MoveDelimiter,$MoveData);
// write the file over again, only including the undeleted entries
$DelCount = 0;
$NewMoveData = "";
for ($i=0; $i<count($MoveList)-1; $i++) {
$MoveId = $i . "," . md5($MoveList[$i]);
if (!$_POST[$MoveId]) {
$NewMoveData .= $MoveList[$i] . $MoveDelimiter;
} else {
$DelCount++;
}
}
// put new move data back in database
$sql = "UPDATE MWMoves SET MoveData=ENCODE('".addslashes($NewMoveData)."','".$_SERVER['PHP_AUTH_PW']."') WHERE TeamName='$DefTeam'";
$result = mysql_query($sql, $db);
if ($result != 1) {
echo "Save data failed. Wrote $result rows.<br>";
echo "query was $sql<p>";
} else {
if ($DelCount) {
echo "<br>Deleted $DelCount banked moves<p>";
$MoveData = $NewMoveData;
} else {
echo "<br><font color=red>No banked moves deleted. This may have been caused by an internal error.</font><p>";
}
}
} //DELETE
if ($_POST["RecordCapture2"]) {
// write data to database
$FileEntry = $DefPlayer."|";
$FileEntry .= $_POST["LatHem"]."|";
$FileEntry .= $_POST["LatDeg"]."|";
$FileEntry .= $_POST["LatMin"]."|";
$FileEntry .= $_POST["LatFMin"]."|";
$FileEntry .= $_POST["LonHem"]."|";
$FileEntry .= $_POST["LonDeg"]."|";
$FileEntry .= $_POST["LonMin"]."|";
$FileEntry .= $_POST["LonFMin"]."|";
$FileEntry .= $_POST["ShortComment"]."|";
$FileEntry .= $_POST["Description"]."|";
$FileEntry .= $_POST["ToLatHem"]."|";
$FileEntry .= $_POST["ToLatDeg"]."|";
$FileEntry .= $_POST["ToLatMin"]."|";
$FileEntry .= $_POST["ToLatFMin"]."|";
$FileEntry .= $_POST["ToLonHem"]."|";
$FileEntry .= $_POST["ToLonDeg"]."|";
$FileEntry .= $_POST["ToLonMin"]."|";
$FileEntry .= $_POST["ToLonFMin"]."|";
$FileEntry .= $_POST["ToDescription"];
if ($_POST["BankOrEdit"] == "Edit") {
// update the existing move
$MoveList = explode($MoveDelimiter,$MoveData);
// write the file over again, only including the edited entry in the old move's place
$NewMoveData = "";
$MoveStored = 0;
for ($i=0; $i<count($MoveList)-1; $i++) {
$MoveId = $i . "," . md5($MoveList[$i]);
if ($MoveId != $_POST["Id"]) {
$NewMoveData .= $MoveList[$i] . $MoveDelimiter;
} else {
$NewMoveData .= $FileEntry . $MoveDelimiter;
$MoveStored = 1;
}
}
if ($MoveStored == 0) {
echo "<br><font color=red>Internal Error - Failed to write edited move to database because Id did not match Hash</font><p>";
}
} else {
// new move - add it at the end
$NewMoveData = $MoveData . $FileEntry . $MoveDelimiter;
$MoveStored = 1;
}
if ($MoveStored) {
// put new move data back in database
$sql = "UPDATE MWMoves SET MoveData=ENCODE('".addslashes($NewMoveData)."','".$_SERVER['PHP_AUTH_PW']."') WHERE TeamName='$DefTeam'";
$result = mysql_query($sql, $db);
if ($result != 1) {
echo "Save data failed. Wrote $result rows.<br>";
echo "query was $sql<p>";
} else {
echo "<br>Saved ".$_POST["BankOrEdit"]."ed Capture<p>";
if ($_POST["BankOrEdit"]=="Bank") {
foreach ($Deflts["Email"] as $MailTo) {
if (strlen($MailTo)>0) {
mail($MailTo,"MW MoveDB notification", $DefPlayer." banked a move: ".FindSquare($DefPlayer, $_POST["LatMin"], $_POST["LonMin"]), "From: MWMB <mwmb@fourthlake.com>");
echo "Move notification sent to $MailTo<br>";
}
}
}
$MoveData = $NewMoveData;
}
} // if $MoveStored
} // Record Capture
if ($_POST["UpdateDefaults"]) {
if ($PlayerData) {
$PlayerList = explode("\n",$PlayerData);
}
$ThisPlayerData = $DefPlayer."|".$_POST["LatOffD"]."|".$_POST["LonOffD"]."|".$_POST["LatHemD"]."|".$_POST["LonHemD"]."|".$_POST["LatDegD"]."|".$_POST["LonDegD"]."|".$_POST["PlayerEmail"]."|".$_POST["LatMinD"]."|".$_POST["LonMinD"];
// write the file over again, with this player first, omitting previous entry for this player
$NewPlayerData = "$ThisPlayerData\n";
for ($i=0; $i<count($PlayerList)-1; $i++) {
$PlayerFields = explode("|",$PlayerList[$i]);
if ($PlayerFields[0] != $DefPlayer) {
$NewPlayerData .= "$PlayerList[$i]\n";
}
}
// put new player data into database
$sql = "UPDATE MWMoves SET PlayerData='$NewPlayerData' WHERE TeamName='$DefTeam'";
$result = mysql_query($sql, $db);
if ($result != 1) {
echo "Save data failed. Wrote $result rows.<br>";
echo "query was $sql<p>";
} else {
// update locally stored version
$Deflts["LatOff"][$DefPlayer] = $_POST["LatOffD"];
$Deflts["LonOff"][$DefPlayer] = $_POST["LonOffD"];
$Deflts["LatHem"][$DefPlayer] = $_POST["LatHemD"];
$Deflts["LonHem"][$DefPlayer] = $_POST["LonHemD"];
$Deflts["LatDeg"][$DefPlayer] = $_POST["LatDegD"];
$Deflts["LonDeg"][$DefPlayer] = $_POST["LonDegD"];
$Deflts["Email"][$DefPlayer] = $_POST["PlayerEmail"];
$Deflts["LatMin"][$DefPlayer] = $_POST["LatMinD"];
$Deflts["LonMin"][$DefPlayer] = $_POST["LonMinD"];
echo "<br>Updated defaults for $DefPlayer<p>";
$PlayerData = $NewPlayerData;
}
} // If UpdateDefaults
//
// DRAW BOARD
//
//
echo "<hr><a name=\"Board\"></a>";
include $DrawType.".php";
//
// END DRAW BOARD
//
//
?>
<hr>
<a name="Bank"></a>
<table><tr><td>
<FORM METHOD=POST ACTION="addmove.php?T=<?php echo $DefTeam;?>&P=<?php echo $DefPlayer;?>">
<H3>Bank a Move</H3>
Square you visited: <INPUT NAME=Square TYPE=text Size=5>e.g. 3x36
<br>Comment <INPUT Name=ShortComment Type=text Size=15>
<br><INPUT TYPE=submit NAME=RecordCapture1 value="Enter Banked Move...">
</FORM>
</td>
<td width=50% bgcolor="#6699cc">
<p align="left"><font color="#FFFFFF" face="Verdana" size="2">
Use this section to enter the info for a flag you have visited but not yet reported.
Clicking the button will take you to another screen where you can, if you want, enter
the capture description to be saved for later use.
</font>
</td></tr>
</table>
<FORM METHOD=POST ACTION="movedb.php?T=<?php echo $DefTeam;?>&P=<?php echo $DefPlayer;?>">
<p>
<hr>
<a name="Defaults"></a>
<table><tr><td>
<H3>Set/Update Personal Defaults</H3>
Offset: Lat <INPUT NAME="LatOffD" TYPE=text Size=4 Value=<?php echo $Deflts["LatOff"][$DefPlayer]; ?>>
Lon <INPUT NAME="LonOffD" TYPE=text Size=4 Value=<?php echo $Deflts["LonOff"][$DefPlayer]; ?>>
<br>Latitude: Hem
<SELECT NAME="LatHemD">
<OPTION VALUE="N" <?php if ($Deflts["LatHem"][$DefPlayer]=="N") { echo "SELECTED"; } ?>>N
<OPTION VALUE="S" <?php if ($Deflts["LatHem"][$DefPlayer]=="S") { echo "SELECTED"; } ?>>S
</SELECT>
Deg <INPUT NAME="LatDegD" TYPE=text Size="5" VALUE="<?php echo $Deflts["LatDeg"][$DefPlayer]; ?>">
Min <INPUT NAME="LatMinD" TYPE=text Size="5" VALUE="<?php echo $Deflts["LatMin"][$DefPlayer]; ?>">
<br>Longitude: Hem
<SELECT NAME="LonHemD">
<OPTION VALUE="W" <?php if ($Deflts["LonHem"][$DefPlayer]=="W") { echo "SELECTED"; } ?>>W
<OPTION VALUE="E" <?php if ($Deflts["LonHem"][$DefPlayer]=="E") { echo "SELECTED"; } ?>>E
</SELECT>
Deg <INPUT NAME="LonDegD" TYPE=text Size="5" VALUE="<?php echo $Deflts["LonDeg"][$DefPlayer]; ?>">
Min <INPUT NAME="LonMinD" TYPE=text Size="5" VALUE="<?php echo $Deflts["LonMin"][$DefPlayer]; ?>">
<br>Email <INPUT NAME="PlayerEmail" TYPE=text Size="15" VALUE="<?php echo $Deflts["Email"][$DefPlayer]; ?>">(for notification)
<br><INPUT TYPE=submit NAME=UpdateDefaults value="Update Personal Defaults">
</td>
<td width=50% bgcolor="#6699cc">
<p align="left"><font color="#FFFFFF" face="Verdana" size="2">
Use this section to set or change your personal defaults - offset and home degrees and minutes.
When you enter a flag capture the appropriate coords closest to your home location will be offered.<br>
If you change your offset, any flags you have entered in the db will move accordingly.<br>
If you enter an email address (not required) you will be notified when someone adds a move to the db.
</font>
</td></tr>
</table>
<p><hr>
<a name="List"></a>
<table><tr><td>
<H3>Currently Banked Moves</H3>
<?php
//now dump the file contents
if ($MoveData) {
$MoveList = explode($MoveDelimiter,$MoveData);
echo count($MoveList)-1," moves banked<br>";
echo "<table border=1>";
echo "<TR><TH> </TH><TH>Player</TH><TH>Square</TH><TH>Comment</TH><TH colspan=2>Capture Actions</TH></TR>";
for ($j=0; $j<count($MoveList)-1; $j++) {
$MovePieces = explode("|",$MoveList[$j]);
echo "<TR>";
$MoveHash = md5($MoveList[$j]);
$DelName = $j . "," . $MoveHash;
echo "<TD><Input type=checkbox name=$DelName></TD><TD>$MovePieces[0]</TD>";
echo "<TD>".FindSquare($MovePieces[0], $MovePieces[3], $MovePieces[7])."</TD>";
echo "<TD>$MovePieces[9]</TD>";
if ($MovePieces[0] == $DefPlayer) {
echo "<TD><a href=\"addmove.php?Id=$j&H=$MoveHash&T=$DefTeam&P=$DefPlayer\">Edit...</a></TD>";
echo "<TD><a href=\"postmove.php?Id=$j&H=$MoveHash&T=$DefTeam&P=$DefPlayer\">Report...</a></TD>";
}
echo "</TR>";
}
echo "</table>";
echo "<Input Type=Submit Name=Delete Value=\"Delete Checked\">";
} else {
echo "No moves are banked<p>";
}
?>
</FORM>
</td>
<td width=50% bgcolor="#6699cc">
<p align="left"><font color="#FFFFFF" face="Verdana" size="2">
This is where your team's moves are listed. It is actually more convenient to look
at them on the board (see above). Click on the "Report Capture" link to go to a screen
where you can check your data and then post your capture report to the MinuteWar game
engine. This feature works best if you have previously entered all the necessary data.
</font>
</td></tr>
</table>
<!--
<hr>
<table><tr><td>
<H3>
<a href="draw.php?T=<?php echo $DefTeam; ?>&P=<?php echo $DefPlayer; ?>">Draw the board showing these banked moves</a>
</H3>
</td>
<td width=50% bgcolor="#6699cc">
<p align="left"><font color="#FFFFFF" face="Verdana" size="2">
Click on this link to see the board with your team's banked moves displayed on it.
</font>
</td></tr>
</table>visibility:hidden;
-->
<hr>
<FORM METHOD=post ACTION="<?php echo $GameEngineURL; ?>">
| <a href="movedb.php?T=<?php echo $DefTeam;?>&P=<?php echo $DefPlayer;?>">Refresh</a> | <a href="#Board">Board</a> | <a href="#Bank">Bank a Move</a> | <a href="#Defaults">Set Defaults</a> | <a href="#List">Banked Move List</a> |
<a href="javascript: document.MWForm.scoreboard.click();">MW Scoreboard</a> |
<a href="javascript: document.MWForm.db_search.click();">MW Recent Moves</a>
<input type="submit" name="scoreboard" value="Scoreboard" style="visibility:hidden; font-size: 0">
<input type="submit" name="db_search" value="Recent Moves" style="visibility:hidden; font-size: 0">
<input type="hidden" name="SqLatH" value=<?php echo $Deflts["LatHem"][$DefPlayer];?>></center>
<input type="hidden" name="SqLonH" value=<?php echo $Deflts["LonHem"][$DefPlayer];?>></center>
<input type="hidden" name="SqLat" value=<?php echo $Deflts["LatDeg"][$DefPlayer];?>></center>
<input type="hidden" name="SqLon" value=<?php echo $Deflts["LonDeg"][$DefPlayer];?>></center>
<input type="hidden" name="show_map" value=>
<input type="hidden" name="search_for" value="">
<input type="hidden" name="search_field" value="all">
<input type="hidden" name="sort_on" value="0">
<input type="hidden" name="display" value="with">
</FORM>
</body>
</html>