mirror of
https://github.com/Newnetirc/idlerpg-web.git
synced 2026-03-10 07:50:18 +00:00
first commit
This commit is contained in:
26
makeworldmap.php
Normal file
26
makeworldmap.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
include("config.php");
|
||||
$file = fopen($irpg_db,"r");
|
||||
fgets($file);
|
||||
|
||||
session_start(); // sessions to generate only one map / person / 20s
|
||||
if (isset($_SESSION['time']) && time()-$_SESSION['time'] < 20) {
|
||||
header("Location: maperror.png");
|
||||
exit(0);
|
||||
}
|
||||
$_SESSION['time']=time();
|
||||
|
||||
$map = imageCreate(500,500);
|
||||
$magenta = ImageColorAllocate($map, 255, 0, 255);
|
||||
$blue = imageColorAllocate($map, 0, 128, 255);
|
||||
$red = imageColorAllocate($map, 211, 0, 0);
|
||||
ImageColorTransparent($map, $magenta);
|
||||
while ($line=fgets($file)) {
|
||||
list(,,,,,,,,$online,,$x,$y) = explode("\t",trim($line));
|
||||
if ($online == 1) imageFilledEllipse($map, $x, $y, 6, 6, $blue); // Increased size to 6x6
|
||||
else imageFilledEllipse($map, $x, $y, 6, 6, $red); // Increased size to 6x6
|
||||
}
|
||||
header("Content-type: image/png");
|
||||
imagePNG($map);
|
||||
imageDestroy($map);
|
||||
?>
|
||||
Reference in New Issue
Block a user