setting manager improvements
This commit is contained in:
parent
83cb3c9f1f
commit
aabd84c48f
@ -74,6 +74,21 @@ class ActionsMenu implements CallbackListener, ManialinkPageAnswerListener {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Removes a Menu Item
|
||||||
|
*
|
||||||
|
* @param $order
|
||||||
|
* @param bool $playerAction
|
||||||
|
*/
|
||||||
|
public function removeMenuItem($order, $playerAction = true) {
|
||||||
|
if($playerAction) {
|
||||||
|
unset($this->playerMenuItems[$order]);
|
||||||
|
} else {
|
||||||
|
unset($this->adminMenuItems[$order]);
|
||||||
|
}
|
||||||
|
$this->rebuildAndShowMenu();
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add a new Player Menu Item
|
* Add a new Player Menu Item
|
||||||
*
|
*
|
||||||
|
@ -294,7 +294,6 @@ class ManiaControlSettings implements ConfiguratorMenu, CallbackListener {
|
|||||||
} else {
|
} else {
|
||||||
$this->maniaControl->settingManager->updateSetting($oldSetting->class, $oldSetting->setting, "1");
|
$this->maniaControl->settingManager->updateSetting($oldSetting->class, $oldSetting->setting, "1");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -3,10 +3,12 @@
|
|||||||
namespace ManiaControl\Plugins;
|
namespace ManiaControl\Plugins;
|
||||||
|
|
||||||
use FML\Controls\Control;
|
use FML\Controls\Control;
|
||||||
|
use FML\Controls\Entry;
|
||||||
use FML\Controls\Frame;
|
use FML\Controls\Frame;
|
||||||
use FML\Controls\Label;
|
use FML\Controls\Label;
|
||||||
use FML\Controls\Labels\Label_Button;
|
use FML\Controls\Labels\Label_Button;
|
||||||
use FML\Controls\Labels\Label_Text;
|
use FML\Controls\Labels\Label_Text;
|
||||||
|
use FML\Controls\Quads\Quad_Icons128x32_1;
|
||||||
use FML\Controls\Quads\Quad_Icons64x64_1;
|
use FML\Controls\Quads\Quad_Icons64x64_1;
|
||||||
use FML\Script\Pages;
|
use FML\Script\Pages;
|
||||||
use FML\Script\Script;
|
use FML\Script\Script;
|
||||||
@ -29,11 +31,14 @@ class PluginMenu implements CallbackListener, ConfiguratorMenu {
|
|||||||
*/
|
*/
|
||||||
const ACTION_PREFIX_ENABLEPLUGIN = 'PluginMenu.Enable.';
|
const ACTION_PREFIX_ENABLEPLUGIN = 'PluginMenu.Enable.';
|
||||||
const ACTION_PREFIX_DISABLEPLUGIN = 'PluginMenu.Disable.';
|
const ACTION_PREFIX_DISABLEPLUGIN = 'PluginMenu.Disable.';
|
||||||
|
const ACTION_PREFIX_SETTINGS = 'PluginMenu.Settings.';
|
||||||
|
const ACTION_PREFIX_SETTING = 'PluginMenuSetting';
|
||||||
|
const ACTION_SETTING_BOOL = 'PluginMenuActionBoolSetting.';
|
||||||
/**
|
/**
|
||||||
* Private properties
|
* Private properties
|
||||||
*/
|
*/
|
||||||
private $maniaControl = null;
|
private $maniaControl = null;
|
||||||
|
private $settingsClass = '';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new plugin menu instance
|
* Create a new plugin menu instance
|
||||||
@ -95,6 +100,120 @@ class PluginMenu implements CallbackListener, ConfiguratorMenu {
|
|||||||
|
|
||||||
$script->addPageLabel($pageCountLabel, $pagesId);
|
$script->addPageLabel($pageCountLabel, $pagesId);
|
||||||
|
|
||||||
|
|
||||||
|
//Show Settings Menu
|
||||||
|
if($this->settingsClass != '') {
|
||||||
|
/** @var ManiaControl/SettingManager $this->maniaControl->settingManager */
|
||||||
|
$settings = $this->maniaControl->settingManager->getSettingsByClass($this->settingsClass);
|
||||||
|
$pageFrames = array();
|
||||||
|
$y = 0;
|
||||||
|
$index = 1;
|
||||||
|
$settingHeight = 5.;
|
||||||
|
foreach($settings as $id => $setting) {
|
||||||
|
if(!isset($pageFrame)) {
|
||||||
|
$pageFrame = new Frame();
|
||||||
|
$frame->add($pageFrame);
|
||||||
|
if(!empty($pageFrames)) {
|
||||||
|
$pageFrame->setVisible(false);
|
||||||
|
}
|
||||||
|
array_push($pageFrames, $pageFrame);
|
||||||
|
$y = $height * 0.41;
|
||||||
|
$script->addPage($pageFrame, count($pageFrames), $pagesId);
|
||||||
|
}
|
||||||
|
|
||||||
|
$settingFrame = new Frame();
|
||||||
|
$pageFrame->add($settingFrame);
|
||||||
|
$settingFrame->setY($y);
|
||||||
|
|
||||||
|
if($index == 1) {
|
||||||
|
//Headline Label
|
||||||
|
$headLabel = new Label_Text();
|
||||||
|
$settingFrame->add($headLabel);
|
||||||
|
$headLabel->setHAlign(Control::LEFT);
|
||||||
|
$headLabel->setX($width * -0.46);
|
||||||
|
$headLabel->setSize($width * 0.6, $settingHeight);
|
||||||
|
$headLabel->setStyle($headLabel::STYLE_TextCardSmall);
|
||||||
|
$headLabel->setTextSize($labelTextSize);
|
||||||
|
$headLabel->setText($setting->class);
|
||||||
|
$headLabel->setTextColor("F00");
|
||||||
|
|
||||||
|
$y -= $settingHeight;
|
||||||
|
|
||||||
|
|
||||||
|
if($index % $pageMaxCount == $pageMaxCount - 1) {
|
||||||
|
$pageFrame = new Frame();
|
||||||
|
$frame->add($pageFrame);
|
||||||
|
if(!empty($pageFrames)) {
|
||||||
|
$pageFrame->setVisible(false);
|
||||||
|
}
|
||||||
|
array_push($pageFrames, $pageFrame);
|
||||||
|
$y = $height * 0.41;
|
||||||
|
$script->addPage($pageFrame, count($pageFrames), $pagesId);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$index++;
|
||||||
|
|
||||||
|
$settingFrame = new Frame();
|
||||||
|
$pageFrame->add($settingFrame);
|
||||||
|
$settingFrame->setY($y);
|
||||||
|
//Headline Label finished
|
||||||
|
|
||||||
|
$nameLabel = new Label_Text();
|
||||||
|
$settingFrame->add($nameLabel);
|
||||||
|
$nameLabel->setHAlign(Control::LEFT);
|
||||||
|
$nameLabel->setX($width * -0.46);
|
||||||
|
$nameLabel->setSize($width * 0.6, $settingHeight);
|
||||||
|
$nameLabel->setStyle($nameLabel::STYLE_TextCardSmall);
|
||||||
|
$nameLabel->setTextSize($labelTextSize);
|
||||||
|
$nameLabel->setText($setting->setting);
|
||||||
|
$nameLabel->setTextColor("FFF");
|
||||||
|
|
||||||
|
$substyle = '';
|
||||||
|
|
||||||
|
|
||||||
|
$entry = new Entry();
|
||||||
|
$settingFrame->add($entry);
|
||||||
|
$entry->setStyle(Label_Text::STYLE_TextValueSmall);
|
||||||
|
$entry->setHAlign(Control::CENTER);
|
||||||
|
$entry->setX($width / 2 * 0.65);
|
||||||
|
$entry->setTextSize(1);
|
||||||
|
$entry->setSize($width * 0.3, $settingHeight * 0.9);
|
||||||
|
$entry->setName(self::ACTION_PREFIX_SETTING . '.' . $setting->index);
|
||||||
|
$entry->setDefault($setting->value);
|
||||||
|
|
||||||
|
|
||||||
|
if($setting->type == "bool") {
|
||||||
|
if($setting->value == "0") {
|
||||||
|
$substyle = Quad_Icons64x64_1::SUBSTYLE_LvlRed;
|
||||||
|
} else if($setting->value == "1") {
|
||||||
|
$substyle = Quad_Icons64x64_1::SUBSTYLE_LvlGreen;
|
||||||
|
}
|
||||||
|
|
||||||
|
$quad = new Quad_Icons64x64_1();
|
||||||
|
$settingFrame->add($quad);
|
||||||
|
$quad->setX($width / 2 * 0.6);
|
||||||
|
$quad->setZ(-0.01);
|
||||||
|
$quad->setSubStyle($substyle);
|
||||||
|
$quad->setSize(4, 4);
|
||||||
|
$quad->setHAlign(Control::CENTER2);
|
||||||
|
$quad->setAction(self::ACTION_SETTING_BOOL . $setting->index);
|
||||||
|
$entry->setVisible(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
$y -= $settingHeight;
|
||||||
|
if($index % $pageMaxCount == $pageMaxCount - 1) {
|
||||||
|
unset($pageFrame);
|
||||||
|
}
|
||||||
|
|
||||||
|
$index++;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->settingsClass = '';
|
||||||
|
return $frame;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// Plugin pages
|
// Plugin pages
|
||||||
$pageFrames = array();
|
$pageFrames = array();
|
||||||
$y = 0.;
|
$y = 0.;
|
||||||
@ -105,6 +224,7 @@ class PluginMenu implements CallbackListener, ConfiguratorMenu {
|
|||||||
if(!empty($pageFrames)) {
|
if(!empty($pageFrames)) {
|
||||||
$pageFrame->setVisible(false);
|
$pageFrame->setVisible(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
array_push($pageFrames, $pageFrame);
|
array_push($pageFrames, $pageFrame);
|
||||||
$script->addPage($pageFrame, count($pageFrames), $pagesId);
|
$script->addPage($pageFrame, count($pageFrames), $pagesId);
|
||||||
$y = $height * 0.41;
|
$y = $height * 0.41;
|
||||||
@ -149,6 +269,13 @@ class PluginMenu implements CallbackListener, ConfiguratorMenu {
|
|||||||
$descriptionLabel->setText($description);
|
$descriptionLabel->setText($description);
|
||||||
$script->addTooltip($nameLabel, $descriptionLabel);
|
$script->addTooltip($nameLabel, $descriptionLabel);
|
||||||
|
|
||||||
|
$quad = new Quad_Icons128x32_1();
|
||||||
|
$pluginFrame->add($quad);
|
||||||
|
$quad->setSubStyle($quad::SUBSTYLE_Settings);
|
||||||
|
$quad->setX(15);
|
||||||
|
$quad->setSize(5, 5);
|
||||||
|
$quad->setAction(self::ACTION_PREFIX_SETTINGS . $pluginClass);
|
||||||
|
|
||||||
$statusChangeButton = new Label_Button();
|
$statusChangeButton = new Label_Button();
|
||||||
$pluginFrame->add($statusChangeButton);
|
$pluginFrame->add($statusChangeButton);
|
||||||
$statusChangeButton->setHAlign(Control::RIGHT);
|
$statusChangeButton->setHAlign(Control::RIGHT);
|
||||||
@ -178,6 +305,29 @@ class PluginMenu implements CallbackListener, ConfiguratorMenu {
|
|||||||
* @see \ManiaControl\Configurators\ConfiguratorMenu::saveConfigData()
|
* @see \ManiaControl\Configurators\ConfiguratorMenu::saveConfigData()
|
||||||
*/
|
*/
|
||||||
public function saveConfigData(array $configData, Player $player) {
|
public function saveConfigData(array $configData, Player $player) {
|
||||||
|
$prefix = explode(".", $configData[3][0]['Name']);
|
||||||
|
if($prefix[0] != self::ACTION_PREFIX_SETTING) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$maniaControlSettings = $this->maniaControl->settingManager->getSettings();
|
||||||
|
|
||||||
|
$prefixLength = strlen(self::ACTION_PREFIX_SETTING);
|
||||||
|
|
||||||
|
foreach($configData[3] as $setting) {
|
||||||
|
$settingName = substr($setting['Name'], $prefixLength + 1);
|
||||||
|
|
||||||
|
$oldSetting = $maniaControlSettings[$settingName];
|
||||||
|
if($setting['Value'] == $oldSetting->value || $oldSetting->type == 'bool') {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->maniaControl->settingManager->updateSetting($oldSetting->class, $oldSetting->setting, $setting['Value']);
|
||||||
|
}
|
||||||
|
|
||||||
|
//Reopen the Menu
|
||||||
|
$menuId = $this->maniaControl->configurator->getMenuId($this->getTitle());
|
||||||
|
$this->maniaControl->configurator->reopenMenu($menuId);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -186,10 +336,13 @@ class PluginMenu implements CallbackListener, ConfiguratorMenu {
|
|||||||
* @param array $callback
|
* @param array $callback
|
||||||
*/
|
*/
|
||||||
public function handleManialinkPageAnswer(array $callback) {
|
public function handleManialinkPageAnswer(array $callback) {
|
||||||
$actionId = $callback[1][2];
|
$actionId = $callback[1][2];
|
||||||
$enable = (strpos($actionId, self::ACTION_PREFIX_ENABLEPLUGIN) === 0);
|
$enable = (strpos($actionId, self::ACTION_PREFIX_ENABLEPLUGIN) === 0);
|
||||||
$disable = (strpos($actionId, self::ACTION_PREFIX_DISABLEPLUGIN) === 0);
|
$disable = (strpos($actionId, self::ACTION_PREFIX_DISABLEPLUGIN) === 0);
|
||||||
if(!$enable && !$disable) {
|
$settings = (strpos($actionId, self::ACTION_PREFIX_SETTINGS) === 0);
|
||||||
|
$boolSetting = (strpos($actionId, self::ACTION_SETTING_BOOL) === 0);
|
||||||
|
|
||||||
|
if(!$enable && !$disable && !$settings && !$boolSetting) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
$login = $callback[1][1];
|
$login = $callback[1][1];
|
||||||
@ -207,7 +360,7 @@ class PluginMenu implements CallbackListener, ConfiguratorMenu {
|
|||||||
} else {
|
} else {
|
||||||
$this->maniaControl->chat->sendError('Error activating ' . $pluginClass::getName() . '!', $player->login);
|
$this->maniaControl->chat->sendError('Error activating ' . $pluginClass::getName() . '!', $player->login);
|
||||||
}
|
}
|
||||||
} else {
|
} else if($disable) {
|
||||||
$pluginClass = substr($actionId, strlen(self::ACTION_PREFIX_DISABLEPLUGIN));
|
$pluginClass = substr($actionId, strlen(self::ACTION_PREFIX_DISABLEPLUGIN));
|
||||||
$deactivated = $this->maniaControl->pluginManager->deactivatePlugin($pluginClass);
|
$deactivated = $this->maniaControl->pluginManager->deactivatePlugin($pluginClass);
|
||||||
if($deactivated) {
|
if($deactivated) {
|
||||||
@ -217,10 +370,47 @@ class PluginMenu implements CallbackListener, ConfiguratorMenu {
|
|||||||
} else {
|
} else {
|
||||||
$this->maniaControl->chat->sendError('Error deactivating ' . $pluginClass::getName() . '!', $player->login);
|
$this->maniaControl->chat->sendError('Error deactivating ' . $pluginClass::getName() . '!', $player->login);
|
||||||
}
|
}
|
||||||
|
} else if($settings) { //Open Settings Menu
|
||||||
|
$pluginClass = substr($actionId, strlen(self::ACTION_PREFIX_SETTINGS));
|
||||||
|
$this->settingsClass = $pluginClass;
|
||||||
|
} else if($boolSetting) {
|
||||||
|
|
||||||
|
$actionArray = explode(".", $actionId);
|
||||||
|
$setting = $actionArray[1];
|
||||||
|
|
||||||
|
// Toggle the Boolean Setting
|
||||||
|
$this->toggleBooleanSetting($setting, $player);
|
||||||
|
|
||||||
|
// Save all Changes
|
||||||
|
$this->saveConfigData($callback[1], $player);
|
||||||
}
|
}
|
||||||
|
|
||||||
//Reopen the Menu
|
//Reopen the Menu
|
||||||
|
|
||||||
$menuId = $this->maniaControl->configurator->getMenuId($this->getTitle());
|
$menuId = $this->maniaControl->configurator->getMenuId($this->getTitle());
|
||||||
|
|
||||||
$this->maniaControl->configurator->reopenMenu($menuId);
|
$this->maniaControl->configurator->reopenMenu($menuId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Toggles a Boolean Value
|
||||||
|
*
|
||||||
|
* @param $setting
|
||||||
|
* @param Player $player
|
||||||
|
*/
|
||||||
|
public function toggleBooleanSetting($setting, Player $player) {
|
||||||
|
$oldSetting = $this->maniaControl->settingManager->getSettingByIndex($setting);
|
||||||
|
|
||||||
|
if(!isset($oldSetting)) {
|
||||||
|
var_dump('no setting ' . $setting);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
//Toggle value
|
||||||
|
if($oldSetting->value == "1") {
|
||||||
|
$this->maniaControl->settingManager->updateSetting($oldSetting->class, $oldSetting->setting, "0");
|
||||||
|
} else {
|
||||||
|
$this->maniaControl->settingManager->updateSetting($oldSetting->class, $oldSetting->setting, "1");
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -386,6 +386,30 @@ class SettingManager {
|
|||||||
return $success;
|
return $success;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get all settings from a Defined class
|
||||||
|
*
|
||||||
|
* @param $className
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public function getSettingsByClass($className) {
|
||||||
|
$mysqli = $this->maniaControl->database->mysqli;
|
||||||
|
$query = "SELECT * FROM `" . self::TABLE_SETTINGS . "` WHERE `class`= '" . $mysqli->escape_string($className) . "'
|
||||||
|
ORDER BY `setting` ASC;";
|
||||||
|
$result = $mysqli->query($query);
|
||||||
|
if($mysqli->error) {
|
||||||
|
trigger_error($mysqli->error);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
$settings = array();
|
||||||
|
while($setting = $result->fetch_object()) {
|
||||||
|
$settings[$setting->index] = $setting;
|
||||||
|
//array_push($settings, $setting);
|
||||||
|
}
|
||||||
|
$result->free();
|
||||||
|
return $settings;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get all settings
|
* Get all settings
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user