$canvas1 = new IMooc\Canvas();
$canvas1->init();
$canvas1->addDecorator(new \IMooc\ColorDrawDecorator(‘green‘));
$canvas1->addDecorator(new \IMooc\SizeDrawDecorator(‘16px‘));
$canvas1->rect(3,6,4,12);
$canvas1->draw();
<?php
namespace IMooc;
class Canvas
{
public $data;
protected $decorators = array();
function init($width = 20, $height = 10)
{
$data = array();
for ($i = 0; $i < $height; $i++)
{
for ($j = 0; $j < $width; $j++)
{
$data[$i][$j] = ‘*‘;
}
}
$this->data = $data;
}
function addDecorator(DrawDecorator $decorator)
{
$this->decorators[] = $decorator;
}
function beforeDraw()
{
foreach ($this->decorators as $decorator)
{
$decorator->beforeDraw();
}
}
function afterDraw()
{
$decorators = array_reverse($this->decorators);
foreach ($this->decorators as $decorator)
{
$decorator->afterDraw();
}
}
function draw()
{
$this->beforeDraw();
foreach ($this->data as $line)
{
foreach ($line as $char)
{
echo $char;
}
echo "<br/>\n";
}
$this->afterDraw();
}
function rect($a1, $a2, $b1, $b2)
{
foreach ($this->data as $k1 => $line)
{
if ($k1 < $a1 or $k1 > $a2) continue;
foreach ($line as $k2 => $char)
{
if($k2 < $b1 or $k2 > $b2) continue;
$this->data[$k1][$k2] = ‘ ‘;
}
}
}
}<?php
namespace IMooc;
interface DrawDecorator
{
function beforeDraw();
function afterDraw();
}<?php
namespace IMooc;
class ColorDrawDecorator implements DrawDecorator
{
protected $color;
function __construct($color = ‘red‘)
{
$this->color = $color;
}
function beforeDraw()
{
echo "<div style=‘color:{$this->color}‘";
}
function afterDraw()
{
echo "</div>";
}
}<?php
namespace IMooc;
class SizeDrawDecorator implements DrawDecorator
{
protected $size;
function __construct($size = ‘14px‘)
{
$this->size = $size;
}
function beforeDraw()
{
echo "<div style=‘font-size:{$this->size}‘";
}
function afterDraw()
{
echo "</div>";
}
}
原文:http://www.cnblogs.com/phonecom/p/31f8ebe6aa63bbe68eff11674dc10bb9.html