not working ui property manager update start
This commit is contained in:
parent
25089d97e8
commit
a77b901f78
@ -55,4 +55,13 @@ class UIPropertiesBaseStructure extends BaseResponseStructure {
|
|||||||
public function getUiPropertiesObject() {
|
public function getUiPropertiesObject() {
|
||||||
return json_decode($this->uiPropertiesJson);
|
return json_decode($this->uiPropertiesJson);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the UI Properties as JSON Decoded Array
|
||||||
|
*
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
public function getUiPropertiesArray() {
|
||||||
|
return json_decode($this->uiPropertiesJson, true);
|
||||||
|
}
|
||||||
}
|
}
|
@ -4,6 +4,8 @@ namespace ManiaControl\Manialinks;
|
|||||||
|
|
||||||
use FML\CustomUI;
|
use FML\CustomUI;
|
||||||
use ManiaControl\Callbacks\CallbackListener;
|
use ManiaControl\Callbacks\CallbackListener;
|
||||||
|
use ManiaControl\Callbacks\Callbacks;
|
||||||
|
use ManiaControl\Callbacks\Structures\Common\UIPropertiesBaseStructure;
|
||||||
use ManiaControl\Callbacks\TimerListener;
|
use ManiaControl\Callbacks\TimerListener;
|
||||||
use ManiaControl\General\UsageInformationAble;
|
use ManiaControl\General\UsageInformationAble;
|
||||||
use ManiaControl\General\UsageInformationTrait;
|
use ManiaControl\General\UsageInformationTrait;
|
||||||
@ -35,6 +37,13 @@ class CustomUIManager implements CallbackListener, TimerListener, UsageInformati
|
|||||||
private $customUI = null;
|
private $customUI = null;
|
||||||
private $updateManialink = false;
|
private $updateManialink = false;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ShootMania UI Properties
|
||||||
|
*
|
||||||
|
* @var \ManiaControl\Callbacks\Structures\Common\UIPropertiesBaseStructure
|
||||||
|
*/
|
||||||
|
private $shootManiaUIProperties;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a custom UI manager instance
|
* Create a custom UI manager instance
|
||||||
*
|
*
|
||||||
@ -47,6 +56,36 @@ class CustomUIManager implements CallbackListener, TimerListener, UsageInformati
|
|||||||
// Callbacks
|
// Callbacks
|
||||||
$this->maniaControl->getCallbackManager()->registerCallbackListener(PlayerManager::CB_PLAYERCONNECT, $this, 'handlePlayerJoined');
|
$this->maniaControl->getCallbackManager()->registerCallbackListener(PlayerManager::CB_PLAYERCONNECT, $this, 'handlePlayerJoined');
|
||||||
$this->maniaControl->getTimerManager()->registerTimerListening($this, 'handle1Second', 1000);
|
$this->maniaControl->getTimerManager()->registerTimerListening($this, 'handle1Second', 1000);
|
||||||
|
|
||||||
|
|
||||||
|
//Initilize on Init the Properties
|
||||||
|
$this->maniaControl->getCallbackManager()->registerCallbackListener(Callbacks::AFTERINIT, $this, function () {
|
||||||
|
$this->maniaControl->getModeScriptEventManager()->getShootmaniaUIProperties();
|
||||||
|
});
|
||||||
|
|
||||||
|
//Update the Structure if its Changed
|
||||||
|
$this->maniaControl->getCallbackManager()->registerCallbackListener(Callbacks::SM_UIPROPERTIES, $this, function (UIPropertiesBaseStructure $structure) {
|
||||||
|
$this->shootManiaUIProperties = $structure;
|
||||||
|
|
||||||
|
//var_dump("UI_PROP");
|
||||||
|
//var_dump($structure->getUiPropertiesXML());
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Enable the Notices
|
||||||
|
*/
|
||||||
|
public function enableNotices() { //TODO what happens if you set severall at once, than you propably mistakly use the old JSON, so there is the need to update internal json
|
||||||
|
$xml = str_replace("<notices visible=\"false\" />", "<notices visible=\"true\" />", $this->shootManiaUIProperties->getUiPropertiesXML());
|
||||||
|
$this->maniaControl->getModeScriptEventManager()->setShootmaniaUIProperties($xml);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Disables the Notices
|
||||||
|
*/
|
||||||
|
public function disableNotices() {
|
||||||
|
$xml = str_replace("<notices visible=\"true\" />", "<notices visible=\"false\" />", $this->shootManiaUIProperties->getUiPropertiesXML());
|
||||||
|
$this->maniaControl->getModeScriptEventManager()->setShootmaniaUIProperties($xml);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -98,6 +137,8 @@ class CustomUIManager implements CallbackListener, TimerListener, UsageInformati
|
|||||||
/**
|
/**
|
||||||
* Set Showing of Notices
|
* Set Showing of Notices
|
||||||
*
|
*
|
||||||
|
* @see \ManiaControl\Manialinks\CustomUIManager::enableNotices()
|
||||||
|
* @deprecated
|
||||||
* @param bool $visible
|
* @param bool $visible
|
||||||
*/
|
*/
|
||||||
public function setNoticeVisible($visible) {
|
public function setNoticeVisible($visible) {
|
||||||
@ -174,4 +215,13 @@ class CustomUIManager implements CallbackListener, TimerListener, UsageInformati
|
|||||||
$this->customUI->setGlobalVisible($visible);
|
$this->customUI->setGlobalVisible($visible);
|
||||||
$this->updateManialink = true;
|
$this->updateManialink = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the Shootmania UI Properties
|
||||||
|
*
|
||||||
|
* @return \ManiaControl\Callbacks\Structures\Common\UIPropertiesBaseStructure
|
||||||
|
*/
|
||||||
|
public function getShootManiaUIProperties() {
|
||||||
|
return $this->shootManiaUIProperties;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -372,9 +372,11 @@ class ModeScriptEventManager implements UsageInformationAble {
|
|||||||
*
|
*
|
||||||
* @api
|
* @api
|
||||||
* @param string Json-Encoded Xml UI Property String
|
* @param string Json-Encoded Xml UI Property String
|
||||||
|
* @return \ManiaControl\Script\InvokeScriptCallback You can directly set a callable on it via setCallable() to get the updated Properties
|
||||||
*/
|
*/
|
||||||
public function setShootmaniaUIProperties($properties) {
|
public function setShootmaniaUIProperties($properties) {
|
||||||
$this->maniaControl->getClient()->triggerModeScriptEvent('Shootmania.UI.SetProperties', array($properties));
|
$this->maniaControl->getClient()->triggerModeScriptEvent('Shootmania.UI.SetProperties', array($properties));
|
||||||
|
return $this->getShootmaniaUIProperties();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -428,9 +430,11 @@ class ModeScriptEventManager implements UsageInformationAble {
|
|||||||
*
|
*
|
||||||
* @api
|
* @api
|
||||||
* @param string Json-Encoded Xml UI Property String
|
* @param string Json-Encoded Xml UI Property String
|
||||||
|
* @return \ManiaControl\Script\InvokeScriptCallback You can directly set a callable on it via setCallable() to get the updated Properties
|
||||||
*/
|
*/
|
||||||
public function setTrackmaniaUIProperties($properties) {
|
public function setTrackmaniaUIProperties($properties) {
|
||||||
$this->maniaControl->getClient()->triggerModeScriptEvent('Trackmania.UI.GetProperties', array($properties));
|
$this->maniaControl->getClient()->triggerModeScriptEvent('Trackmania.UI.GetProperties', array($properties));
|
||||||
|
return $this->getTrackmaniaUIProperties();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
38
phpunittests/core/Manialinks/CustomUIManagerTest.php
Normal file
38
phpunittests/core/Manialinks/CustomUIManagerTest.php
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use ManiaControl\ManiaControl;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* PHP Unit Test for Custom UI Manager
|
||||||
|
*
|
||||||
|
* @author ManiaControl Team <mail@maniacontrol.com>
|
||||||
|
* @copyright 2014-2017 ManiaControl Team
|
||||||
|
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
||||||
|
*/
|
||||||
|
class CustomUIManagerTest extends PHPUnit_Framework_TestCase {
|
||||||
|
public function testUiProperties() { //Not Working Yet
|
||||||
|
$maniaControl = new ManiaControl();
|
||||||
|
$maniaControl->connect();
|
||||||
|
|
||||||
|
$customUiManager = $maniaControl->getManialinkManager()->getCustomUIManager();
|
||||||
|
$maniaControl->run(3);
|
||||||
|
|
||||||
|
//Connect Again and Disable Notices
|
||||||
|
$maniaControl->connect();
|
||||||
|
$customUiManager->disableNotices();
|
||||||
|
|
||||||
|
$maniaControl->run(3);
|
||||||
|
|
||||||
|
$this->assertFalse($customUiManager->getShootManiaUIProperties()->getUiPropertiesObject()->notices->visible);
|
||||||
|
|
||||||
|
//Connect Again and Disable Notices
|
||||||
|
$maniaControl->connect();
|
||||||
|
$customUiManager->enableNotices();
|
||||||
|
|
||||||
|
$maniaControl->run(3);
|
||||||
|
|
||||||
|
var_dump($customUiManager->getShootManiaUIProperties()->getUiPropertiesObject()->notices);
|
||||||
|
$this->assertTrue($customUiManager->getShootManiaUIProperties()->getUiPropertiesObject()->notices->visible);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user