TrackManiaControl/core/Manialinks/StyleManager.php

286 lines
8.7 KiB
PHP
Raw Normal View History

<?php
namespace ManiaControl\Manialinks;
use FML\Controls\Entry;
2014-01-28 16:54:23 +01:00
use FML\Controls\Frame;
use FML\Controls\Label;
use FML\Controls\Labels\Label_Button;
2014-01-28 19:28:17 +01:00
use FML\Controls\Labels\Label_Text;
2014-01-28 16:54:23 +01:00
use FML\Controls\Quad;
2013-12-29 10:03:58 +01:00
use FML\Controls\Quads\Quad_BgRaceScore2;
use FML\Controls\Quads\Quad_Bgs1InRace;
use FML\Controls\Quads\Quad_BgsPlayerCard;
2014-01-28 16:54:23 +01:00
use FML\Controls\Quads\Quad_Icons64x64_1;
2014-04-27 16:22:12 +02:00
use FML\Script\Features\Paging;
2014-01-28 19:28:17 +01:00
use FML\Script\Script;
use ManiaControl\General\UsageInformationAble;
use ManiaControl\General\UsageInformationTrait;
use ManiaControl\ManiaControl;
/**
* Class managing default Control Styles
*
2014-05-02 17:50:30 +02:00
* @author ManiaControl Team <mail@maniacontrol.com>
2020-01-22 10:39:35 +01:00
* @copyright 2014-2020 ManiaControl Team
2014-05-02 17:50:30 +02:00
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
*/
class StyleManager implements UsageInformationAble {
use UsageInformationTrait;
2017-04-01 18:48:36 +02:00
/*
* Constants
*/
2014-01-15 22:07:09 +01:00
const SETTING_LABEL_DEFAULT_STYLE = 'Default Label Style';
const SETTING_QUAD_DEFAULT_STYLE = 'Default Quad Style';
const SETTING_QUAD_DEFAULT_SUBSTYLE = 'Default Quad SubStyle';
2013-12-29 10:03:58 +01:00
2014-01-15 22:07:09 +01:00
const SETTING_MAIN_WIDGET_DEFAULT_STYLE = 'Main Widget Default Quad Style';
2013-12-29 10:03:58 +01:00
const SETTING_MAIN_WIDGET_DEFAULT_SUBSTYLE = 'Main Widget Default Quad SubStyle';
2014-01-15 22:07:09 +01:00
const SETTING_LIST_WIDGETS_WIDTH = 'List Widgets Width';
const SETTING_LIST_WIDGETS_HEIGHT = 'List Widgets Height';
/*
* Private properties
*/
/** @var ManiaControl $maniaControl */
private $maniaControl = null;
/**
* Construct a new style manager instance
*
2014-01-15 22:07:09 +01:00
* @param ManiaControl $maniaControl
*/
public function __construct(ManiaControl $maniaControl) {
$this->maniaControl = $maniaControl;
2014-01-15 22:07:09 +01:00
// Settings
2014-08-13 11:05:52 +02:00
$this->maniaControl->getSettingManager()->initSetting($this, self::SETTING_LABEL_DEFAULT_STYLE, Label_Text::STYLE_TextTitle1);
$this->maniaControl->getSettingManager()->initSetting($this, self::SETTING_QUAD_DEFAULT_STYLE, Quad_Bgs1InRace::STYLE);
$this->maniaControl->getSettingManager()->initSetting($this, self::SETTING_QUAD_DEFAULT_SUBSTYLE, Quad_Bgs1InRace::SUBSTYLE_BgTitleShadow);
2013-12-29 10:03:58 +01:00
// Main Widget
2014-08-13 11:05:52 +02:00
$this->maniaControl->getSettingManager()->initSetting($this, self::SETTING_MAIN_WIDGET_DEFAULT_STYLE, Quad_BgRaceScore2::STYLE);
$this->maniaControl->getSettingManager()->initSetting($this, self::SETTING_MAIN_WIDGET_DEFAULT_SUBSTYLE, Quad_BgRaceScore2::SUBSTYLE_HandleSelectable);
$this->maniaControl->getSettingManager()->initSetting($this, self::SETTING_LIST_WIDGETS_WIDTH, 150.);
$this->maniaControl->getSettingManager()->initSetting($this, self::SETTING_LIST_WIDGETS_HEIGHT, 80.);
}
/**
* Get the default label style
*
* @return string
*/
public function getDefaultLabelStyle() {
2014-08-13 11:05:52 +02:00
return $this->maniaControl->getSettingManager()->getSettingValue($this, self::SETTING_LABEL_DEFAULT_STYLE);
}
/**
* Get the default quad style
*
* @return string
*/
public function getDefaultQuadStyle() {
2014-08-13 11:05:52 +02:00
return $this->maniaControl->getSettingManager()->getSettingValue($this, self::SETTING_QUAD_DEFAULT_STYLE);
}
/**
* Get the default quad substyle
*
* @return string
*/
public function getDefaultQuadSubstyle() {
2014-08-13 11:05:52 +02:00
return $this->maniaControl->getSettingManager()->getSettingValue($this, self::SETTING_QUAD_DEFAULT_SUBSTYLE);
}
2013-12-29 10:03:58 +01:00
/**
2014-05-02 17:50:30 +02:00
* Gets the Default Description Label
2013-12-29 10:03:58 +01:00
*
* @return \FML\Controls\Label
2013-12-29 10:03:58 +01:00
*/
2014-05-02 17:50:30 +02:00
public function getDefaultDescriptionLabel() {
$width = $this->getListWidgetsWidth();
$height = $this->getListWidgetsHeight();
2013-12-29 10:03:58 +01:00
2014-05-02 17:50:30 +02:00
// Predefine Description Label
$descriptionLabel = new Label();
2017-04-01 18:48:36 +02:00
$descriptionLabel->setAlign($descriptionLabel::LEFT, $descriptionLabel::TOP)->setPosition($width * -0.5 + 10, $height * -0.5 + 5)->setZ(1)->setSize($width * 0.7, 4)->setTextSize(2)->setVisible(false);
2014-05-02 17:50:30 +02:00
return $descriptionLabel;
2013-12-29 10:03:58 +01:00
}
/**
* Gets the default buttons and textbox for a map search
*
* @param $actionMapNameSearch
* @param $actionAuthorSearch
* @param null $actionReset
* @return \FML\Controls\Frame
*/
public function getDefaultMapSearch($actionMapNameSearch, $actionAuthorSearch, $actionReset = null) {
$width = $this->getListWidgetsWidth();
$frame = new Frame();
$label = new Label_Text();
$frame->addChild($label);
$label->setPosition(-$width / 2 + 5, 0);
$label->setHorizontalAlign($label::LEFT);
$label->setTextSize(1.3);
$label->setText('Search: ');
$entry = new Entry();
$frame->addChild($entry);
$entry->setStyle(Label_Text::STYLE_TextValueSmall);
$entry->setHorizontalAlign($entry::LEFT);
$entry->setPosition(-$width / 2 + 15, 0);
$entry->setTextSize(1);
$entry->setSize($width * 0.25, 4);
$entry->setName('SearchString');
if ($actionReset) {
$quad = new Quad_Icons64x64_1();;
$frame->addChild($quad);
$quad->setSubStyle($quad::SUBSTYLE_QuitRace);
$quad->setColorize('aaa');
$quad->setSize(5, 5);
$quad->setPosition(-$width / 2 + 15 + $width * 0.25 - 2, 0);
$quad->setZ(1);
$quad->setAction($actionReset);
}
//Search for Map-Name
$label = new Label_Button();
$frame->addChild($label);
$label->setPosition(-$width / 2 + 63, 0);
$label->setText('MapName');
$label->setTextSize(1.3);
$quad = new Quad_BgsPlayerCard();
$frame->addChild($quad);
$quad->setPosition(-$width / 2 + 63, 0);
$quad->setSubStyle($quad::SUBSTYLE_BgPlayerCardBig);
$quad->setSize(18, 5);
$quad->setAction($actionMapNameSearch);
$quad->setZ(-0.1);
//Search for Author
$label = new Label_Button();
$frame->addChild($label);
$label->setPosition(-$width / 2 + 82, 0);
$label->setText('Author');
$label->setTextSize(1.3);
$quad = new Quad_BgsPlayerCard();
$frame->addChild($quad);
$quad->setPosition(-$width / 2 + 82, 0);
$quad->setSubStyle($quad::SUBSTYLE_BgPlayerCardBig);
$quad->setSize(18, 5);
$quad->setAction($actionAuthorSearch);
$quad->setZ(-0.1);
return $frame;
}
2013-12-29 10:03:58 +01:00
/**
* Get the Default List Widgets Width
2013-12-29 10:03:58 +01:00
*
* @return float
2013-12-29 10:03:58 +01:00
*/
2014-01-15 22:07:09 +01:00
public function getListWidgetsWidth() {
2014-08-13 11:05:52 +02:00
return $this->maniaControl->getSettingManager()->getSettingValue($this, self::SETTING_LIST_WIDGETS_WIDTH);
2013-12-29 10:03:58 +01:00
}
/**
* Get the default list widget height
*
* @return float
2013-12-29 10:03:58 +01:00
*/
2014-01-15 22:07:09 +01:00
public function getListWidgetsHeight() {
2014-08-13 11:05:52 +02:00
return $this->maniaControl->getSettingManager()->getSettingValue($this, self::SETTING_LIST_WIDGETS_HEIGHT);
2013-12-29 10:03:58 +01:00
}
2014-01-28 16:54:23 +01:00
/**
* Builds the Default List Frame
*
* @param mixed $script
* @param mixed $paging
* @return \FML\Controls\Frame
2014-01-28 16:54:23 +01:00
*/
public function getDefaultListFrame($script = null, $paging = null) {
2014-05-02 17:50:30 +02:00
$args = func_get_args();
2014-04-27 18:59:21 +02:00
$script = null;
$paging = null;
foreach ($args as $arg) {
if ($arg instanceof Script) {
$script = $arg;
}
if ($arg instanceof Paging) {
$paging = $arg;
}
}
2014-05-02 17:50:30 +02:00
2014-01-28 16:54:23 +01:00
$width = $this->getListWidgetsWidth();
$height = $this->getListWidgetsHeight();
$quadStyle = $this->getDefaultMainWindowStyle();
$quadSubstyle = $this->getDefaultMainWindowSubStyle();
// mainframe
$frame = new Frame();
$frame->setSize($width, $height)->setZ(ManialinkManager::MAIN_MANIALINK_Z_VALUE);
2014-01-28 16:54:23 +01:00
// Background Quad
$backgroundQuad = new Quad();
2017-03-25 19:15:50 +01:00
$frame->addChild($backgroundQuad);
2014-08-13 11:05:52 +02:00
$backgroundQuad->setZ(-2)->setSize($width, $height)->setStyles($quadStyle, $quadSubstyle);
2014-01-28 16:54:23 +01:00
// Add Close Quad (X)
$closeQuad = new Quad_Icons64x64_1();
2017-03-25 19:15:50 +01:00
$frame->addChild($closeQuad);
2017-05-07 19:35:53 +02:00
$closeQuad->setPosition($width / 2 - 3, $height / 2 - 3, 3)->setSize(6, 6)->setSubStyle($closeQuad::SUBSTYLE_QuitRace)->setAction(ManialinkManager::ACTION_CLOSEWIDGET);
2014-01-28 16:54:23 +01:00
2014-04-27 18:59:21 +02:00
if ($script) {
2014-01-28 19:28:17 +01:00
$pagerSize = 6.;
$pagerPrev = new Quad_Icons64x64_1();
2017-03-25 19:15:50 +01:00
$frame->addChild($pagerPrev);
2014-08-13 11:05:52 +02:00
$pagerPrev->setPosition($width * 0.42, $height * -0.44, 2)->setSize($pagerSize, $pagerSize)->setSubStyle($pagerPrev::SUBSTYLE_ArrowPrev);
2014-01-28 19:28:17 +01:00
$pagerNext = new Quad_Icons64x64_1();
2017-03-25 19:15:50 +01:00
$frame->addChild($pagerNext);
2014-08-13 11:05:52 +02:00
$pagerNext->setPosition($width * 0.45, $height * -0.44, 2)->setSize($pagerSize, $pagerSize)->setSubStyle($pagerNext::SUBSTYLE_ArrowNext);
2014-01-28 19:28:17 +01:00
$pageCountLabel = new Label_Text();
2017-03-25 19:15:50 +01:00
$frame->addChild($pageCountLabel);
$pageCountLabel->setHorizontalAlign($pageCountLabel::RIGHT)->setPosition($width * 0.40, $height * -0.44, 1)->setStyle($pageCountLabel::STYLE_TextTitle1)->setTextSize(1.3);
2014-05-02 17:50:30 +02:00
if ($paging) {
2017-03-25 18:40:15 +01:00
$paging->addButtonControl($pagerNext)->addButtonControl($pagerPrev)->setLabel($pageCountLabel);
2014-05-02 17:50:30 +02:00
}
2014-01-28 19:28:17 +01:00
}
2014-01-28 16:54:23 +01:00
return $frame;
}
2014-05-02 17:50:30 +02:00
/**
* Get the default main window style
*
* @return string
*/
public function getDefaultMainWindowStyle() {
2014-08-13 11:05:52 +02:00
return $this->maniaControl->getSettingManager()->getSettingValue($this, self::SETTING_MAIN_WIDGET_DEFAULT_STYLE);
2014-05-02 17:50:30 +02:00
}
/**
* Get the default main window substyle
*
* @return string
*/
public function getDefaultMainWindowSubStyle() {
2014-08-13 11:05:52 +02:00
return $this->maniaControl->getSettingManager()->getSettingValue($this, self::SETTING_MAIN_WIDGET_DEFAULT_SUBSTYLE);
2014-05-02 17:50:30 +02:00
}
}