TrackManiaControl/application/core/Maps/MapList.php

611 lines
19 KiB
PHP
Raw Normal View History

2013-12-14 22:00:59 +01:00
<?php
namespace ManiaControl\Maps;
2014-01-02 10:38:46 +01:00
2013-12-14 22:00:59 +01:00
use FML\Controls\Control;
2014-01-02 10:38:46 +01:00
use FML\Controls\Frame;
2013-12-29 19:21:29 +01:00
use FML\Controls\Gauge;
2013-12-14 22:00:59 +01:00
use FML\Controls\Label;
2013-12-31 02:27:40 +01:00
use FML\Controls\Labels\Label_Button;
use FML\Controls\Labels\Label_Text;
2014-01-02 10:38:46 +01:00
use FML\Controls\Quad;
2013-12-31 02:27:40 +01:00
use FML\Controls\Quads\Quad_BgsPlayerCard;
2013-12-14 22:00:59 +01:00
use FML\Controls\Quads\Quad_Icons64x64_1;
2014-01-02 10:38:46 +01:00
use FML\ManiaLink;
2013-12-15 15:13:56 +01:00
use FML\Script\Script;
2013-12-30 16:58:35 +01:00
use KarmaPlugin;
use ManiaControl\Admin\AuthenticationManager;
2013-12-15 15:13:56 +01:00
use ManiaControl\Callbacks\CallbackListener;
use ManiaControl\Callbacks\CallbackManager;
2013-12-29 19:21:29 +01:00
use ManiaControl\ColorUtil;
2013-12-31 11:39:54 +01:00
use ManiaControl\Formatter;
2014-01-02 10:38:46 +01:00
use ManiaControl\ManiaControl;
use ManiaControl\Manialinks\ManialinkManager;
2013-12-14 22:00:59 +01:00
use ManiaControl\Manialinks\ManialinkPageAnswerListener;
use ManiaControl\Players\Player;
use MXInfoSearcher;
2013-12-14 22:00:59 +01:00
2013-12-24 13:09:39 +01:00
/**
* MapList Widget Class
*
* @author steeffeen & kremsy
*/
2013-12-15 15:13:56 +01:00
class MapList implements ManialinkPageAnswerListener, CallbackListener {
2013-12-18 15:48:33 +01:00
/**
* Constants
*/
2014-01-06 15:54:22 +01:00
const ACTION_ADD_MAP = 'MapList.AddMap';
const ACTION_ERASE_MAP = 'MapList.EraseMap';
2014-01-04 18:18:46 +01:00
const ACTION_SWITCH_MAP = 'MapList.SwitchMap';
const ACTION_QUEUED_MAP = 'MapList.QueueMap';
const MAX_MAPS_PER_PAGE = 15;
2014-01-06 15:54:22 +01:00
const SHOW_MX_LIST = 1;
const SHOW_MAP_LIST = 2;
2013-12-29 19:21:29 +01:00
const DEFAULT_KARMA_PLUGIN = 'KarmaPlugin';
2014-01-06 15:54:22 +01:00
2013-12-14 22:00:59 +01:00
/**
2014-01-06 15:54:22 +01:00
* Private Properties
2013-12-14 22:00:59 +01:00
*/
private $maniaControl = null;
2013-12-28 23:24:54 +01:00
private $mapListShown = array();
2013-12-14 22:00:59 +01:00
/**
2014-01-06 15:54:22 +01:00
* Create a new MapList Instance
2013-12-14 22:00:59 +01:00
*
* @param ManiaControl $maniaControl
*/
public function __construct(ManiaControl $maniaControl) {
$this->maniaControl = $maniaControl;
2014-01-06 15:54:22 +01:00
// Register for Callbacks
2014-01-02 10:38:46 +01:00
$this->maniaControl->callbackManager->registerCallbackListener(ManialinkManager::CB_MAIN_WINDOW_CLOSED, $this, 'closeWidget');
2014-01-06 15:54:22 +01:00
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MP_PLAYERMANIALINKPAGEANSWER, $this,
'handleManialinkPageAnswer');
2013-12-31 12:25:03 +01:00
$this->maniaControl->callbackManager->registerCallbackListener(MapQueue::CB_MAPQUEUE_CHANGED, $this, 'updateWidget');
2014-01-06 18:50:26 +01:00
$this->maniaControl->callbackManager->registerCallbackListener(MapManager::CB_MAPS_UPDATED, $this, 'updateWidget');
2014-01-06 15:54:22 +01:00
$this->maniaControl->callbackManager->registerCallbackListener(MapManager::CB_KARMA_UPDATED, $this, 'updateWidget');
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MC_BEGINMAP, $this, 'updateWidget');
// TODO not working yet
2013-12-14 22:00:59 +01:00
}
2013-12-15 12:34:35 +01:00
/**
2014-01-06 15:54:22 +01:00
* Display the Mania Exchange List
2014-01-02 10:38:46 +01:00
*
2014-01-06 15:54:22 +01:00
* @param array $chatCallback
2013-12-15 12:34:35 +01:00
* @param Player $player
*/
2014-01-02 10:38:46 +01:00
public function showManiaExchangeList(array $chatCallback, Player $player) {
2013-12-28 23:24:54 +01:00
$this->mapListShown[$player->login] = self::SHOW_MX_LIST;
2014-01-06 15:54:22 +01:00
$params = explode(' ', $chatCallback[1][2]);
2014-01-06 15:54:22 +01:00
$serverInfo = $this->maniaControl->server->getSystemInfo();
2014-01-06 15:54:22 +01:00
$title = strtoupper(substr($serverInfo['TitleId'], 0, 2));
$mapName = '';
$author = '';
$environment = '';
// TODO also get actual environment
$recent = true;
if (count($params) > 1) {
foreach ($params as $param) {
if ($param == '/xlist') {
continue;
2014-01-02 10:38:46 +01:00
}
2014-01-06 15:54:22 +01:00
if (strtolower(substr($param, 0, 5)) == 'auth:') {
$author = substr($param, 5);
2014-01-06 15:54:22 +01:00
}
elseif (strtolower(substr($param, 0, 4)) == 'env:') {
$environment = substr($param, 4);
2014-01-06 15:54:22 +01:00
}
else {
if ($mapName == '') {
$mapName = $param;
2014-01-06 15:54:22 +01:00
}
else { // concatenate words in name
$mapName .= '%20' . $param;
2014-01-02 10:38:46 +01:00
}
}
}
2014-01-06 15:54:22 +01:00
$recent = false;
}
2014-01-06 15:54:22 +01:00
// search for matching maps
$maps = new MXInfoSearcher($title, $mapName, $author, $environment, $recent);
2014-01-06 15:54:22 +01:00
// check if there are any results
if (!$maps->valid()) {
$this->maniaControl->chat->sendError('No maps found, or MX is down!', $player->login);
2014-01-06 15:54:22 +01:00
if ($maps->error != '') {
trigger_error($maps->error, E_USER_WARNING);
2014-01-02 10:38:46 +01:00
}
return;
}
2014-01-06 15:54:22 +01:00
$maniaLink = new ManiaLink(ManialinkManager::MAIN_MLID);
2014-01-06 15:54:22 +01:00
$frame = $this->buildMainFrame();
2013-12-15 12:34:35 +01:00
$maniaLink->add($frame);
2014-01-06 15:54:22 +01:00
2013-12-15 15:13:56 +01:00
// Create script and features
$script = new Script();
$maniaLink->setScript($script);
2014-01-06 15:54:22 +01:00
// Start offsets
$width = $this->maniaControl->manialinkManager->styleManager->getListWidgetsWidth();
$height = $this->maniaControl->manialinkManager->styleManager->getListWidgetsHeight();
$x = -$width / 2;
$y = $height / 2;
// Headline
2013-12-15 12:34:35 +01:00
$headFrame = new Frame();
$frame->add($headFrame);
2013-12-26 17:27:21 +01:00
$headFrame->setY($y - 5);
2014-01-06 15:54:22 +01:00
$array = array('Id' => $x + 5, 'Name' => $x + 17, 'Author' => $x + 65, 'Mood' => $x + 100, 'Type' => $x + 115);
2014-01-02 10:38:46 +01:00
$this->maniaControl->manialinkManager->labelLine($headFrame, $array);
2014-01-06 15:54:22 +01:00
2013-12-15 12:34:35 +01:00
$i = 0;
$y -= 10;
2014-01-06 15:54:22 +01:00
foreach ($maps as $map) {
2013-12-15 12:34:35 +01:00
$mapFrame = new Frame();
$frame->add($mapFrame);
2013-12-18 15:48:33 +01:00
$array = array($map->id => $x + 5, $map->name => $x + 17, $map->author => $x + 65, $map->mood => $x + 100, $map->maptype => $x + 115);
2014-01-02 10:38:46 +01:00
$this->maniaControl->manialinkManager->labelLine($mapFrame, $array);
2013-12-15 12:34:35 +01:00
$mapFrame->setY($y);
2014-01-06 15:54:22 +01:00
if ($this->maniaControl->authenticationManager->checkRight($player, AuthenticationManager::AUTH_LEVEL_ADMIN)) {
// TODO: SET as setting who can add maps Add-Map-Button
$addQuad = new Quad_Icons64x64_1();
$mapFrame->add($addQuad);
$addQuad->setX($x + 15);
$addQuad->setZ(-0.1);
$addQuad->setSubStyle($addQuad::SUBSTYLE_Add);
2014-01-02 10:38:46 +01:00
$addQuad->setSize(4, 4);
2014-01-06 15:54:22 +01:00
$addQuad->setAction(self::ACTION_ADD_MAP . '.' . $map->id);
// Description Label
$descriptionLabel = new Label();
$frame->add($descriptionLabel);
$descriptionLabel->setAlign(Control::LEFT, Control::TOP);
2014-01-06 15:54:22 +01:00
$descriptionLabel->setPosition($x + 10, -$height / 2 + 5);
$descriptionLabel->setSize($width * 0.7, 4);
$descriptionLabel->setTextSize(2);
$descriptionLabel->setVisible(false);
2014-01-06 22:23:44 +01:00
$descriptionLabel->setText('Add-Map: $<' . Formatter::stripDirtyCodes($map->name) . '$>');
2013-12-31 11:18:12 +01:00
$script->addTooltip($addQuad, $descriptionLabel);
}
2014-01-06 15:54:22 +01:00
2013-12-15 15:13:56 +01:00
$y -= 4;
2013-12-15 12:34:35 +01:00
$i++;
2014-01-06 15:54:22 +01:00
if ($i == self::MAX_MAPS_PER_PAGE) {
2013-12-15 12:34:35 +01:00
break;
2014-01-02 10:38:46 +01:00
}
2013-12-15 12:34:35 +01:00
}
2014-01-06 15:54:22 +01:00
// TODO add MX info screen
// render and display xml
$this->maniaControl->manialinkManager->displayWidget($maniaLink, $player);
}
/**
* Builds the mainFrame
2014-01-02 10:38:46 +01:00
*
* @return Frame $frame
*/
2014-01-02 10:38:46 +01:00
public function buildMainFrame() {
2014-01-06 15:54:22 +01:00
$width = $this->maniaControl->manialinkManager->styleManager->getListWidgetsWidth();
$height = $this->maniaControl->manialinkManager->styleManager->getListWidgetsHeight();
$quadStyle = $this->maniaControl->manialinkManager->styleManager->getDefaultMainWindowStyle();
$quadSubstyle = $this->maniaControl->manialinkManager->styleManager->getDefaultMainWindowSubStyle();
// mainframe
2013-12-14 22:00:59 +01:00
$frame = new Frame();
2014-01-06 15:54:22 +01:00
$frame->setSize($width, $height);
2013-12-14 22:00:59 +01:00
$frame->setPosition(0, 0);
2014-01-06 15:54:22 +01:00
// Background Quad
2013-12-14 22:00:59 +01:00
$backgroundQuad = new Quad();
$frame->add($backgroundQuad);
2014-01-06 15:54:22 +01:00
$backgroundQuad->setSize($width, $height);
$backgroundQuad->setStyles($quadStyle, $quadSubstyle);
// Add Close Quad (X)
$closeQuad = new Quad_Icons64x64_1();
$frame->add($closeQuad);
2014-01-06 15:54:22 +01:00
$closeQuad->setPosition($width * 0.483, $height * 0.467, 3);
$closeQuad->setSize(6, 6);
$closeQuad->setSubStyle(Quad_Icons64x64_1::SUBSTYLE_QuitRace);
2013-12-24 13:09:39 +01:00
$closeQuad->setAction(ManialinkManager::ACTION_CLOSEWIDGET);
2014-01-06 15:54:22 +01:00
return $frame;
}
2014-01-02 10:38:46 +01:00
/**
* Displayes a MapList on the screen
2014-01-02 10:38:46 +01:00
*
* @param Player $player
*/
2014-01-03 18:04:46 +01:00
public function showMapList(Player $player) {
2014-01-06 15:54:22 +01:00
$width = $this->maniaControl->manialinkManager->styleManager->getListWidgetsWidth();
$height = $this->maniaControl->manialinkManager->styleManager->getListWidgetsHeight();
// Get Maplist
2014-01-06 18:50:26 +01:00
$mapList = $this->maniaControl->mapManager->getMaps();
2014-01-06 15:54:22 +01:00
2013-12-28 23:24:54 +01:00
$this->mapListShown[$player->login] = self::SHOW_MAP_LIST;
2014-01-06 15:54:22 +01:00
$maniaLink = new ManiaLink(ManialinkManager::MAIN_MLID);
2014-01-06 15:54:22 +01:00
$frame = $this->buildMainFrame();
$maniaLink->add($frame);
2014-01-06 15:54:22 +01:00
2013-12-16 12:16:33 +01:00
// Create script and features
$script = new Script();
$maniaLink->setScript($script);
2014-01-06 15:54:22 +01:00
2014-01-02 20:50:09 +01:00
// Pagers
2014-01-06 15:54:22 +01:00
2014-01-02 20:50:09 +01:00
// Config
$pagerSize = 6.;
2014-01-06 15:54:22 +01:00
$pagesId = 'MapListPages';
if (count($mapList) > self::MAX_MAPS_PER_PAGE) {
2014-01-02 20:50:09 +01:00
$pagerPrev = new Quad_Icons64x64_1();
$frame->add($pagerPrev);
2014-01-06 15:54:22 +01:00
$pagerPrev->setPosition($width * 0.42, $height * -0.44, 2);
2014-01-02 20:50:09 +01:00
$pagerPrev->setSize($pagerSize, $pagerSize);
$pagerPrev->setSubStyle(Quad_Icons64x64_1::SUBSTYLE_ArrowPrev);
2014-01-06 15:54:22 +01:00
2014-01-02 20:50:09 +01:00
$pagerNext = new Quad_Icons64x64_1();
$frame->add($pagerNext);
2014-01-06 15:54:22 +01:00
$pagerNext->setPosition($width * 0.45, $height * -0.44, 2);
2014-01-02 20:50:09 +01:00
$pagerNext->setSize($pagerSize, $pagerSize);
$pagerNext->setSubStyle(Quad_Icons64x64_1::SUBSTYLE_ArrowNext);
2014-01-06 15:54:22 +01:00
2014-01-02 20:50:09 +01:00
$script->addPager($pagerPrev, -1, $pagesId);
$script->addPager($pagerNext, 1, $pagesId);
2014-01-06 15:54:22 +01:00
$pageCountLabel = new Label_Text();
2014-01-02 20:50:09 +01:00
$frame->add($pageCountLabel);
$pageCountLabel->setHAlign(Control::RIGHT);
2014-01-06 15:54:22 +01:00
$pageCountLabel->setPosition($width * 0.40, $height * -0.44, 1);
$pageCountLabel->setStyle($pageCountLabel::STYLE_TextTitle1);
2014-01-02 20:50:09 +01:00
$pageCountLabel->setTextSize(1.3);
$script->addPageLabel($pageCountLabel, $pagesId);
}
2014-01-06 15:54:22 +01:00
// Headline
2013-12-15 11:55:44 +01:00
$headFrame = new Frame();
$frame->add($headFrame);
2014-01-06 15:54:22 +01:00
$headFrame->setY($height / 2 - 5);
$x = -$width / 2;
$array = array('Id' => $x + 5, 'Mx Id' => $x + 10, 'Map Name' => $x + 20, 'Author' => $x + 68, 'Karma' => $x + 115,
'Actions' => $width / 2 - 15);
2014-01-02 10:38:46 +01:00
$this->maniaControl->manialinkManager->labelLine($headFrame, $array);
2014-01-06 15:54:22 +01:00
// Predefine Description Label
2014-01-02 13:51:50 +01:00
$preDefinedDescriptionLabel = new Label();
$preDefinedDescriptionLabel->setAlign(Control::LEFT, Control::TOP);
2014-01-06 15:54:22 +01:00
$preDefinedDescriptionLabel->setPosition($x + 10, -$height / 2 + 5);
$preDefinedDescriptionLabel->setSize($width * 0.7, 4);
2014-01-02 13:51:50 +01:00
$preDefinedDescriptionLabel->setTextSize(2);
$preDefinedDescriptionLabel->setVisible(false);
2014-01-06 15:54:22 +01:00
2013-12-31 12:36:49 +01:00
$queuedMaps = $this->maniaControl->mapManager->mapQueue->getQueuedMapsRanking();
2014-01-06 15:54:22 +01:00
/**
*
* @var KarmaPlugin $karmaPlugin
*/
2013-12-29 19:21:29 +01:00
$karmaPlugin = $this->maniaControl->pluginManager->getPlugin(self::DEFAULT_KARMA_PLUGIN);
2014-01-06 15:54:22 +01:00
$id = 1;
$y = $height / 2 - 10;
2014-01-02 20:50:09 +01:00
$pageFrames = array();
2014-01-06 15:54:22 +01:00
/**
*
* @var Map $map
*/
foreach ($mapList as $map) {
if (!isset($pageFrame)) {
2014-01-02 20:50:09 +01:00
$pageFrame = new Frame();
$frame->add($pageFrame);
2014-01-06 15:54:22 +01:00
if (!empty($pageFrames)) {
2014-01-02 20:50:09 +01:00
$pageFrame->setVisible(false);
}
array_push($pageFrames, $pageFrame);
2014-01-06 15:54:22 +01:00
$y = $height / 2 - 10;
2014-01-02 20:50:09 +01:00
$script->addPage($pageFrame, count($pageFrames), $pagesId);
}
2014-01-06 15:54:22 +01:00
// Map Frame
2013-12-14 22:00:59 +01:00
$mapFrame = new Frame();
2014-01-02 20:50:09 +01:00
$pageFrame->add($mapFrame);
2013-12-30 16:58:35 +01:00
$mapFrame->setZ(0.1);
2013-12-14 22:00:59 +01:00
$mapFrame->setY($y);
2014-01-06 15:54:22 +01:00
if ($id % 2 != 0) {
2013-12-31 02:27:40 +01:00
$lineQuad = new Quad_BgsPlayerCard();
$mapFrame->add($lineQuad);
2014-01-06 15:54:22 +01:00
$lineQuad->setSize($width, 4);
2013-12-31 02:27:40 +01:00
$lineQuad->setSubStyle($lineQuad::SUBSTYLE_BgPlayerCardBig);
$lineQuad->setZ(0.001);
}
2014-01-06 15:54:22 +01:00
if ($this->maniaControl->mapManager->getCurrentMap() === $map) {
2013-12-30 16:58:35 +01:00
$currentQuad = new Quad_Icons64x64_1();
2013-12-30 20:15:38 +01:00
$mapFrame->add($currentQuad);
2013-12-30 16:58:35 +01:00
$currentQuad->setX($x + 3.5);
$currentQuad->setZ(0.2);
$currentQuad->setSize(4, 4);
$currentQuad->setSubStyle($currentQuad::SUBSTYLE_ArrowBlue);
}
2014-01-06 15:54:22 +01:00
2013-12-30 16:58:35 +01:00
$mxId = '-';
2014-01-06 15:54:22 +01:00
if (isset($map->mx->id)) {
2013-12-30 16:58:35 +01:00
$mxId = $map->mx->id;
2014-01-02 10:38:46 +01:00
}
2014-01-06 15:54:22 +01:00
// Display Maps
2014-01-06 22:23:44 +01:00
$array = array($id => $x + 5, $mxId => $x + 10, Formatter::stripDirtyCodes($map->name) => $x + 20, $map->authorNick => $x + 68);
2014-01-02 10:38:46 +01:00
$this->maniaControl->manialinkManager->labelLine($mapFrame, $array);
2014-01-06 15:54:22 +01:00
// TODO detailed mx info page with link to mxo
// TODO action detailed map info
// MapQueue Description Label
2014-01-02 13:51:50 +01:00
$descriptionLabel = clone $preDefinedDescriptionLabel;
2013-12-28 23:57:02 +01:00
$frame->add($descriptionLabel);
2014-01-06 15:54:22 +01:00
// Map-Queue-Map-Label
if (isset($queuedMaps[$map->uid])) {
2013-12-31 12:36:49 +01:00
$label = new Label_Text();
$mapFrame->add($label);
2014-01-06 15:54:22 +01:00
$label->setX($width / 2 - 15);
2014-01-02 10:38:46 +01:00
$label->setAlign(Control::CENTER, Control::CENTER);
2013-12-31 12:36:49 +01:00
$label->setZ(0.2);
$label->setTextSize(1.5);
$label->setText($queuedMaps[$map->uid]);
2014-01-06 15:54:22 +01:00
$label->setTextColor('fff');
$descriptionLabel->setText('$<' . $map->name . '$> is on Map-Queue Position: ' . $queuedMaps[$map->uid]);
2013-12-28 23:57:02 +01:00
}
2014-01-06 15:54:22 +01:00
else {
// Map-Queue-Map-Button
$queueLabel = new Label_Button();
$mapFrame->add($queueLabel);
$queueLabel->setX($width / 2 - 15);
$queueLabel->setZ(0.2);
$queueLabel->setSize(3, 3);
$queueLabel->setAction(self::ACTION_QUEUED_MAP . '.' . $map->uid);
$queueLabel->setText('+');
$queueLabel->setTextColor('09f');
$descriptionLabel->setText('Add Map to the Map Queue: $<' . $map->name . '$>');
$script->addTooltip($queueLabel, $descriptionLabel);
}
if ($this->maniaControl->authenticationManager->checkRight($player, AuthenticationManager::AUTH_LEVEL_ADMIN)) {
// TODO SET as setting who can add maps
// erase map quad
2014-01-06 14:43:26 +01:00
$eraseLabel = new Label_Button();
$mapFrame->add($eraseLabel);
2014-01-06 15:54:22 +01:00
$eraseLabel->setX($width / 2 - 5);
2014-01-06 14:43:26 +01:00
$eraseLabel->setZ(0.2);
$eraseLabel->setSize(3, 3);
$eraseLabel->setTextSize(1);
2014-01-06 15:54:22 +01:00
$eraseLabel->setText('x');
$eraseLabel->setTextColor('a00');
2014-01-03 18:04:46 +01:00
$confirmFrame = $this->buildConfirmFrame($maniaLink, $y, $id, $map->uid);
2014-01-06 22:38:33 +01:00
//$script->addToggle($eraseLabel, $confirmFrame); //TODO
$script->addTooltip($eraseLabel, $confirmFrame, Script::OPTION_TOOLTIP_STAYONCLICK);
2014-01-06 15:54:22 +01:00
// Description Label
2014-01-02 13:51:50 +01:00
$descriptionLabel = clone $preDefinedDescriptionLabel;
2013-12-16 12:41:14 +01:00
$frame->add($descriptionLabel);
2014-01-06 15:54:22 +01:00
$descriptionLabel->setText('Remove Map: $<' . $map->name . '$>');
2014-01-06 14:43:26 +01:00
$script->addTooltip($eraseLabel, $descriptionLabel);
2013-12-16 12:41:14 +01:00
}
2014-01-06 15:54:22 +01:00
if ($this->maniaControl->authenticationManager->checkRight($player, AuthenticationManager::AUTH_LEVEL_MODERATOR)) {
// TODO SET as setting who can add maps
// Switch to map
$switchLabel = new Label_Button();
$mapFrame->add($switchLabel);
$switchLabel->setX($width / 2 - 10);
$switchLabel->setZ(0.2);
$switchLabel->setSize(3, 3);
$switchLabel->setTextSize(2);
$switchLabel->setText('»');
$switchLabel->setTextColor('0f0');
2014-01-03 18:04:46 +01:00
$confirmFrame = $this->buildConfirmFrame($maniaLink, $y, $id);
2014-01-06 22:38:33 +01:00
$script->addTooltip($switchLabel, $confirmFrame, Script::OPTION_TOOLTIP_STAYONCLICK); //TODO
//$script->addToggle($switchLabel, $confirmFrame);
2014-01-06 15:54:22 +01:00
2014-01-02 13:51:50 +01:00
$descriptionLabel = clone $preDefinedDescriptionLabel;
2013-12-16 12:41:14 +01:00
$frame->add($descriptionLabel);
2014-01-06 15:54:22 +01:00
$descriptionLabel->setText('Switch Directly to Map: $<' . $map->name . '$>');
$script->addTooltip($switchLabel, $descriptionLabel);
2013-12-16 12:41:14 +01:00
}
2014-01-06 15:54:22 +01:00
// Display Karma bar
if ($karmaPlugin) {
2013-12-29 19:21:29 +01:00
$karma = $karmaPlugin->getMapKarma($map);
$votes = $karmaPlugin->getMapVotes($map);
2014-01-06 15:54:22 +01:00
if (is_numeric($karma)) {
2013-12-29 19:21:29 +01:00
$karmaGauge = new Gauge();
$mapFrame->add($karmaGauge);
2013-12-31 02:27:40 +01:00
$karmaGauge->setZ(2);
2013-12-30 23:53:42 +01:00
$karmaGauge->setX($x + 120);
2013-12-29 19:21:29 +01:00
$karmaGauge->setSize(20, 9);
$karmaGauge->setDrawBg(false);
$karma = floatval($karma);
$karmaGauge->setRatio($karma + 0.15 - $karma * 0.15);
$karmaColor = ColorUtil::floatToStatusColor($karma);
$karmaGauge->setColor($karmaColor . '9');
2014-01-06 15:54:22 +01:00
2013-12-29 19:21:29 +01:00
$karmaLabel = new Label();
$mapFrame->add($karmaLabel);
2013-12-31 02:27:40 +01:00
$karmaLabel->setZ(2);
2013-12-30 23:53:42 +01:00
$karmaLabel->setX($x + 120);
2013-12-29 19:21:29 +01:00
$karmaLabel->setSize(20 * 0.9, 5);
$karmaLabel->setTextSize(0.9);
2014-01-06 15:54:22 +01:00
$karmaLabel->setTextColor('000');
2013-12-29 19:21:29 +01:00
$karmaLabel->setAlign(Control::CENTER, Control::CENTER);
$karmaLabel->setText(' ' . round($karma * 100.) . '% (' . $votes['count'] . ')');
}
}
2014-01-06 15:54:22 +01:00
2013-12-14 22:00:59 +01:00
$y -= 4;
2014-01-06 15:54:22 +01:00
if ($id % self::MAX_MAPS_PER_PAGE == 0) {
2014-01-02 20:50:09 +01:00
unset($pageFrame);
}
$id++;
}
2014-01-06 15:54:22 +01:00
// TODO page 0 bug?
$this->maniaControl->manialinkManager->displayWidget($maniaLink, $player);
2013-12-14 22:00:59 +01:00
}
2014-01-03 18:04:46 +01:00
/**
* Builds the confirmation frame
*
* @param ManiaLink $maniaLink
2014-01-06 15:54:22 +01:00
* @param $y
* @param $id
* @param bool $mapUid
2014-01-03 18:04:46 +01:00
* @return Frame
*/
public function buildConfirmFrame(Manialink $maniaLink, $y, $id, $mapUid = false) {
2014-01-06 15:54:22 +01:00
$width = $this->maniaControl->manialinkManager->styleManager->getListWidgetsWidth();
$quadStyle = $this->maniaControl->manialinkManager->styleManager->getDefaultMainWindowStyle();
$quadSubstyle = $this->maniaControl->manialinkManager->styleManager->getDefaultMainWindowSubStyle();
2014-01-03 18:04:46 +01:00
$confirmFrame = new Frame();
$maniaLink->add($confirmFrame);
2014-01-06 15:54:22 +01:00
$confirmFrame->setPosition($width / 2 + 6, $y);
2014-01-03 18:04:46 +01:00
$quad = new Quad();
$confirmFrame->add($quad);
2014-01-06 15:54:22 +01:00
$quad->setStyles($quadStyle, $quadSubstyle);
2014-01-03 18:04:46 +01:00
$quad->setSize(12, 4);
2014-01-06 15:54:22 +01:00
2014-01-03 18:04:46 +01:00
$quad = new Quad_BgsPlayerCard();
$confirmFrame->add($quad);
$quad->setSubStyle($quad::SUBSTYLE_BgCardSystem);
$quad->setSize(11, 3.5);
2014-01-06 15:54:22 +01:00
2014-01-03 18:04:46 +01:00
$label = new Label_Button();
$confirmFrame->add($label);
$label->setAlign(Control::CENTER, Control::CENTER);
2014-01-06 15:54:22 +01:00
$label->setText('Sure?');
2014-01-03 18:04:46 +01:00
$label->setTextSize(1);
$label->setScale(0.90);
$label->setX(-1.3);
2014-01-06 15:54:22 +01:00
2014-01-03 18:04:46 +01:00
$buttLabel = new Label_Button();
$confirmFrame->add($buttLabel);
$buttLabel->setPosition(3.2, 0.4, 0.2);
$buttLabel->setSize(3, 3);
2014-01-06 15:54:22 +01:00
// $buttLabel->setTextSize(1);
2014-01-03 18:04:46 +01:00
$buttLabel->setAlign(Control::CENTER, Control::CENTER);
2014-01-06 15:54:22 +01:00
if (!$mapUid) {
$quad->setAction(self::ACTION_SWITCH_MAP . '.' . ($id - 1));
$buttLabel->setText('»');
$buttLabel->setTextColor('0f0');
2014-01-03 18:04:46 +01:00
$buttLabel->setTextSize(2);
2014-01-06 15:54:22 +01:00
}
else {
2014-01-03 18:04:46 +01:00
$buttLabel->setTextSize(1);
2014-01-06 15:54:22 +01:00
$buttLabel->setText('x');
$buttLabel->setTextColor('a00');
$quad->setAction(self::ACTION_ERASE_MAP . '.' . ($id - 1) . '.' . $mapUid);
2014-01-03 18:04:46 +01:00
}
return $confirmFrame;
}
/**
* Closes the widget
2014-01-02 10:38:46 +01:00
*
* @param array $callback
*/
2013-12-29 22:52:07 +01:00
public function closeWidget(array $callback) {
$player = $callback[1];
2014-01-03 18:57:08 +01:00
unset($this->mapListShown[$player->login]);
2014-01-03 18:04:46 +01:00
}
/**
* Closes the widget
*
2014-01-06 15:54:22 +01:00
* @param Player $player
2014-01-03 18:04:46 +01:00
*/
public function playerCloseWidget(Player $player) {
2013-12-28 23:24:54 +01:00
unset($this->mapListShown[$player->login]);
2014-01-03 18:04:46 +01:00
$this->maniaControl->manialinkManager->closeWidget($player);
2013-12-14 22:00:59 +01:00
}
2013-12-15 15:13:56 +01:00
/**
2014-01-06 15:54:22 +01:00
* Handle ManialinkPageAnswer Callback
*
2013-12-15 15:13:56 +01:00
* @param array $callback
*/
2014-01-02 10:38:46 +01:00
public function handleManialinkPageAnswer(array $callback) {
2014-01-06 15:54:22 +01:00
$actionId = $callback[1][2];
$actionArray = explode('.', $actionId);
if (count($actionArray) <= 2) return;
$action = $actionArray[0] . '.' . $actionArray[1];
$login = $callback[1][1];
$player = $this->maniaControl->playerManager->getPlayer($login);
$mapId = (int) $actionArray[2];
switch ($action) {
2014-01-02 10:38:46 +01:00
case self::ACTION_ADD_MAP:
2014-01-06 15:54:22 +01:00
$this->maniaControl->mapManager->addMapFromMx($mapId, $player->login);
2014-01-02 10:38:46 +01:00
break;
case self::ACTION_ERASE_MAP:
2014-01-06 15:54:22 +01:00
$this->maniaControl->mapManager->eraseMap($mapId, $actionArray[3]);
2014-01-02 10:38:46 +01:00
$this->showMapList($player);
break;
case self::ACTION_SWITCH_MAP:
2014-01-06 15:54:22 +01:00
$this->maniaControl->client->query('JumpToMapIndex', $mapId);
2014-01-02 10:38:46 +01:00
$mapList = $this->maniaControl->mapManager->getMapList();
2014-01-06 15:54:22 +01:00
$map = $mapList[$mapId];
$message = '$<' . $player->nickname . '$> skipped to Map $z$<' . $map->name . '$>!';
$this->maniaControl->chat->sendSuccess($message);
$this->maniaControl->log($message, true);
2014-01-03 18:04:46 +01:00
$this->playerCloseWidget($player);
2014-01-02 10:38:46 +01:00
break;
case self::ACTION_QUEUED_MAP:
$this->maniaControl->mapManager->mapQueue->addMapToMapQueue($callback[1][1], $actionArray[2]);
break;
}
2013-12-15 15:13:56 +01:00
}
2013-12-28 23:24:54 +01:00
/**
2014-01-06 15:54:22 +01:00
* Reopen the widget on Map Begin, MapListChanged, etc.
2014-01-02 10:38:46 +01:00
*
2013-12-28 23:24:54 +01:00
* @param array $callback
*/
2014-01-02 10:38:46 +01:00
public function updateWidget(array $callback) {
2014-01-06 15:54:22 +01:00
foreach ($this->mapListShown as $login => $shown) {
if ($shown) {
2013-12-28 23:24:54 +01:00
$player = $this->maniaControl->playerManager->getPlayer($login);
2014-01-06 15:54:22 +01:00
if ($player != null) {
if ($shown == self::SHOW_MX_LIST) {
// TODO
}
else if ($shown == self::SHOW_MAP_LIST) {
2013-12-28 23:24:54 +01:00
$this->showMapList($player);
}
2014-01-06 15:54:22 +01:00
}
else {
2013-12-28 23:24:54 +01:00
unset($this->mapListShown[$login]);
}
}
}
}
2013-12-14 22:00:59 +01:00
}