118 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			118 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace FML\Controls;
 | |
| 
 | |
| use FML\Types\Playable;
 | |
| use FML\Types\Scriptable;
 | |
| 
 | |
| /**
 | |
|  * Video Control
 | |
|  * (CMlMediaPlayer)
 | |
|  *
 | |
|  * @author    steeffeen <mail@steeffeen.com>
 | |
|  * @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
 | |
|  * @license   http://www.gnu.org/licenses/ GNU General Public License, Version 3
 | |
|  */
 | |
| class Video extends Control implements Playable, Scriptable {
 | |
| 	/*
 | |
| 	 * Protected properties
 | |
| 	 */
 | |
| 	protected $tagName = 'video';
 | |
| 	protected $data = null;
 | |
| 	protected $dataId = null;
 | |
| 	protected $play = null;
 | |
| 	protected $looping = true;
 | |
| 	protected $music = null;
 | |
| 	protected $volume = 1.;
 | |
| 	protected $scriptEvents = null;
 | |
| 
 | |
| 	/**
 | |
| 	 * @see \FML\Controls\Control::getManiaScriptClass()
 | |
| 	 */
 | |
| 	public function getManiaScriptClass() {
 | |
| 		return 'CMlMediaPlayer';
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * @see \FML\Types\Playable::setData()
 | |
| 	 */
 | |
| 	public function setData($data) {
 | |
| 		$this->data = (string)$data;
 | |
| 		return $this;
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * @see \FML\Types\Playable::setDataId()
 | |
| 	 */
 | |
| 	public function setDataId($dataId) {
 | |
| 		$this->dataId = (string)$dataId;
 | |
| 		return $this;
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * @see \FML\Types\Playable::setPlay()
 | |
| 	 */
 | |
| 	public function setPlay($play) {
 | |
| 		$this->play = ($play ? 1 : 0);
 | |
| 		return $this;
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * @see \FML\Types\Playable::setLooping()
 | |
| 	 */
 | |
| 	public function setLooping($looping) {
 | |
| 		$this->looping = ($looping ? 1 : 0);
 | |
| 		return $this;
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * @see \FML\Types\Playable::setMusic()
 | |
| 	 */
 | |
| 	public function setMusic($music) {
 | |
| 		$this->music = ($music ? 1 : 0);
 | |
| 		return $this;
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * @see \FML\Types\Playable::setVolume()
 | |
| 	 */
 | |
| 	public function setVolume($volume) {
 | |
| 		$this->volume = (float)$volume;
 | |
| 		return $this;
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * @see \FML\Types\Scriptable::setScriptEvents()
 | |
| 	 */
 | |
| 	public function setScriptEvents($scriptEvents) {
 | |
| 		$this->scriptEvents = ($scriptEvents ? 1 : 0);
 | |
| 		return $this;
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * @see \FML\Types\Renderable::render()
 | |
| 	 */
 | |
| 	public function render(\DOMDocument $domDocument) {
 | |
| 		$xmlElement = parent::render($domDocument);
 | |
| 		if ($this->data) {
 | |
| 			$xmlElement->setAttribute('data', $this->data);
 | |
| 		}
 | |
| 		if ($this->play) {
 | |
| 			$xmlElement->setAttribute('play', $this->play);
 | |
| 		}
 | |
| 		if (!$this->looping) {
 | |
| 			$xmlElement->setAttribute('looping', $this->looping);
 | |
| 		}
 | |
| 		if ($this->music) {
 | |
| 			$xmlElement->setAttribute('music', $this->music);
 | |
| 		}
 | |
| 		if ($this->volume != 1.) {
 | |
| 			$xmlElement->setAttribute('volume', $this->volume);
 | |
| 		}
 | |
| 		if ($this->scriptEvents) {
 | |
| 			$xmlElement->setAttribute('scriptevents', $this->scriptEvents);
 | |
| 		}
 | |
| 		return $xmlElement;
 | |
| 	}
 | |
| }
 |