TrackManiaControl/application/core/Maps/MapList.php

607 lines
18 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-04 18:18:46 +01:00
const ACTION_ADD_MAP = 'MapList.AddMap';
const ACTION_ERASE_MAP = 'MapList.EraseMap';
const ACTION_SWITCH_MAP = 'MapList.SwitchMap';
const ACTION_QUEUED_MAP = 'MapList.QueueMap';
const MAX_MAPS_PER_PAGE = 15;
const SHOW_MX_LIST = 1;
const SHOW_MAP_LIST = 2;
2013-12-15 15:13:56 +01:00
2013-12-29 19:21:29 +01:00
const DEFAULT_KARMA_PLUGIN = 'KarmaPlugin';
2013-12-14 22:00:59 +01:00
/**
* Private properties
*/
private $maniaControl = null;
2013-12-28 23:24:54 +01:00
private $mapListShown = array();
private $width;
private $height;
private $quadStyle;
private $quadSubstyle;
2013-12-14 22:00:59 +01:00
/**
* Create a new server commands instance
*
* @param ManiaControl $maniaControl
*/
public function __construct(ManiaControl $maniaControl) {
$this->maniaControl = $maniaControl;
2014-01-02 10:38:46 +01:00
$this->maniaControl->callbackManager->registerCallbackListener(ManialinkManager::CB_MAIN_WINDOW_CLOSED, $this, 'closeWidget');
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MP_PLAYERMANIALINKPAGEANSWER, $this, 'handleManialinkPageAnswer');
2013-12-14 22:00:59 +01:00
2013-12-29 19:21:29 +01:00
//Update Widget actions
2013-12-31 12:25:03 +01:00
$this->maniaControl->callbackManager->registerCallbackListener(MapQueue::CB_MAPQUEUE_CHANGED, $this, 'updateWidget');
2013-12-28 23:24:54 +01:00
$this->maniaControl->callbackManager->registerCallbackListener(MapManager::CB_MAPLIST_UPDATED, $this, 'updateWidget');
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MC_BEGINMAP, $this, 'updateWidget'); //TODO not working yet
2013-12-29 19:21:29 +01:00
//TODO update on Karma Update
2013-12-28 23:24:54 +01:00
//settings
2014-01-02 10:38:46 +01:00
$this->width = $this->maniaControl->manialinkManager->styleManager->getListWidgetsWidth();
$this->height = $this->maniaControl->manialinkManager->styleManager->getListWidgetsHeight();
$this->quadStyle = $this->maniaControl->manialinkManager->styleManager->getDefaultMainWindowStyle();
2013-12-29 10:03:58 +01:00
$this->quadSubstyle = $this->maniaControl->manialinkManager->styleManager->getDefaultMainWindowSubStyle();
2013-12-29 15:52:01 +01:00
2013-12-14 22:00:59 +01:00
}
2013-12-15 12:34:35 +01:00
/**
* Displays the Mania Exchange List
2014-01-02 10:38:46 +01:00
*
2013-12-15 12:34:35 +01:00
* @param array $chatCallback
* @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;
$params = explode(' ', $chatCallback[1][2]);
$serverInfo = $this->maniaControl->server->getSystemInfo();
2014-01-02 10:38:46 +01:00
$title = strtoupper(substr($serverInfo['TitleId'], 0, 2));
2014-01-02 10:38:46 +01:00
$mapName = '';
$author = '';
$environment = ''; //TODO also get actual environment
2014-01-02 10:38:46 +01:00
$recent = true;
2014-01-02 10:38:46 +01:00
if(count($params) > 1) {
foreach($params as $param) {
if($param == '/xlist') {
continue;
2014-01-02 10:38:46 +01:00
}
if(strtolower(substr($param, 0, 5)) == 'auth:') {
$author = substr($param, 5);
2014-01-02 10:38:46 +01:00
} elseif(strtolower(substr($param, 0, 4)) == 'env:') {
$environment = substr($param, 4);
} else {
2014-01-02 10:38:46 +01:00
if($mapName == '') {
$mapName = $param;
2014-01-02 10:38:46 +01:00
} else // concatenate words in name
{
$mapName .= '%20' . $param;
2014-01-02 10:38:46 +01:00
}
}
}
$recent = false;
}
2013-12-14 22:00:59 +01:00
// search for matching maps
$maps = new MXInfoSearcher($title, $mapName, $author, $environment, $recent);
//check if there are any results
2014-01-02 10:38:46 +01:00
if(!$maps->valid()) {
$this->maniaControl->chat->sendError('No maps found, or MX is down!', $player->login);
2014-01-02 10:38:46 +01:00
if($maps->error != '') {
trigger_error($maps->error, E_USER_WARNING);
2014-01-02 10:38:46 +01:00
}
return;
}
2013-12-29 19:21:29 +01:00
$maniaLink = new ManiaLink(ManialinkManager::MAIN_MLID);
2014-01-02 10:38:46 +01:00
$frame = $this->buildMainFrame();
2013-12-15 12:34:35 +01:00
$maniaLink->add($frame);
2013-12-15 15:13:56 +01:00
// Create script and features
$script = new Script();
$maniaLink->setScript($script);
2013-12-15 12:34:35 +01:00
//Start offsets
$x = -$this->width / 2;
$y = $this->height / 2;
//Headline
$headFrame = new Frame();
$frame->add($headFrame);
2013-12-26 17:27:21 +01:00
$headFrame->setY($y - 5);
2013-12-18 15:48:33 +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);
2013-12-14 22:00:59 +01:00
2013-12-15 12:34:35 +01:00
$i = 0;
$y -= 10;
2014-01-02 10:38:46 +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-02 10:38:46 +01:00
if($this->maniaControl->authenticationManager->checkRight($player, AuthenticationManager::AUTH_LEVEL_ADMIN)) { //todoSET 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);
$addQuad->setAction(self::ACTION_ADD_MAP . "." . $map->id);
//Description Label
$descriptionLabel = new Label();
$frame->add($descriptionLabel);
$descriptionLabel->setAlign(Control::LEFT, Control::TOP);
$descriptionLabel->setPosition($x + 10, -$this->height / 2 + 5);
$descriptionLabel->setSize($this->width * 0.7, 4);
$descriptionLabel->setTextSize(2);
$descriptionLabel->setVisible(false);
$descriptionLabel->setText("Add-Map: {$map->name}");
2013-12-31 11:18:12 +01:00
$script->addTooltip($addQuad, $descriptionLabel);
2013-12-29 12:01:13 +01:00
}
2013-12-15 15:13:56 +01:00
$y -= 4;
2013-12-15 12:34:35 +01:00
$i++;
2014-01-02 10:38:46 +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
}
//TODO add MX info screen
2013-12-14 22:00:59 +01:00
//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() {
2013-12-14 22:00:59 +01:00
//mainframe
$frame = new Frame();
2014-01-02 10:38:46 +01:00
$frame->setSize($this->width, $this->height);
2013-12-14 22:00:59 +01:00
$frame->setPosition(0, 0);
//Background Quad
$backgroundQuad = new Quad();
$frame->add($backgroundQuad);
2014-01-02 10:38:46 +01:00
$backgroundQuad->setSize($this->width, $this->height);
$backgroundQuad->setStyles($this->quadStyle, $this->quadSubstyle);
// Add Close Quad (X)
$closeQuad = new Quad_Icons64x64_1();
$frame->add($closeQuad);
$closeQuad->setPosition($this->width * 0.483, $this->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-02 13:51:50 +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) {
2013-12-29 15:52:01 +01:00
2014-01-02 20:50:09 +01:00
//Get Maplist
$mapList = $this->maniaControl->mapManager->getMapList();
2013-12-28 23:24:54 +01:00
$this->mapListShown[$player->login] = self::SHOW_MAP_LIST;
$maniaLink = new ManiaLink(ManialinkManager::MAIN_MLID);
2014-01-02 10:38:46 +01:00
$frame = $this->buildMainFrame();
$maniaLink->add($frame);
2013-12-14 22:00:59 +01:00
2013-12-16 12:16:33 +01:00
// Create script and features
$script = new Script();
$maniaLink->setScript($script);
2014-01-02 20:50:09 +01:00
// Pagers
// Config
$pagerSize = 6.;
2014-01-03 18:04:46 +01:00
$pagesId = 'MapListPages';
2014-01-02 20:50:09 +01:00
2014-01-03 18:04:46 +01:00
if(count($mapList) > self::MAX_MAPS_PER_PAGE) {
2014-01-02 20:50:09 +01:00
$pagerPrev = new Quad_Icons64x64_1();
$frame->add($pagerPrev);
$pagerPrev->setPosition($this->width * 0.42, $this->height * -0.44, 2);
$pagerPrev->setSize($pagerSize, $pagerSize);
$pagerPrev->setSubStyle(Quad_Icons64x64_1::SUBSTYLE_ArrowPrev);
$pagerNext = new Quad_Icons64x64_1();
$frame->add($pagerNext);
$pagerNext->setPosition($this->width * 0.45, $this->height * -0.44, 2);
$pagerNext->setSize($pagerSize, $pagerSize);
$pagerNext->setSubStyle(Quad_Icons64x64_1::SUBSTYLE_ArrowNext);
$script->addPager($pagerPrev, -1, $pagesId);
$script->addPager($pagerNext, 1, $pagesId);
$pageCountLabel = new Label();
$frame->add($pageCountLabel);
$pageCountLabel->setHAlign(Control::RIGHT);
$pageCountLabel->setPosition($this->width * 0.40, $this->height * -0.44, 1);
$pageCountLabel->setStyle('TextTitle1');
$pageCountLabel->setTextSize(1.3);
$script->addPageLabel($pageCountLabel, $pagesId);
}
2013-12-15 11:55:44 +01:00
//Headline
$headFrame = new Frame();
$frame->add($headFrame);
2013-12-26 17:27:21 +01:00
$headFrame->setY($this->height / 2 - 5);
2014-01-02 10:38:46 +01:00
$x = -$this->width / 2;
2013-12-30 23:53:42 +01:00
$array = array("Id" => $x + 5, "Mx ID" => $x + 10, "MapName" => $x + 20, "Author" => $x + 68, "Karma" => $x + 115, "Actions" => $this->width / 2 - 15);
2014-01-02 10:38:46 +01:00
$this->maniaControl->manialinkManager->labelLine($headFrame, $array);
2013-12-15 11:55:44 +01:00
2014-01-02 13:51:50 +01:00
//Predefine Description Label
$preDefinedDescriptionLabel = new Label();
$preDefinedDescriptionLabel->setAlign(Control::LEFT, Control::TOP);
$preDefinedDescriptionLabel->setPosition($x + 10, -$this->height / 2 + 5);
$preDefinedDescriptionLabel->setSize($this->width * 0.7, 4);
$preDefinedDescriptionLabel->setTextSize(2);
$preDefinedDescriptionLabel->setVisible(false);
2013-12-31 12:36:49 +01:00
$queuedMaps = $this->maniaControl->mapManager->mapQueue->getQueuedMapsRanking();
2013-12-30 16:58:35 +01:00
/** @var KarmaPlugin $karmaPlugin */
2013-12-29 19:21:29 +01:00
$karmaPlugin = $this->maniaControl->pluginManager->getPlugin(self::DEFAULT_KARMA_PLUGIN);
2014-01-03 18:04:46 +01:00
$id = 1;
$y = $this->height / 2 - 10;
2014-01-02 20:50:09 +01:00
$pageFrames = array();
2013-12-30 16:58:35 +01:00
/** @var Map $map */
2014-01-02 10:38:46 +01:00
foreach($mapList as $map) {
2014-01-02 20:50:09 +01:00
2014-01-03 18:04:46 +01:00
if(!isset($pageFrame)) {
2014-01-02 20:50:09 +01:00
$pageFrame = new Frame();
$frame->add($pageFrame);
2014-01-03 18:04:46 +01:00
if(!empty($pageFrames)) {
2014-01-02 20:50:09 +01:00
$pageFrame->setVisible(false);
}
array_push($pageFrames, $pageFrame);
2014-01-03 18:04:46 +01:00
$y = $this->height / 2 - 10;
2014-01-02 20:50:09 +01:00
$script->addPage($pageFrame, count($pageFrames), $pagesId);
}
2013-12-30 16:58:35 +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);
2013-12-16 12:16:33 +01:00
2014-01-02 10:38:46 +01:00
if($id % 2 != 0) {
2013-12-31 02:27:40 +01:00
$lineQuad = new Quad_BgsPlayerCard();
$mapFrame->add($lineQuad);
$lineQuad->setSize($this->width, 4);
$lineQuad->setSubStyle($lineQuad::SUBSTYLE_BgPlayerCardBig);
$lineQuad->setZ(0.001);
}
2014-01-02 10:38:46 +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);
}
$mxId = '-';
2014-01-02 10:38:46 +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
}
2013-12-30 16:58:35 +01:00
//Display Maps
2013-12-30 23:53:42 +01:00
$array = array($id => $x + 5, $mxId => $x + 10, $map->name => $x + 20, $map->authorNick => $x + 68);
2014-01-02 10:38:46 +01:00
$this->maniaControl->manialinkManager->labelLine($mapFrame, $array);
2013-12-30 16:58:35 +01:00
//TODO detailed mx info page with link to mxo
//TODO action detailed map info
2013-12-31 12:36:49 +01:00
//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);
2013-12-31 12:36:49 +01:00
//Map-Queue-Map-Label
2014-01-02 10:38:46 +01:00
if(isset($queuedMaps[$map->uid])) {
2013-12-31 12:36:49 +01:00
$label = new Label_Text();
$mapFrame->add($label);
2014-01-02 10:38:46 +01:00
$label->setX($this->width / 2 - 15);
$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]);
$label->setTextColor("FFF");
$descriptionLabel->setText("{$map->name} \$zis on Map-Queue Position: {$queuedMaps[$map->uid]}");
2014-01-02 10:38:46 +01:00
} else {
2013-12-31 12:36:49 +01:00
//Map-Queue-Map-Button
$buttLabel = new Label_Button();
$mapFrame->add($buttLabel);
2014-01-02 10:38:46 +01:00
$buttLabel->setX($this->width / 2 - 15);
2013-12-31 12:36:49 +01:00
$buttLabel->setZ(0.2);
2014-01-02 10:38:46 +01:00
$buttLabel->setSize(3, 3);
2013-12-31 12:36:49 +01:00
$buttLabel->setAction(self::ACTION_QUEUED_MAP . "." . $map->uid);
$buttLabel->setText("+");
$buttLabel->setTextColor("09F");
$descriptionLabel->setText("Add Map to the Map Queue: {$map->name}");
$script->addTooltip($buttLabel, $descriptionLabel);
2013-12-28 23:57:02 +01:00
}
2013-12-28 22:43:57 +01:00
2014-01-06 14:43:26 +01:00
if($this->maniaControl->authenticationManager->checkRight($player, AuthenticationManager::AUTH_LEVEL_ADMIN)) {
//TODO SET as setting who can add maps
2013-12-16 12:41:14 +01:00
//erase map quad
2014-01-06 14:43:26 +01:00
$eraseLabel = new Label_Button();
$mapFrame->add($eraseLabel);
$eraseLabel->setX($this->width / 2 - 5);
$eraseLabel->setZ(0.2);
$eraseLabel->setSize(3, 3);
$eraseLabel->setTextSize(1);
$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 14:43:26 +01:00
$script->addToggle($eraseLabel, $confirmFrame);
2013-12-16 12:41:14 +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);
$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 14:43:26 +01:00
if($this->maniaControl->authenticationManager->checkRight($player, AuthenticationManager::AUTH_LEVEL_MODERATOR)) {
//TODO SET as setting who can add maps
2013-12-16 12:41:14 +01:00
//switch to map quad
2013-12-31 02:27:40 +01:00
$switchToQuad = new Label_Button();
2013-12-16 12:41:14 +01:00
$mapFrame->add($switchToQuad);
2014-01-02 10:38:46 +01:00
$switchToQuad->setX($this->width / 2 - 10);
2013-12-16 12:41:14 +01:00
$switchToQuad->setZ(0.2);
2013-12-31 02:27:40 +01:00
$switchToQuad->setSize(3, 3);
2014-01-02 10:38:46 +01:00
$switchToQuad->setTextSize(2);
2013-12-31 02:27:40 +01:00
$switchToQuad->setText("»");
$switchToQuad->setTextColor("0F0");
2014-01-03 18:04:46 +01:00
$confirmFrame = $this->buildConfirmFrame($maniaLink, $y, $id);
2014-01-05 17:48:57 +01:00
$script->addToggle($switchToQuad, $confirmFrame);
2013-12-16 12:16:33 +01:00
2014-01-02 13:51:50 +01:00
$descriptionLabel = clone $preDefinedDescriptionLabel;
2013-12-16 12:41:14 +01:00
$frame->add($descriptionLabel);
$descriptionLabel->setText("Switch Directly to Map: {$map->name}");
2013-12-31 10:40:03 +01:00
$script->addTooltip($switchToQuad, $descriptionLabel);
2013-12-16 12:41:14 +01:00
}
2013-12-29 12:01:13 +01:00
2013-12-29 19:21:29 +01:00
//Display Karma bar
2014-01-02 10:38:46 +01:00
if($karmaPlugin != null) {
2013-12-29 19:21:29 +01:00
$karma = $karmaPlugin->getMapKarma($map);
$votes = $karmaPlugin->getMapVotes($map);
2014-01-02 10:38:46 +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');
$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);
$karmaLabel->setTextColor("000");
$karmaLabel->setAlign(Control::CENTER, Control::CENTER);
$karmaLabel->setText(' ' . round($karma * 100.) . '% (' . $votes['count'] . ')');
}
}
2013-12-29 12:01:13 +01:00
2014-01-02 10:38:46 +01:00
2013-12-14 22:00:59 +01:00
$y -= 4;
2014-01-02 20:50:09 +01:00
if($id % self::MAX_MAPS_PER_PAGE == 0) {
unset($pageFrame);
}
2014-01-02 20:50:09 +01:00
$id++;
}
//TODO page 0 bug?
2013-12-14 22:00:59 +01:00
//render and display xml
$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
* @param $y
* @param $id
* @param bool $mapUid
* @return Frame
*/
public function buildConfirmFrame(Manialink $maniaLink, $y, $id, $mapUid = false) {
$confirmFrame = new Frame();
$maniaLink->add($confirmFrame);
$confirmFrame->setPosition($this->width / 2 + 6, $y);
$quad = new Quad();
$confirmFrame->add($quad);
$quad->setStyles($this->quadStyle, $this->quadSubstyle);
$quad->setSize(12, 4);
$quad = new Quad_BgsPlayerCard();
$confirmFrame->add($quad);
$quad->setSubStyle($quad::SUBSTYLE_BgCardSystem);
$quad->setSize(11, 3.5);
$label = new Label_Button();
$confirmFrame->add($label);
$label->setAlign(Control::CENTER, Control::CENTER);
$label->setText("Sure");
$label->setTextSize(1);
$label->setScale(0.90);
$label->setX(-1.3);
$buttLabel = new Label_Button();
$confirmFrame->add($buttLabel);
$buttLabel->setPosition(3.2, 0.4, 0.2);
$buttLabel->setSize(3, 3);
// $buttLabel->setTextSize(1);
$buttLabel->setAlign(Control::CENTER, Control::CENTER);
if(!$mapUid) {
$quad->setAction(self::ACTION_SWITCH_MAP . "." . ($id - 1));
$buttLabel->setText("»");
$buttLabel->setTextColor("0F0");
$buttLabel->setTextSize(2);
} else {
$buttLabel->setTextSize(1);
$buttLabel->setText("x");
$buttLabel->setTextColor("A00");
$quad->setAction(self::ACTION_ERASE_MAP . "." . ($id - 1) . "." . $mapUid);
}
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
*
* @param \ManiaControl\Players\Player $player
* @internal param $login
*/
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
/**
* @param array $callback
*/
2014-01-02 10:38:46 +01:00
public function handleManialinkPageAnswer(array $callback) {
$actionId = $callback[1][2];
2013-12-15 15:13:56 +01:00
$actionArray = explode(".", $actionId);
2014-01-02 10:38:46 +01:00
if(count($actionArray) <= 2) {
return;
}
2013-12-16 12:41:14 +01:00
2014-01-02 10:38:46 +01:00
$action = $actionArray[0] . "." . $actionArray[1];
2013-12-16 13:14:26 +01:00
$player = $this->maniaControl->playerManager->getPlayer($callback[1][1]);
2013-12-16 12:41:14 +01:00
2014-01-02 10:38:46 +01:00
switch($action) {
case self::ACTION_ADD_MAP:
2014-01-03 18:04:46 +01:00
$this->maniaControl->mapManager->addMapFromMx(intval($actionArray[2]), $callback[1][1]);
2014-01-02 10:38:46 +01:00
break;
case self::ACTION_ERASE_MAP:
2014-01-03 18:04:46 +01:00
$this->maniaControl->mapManager->eraseMap(intval($actionArray[2]), $actionArray[3]);
2014-01-02 10:38:46 +01:00
$this->showMapList($player);
break;
case self::ACTION_SWITCH_MAP:
2014-01-03 18:04:46 +01:00
$this->maniaControl->client->query('JumpToMapIndex', intval($actionArray[2]));
2014-01-02 10:38:46 +01:00
$mapList = $this->maniaControl->mapManager->getMapList();
2013-12-16 12:41:14 +01:00
2014-01-02 10:38:46 +01:00
$this->maniaControl->chat->sendSuccess('Map switched to $z$<' . $mapList[$actionArray[2]]->name . '$>!'); //TODO specified message, who done it?
$this->maniaControl->log(Formatter::stripCodes('Skipped to $z$<' . $mapList[$actionArray[2]]->name . '$>!'));
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;
}
return;
2013-12-15 15:13:56 +01:00
}
2013-12-28 23:24:54 +01:00
/**
* Reopen the widget on Map Begin, MapListChanged
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) {
foreach($this->mapListShown as $login => $shown) {
if($shown) {
2013-12-28 23:24:54 +01:00
$player = $this->maniaControl->playerManager->getPlayer($login);
2014-01-02 10:38:46 +01:00
if($player != null) {
if($shown == self::SHOW_MX_LIST) {
2013-12-28 23:24:54 +01:00
//TODO
2014-01-02 10:38:46 +01:00
} else if($shown == self::SHOW_MAP_LIST) {
2013-12-28 23:24:54 +01:00
$this->showMapList($player);
}
2014-01-02 10:38:46 +01:00
} else {
2013-12-28 23:24:54 +01:00
unset($this->mapListShown[$login]);
}
}
}
}
2013-12-14 22:00:59 +01:00
}