2014-05-03 21:57:38 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace MCTeam;
|
|
|
|
|
|
|
|
use FML\Controls\Control;
|
|
|
|
use FML\Controls\Frame;
|
|
|
|
use FML\Controls\Gauge;
|
|
|
|
use FML\Controls\Label;
|
|
|
|
use FML\Controls\Labels\Label_Button;
|
|
|
|
use FML\Controls\Labels\Label_Text;
|
|
|
|
use FML\Controls\Quad;
|
|
|
|
use FML\Controls\Quads\Quad_BgsPlayerCard;
|
|
|
|
use FML\Controls\Quads\Quad_Icons128x32_1;
|
|
|
|
use FML\Controls\Quads\Quad_Icons64x64_1;
|
|
|
|
use FML\Controls\Quads\Quad_UIConstruction_Buttons;
|
|
|
|
use FML\ManiaLink;
|
2014-05-03 23:49:58 +02:00
|
|
|
use FML\Script\Features\KeyAction;
|
2014-05-03 21:57:38 +02:00
|
|
|
use ManiaControl\Callbacks\CallbackListener;
|
|
|
|
use ManiaControl\Callbacks\CallbackManager;
|
2014-07-04 11:34:17 +02:00
|
|
|
use ManiaControl\Callbacks\Callbacks;
|
2014-05-03 21:57:38 +02:00
|
|
|
use ManiaControl\Callbacks\TimerListener;
|
|
|
|
use ManiaControl\Commands\CommandListener;
|
|
|
|
use ManiaControl\ManiaControl;
|
|
|
|
use ManiaControl\Manialinks\ManialinkPageAnswerListener;
|
|
|
|
use ManiaControl\Players\Player;
|
|
|
|
use ManiaControl\Players\PlayerManager;
|
|
|
|
use ManiaControl\Plugins\Plugin;
|
2014-07-19 23:29:20 +02:00
|
|
|
use ManiaControl\Server\Commands;
|
2014-07-26 16:07:52 +02:00
|
|
|
use ManiaControl\Server\Server;
|
2014-05-13 16:03:26 +02:00
|
|
|
use ManiaControl\Utils\ColorUtil;
|
2014-05-03 21:57:38 +02:00
|
|
|
use Maniaplanet\DedicatedServer\Structures\VoteRatio;
|
2014-07-04 10:06:07 +02:00
|
|
|
use Maniaplanet\DedicatedServer\Xmlrpc\ChangeInProgressException;
|
2014-05-13 17:59:37 +02:00
|
|
|
use Maniaplanet\DedicatedServer\Xmlrpc\GameModeException;
|
2014-05-03 21:57:38 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ManiaControl Custom-Votes Plugin
|
|
|
|
*
|
2014-05-03 23:49:58 +02:00
|
|
|
* @author ManiaControl Team <mail@maniacontrol.com>
|
|
|
|
* @copyright 2014 ManiaControl Team
|
|
|
|
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
2014-05-03 21:57:38 +02:00
|
|
|
*/
|
|
|
|
class CustomVotesPlugin implements CommandListener, CallbackListener, ManialinkPageAnswerListener, TimerListener, Plugin {
|
|
|
|
/*
|
|
|
|
* Constants
|
|
|
|
*/
|
|
|
|
const PLUGIN_ID = 5;
|
|
|
|
const PLUGIN_VERSION = 0.1;
|
|
|
|
const PLUGIN_NAME = 'CustomVotesPlugin';
|
|
|
|
const PLUGIN_AUTHOR = 'kremsy';
|
|
|
|
|
|
|
|
const SETTING_VOTE_ICON_POSX = 'Vote-Icon-Position: X';
|
|
|
|
const SETTING_VOTE_ICON_POSY = 'Vote-Icon-Position: Y';
|
|
|
|
const SETTING_VOTE_ICON_WIDTH = 'Vote-Icon-Size: Width';
|
|
|
|
const SETTING_VOTE_ICON_HEIGHT = 'Vote-Icon-Size: Height';
|
|
|
|
|
|
|
|
const SETTING_WIDGET_POSX = 'Widget-Position: X';
|
|
|
|
const SETTING_WIDGET_POSY = 'Widget-Position: Y';
|
|
|
|
const SETTING_WIDGET_WIDTH = 'Widget-Size: Width';
|
|
|
|
const SETTING_WIDGET_HEIGHT = 'Widget-Size: Height';
|
|
|
|
const SETTING_VOTE_TIME = 'Voting Time';
|
|
|
|
const SETTING_DEFAULT_PLAYER_RATIO = 'Minimum Player Voters Ratio';
|
|
|
|
const SETTING_DEFAULT_RATIO = 'Default Success Ratio';
|
2014-05-13 01:18:47 +02:00
|
|
|
const SETTING_SPECTATOR_ALLOW_VOTE = 'Allow Spectators to vote';
|
|
|
|
const SETTING_SPECTATOR_ALLOW_START_VOTE = 'Allow Spectators to start a vote';
|
2014-05-03 21:57:38 +02:00
|
|
|
|
|
|
|
const MLID_WIDGET = 'CustomVotesPlugin.WidgetId';
|
|
|
|
const MLID_ICON = 'CustomVotesPlugin.IconWidgetId';
|
|
|
|
|
|
|
|
|
|
|
|
const ACTION_POSITIVE_VOTE = 'CustomVotesPlugin.PositiveVote';
|
|
|
|
const ACTION_NEGATIVE_VOTE = 'CustomVotesPlugin.NegativeVote';
|
|
|
|
const ACTION_START_VOTE = 'CustomVotesPlugin.StartVote.';
|
|
|
|
|
|
|
|
|
|
|
|
const CB_CUSTOM_VOTE_FINISHED = 'CustomVotesPlugin.CustomVoteFinished';
|
|
|
|
|
2014-05-03 23:49:58 +02:00
|
|
|
/*
|
2014-05-03 23:09:38 +02:00
|
|
|
* Private Properties
|
2014-05-03 21:57:38 +02:00
|
|
|
*/
|
|
|
|
/** @var maniaControl $maniaControl */
|
|
|
|
private $maniaControl = null;
|
|
|
|
private $voteCommands = array();
|
|
|
|
private $voteMenuItems = array();
|
|
|
|
/** @var CurrentVote $currentVote */
|
|
|
|
private $currentVote = null;
|
|
|
|
|
|
|
|
/**
|
2014-05-03 23:49:58 +02:00
|
|
|
* @see \ManiaControl\Plugins\Plugin::prepare()
|
2014-05-03 21:57:38 +02:00
|
|
|
*/
|
|
|
|
public static function prepare(ManiaControl $maniaControl) {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-03 23:49:58 +02:00
|
|
|
* @see \ManiaControl\Plugins\Plugin::getId()
|
|
|
|
*/
|
|
|
|
public static function getId() {
|
|
|
|
return self::PLUGIN_ID;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @see \ManiaControl\Plugins\Plugin::getName()
|
|
|
|
*/
|
|
|
|
public static function getName() {
|
|
|
|
return self::PLUGIN_NAME;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @see \ManiaControl\Plugins\Plugin::getVersion()
|
|
|
|
*/
|
|
|
|
public static function getVersion() {
|
|
|
|
return self::PLUGIN_VERSION;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @see \ManiaControl\Plugins\Plugin::getAuthor()
|
|
|
|
*/
|
|
|
|
public static function getAuthor() {
|
|
|
|
return self::PLUGIN_AUTHOR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @see \ManiaControl\Plugins\Plugin::getDescription()
|
|
|
|
*/
|
|
|
|
public static function getDescription() {
|
|
|
|
return 'Plugin offers your Custom Votes like Restart, Skip, Balance...';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @see \ManiaControl\Plugins\Plugin::load()
|
2014-05-03 21:57:38 +02:00
|
|
|
*/
|
|
|
|
public function load(ManiaControl $maniaControl) {
|
|
|
|
$this->maniaControl = $maniaControl;
|
|
|
|
|
|
|
|
$this->maniaControl->commandManager->registerCommandListener('vote', $this, 'chat_vote', false, 'Starts a new vote.');
|
|
|
|
$this->maniaControl->timerManager->registerTimerListening($this, 'handle1Second', 1000);
|
2014-07-26 16:07:52 +02:00
|
|
|
$this->maniaControl->callbackManager->registerCallbackListener(Commands::CB_VOTE_CANCELLED, $this, 'handleVoteCancelled');
|
2014-05-03 21:57:38 +02:00
|
|
|
$this->maniaControl->manialinkManager->registerManialinkPageAnswerListener(self::ACTION_POSITIVE_VOTE, $this, 'handlePositiveVote');
|
|
|
|
$this->maniaControl->manialinkManager->registerManialinkPageAnswerListener(self::ACTION_NEGATIVE_VOTE, $this, 'handleNegativeVote');
|
|
|
|
|
|
|
|
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MP_PLAYERMANIALINKPAGEANSWER, $this, 'handleManialinkPageAnswer');
|
|
|
|
$this->maniaControl->callbackManager->registerCallbackListener(self::CB_CUSTOM_VOTE_FINISHED, $this, 'handleVoteFinished');
|
|
|
|
$this->maniaControl->callbackManager->registerCallbackListener(PlayerManager::CB_PLAYERCONNECT, $this, 'handlePlayerConnect');
|
2014-05-11 16:02:29 +02:00
|
|
|
$this->maniaControl->callbackManager->registerCallbackListener(Server::CB_TEAM_MODE_CHANGED, $this, 'constructMenu');
|
2014-05-03 21:57:38 +02:00
|
|
|
|
|
|
|
//Settings
|
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_VOTE_ICON_POSX, 156.);
|
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_VOTE_ICON_POSY, -38.6);
|
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_VOTE_ICON_WIDTH, 6);
|
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_VOTE_ICON_HEIGHT, 6);
|
|
|
|
|
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_WIDGET_POSX, -80); //160 -15
|
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_WIDGET_POSY, 80); //-15
|
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_WIDGET_WIDTH, 50); //30
|
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_WIDGET_HEIGHT, 20); //25
|
|
|
|
|
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_DEFAULT_RATIO, 0.75);
|
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_DEFAULT_PLAYER_RATIO, 0.65);
|
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_SPECTATOR_ALLOW_VOTE, false);
|
2014-05-04 11:09:11 +02:00
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_SPECTATOR_ALLOW_START_VOTE, true);
|
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_VOTE_TIME, 40);
|
2014-05-03 21:57:38 +02:00
|
|
|
|
|
|
|
//Define Votes
|
|
|
|
$this->defineVote("teambalance", "Vote for Team Balance");
|
2014-07-04 11:34:17 +02:00
|
|
|
$this->defineVote("skipmap", "Vote for Skip Map")
|
|
|
|
->setStopCallback(Callbacks::ENDMAP);
|
|
|
|
$this->defineVote("nextmap", "Vote for Skip Map")
|
|
|
|
->setStopCallback(Callbacks::ENDMAP);
|
|
|
|
$this->defineVote("skip", "Vote for Skip Map")
|
|
|
|
->setStopCallback(Callbacks::ENDMAP);
|
|
|
|
$this->defineVote("restartmap", "Vote for Restart Map")
|
|
|
|
->setStopCallback(Callbacks::ENDMAP);
|
|
|
|
$this->defineVote("restart", "Vote for Restart Map")
|
|
|
|
->setStopCallback(Callbacks::ENDMAP);
|
2014-05-03 21:57:38 +02:00
|
|
|
$this->defineVote("pausegame", "Vote for Pause Game");
|
|
|
|
$this->defineVote("replay", "Vote to replay current map");
|
|
|
|
|
2014-05-03 23:49:58 +02:00
|
|
|
foreach ($this->voteCommands as $name => $voteCommand) {
|
2014-05-03 21:57:38 +02:00
|
|
|
$this->maniaControl->commandManager->registerCommandListener($name, $this, 'handleChatVote', false, $voteCommand->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Disable Standard Votes */
|
2014-05-08 19:34:19 +02:00
|
|
|
$ratioArray[] = new VoteRatio(VoteRatio::COMMAND_BAN, -1.);
|
|
|
|
$ratioArray[] = new VoteRatio(VoteRatio::COMMAND_KICK, -1.);
|
|
|
|
$ratioArray[] = new VoteRatio(VoteRatio::COMMAND_RESTART_MAP, -1.);
|
|
|
|
$ratioArray[] = new VoteRatio(VoteRatio::COMMAND_TEAM_BALANCE, -1.);
|
|
|
|
$ratioArray[] = new VoteRatio(VoteRatio::COMMAND_NEXT_MAP, -1.);
|
2014-05-03 21:57:38 +02:00
|
|
|
|
2014-05-08 19:34:19 +02:00
|
|
|
$this->maniaControl->client->setCallVoteRatios($ratioArray, false);
|
2014-05-03 21:57:38 +02:00
|
|
|
|
|
|
|
$this->constructMenu();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-09 17:31:29 +02:00
|
|
|
* Define a Vote
|
2014-05-03 23:49:58 +02:00
|
|
|
*
|
2014-05-09 17:31:29 +02:00
|
|
|
* @param int $voteIndex
|
|
|
|
* @param string $voteName
|
|
|
|
* @param bool $idBased
|
|
|
|
* @param string $startText
|
|
|
|
* @param float $neededRatio
|
2014-07-04 11:34:17 +02:00
|
|
|
* @return \MCTeam\VoteCommand
|
2014-05-03 23:49:58 +02:00
|
|
|
*/
|
|
|
|
public function defineVote($voteIndex, $voteName, $idBased = false, $startText = '', $neededRatio = -1) {
|
2014-06-14 14:32:29 +02:00
|
|
|
if ($neededRatio < 0) {
|
2014-05-13 16:03:26 +02:00
|
|
|
$neededRatio = $this->maniaControl->settingManager->getSettingValue($this, self::SETTING_DEFAULT_RATIO);
|
2014-05-03 23:49:58 +02:00
|
|
|
}
|
|
|
|
$voteCommand = new VoteCommand($voteIndex, $voteName, $idBased, $neededRatio);
|
|
|
|
$voteCommand->startText = $startText;
|
|
|
|
$this->voteCommands[$voteIndex] = $voteCommand;
|
2014-07-04 11:34:17 +02:00
|
|
|
|
|
|
|
return $voteCommand;
|
2014-05-03 23:49:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle ManiaControl OnInit callback
|
|
|
|
*
|
|
|
|
* @internal param array $callback
|
|
|
|
*/
|
|
|
|
public function constructMenu() {
|
|
|
|
// Menu RestartMap
|
|
|
|
$itemQuad = new Quad_UIConstruction_Buttons();
|
|
|
|
$itemQuad->setSubStyle($itemQuad::SUBSTYLE_Reload);
|
|
|
|
$itemQuad->setAction(self::ACTION_START_VOTE . 'restartmap');
|
|
|
|
$this->addVoteMenuItem($itemQuad, 5, 'Vote for Restart-Map');
|
|
|
|
|
|
|
|
//Check if Pause exists in current GameMode
|
|
|
|
try {
|
|
|
|
$scriptInfos = $this->maniaControl->client->getModeScriptInfo();
|
|
|
|
|
|
|
|
$pauseExists = false;
|
|
|
|
foreach ($scriptInfos->commandDescs as $param) {
|
2014-06-14 14:32:29 +02:00
|
|
|
if ($param->name === "Command_ForceWarmUp") {
|
2014-05-03 23:49:58 +02:00
|
|
|
$pauseExists = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Menu Pause
|
|
|
|
if ($pauseExists) {
|
|
|
|
$itemQuad = new Quad_Icons128x32_1();
|
|
|
|
$itemQuad->setSubStyle($itemQuad::SUBSTYLE_ManiaLinkSwitch);
|
|
|
|
$itemQuad->setAction(self::ACTION_START_VOTE . 'pausegame');
|
|
|
|
$this->addVoteMenuItem($itemQuad, 10, 'Vote for a pause of Current Game');
|
|
|
|
}
|
2014-05-13 17:59:37 +02:00
|
|
|
} catch (GameModeException $e) {
|
2014-05-03 23:49:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//Menu SkipMap
|
|
|
|
$itemQuad = new Quad_Icons64x64_1();
|
|
|
|
$itemQuad->setSubStyle($itemQuad::SUBSTYLE_ArrowFastNext);
|
|
|
|
$itemQuad->setAction(self::ACTION_START_VOTE . 'skipmap');
|
2014-05-24 20:39:18 +02:00
|
|
|
$this->addVoteMenuItem($itemQuad, 15, 'Vote for a Map Skip');
|
2014-05-03 23:49:58 +02:00
|
|
|
|
2014-05-11 16:02:29 +02:00
|
|
|
if ($this->maniaControl->server->isTeamMode()) {
|
2014-05-03 23:49:58 +02:00
|
|
|
//Menu TeamBalance
|
|
|
|
$itemQuad = new Quad_Icons128x32_1();
|
|
|
|
$itemQuad->setSubStyle($itemQuad::SUBSTYLE_RT_Team);
|
|
|
|
$itemQuad->setAction(self::ACTION_START_VOTE . 'teambalance');
|
|
|
|
$this->addVoteMenuItem($itemQuad, 20, 'Vote for Team-Balance');
|
|
|
|
}
|
|
|
|
//Show the Menu's icon
|
|
|
|
$this->showIcon();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a new Vote Menu Item
|
|
|
|
*
|
|
|
|
* @param Control $control
|
|
|
|
* @param int $order
|
|
|
|
* @param string $description
|
|
|
|
*/
|
|
|
|
public function addVoteMenuItem(Control $control, $order = 0, $description = null) {
|
|
|
|
if (!isset($this->voteMenuItems[$order])) {
|
|
|
|
$this->voteMenuItems[$order] = array();
|
|
|
|
array_push($this->voteMenuItems[$order], array($control, $description));
|
|
|
|
krsort($this->voteMenuItems);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shows the Icon Widget
|
|
|
|
*
|
|
|
|
* @param bool $login
|
|
|
|
*/
|
|
|
|
private function showIcon($login = false) {
|
2014-05-13 16:03:26 +02:00
|
|
|
$posX = $this->maniaControl->settingManager->getSettingValue($this, self::SETTING_VOTE_ICON_POSX);
|
|
|
|
$posY = $this->maniaControl->settingManager->getSettingValue($this, self::SETTING_VOTE_ICON_POSY);
|
|
|
|
$width = $this->maniaControl->settingManager->getSettingValue($this, self::SETTING_VOTE_ICON_WIDTH);
|
|
|
|
$height = $this->maniaControl->settingManager->getSettingValue($this, self::SETTING_VOTE_ICON_HEIGHT);
|
2014-05-03 23:49:58 +02:00
|
|
|
$shootManiaOffset = $this->maniaControl->manialinkManager->styleManager->getDefaultIconOffsetSM();
|
|
|
|
$quadStyle = $this->maniaControl->manialinkManager->styleManager->getDefaultQuadStyle();
|
|
|
|
$quadSubstyle = $this->maniaControl->manialinkManager->styleManager->getDefaultQuadSubstyle();
|
|
|
|
$itemMarginFactorX = 1.3;
|
|
|
|
$itemMarginFactorY = 1.2;
|
|
|
|
|
|
|
|
//If game is shootmania lower the icons position by 20
|
2014-07-04 10:06:07 +02:00
|
|
|
if ($this->maniaControl->mapManager->getCurrentMap()
|
|
|
|
->getGame() === 'sm'
|
|
|
|
) {
|
2014-05-03 23:49:58 +02:00
|
|
|
$posY -= $shootManiaOffset;
|
|
|
|
}
|
|
|
|
|
|
|
|
$itemSize = $width;
|
|
|
|
|
|
|
|
$maniaLink = new ManiaLink(self::MLID_ICON);
|
|
|
|
|
|
|
|
//Custom Vote Menu Iconsframe
|
|
|
|
$frame = new Frame();
|
|
|
|
$maniaLink->add($frame);
|
|
|
|
$frame->setPosition($posX, $posY);
|
|
|
|
|
|
|
|
$backgroundQuad = new Quad();
|
|
|
|
$frame->add($backgroundQuad);
|
|
|
|
$backgroundQuad->setSize($width * $itemMarginFactorX, $height * $itemMarginFactorY);
|
|
|
|
$backgroundQuad->setStyles($quadStyle, $quadSubstyle);
|
|
|
|
|
|
|
|
$iconFrame = new Frame();
|
|
|
|
$frame->add($iconFrame);
|
|
|
|
|
|
|
|
$iconFrame->setSize($itemSize, $itemSize);
|
|
|
|
$itemQuad = new Quad_UIConstruction_Buttons();
|
|
|
|
$itemQuad->setSubStyle($itemQuad::SUBSTYLE_Add);
|
|
|
|
$itemQuad->setSize($itemSize, $itemSize);
|
|
|
|
$iconFrame->add($itemQuad);
|
|
|
|
|
|
|
|
//Define Description Label
|
|
|
|
$menuEntries = count($this->voteMenuItems);
|
|
|
|
$descriptionFrame = new Frame();
|
|
|
|
$maniaLink->add($descriptionFrame);
|
|
|
|
$descriptionFrame->setPosition($posX - $menuEntries * $itemSize * 1.15 - 6, $posY);
|
|
|
|
|
|
|
|
$descriptionLabel = new Label();
|
|
|
|
$descriptionFrame->add($descriptionLabel);
|
2014-06-22 19:02:18 +02:00
|
|
|
$descriptionLabel->setAlign($descriptionLabel::RIGHT, $descriptionLabel::TOP);
|
2014-05-03 23:49:58 +02:00
|
|
|
$descriptionLabel->setSize(40, 4);
|
|
|
|
$descriptionLabel->setTextSize(1.4);
|
|
|
|
$descriptionLabel->setTextColor('fff');
|
|
|
|
|
|
|
|
//Popout Frame
|
|
|
|
$popoutFrame = new Frame();
|
|
|
|
$maniaLink->add($popoutFrame);
|
|
|
|
$popoutFrame->setPosition($posX - $itemSize * 0.5, $posY);
|
2014-06-22 19:02:18 +02:00
|
|
|
$popoutFrame->setHAlign($popoutFrame::RIGHT);
|
2014-05-03 23:49:58 +02:00
|
|
|
$popoutFrame->setSize(4 * $itemSize * $itemMarginFactorX, $itemSize * $itemMarginFactorY);
|
|
|
|
$popoutFrame->setVisible(false);
|
|
|
|
|
|
|
|
$backgroundQuad = new Quad();
|
|
|
|
$popoutFrame->add($backgroundQuad);
|
2014-06-22 19:02:18 +02:00
|
|
|
$backgroundQuad->setHAlign($backgroundQuad::RIGHT);
|
2014-05-03 23:49:58 +02:00
|
|
|
$backgroundQuad->setStyles($quadStyle, $quadSubstyle);
|
|
|
|
$backgroundQuad->setSize($menuEntries * $itemSize * 1.15 + 2, $itemSize * $itemMarginFactorY);
|
|
|
|
|
|
|
|
$itemQuad->addToggleFeature($popoutFrame);
|
|
|
|
|
|
|
|
// Add items
|
2014-06-14 15:48:27 +02:00
|
|
|
$posX = -1;
|
2014-05-03 23:49:58 +02:00
|
|
|
foreach ($this->voteMenuItems as $menuItems) {
|
|
|
|
foreach ($menuItems as $menuItem) {
|
2014-06-14 15:48:27 +02:00
|
|
|
/** @var Quad $menuQuad */
|
2014-05-03 23:49:58 +02:00
|
|
|
$menuQuad = $menuItem[0];
|
|
|
|
$popoutFrame->add($menuQuad);
|
|
|
|
$menuQuad->setSize($itemSize, $itemSize);
|
2014-06-14 15:48:27 +02:00
|
|
|
$menuQuad->setX($posX);
|
|
|
|
$menuQuad->setHAlign($menuQuad::RIGHT);
|
|
|
|
$posX -= $itemSize * 1.05;
|
2014-05-03 23:49:58 +02:00
|
|
|
|
|
|
|
if ($menuItem[1]) {
|
|
|
|
$menuQuad->removeScriptFeatures();
|
|
|
|
$description = '$s' . $menuItem[1];
|
|
|
|
$menuQuad->addTooltipLabelFeature($descriptionLabel, $description);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Send manialink
|
|
|
|
$this->maniaControl->manialinkManager->sendManialink($maniaLink, $login);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @see \ManiaControl\Plugins\Plugin::unload()
|
2014-05-03 21:57:38 +02:00
|
|
|
*/
|
|
|
|
public function unload() {
|
|
|
|
//Enable Standard Votes
|
|
|
|
$defaultRatio = $this->maniaControl->client->getCallVoteRatio();
|
|
|
|
|
2014-05-08 19:34:19 +02:00
|
|
|
$ratioArray[] = new VoteRatio(VoteRatio::COMMAND_BAN, $defaultRatio);
|
|
|
|
$ratioArray[] = new VoteRatio(VoteRatio::COMMAND_KICK, $defaultRatio);
|
|
|
|
$ratioArray[] = new VoteRatio(VoteRatio::COMMAND_RESTART_MAP, $defaultRatio);
|
|
|
|
$ratioArray[] = new VoteRatio(VoteRatio::COMMAND_TEAM_BALANCE, $defaultRatio);
|
|
|
|
$ratioArray[] = new VoteRatio(VoteRatio::COMMAND_NEXT_MAP, $defaultRatio);
|
|
|
|
|
|
|
|
$this->maniaControl->client->setCallVoteRatios($ratioArray, false);
|
2014-05-03 21:57:38 +02:00
|
|
|
|
|
|
|
$this->destroyVote();
|
2014-05-03 23:09:38 +02:00
|
|
|
$this->maniaControl->manialinkManager->hideManialink(self::MLID_ICON);
|
2014-05-03 21:57:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-03 23:49:58 +02:00
|
|
|
* Destroys the current Vote
|
2014-05-03 21:57:38 +02:00
|
|
|
*/
|
2014-05-03 23:49:58 +02:00
|
|
|
private function destroyVote() {
|
|
|
|
$emptyManialink = new ManiaLink(self::MLID_WIDGET);
|
|
|
|
$this->maniaControl->manialinkManager->sendManialink($emptyManialink);
|
|
|
|
|
2014-07-04 11:34:17 +02:00
|
|
|
//Remove the Listener for the Stop Callback if a stop callback is defined
|
|
|
|
if ($this->currentVote && $this->currentVote->stopCallback) {
|
|
|
|
$this->maniaControl->callbackManager->unregisterCallbackListening($this->currentVote->stopCallback, $this);
|
|
|
|
}
|
|
|
|
|
2014-07-12 19:20:38 +02:00
|
|
|
$this->currentVote = null;
|
2014-05-03 21:57:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-03 23:49:58 +02:00
|
|
|
* Handle PlayerConnect callback
|
2014-05-03 21:57:38 +02:00
|
|
|
*
|
2014-05-03 23:49:58 +02:00
|
|
|
* @param Player $player
|
2014-05-03 21:57:38 +02:00
|
|
|
*/
|
2014-05-03 23:49:58 +02:00
|
|
|
public function handlePlayerConnect(Player $player) {
|
|
|
|
$this->showIcon($player->login);
|
2014-05-03 21:57:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Chat Vote
|
|
|
|
*
|
|
|
|
* @param array $chat
|
|
|
|
* @param Player $player
|
|
|
|
*/
|
|
|
|
public function chat_vote(array $chat, Player $player) {
|
|
|
|
$command = explode(" ", $chat[1][2]);
|
|
|
|
if (isset($command[1])) {
|
|
|
|
if (isset($this->voteCommands[$command[1]])) {
|
|
|
|
$this->startVote($player, strtolower($command[1]));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-09 17:31:29 +02:00
|
|
|
* Start a vote
|
2014-05-03 21:57:38 +02:00
|
|
|
*
|
2014-05-09 17:31:29 +02:00
|
|
|
* @param Player $player
|
|
|
|
* @param int $voteIndex
|
2014-07-04 11:41:03 +02:00
|
|
|
* @param callable $function calls the given function only if the vote is successful and returns as Parameter the Voting-Results
|
2014-05-03 21:57:38 +02:00
|
|
|
*/
|
2014-05-03 23:49:58 +02:00
|
|
|
public function startVote(Player $player, $voteIndex, $function = null) {
|
|
|
|
//Player is muted
|
2014-07-19 23:40:16 +02:00
|
|
|
if ($this->maniaControl->playerManager->playerActions->isPlayerMuted($player)) {
|
2014-05-03 23:49:58 +02:00
|
|
|
$this->maniaControl->chat->sendError('Muted Players are not allowed to start a vote.', $player->login);
|
|
|
|
return;
|
|
|
|
}
|
2014-05-03 21:57:38 +02:00
|
|
|
|
2014-05-13 01:18:47 +02:00
|
|
|
// Spectators are not allowed to start a vote
|
2014-05-13 16:03:26 +02:00
|
|
|
if ($player->isSpectator && !$this->maniaControl->settingManager->getSettingValue($this, self::SETTING_SPECTATOR_ALLOW_START_VOTE)) {
|
2014-05-03 23:49:58 +02:00
|
|
|
$this->maniaControl->chat->sendError('Spectators are not allowed to start a vote.', $player->login);
|
|
|
|
return;
|
|
|
|
}
|
2014-05-03 21:57:38 +02:00
|
|
|
|
2014-05-03 23:49:58 +02:00
|
|
|
//Vote does not exist
|
|
|
|
if (!isset($this->voteCommands[$voteIndex])) {
|
|
|
|
$this->maniaControl->chat->sendError('Undefined vote.', $player->login);
|
|
|
|
return;
|
2014-05-03 21:57:38 +02:00
|
|
|
}
|
|
|
|
|
2014-05-03 23:49:58 +02:00
|
|
|
//A vote is currently running
|
|
|
|
if (isset($this->currentVote)) {
|
|
|
|
$this->maniaControl->chat->sendError('There is currently another vote running.', $player->login);
|
|
|
|
return;
|
|
|
|
}
|
2014-05-03 21:57:38 +02:00
|
|
|
|
2014-05-13 16:03:26 +02:00
|
|
|
$maxTime = $this->maniaControl->settingManager->getSettingValue($this, self::SETTING_VOTE_TIME);
|
2014-05-03 23:49:58 +02:00
|
|
|
|
2014-07-04 11:34:17 +02:00
|
|
|
/** @var VoteCommand $voteCommand */
|
|
|
|
$voteCommand = $this->voteCommands[$voteIndex];
|
2014-05-03 23:49:58 +02:00
|
|
|
|
2014-07-04 11:34:17 +02:00
|
|
|
$this->currentVote = new CurrentVote($voteCommand, $player, time() + $maxTime);
|
2014-05-13 16:03:26 +02:00
|
|
|
$this->currentVote->neededRatio = floatval($this->maniaControl->settingManager->getSettingValue($this, self::SETTING_DEFAULT_RATIO));
|
|
|
|
$this->currentVote->neededPlayerRatio = floatval($this->maniaControl->settingManager->getSettingValue($this, self::SETTING_DEFAULT_PLAYER_RATIO));
|
2014-05-03 23:49:58 +02:00
|
|
|
$this->currentVote->function = $function;
|
|
|
|
|
2014-07-04 11:34:17 +02:00
|
|
|
if ($voteCommand->getStopCallback()) {
|
|
|
|
$this->maniaControl->callbackManager->registerCallbackListener($voteCommand->getStopCallback(), $this, 'handleStopCallback');
|
|
|
|
$this->currentVote->stopCallback = $voteCommand->getStopCallback();
|
|
|
|
}
|
|
|
|
|
2014-06-14 14:32:29 +02:00
|
|
|
if ($this->currentVote->voteCommand->startText) {
|
2014-05-03 23:49:58 +02:00
|
|
|
$message = $this->currentVote->voteCommand->startText;
|
|
|
|
} else {
|
|
|
|
$message = '$fff$<' . $player->nickname . '$>$s$f8f started a $fff$<' . $this->currentVote->voteCommand->name . '$>$f8f!';
|
2014-05-03 21:57:38 +02:00
|
|
|
}
|
2014-05-03 23:49:58 +02:00
|
|
|
|
|
|
|
$this->maniaControl->chat->sendSuccess($message);
|
2014-05-03 21:57:38 +02:00
|
|
|
}
|
|
|
|
|
2014-07-04 11:34:17 +02:00
|
|
|
/**
|
|
|
|
* Destroys the Vote on the Stop Callback
|
|
|
|
*/
|
|
|
|
public function handleStopCallback() {
|
|
|
|
$this->destroyVote();
|
|
|
|
}
|
|
|
|
|
2014-05-03 21:57:38 +02:00
|
|
|
/**
|
2014-07-26 16:07:52 +02:00
|
|
|
* Destroy the Vote on Cancelled Callback
|
2014-05-03 21:57:38 +02:00
|
|
|
*/
|
2014-07-26 16:07:52 +02:00
|
|
|
public function handleVoteCancelled() {
|
2014-05-03 21:57:38 +02:00
|
|
|
$this->destroyVote();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle Standard Votes
|
|
|
|
*
|
2014-05-13 16:40:05 +02:00
|
|
|
* @param string $voteName
|
|
|
|
* @param float $voteResult
|
2014-05-03 21:57:38 +02:00
|
|
|
*/
|
|
|
|
public function handleVoteFinished($voteName, $voteResult) {
|
|
|
|
if ($voteResult >= $this->currentVote->neededRatio) {
|
|
|
|
// Call Closure if one exists
|
|
|
|
if (is_callable($this->currentVote->function)) {
|
|
|
|
call_user_func($this->currentVote->function, $voteResult);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-05-03 23:49:58 +02:00
|
|
|
switch ($voteName) {
|
2014-05-03 21:57:38 +02:00
|
|
|
case 'teambalance':
|
|
|
|
$this->maniaControl->client->autoTeamBalance();
|
2014-05-13 16:03:26 +02:00
|
|
|
$this->maniaControl->chat->sendInformation('$f8fVote to $fffbalance the Teams$f8f has been successful!');
|
2014-05-03 21:57:38 +02:00
|
|
|
break;
|
|
|
|
case 'skipmap':
|
|
|
|
case 'skip':
|
|
|
|
case 'nextmap':
|
2014-07-04 10:06:07 +02:00
|
|
|
try {
|
|
|
|
$this->maniaControl->mapManager->mapActions->skipMap();
|
|
|
|
} catch (ChangeInProgressException $e) {
|
|
|
|
}
|
2014-05-13 16:03:26 +02:00
|
|
|
$this->maniaControl->chat->sendInformation('$f8fVote to $fffskip the Map$f8f has been successful!');
|
2014-05-03 21:57:38 +02:00
|
|
|
break;
|
|
|
|
case 'restartmap':
|
2014-07-04 10:06:07 +02:00
|
|
|
try {
|
|
|
|
$this->maniaControl->client->restartMap();
|
|
|
|
} catch (ChangeInProgressException $e) {
|
|
|
|
}
|
2014-05-13 16:03:26 +02:00
|
|
|
$this->maniaControl->chat->sendInformation('$f8fVote to $fffrestart the Map$f8f has been successful!');
|
2014-05-03 21:57:38 +02:00
|
|
|
break;
|
|
|
|
case 'pausegame':
|
2014-05-03 23:49:58 +02:00
|
|
|
$this->maniaControl->client->sendModeScriptCommands(array('Command_ForceWarmUp' => true));
|
2014-05-13 16:03:26 +02:00
|
|
|
$this->maniaControl->chat->sendInformation('$f8fVote to $fffpause the current Game$f8f has been successful!');
|
2014-05-03 21:57:38 +02:00
|
|
|
break;
|
|
|
|
case 'replay':
|
|
|
|
$this->maniaControl->mapManager->mapQueue->addFirstMapToMapQueue($this->currentVote->voter, $this->maniaControl->mapManager->getCurrentMap());
|
2014-05-13 16:03:26 +02:00
|
|
|
$this->maniaControl->chat->sendInformation('$f8fVote to $fffreplay the Map$f8f has been successful!');
|
2014-05-03 21:57:38 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
2014-07-10 22:23:47 +02:00
|
|
|
//FIXME bugreport, no fail message on vote fail sometimes
|
2014-05-03 21:57:38 +02:00
|
|
|
$this->maniaControl->chat->sendError('Vote Failed!');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handles the ManialinkPageAnswers and start a vote if a button in the panel got clicked
|
|
|
|
*
|
|
|
|
* @param array $callback
|
|
|
|
*/
|
|
|
|
public function handleManialinkPageAnswer(array $callback) {
|
|
|
|
$actionId = $callback[1][2];
|
|
|
|
$actionArray = explode('.', $actionId);
|
|
|
|
if (count($actionArray) <= 2) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$voteIndex = $actionArray[2];
|
|
|
|
if (isset($this->voteCommands[$voteIndex])) {
|
|
|
|
$login = $callback[1][1];
|
|
|
|
$player = $this->maniaControl->playerManager->getPlayer($login);
|
|
|
|
$this->startVote($player, $voteIndex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-13 16:03:26 +02:00
|
|
|
/**
|
|
|
|
* Handle a Player Chat Vote
|
|
|
|
*
|
|
|
|
* @param array $chat
|
|
|
|
* @param Player $player
|
|
|
|
*/
|
2014-05-03 21:57:38 +02:00
|
|
|
public function handleChatVote(array $chat, Player $player) {
|
|
|
|
$chatCommand = explode(' ', $chat[1][2]);
|
|
|
|
$chatCommand = $chatCommand[0];
|
|
|
|
$chatCommand = str_replace('/', '', $chatCommand);
|
|
|
|
|
|
|
|
if (isset($this->voteCommands[$chatCommand])) {
|
|
|
|
$this->startVote($player, $chatCommand);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-13 16:40:05 +02:00
|
|
|
* Undefine a Vote
|
2014-05-03 21:57:38 +02:00
|
|
|
*
|
2014-05-13 16:40:05 +02:00
|
|
|
* @param int $voteIndex
|
2014-05-03 21:57:38 +02:00
|
|
|
*/
|
|
|
|
public function undefineVote($voteIndex) {
|
|
|
|
unset($this->voteCommands[$voteIndex]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handles a Positive Vote
|
|
|
|
*
|
|
|
|
* @param array $callback
|
|
|
|
* @param Player $player
|
|
|
|
*/
|
|
|
|
public function handlePositiveVote(array $callback, Player $player) {
|
2014-05-13 16:03:26 +02:00
|
|
|
if (!isset($this->currentVote) || $player->isSpectator && !$this->maniaControl->settingManager->getSettingValue($this, self::SETTING_SPECTATOR_ALLOW_VOTE)) {
|
2014-05-03 21:57:38 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->currentVote->votePositive($player->login);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handles a negative Vote
|
|
|
|
*
|
|
|
|
* @param array $callback
|
|
|
|
* @param Player $player
|
|
|
|
*/
|
|
|
|
public function handleNegativeVote(array $callback, Player $player) {
|
2014-05-13 16:03:26 +02:00
|
|
|
if (!isset($this->currentVote) || $player->isSpectator && !$this->maniaControl->settingManager->getSettingValue($this, self::SETTING_SPECTATOR_ALLOW_VOTE)) {
|
2014-05-03 21:57:38 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->currentVote->voteNegative($player->login);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-13 16:40:05 +02:00
|
|
|
* Handle ManiaControl 1 Second Callback
|
2014-05-03 21:57:38 +02:00
|
|
|
*/
|
2014-05-13 16:40:05 +02:00
|
|
|
public function handle1Second() {
|
2014-05-03 21:57:38 +02:00
|
|
|
if (!isset($this->currentVote)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-05-15 18:10:01 +02:00
|
|
|
$voteCount = $this->currentVote->getVoteCount();
|
|
|
|
$votePercentage = 0;
|
|
|
|
if ($voteCount > 0) {
|
|
|
|
$votePercentage = $this->currentVote->positiveVotes / floatval($voteCount);
|
|
|
|
}
|
2014-05-03 21:57:38 +02:00
|
|
|
|
|
|
|
$timeUntilExpire = $this->currentVote->expireTime - time();
|
|
|
|
$this->showVoteWidget($timeUntilExpire, $votePercentage);
|
|
|
|
|
|
|
|
$playerCount = $this->maniaControl->playerManager->getPlayerCount();
|
2014-05-15 18:10:01 +02:00
|
|
|
$playersVoteRatio = 0;
|
|
|
|
if ($playerCount > 0 && $voteCount > 0) {
|
|
|
|
$playersVoteRatio = floatval($voteCount) / floatval($playerCount);
|
|
|
|
}
|
2014-05-03 21:57:38 +02:00
|
|
|
|
|
|
|
//Check if vote is over
|
|
|
|
if ($timeUntilExpire <= 0 || (($playersVoteRatio >= $this->currentVote->neededPlayerRatio) && (($votePercentage >= $this->currentVote->neededRatio) || ($votePercentage <= 1 - $this->currentVote->neededRatio)))) {
|
|
|
|
// Trigger callback
|
|
|
|
$this->maniaControl->callbackManager->triggerCallback(self::CB_CUSTOM_VOTE_FINISHED, $this->currentVote->voteCommand->index, $votePercentage);
|
|
|
|
|
|
|
|
//reset vote
|
|
|
|
$this->destroyVote();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-13 16:03:26 +02:00
|
|
|
* Show the vote widget
|
2014-05-03 21:57:38 +02:00
|
|
|
*
|
2014-05-13 16:03:26 +02:00
|
|
|
* @param int $timeUntilExpire
|
|
|
|
* @param float $votePercentage
|
2014-05-03 21:57:38 +02:00
|
|
|
*/
|
|
|
|
private function showVoteWidget($timeUntilExpire, $votePercentage) {
|
2014-06-14 15:48:27 +02:00
|
|
|
$posX = $this->maniaControl->settingManager->getSettingValue($this, self::SETTING_WIDGET_POSX);
|
|
|
|
$posY = $this->maniaControl->settingManager->getSettingValue($this, self::SETTING_WIDGET_POSY);
|
2014-05-13 16:03:26 +02:00
|
|
|
$width = $this->maniaControl->settingManager->getSettingValue($this, self::SETTING_WIDGET_WIDTH);
|
|
|
|
$height = $this->maniaControl->settingManager->getSettingValue($this, self::SETTING_WIDGET_HEIGHT);
|
|
|
|
$maxTime = $this->maniaControl->settingManager->getSettingValue($this, self::SETTING_VOTE_TIME);
|
2014-05-03 21:57:38 +02:00
|
|
|
|
|
|
|
$quadStyle = $this->maniaControl->manialinkManager->styleManager->getDefaultQuadStyle();
|
|
|
|
$quadSubstyle = $this->maniaControl->manialinkManager->styleManager->getDefaultQuadSubstyle();
|
|
|
|
$labelStyle = $this->maniaControl->manialinkManager->styleManager->getDefaultLabelStyle();
|
|
|
|
|
|
|
|
$maniaLink = new ManiaLink(self::MLID_WIDGET);
|
|
|
|
|
|
|
|
// mainframe
|
|
|
|
$frame = new Frame();
|
|
|
|
$maniaLink->add($frame);
|
|
|
|
$frame->setSize($width, $height);
|
2014-06-14 15:48:27 +02:00
|
|
|
$frame->setPosition($posX, $posY, 30);
|
2014-05-03 21:57:38 +02:00
|
|
|
|
|
|
|
// Background Quad
|
|
|
|
$backgroundQuad = new Quad();
|
|
|
|
$frame->add($backgroundQuad);
|
|
|
|
$backgroundQuad->setSize($width, $height);
|
|
|
|
$backgroundQuad->setStyles($quadStyle, $quadSubstyle);
|
|
|
|
|
|
|
|
//Vote for label
|
|
|
|
$label = new Label_Text();
|
|
|
|
$frame->add($label);
|
|
|
|
$label->setY($height / 2 - 3);
|
|
|
|
$label->setSize($width - 5, $height);
|
|
|
|
$label->setTextSize(1.3);
|
|
|
|
$label->setText('$s ' . $this->currentVote->voteCommand->name);
|
|
|
|
|
|
|
|
//Started by nick
|
|
|
|
$label = new Label_Text();
|
|
|
|
$frame->add($label);
|
|
|
|
$label->setY($height / 2 - 6);
|
|
|
|
$label->setSize($width - 5, 2);
|
|
|
|
$label->setTextSize(1);
|
2014-06-14 15:48:27 +02:00
|
|
|
$label->setTextColor('F80');
|
2014-05-03 21:57:38 +02:00
|
|
|
$label->setText('$sStarted by ' . $this->currentVote->voter->nickname);
|
|
|
|
|
|
|
|
//Time Gauge
|
|
|
|
$timeGauge = new Gauge();
|
|
|
|
$frame->add($timeGauge);
|
|
|
|
$timeGauge->setY(1.5);
|
|
|
|
$timeGauge->setSize($width * 0.95, 6);
|
|
|
|
$timeGauge->setDrawBg(false);
|
2014-05-03 23:49:58 +02:00
|
|
|
if (!$timeUntilExpire) {
|
|
|
|
$timeUntilExpire = 1;
|
|
|
|
}
|
2014-05-03 21:57:38 +02:00
|
|
|
$timeGaugeRatio = (100 / $maxTime * $timeUntilExpire) / 100;
|
|
|
|
$timeGauge->setRatio($timeGaugeRatio + 0.15 - $timeGaugeRatio * 0.15);
|
|
|
|
$gaugeColor = ColorUtil::floatToStatusColor($timeGaugeRatio);
|
|
|
|
$timeGauge->setColor($gaugeColor . '9');
|
|
|
|
|
|
|
|
//Time Left
|
|
|
|
$label = new Label_Text();
|
|
|
|
$frame->add($label);
|
|
|
|
$label->setY(0);
|
|
|
|
$label->setSize($width - 5, $height);
|
|
|
|
$label->setTextSize(1.1);
|
|
|
|
$label->setText('$sTime left: ' . $timeUntilExpire . "s");
|
2014-06-14 15:48:27 +02:00
|
|
|
$label->setTextColor('FFF');
|
2014-05-03 21:57:38 +02:00
|
|
|
|
|
|
|
//Vote Gauge
|
|
|
|
$voteGauge = new Gauge();
|
|
|
|
$frame->add($voteGauge);
|
|
|
|
$voteGauge->setY(-4);
|
|
|
|
$voteGauge->setSize($width * 0.65, 12);
|
|
|
|
$voteGauge->setDrawBg(false);
|
|
|
|
$voteGauge->setRatio($votePercentage + 0.10 - $votePercentage * 0.10);
|
|
|
|
$gaugeColor = ColorUtil::floatToStatusColor($votePercentage);
|
|
|
|
$voteGauge->setColor($gaugeColor . '6');
|
|
|
|
|
2014-06-14 15:48:27 +02:00
|
|
|
$posY = -4.4;
|
2014-05-03 21:57:38 +02:00
|
|
|
$voteLabel = new Label();
|
|
|
|
$frame->add($voteLabel);
|
2014-06-14 15:48:27 +02:00
|
|
|
$voteLabel->setY($posY);
|
2014-05-03 21:57:38 +02:00
|
|
|
$voteLabel->setSize($width * 0.65, 12);
|
|
|
|
$voteLabel->setStyle($labelStyle);
|
|
|
|
$voteLabel->setTextSize(1);
|
|
|
|
$voteLabel->setText(' ' . round($votePercentage * 100.) . '% (' . $this->currentVote->getVoteCount() . ')');
|
|
|
|
|
|
|
|
|
|
|
|
$positiveQuad = new Quad_BgsPlayerCard();
|
|
|
|
$frame->add($positiveQuad);
|
2014-06-14 15:48:27 +02:00
|
|
|
$positiveQuad->setPosition(-$width / 2 + 6, $posY);
|
2014-05-03 21:57:38 +02:00
|
|
|
$positiveQuad->setSubStyle($positiveQuad::SUBSTYLE_BgPlayerCardBig);
|
|
|
|
$positiveQuad->setSize(5, 5);
|
|
|
|
|
|
|
|
$positiveLabel = new Label_Button();
|
|
|
|
$frame->add($positiveLabel);
|
2014-06-14 15:48:27 +02:00
|
|
|
$positiveLabel->setPosition(-$width / 2 + 6, $posY);
|
2014-05-03 21:57:38 +02:00
|
|
|
$positiveLabel->setStyle($labelStyle);
|
|
|
|
$positiveLabel->setTextSize(1);
|
|
|
|
$positiveLabel->setSize(3, 3);
|
2014-06-14 15:48:27 +02:00
|
|
|
$positiveLabel->setTextColor('0F0');
|
|
|
|
$positiveLabel->setText('F1');
|
2014-05-03 21:57:38 +02:00
|
|
|
|
|
|
|
$negativeQuad = clone $positiveQuad;
|
|
|
|
$frame->add($negativeQuad);
|
|
|
|
$negativeQuad->setX($width / 2 - 6);
|
|
|
|
|
|
|
|
$negativeLabel = clone $positiveLabel;
|
|
|
|
$frame->add($negativeLabel);
|
|
|
|
$negativeLabel->setX($width / 2 - 6);
|
2014-06-14 15:48:27 +02:00
|
|
|
$negativeLabel->setTextColor('F00');
|
|
|
|
$negativeLabel->setText('F2');
|
2014-05-03 23:49:58 +02:00
|
|
|
|
2014-05-03 21:57:38 +02:00
|
|
|
// Voting Actions
|
|
|
|
$positiveQuad->addActionTriggerFeature(self::ACTION_POSITIVE_VOTE);
|
|
|
|
$negativeQuad->addActionTriggerFeature(self::ACTION_NEGATIVE_VOTE);
|
2014-05-03 23:49:58 +02:00
|
|
|
|
|
|
|
$script = $maniaLink->getScript();
|
2014-05-03 21:57:38 +02:00
|
|
|
$keyActionPositive = new KeyAction(self::ACTION_POSITIVE_VOTE, 'F1');
|
|
|
|
$script->addFeature($keyActionPositive);
|
|
|
|
$keyActionNegative = new KeyAction(self::ACTION_NEGATIVE_VOTE, 'F2');
|
|
|
|
$script->addFeature($keyActionNegative);
|
|
|
|
|
|
|
|
// Send manialink
|
|
|
|
$this->maniaControl->manialinkManager->sendManialink($maniaLink);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-13 16:03:26 +02:00
|
|
|
* Vote Command Model Class
|
2014-05-03 21:57:38 +02:00
|
|
|
*/
|
2014-05-27 08:56:56 +02:00
|
|
|
// TODO: extract classes to own files
|
2014-05-03 21:57:38 +02:00
|
|
|
class VoteCommand {
|
|
|
|
public $index = '';
|
|
|
|
public $name = '';
|
|
|
|
public $neededRatio = 0;
|
|
|
|
public $idBased = false;
|
|
|
|
public $startText = '';
|
|
|
|
|
2014-07-04 11:34:17 +02:00
|
|
|
private $stopCallback = '';
|
|
|
|
|
2014-05-13 16:03:26 +02:00
|
|
|
/**
|
|
|
|
* Construct a new Vote Command
|
|
|
|
*
|
2014-05-13 16:40:05 +02:00
|
|
|
* @param int $index
|
|
|
|
* @param string $name
|
|
|
|
* @param bool $idBased
|
|
|
|
* @param float $neededRatio
|
2014-05-13 16:03:26 +02:00
|
|
|
*/
|
2014-05-03 21:57:38 +02:00
|
|
|
public function __construct($index, $name, $idBased, $neededRatio) {
|
|
|
|
$this->index = $index;
|
|
|
|
$this->name = $name;
|
|
|
|
$this->idBased = $idBased;
|
|
|
|
$this->neededRatio = $neededRatio;
|
|
|
|
}
|
2014-07-04 11:34:17 +02:00
|
|
|
|
|
|
|
/**
|
2014-07-26 16:07:52 +02:00
|
|
|
* Gets the Stop Callback
|
2014-07-04 11:34:17 +02:00
|
|
|
*
|
2014-07-26 16:07:52 +02:00
|
|
|
* @return string
|
2014-07-04 11:34:17 +02:00
|
|
|
*/
|
2014-07-26 16:07:52 +02:00
|
|
|
public function getStopCallback() {
|
|
|
|
return $this->stopCallback;
|
2014-07-04 11:34:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-07-26 16:07:52 +02:00
|
|
|
* Defines a Stop Callback
|
2014-07-04 11:34:17 +02:00
|
|
|
*
|
2014-07-26 16:07:52 +02:00
|
|
|
* @param $stopCallback
|
2014-07-04 11:34:17 +02:00
|
|
|
*/
|
2014-07-26 16:07:52 +02:00
|
|
|
public function setStopCallback($stopCallback) {
|
|
|
|
$this->stopCallback = $stopCallback;
|
2014-07-04 11:34:17 +02:00
|
|
|
}
|
|
|
|
|
2014-05-03 21:57:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-05-13 16:03:26 +02:00
|
|
|
* Current Vote Model Class
|
2014-05-03 21:57:38 +02:00
|
|
|
*/
|
|
|
|
class CurrentVote {
|
|
|
|
const VOTE_FOR_ACTION = '1';
|
|
|
|
const VOTE_AGAINST_ACTION = '-1';
|
|
|
|
|
|
|
|
public $voteCommand = null;
|
|
|
|
public $expireTime = 0;
|
|
|
|
public $positiveVotes = 0;
|
|
|
|
public $neededRatio = 0;
|
|
|
|
public $neededPlayerRatio = 0;
|
|
|
|
public $voter = null;
|
|
|
|
public $map = null;
|
|
|
|
public $player = null;
|
|
|
|
public $function = null;
|
2014-07-04 11:34:17 +02:00
|
|
|
public $stopCallback = "";
|
2014-05-03 21:57:38 +02:00
|
|
|
|
|
|
|
private $playersVoted = array();
|
|
|
|
|
2014-05-13 16:03:26 +02:00
|
|
|
/**
|
|
|
|
* Construct a Current Vote
|
|
|
|
*
|
|
|
|
* @param VoteCommand $voteCommand
|
|
|
|
* @param Player $voter
|
|
|
|
* @param $expireTime
|
|
|
|
*/
|
2014-05-03 21:57:38 +02:00
|
|
|
public function __construct(VoteCommand $voteCommand, Player $voter, $expireTime) {
|
|
|
|
$this->expireTime = $expireTime;
|
|
|
|
$this->voteCommand = $voteCommand;
|
|
|
|
$this->voter = $voter;
|
|
|
|
$this->votePositive($voter->login);
|
|
|
|
}
|
|
|
|
|
2014-05-13 16:03:26 +02:00
|
|
|
/**
|
|
|
|
* Handle a positive Vote
|
|
|
|
*
|
|
|
|
* @param string $login
|
|
|
|
*/
|
2014-05-03 21:57:38 +02:00
|
|
|
public function votePositive($login) {
|
|
|
|
if (isset($this->playersVoted[$login])) {
|
|
|
|
if ($this->playersVoted[$login] == self::VOTE_AGAINST_ACTION) {
|
|
|
|
$this->playersVoted[$login] = self::VOTE_FOR_ACTION;
|
|
|
|
$this->positiveVotes++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$this->playersVoted[$login] = self::VOTE_FOR_ACTION;
|
|
|
|
$this->positiveVotes++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-13 16:03:26 +02:00
|
|
|
/**
|
|
|
|
* Handle a negative Vote
|
|
|
|
*
|
|
|
|
* @param string $login
|
|
|
|
*/
|
2014-05-03 21:57:38 +02:00
|
|
|
public function voteNegative($login) {
|
|
|
|
if (isset($this->playersVoted[$login])) {
|
|
|
|
if ($this->playersVoted[$login] == self::VOTE_FOR_ACTION) {
|
|
|
|
$this->playersVoted[$login] = self::VOTE_AGAINST_ACTION;
|
|
|
|
$this->positiveVotes--;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$this->playersVoted[$login] = self::VOTE_AGAINST_ACTION;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-13 16:03:26 +02:00
|
|
|
/**
|
|
|
|
* Get the Number of Votes
|
|
|
|
*
|
|
|
|
* @return int
|
|
|
|
*/
|
2014-05-03 21:57:38 +02:00
|
|
|
public function getVoteCount() {
|
|
|
|
return count($this->playersVoted);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|