Jump to content
  • 0

прогулка по карте


crautcher
 Share

Question

будет большая картинка карты , мне надо её разделить на 1000 (100x100)условных секторов , чтоб я какбы ходить по ней мог , а в низу будет в зависимости от сектора менятся контент . вот типо клас прогулки :

class world 
{
private $maxX , $maxY;
public $gps = array();

function __construct()
{
$this -> gps ['x'] = false;
$this -> gps ['y'] = false;
$this -> maxX = 100;
$this -> maxY = 100;
}

public function SetLocation($x,$y)
{
if ($x > $this->maxX )
$x = $this->maxX;
elseif ($x < 0)
$x = 0;

if ($y > $this->maxY )
$y = $this->maxY;
elseif ($y < 0 )
$y = 0;

$this -> gps ['x'] = (int)$x;
$this -> gps ['y'] = (int)$y;
}

function GetDirection()
{
if ($this->gps ['x'] === false || $this->gps ['y'] === false)
return false;
$data = '';
if ($this->gps ['y'] < $this->maxY)
$data .= '{up}';
if ($this->gps ['y'] > 0)
$data .= '{down}';
if ($this->gps ['x'] < $this -> maxX)
$data .= '{right}';
if ($this->gps ['x'] > 0)
$data .= '{left}';
return $data;
}

function GoUp()
{
if ($this -> gps ['y'] < $this->maxY )
++$this -> gps ['y'] ;
}

function GoDown()
{
if ($this -> gps ['y'] > 0 )
--$this -> gps ['y'] ;
}

function GoRight()
{
if ($this -> gps ['x'] < $this->maxX )
++$this -> gps ['x'] ;
}

function GoLeft()
{
if ($this -> gps ['x'] > 0 )
--$this -> gps ['x'] ;
}

}

тип задаём сектор на котором находимся , получаем набор спец тегов вроде {down} которые потом заменяются на линки перехода на другой сектор , и координаты меняются . меня интересует часть работы с самой картинкой , как можно реализовать разбивание на части ?

Edited by crautcher
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Либо генерите сетку из <map><area /></map> , что в общем-то быстро

либо нарезайте по кускам то что есть imagecopy(), что намного медленней, но не менее любопытно.

да я пока ждал , подумал и решил нарезать карту на штуку мелких подкарт (макросом в проге) и теперь:


function MakeMap()
{
$this->map = array();
for ( $i = -5; $i< ($this->maxX + 6) ;$i++)
for ($j= -5;$j< ($this->maxY + 6) ;$j++)
{
$this->map[$i][$j] = '<img src="img/map/map_part".$i.$j.".jpg" width=10px height=10px>';
}
}

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy