TrackManiaControl/core/Server/ScriptManager.php

69 lines
1.6 KiB
PHP
Raw Normal View History

<?php
namespace ManiaControl\Server;
use ManiaControl\Logger;
use ManiaControl\ManiaControl;
/**
* Manager for Game Mode Script related Stuff
*
* @author ManiaControl Team <mail@maniacontrol.com>
* @copyright 2014 ManiaControl Team
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
*/
class ScriptManager {
/*
* Private properties
*/
/** @var ManiaControl $maniaControl */
private $maniaControl = null;
2014-05-11 14:41:14 +02:00
private $isScriptMode = null;
/**
* Construct a new script manager instance
*
* @param ManiaControl $maniaControl
*/
public function __construct(ManiaControl $maniaControl) {
$this->maniaControl = $maniaControl;
}
/**
* Enable script callbacks
*
* @param bool $enable
* @return bool
*/
public function enableScriptCallbacks($enable = true) {
2014-05-11 14:41:14 +02:00
if (!$this->isScriptMode()) {
return false;
}
2014-08-13 11:05:52 +02:00
$scriptSettings = $this->maniaControl->getClient()->getModeScriptSettings();
if (!array_key_exists('S_UseScriptCallbacks', $scriptSettings)) {
return false;
}
$scriptSettings['S_UseScriptCallbacks'] = (bool)$enable;
2014-05-09 17:30:31 +02:00
$actionName = ($enable ? 'en' : 'dis');
2014-08-13 11:05:52 +02:00
$this->maniaControl->getClient()->setModeScriptSettings($scriptSettings);
Logger::logInfo("Script Callbacks successfully {$actionName}abled!");
2014-05-09 17:30:31 +02:00
return true;
}
2014-05-11 14:41:14 +02:00
/**
* Check whether the Server is running in Script Mode
2014-05-11 14:41:14 +02:00
*
* @return bool
*/
public function isScriptMode() {
2014-06-22 18:37:56 +02:00
if (is_null($this->isScriptMode)) {
2014-08-13 11:05:52 +02:00
$gameMode = $this->maniaControl->getClient()->getGameMode();
2014-05-11 14:41:14 +02:00
$this->isScriptMode = ($gameMode === 0);
}
return $this->isScriptMode;
}
}