55 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace ManiaControl\Callbacks\Structures\Common;
 | |
| 
 | |
| 
 | |
| use ManiaControl\ManiaControl;
 | |
| 
 | |
| /**
 | |
|  * Structure Class for the StatusCallback Structure Callback
 | |
|  *
 | |
|  * @api
 | |
|  * @author    ManiaControl Team <mail@maniacontrol.com>
 | |
|  * @copyright 2014-2019 ManiaControl Team
 | |
|  * @license   http://www.gnu.org/licenses/ GNU General Public License, Version 3
 | |
|  */
 | |
| class StatusCallbackStructure extends BaseResponseStructure {
 | |
| 	protected $active;
 | |
| 	protected $available;
 | |
| 
 | |
| 	/**
 | |
| 	 * Construct a new On Hit Structure
 | |
| 	 *
 | |
| 	 * @param ManiaControl $maniaControl
 | |
| 	 * @param array        $data
 | |
| 	 */
 | |
| 	public function __construct(ManiaControl $maniaControl, $data) {
 | |
| 		parent::__construct($maniaControl, $data);
 | |
| 
 | |
| 		$this->active    = $this->getPlainJsonObject()->active;
 | |
| 		if(property_exists($this->getPlainJsonObject(), "available")){
 | |
| 			$this->available = $this->getPlainJsonObject()->available;
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * True if the Status (Like Combo Pause or Warmup) is Ongoing
 | |
| 	 *
 | |
| 	 * @api
 | |
| 	 * @return boolean
 | |
| 	 */
 | |
| 	public function getActive() {
 | |
| 		return $this->active;
 | |
| 	}
 | |
| 
 | |
| 	/**
 | |
| 	 * Checks if the Mode uses Warmup or not
 | |
| 	 *
 | |
| 	 * @api
 | |
| 	 * @return boolean
 | |
| 	 */
 | |
| 	public function isAvailable() {
 | |
| 		return $this->available;
 | |
| 	}
 | |
| 
 | |
| } |