donated Planets statistic

This commit is contained in:
kremsy 2014-01-02 17:31:58 +01:00
parent 40219b7367
commit 4412ff73c1
3 changed files with 87 additions and 93 deletions

View File

@ -215,7 +215,6 @@ class ActionsMenu implements CallbackListener, ManialinkPageAnswerListener {
$testf->add($testq); $testf->add($testq);
$script->addTooltip($itemQuad, $testf); $script->addTooltip($itemQuad, $testf);
$script->addTooltip($testf, $testf);
/** TEST TOOLTIP */ /** TEST TOOLTIP */

View File

@ -87,7 +87,7 @@ class Map {
// TODO: define timeout if mx is down,todo fetch all map infos at once (maybe way faster) // TODO: define timeout if mx is down,todo fetch all map infos at once (maybe way faster)
$serverInfo = $this->maniaControl->server->getSystemInfo(); $serverInfo = $this->maniaControl->server->getSystemInfo();
$title = strtoupper(substr($serverInfo['TitleId'], 0, 2)); $title = strtoupper(substr($serverInfo['TitleId'], 0, 2));
$this->mx = new \MXInfoFetcher($title, $this->uid, false); // $this->mx = new \MXInfoFetcher($title, $this->uid, false);
} }
} }

View File

@ -1,9 +1,9 @@
<?php <?php
use ManiaControl\ManiaControl;
use ManiaControl\Admin\AuthenticationManager; use ManiaControl\Admin\AuthenticationManager;
use ManiaControl\Callbacks\CallbackListener; use ManiaControl\Callbacks\CallbackListener;
use ManiaControl\Callbacks\CallbackManager; use ManiaControl\Callbacks\CallbackManager;
use ManiaControl\Commands\CommandListener; use ManiaControl\Commands\CommandListener;
use ManiaControl\ManiaControl;
use ManiaControl\Players\Player; use ManiaControl\Players\Player;
use ManiaControl\Plugins\Plugin; use ManiaControl\Plugins\Plugin;
@ -16,14 +16,15 @@ class DonationPlugin implements CallbackListener, CommandListener, Plugin {
/** /**
* Constants * Constants
*/ */
const ID = 3; const ID = 3;
const VERSION = 0.1; const VERSION = 0.1;
const SETTING_ANNOUNCE_SERVERDONATION = 'Enable Server-Donation Announcements'; const SETTING_ANNOUNCE_SERVERDONATION = 'Enable Server-Donation Announcements';
const STAT_PLAYER_DONATIONS = 'donatedPlanets';
/** /**
* Private properties * Private properties
*/ */
/** @var maniaControl $maniaControl */ /** @var maniaControl $maniaControl */
private $maniaControl = null; private $maniaControl = null;
private $openBills = array(); private $openBills = array();
@ -33,15 +34,17 @@ class DonationPlugin implements CallbackListener, CommandListener, Plugin {
*/ */
public function load(ManiaControl $maniaControl) { public function load(ManiaControl $maniaControl) {
$this->maniaControl = $maniaControl; $this->maniaControl = $maniaControl;
// Register for commands // Register for commands
$this->maniaControl->commandManager->registerCommandListener('donate', $this, 'command_Donate'); $this->maniaControl->commandManager->registerCommandListener('donate', $this, 'command_Donate');
$this->maniaControl->commandManager->registerCommandListener('pay', $this, 'command_Pay', true); $this->maniaControl->commandManager->registerCommandListener('pay', $this, 'command_Pay', true);
$this->maniaControl->commandManager->registerCommandListener('getplanets', $this, 'command_GetPlanets', true); $this->maniaControl->commandManager->registerCommandListener('getplanets', $this, 'command_GetPlanets', true);
// Register for callbacks // Register for callbacks
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MP_BILLUPDATED, $this, 'handleBillUpdated'); $this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MP_BILLUPDATED, $this, 'handleBillUpdated');
// Define player stats
$this->maniaControl->statisticManager->defineStatMetaData(self::STAT_PLAYER_DONATIONS);
return true; return true;
} }
@ -98,40 +101,37 @@ class DonationPlugin implements CallbackListener, CommandListener, Plugin {
/** /**
* Handle /donate command * Handle /donate command
* *
* @param array $chatCallback * @param array $chatCallback
* @param Player $player * @param Player $player
* @return bool * @return bool
*/ */
public function command_Donate(array $chatCallback, Player $player) { public function command_Donate(array $chatCallback, Player $player) {
$text = $chatCallback[1][2]; $text = $chatCallback[1][2];
$params = explode(' ', $text); $params = explode(' ', $text);
if (count($params) < 2) { if(count($params) < 2) {
$this->sendDonateUsageExample($player); $this->sendDonateUsageExample($player);
return false; return false;
} }
$amount = (int) $params[1]; $amount = (int)$params[1];
if (!$amount || $amount <= 0) { if(!$amount || $amount <= 0) {
$this->sendDonateUsageExample($player); $this->sendDonateUsageExample($player);
return false; return false;
} }
if (count($params) >= 3) { if(count($params) >= 3) {
$receiver = $params[2]; $receiver = $params[2];
$receiverPlayer = $this->maniaControl->playerManager->getPlayer($receiver); $receiverPlayer = $this->maniaControl->playerManager->getPlayer($receiver);
$receiverName = ($receiverPlayer ? $receiverPlayer['NickName'] : $receiver); $receiverName = ($receiverPlayer ? $receiverPlayer['NickName'] : $receiver);
} } else {
else { $receiver = '';
$receiver = '';
$receiverName = $this->maniaControl->server->getName(); $receiverName = $this->maniaControl->server->getName();
} }
$message = 'Donate ' . $amount . ' Planets to $<' . $receiverName . '$>?'; $message = 'Donate ' . $amount . ' Planets to $<' . $receiverName . '$>?';
if (!$this->maniaControl->client->query('SendBill', $player->login, $amount, $message, $receiver)) { if(!$this->maniaControl->client->query('SendBill', $player->login, $amount, $message, $receiver)) {
trigger_error( trigger_error("Couldn't create donation of {$amount} planets from '{$player->login}' for '{$receiver}'. " . $this->maniaControl->getClientErrorText());
"Couldn't create donation of {$amount} planets from '{$player->login}' for '{$receiver}'. " .
$this->maniaControl->getClientErrorText());
$this->maniaControl->chat->sendError("Creating donation failed.", $player->login); $this->maniaControl->chat->sendError("Creating donation failed.", $player->login);
return false; return false;
} }
$bill = $this->maniaControl->client->getResponse(); $bill = $this->maniaControl->client->getResponse();
$this->openBills[$bill] = array(true, $player->login, $receiver, $amount, time()); $this->openBills[$bill] = array(true, $player->login, $receiver, $amount, time());
return true; return true;
} }
@ -139,41 +139,38 @@ class DonationPlugin implements CallbackListener, CommandListener, Plugin {
/** /**
* Handle //pay command * Handle //pay command
* *
* @param array $chatCallback * @param array $chatCallback
* @param Player $player * @param Player $player
* @return bool * @return bool
*/ */
public function command_Pay(array $chatCallback, Player $player) { public function command_Pay(array $chatCallback, Player $player) {
if (!$this->maniaControl->authenticationManager->checkRight($player, AuthenticationManager::AUTH_LEVEL_SUPERADMIN)) { if(!$this->maniaControl->authenticationManager->checkRight($player, AuthenticationManager::AUTH_LEVEL_SUPERADMIN)) {
$this->maniaControl->authenticationManager->sendNotAllowed($player); $this->maniaControl->authenticationManager->sendNotAllowed($player);
return false; return false;
} }
$text = $chatCallback[1][2]; $text = $chatCallback[1][2];
$params = explode(' ', $text); $params = explode(' ', $text);
if (count($params) < 2) { if(count($params) < 2) {
$this->sendPayUsageExample($player); $this->sendPayUsageExample($player);
return false; return false;
} }
$amount = (int) $params[1]; $amount = (int)$params[1];
if (!$amount || $amount <= 0) { if(!$amount || $amount <= 0) {
$this->sendPayUsageExample($player); $this->sendPayUsageExample($player);
return false; return false;
} }
if (count($params) >= 3) { if(count($params) >= 3) {
$receiver = $params[2]; $receiver = $params[2];
} } else {
else {
$receiver = $player->login; $receiver = $player->login;
} }
$message = 'Payout from $<' . $this->maniaControl->server->getName() . '$>.'; $message = 'Payout from $<' . $this->maniaControl->server->getName() . '$>.';
if (!$this->maniaControl->client->query('Pay', $receiver, $amount, $message)) { if(!$this->maniaControl->client->query('Pay', $receiver, $amount, $message)) {
trigger_error( trigger_error("Couldn't create payout of {$amount} planets by '{$player->login}' for '{$receiver}'. " . $this->maniaControl->getClientErrorText());
"Couldn't create payout of {$amount} planets by '{$player->login}' for '{$receiver}'. " .
$this->maniaControl->getClientErrorText());
$this->maniaControl->chat->sendError("Creating payout failed.", $player->login); $this->maniaControl->chat->sendError("Creating payout failed.", $player->login);
return false; return false;
} }
$bill = $this->maniaControl->client->getResponse(); $bill = $this->maniaControl->client->getResponse();
$this->openBills[$bill] = array(false, $player->login, $receiver, $amount, time()); $this->openBills[$bill] = array(false, $player->login, $receiver, $amount, time());
return true; return true;
} }
@ -181,16 +178,16 @@ class DonationPlugin implements CallbackListener, CommandListener, Plugin {
/** /**
* Handle //getplanets command * Handle //getplanets command
* *
* @param array $chatCallback * @param array $chatCallback
* @param Player $player * @param Player $player
* @return bool * @return bool
*/ */
public function command_GetPlanets(array $chatCallback, Player $player) { public function command_GetPlanets(array $chatCallback, Player $player) {
if (!$this->maniaControl->authenticationManager->checkRight($player, AuthenticationManager::AUTH_LEVEL_ADMIN)) { if(!$this->maniaControl->authenticationManager->checkRight($player, AuthenticationManager::AUTH_LEVEL_ADMIN)) {
$this->maniaControl->authenticationManager->sendNotAllowed($player); $this->maniaControl->authenticationManager->sendNotAllowed($player);
return false; return false;
} }
if (!$this->maniaControl->client->query('GetServerPlanets')) { if(!$this->maniaControl->client->query('GetServerPlanets')) {
trigger_error("Couldn't retrieve server planets. " . $this->maniaControl->getClientErrorText()); trigger_error("Couldn't retrieve server planets. " . $this->maniaControl->getClientErrorText());
return false; return false;
} }
@ -202,65 +199,63 @@ class DonationPlugin implements CallbackListener, CommandListener, Plugin {
/** /**
* Handle bill updated callback * Handle bill updated callback
* *
* @param array $callback * @param array $callback
* @return bool * @return bool
*/ */
public function handleBillUpdated(array $callback) { public function handleBillUpdated(array $callback) {
$billId = $callback[1][0]; $billId = $callback[1][0];
if (!array_key_exists($billId, $this->openBills)) { if(!array_key_exists($billId, $this->openBills)) {
return false; return false;
} }
$billData = $this->openBills[$billId]; $billData = $this->openBills[$billId];
$login = $billData[1]; $login = $billData[1];
$receiver = $billData[2]; $receiver = $billData[2];
switch ($callback[1][1]) { switch($callback[1][1]) {
case 4: case 4:
{ {
// Payed // Payed
$donation = $billData[0]; $donation = $billData[0];
$amount = $billData[3]; $amount = $billData[3];
if ($donation) { if($donation) {
// Donation // Donation
if (strlen($receiver) > 0) { if(strlen($receiver) > 0) {
// To player // To player
$message = "Successfully donated {$amount} to '{$receiver}'!"; $message = "Successfully donated {$amount} to '{$receiver}'!";
$this->maniaControl->chat->sendSuccess($message, $login);
}
else {
// To server
if ($this->maniaControl->settingManager->getSetting($this, self::SETTING_ANNOUNCE_SERVERDONATION, true)) {
$player = $this->maniaControl->playerManager->getPlayer($login);
$message = '$<' . ($player ? $player->nickname : $login) . '$> donated ' . $amount . ' Planets! Thanks.';
}
else {
$message = 'Donation successful! Thanks.';
}
$this->maniaControl->chat->sendSuccess($message, $login);
}
}
else {
// Payout
$message = "Successfully payed out {$amount} to '{$receiver}'!";
$this->maniaControl->chat->sendSuccess($message, $login); $this->maniaControl->chat->sendSuccess($message, $login);
} else {
// To server
if($this->maniaControl->settingManager->getSetting($this, self::SETTING_ANNOUNCE_SERVERDONATION, true)) {
$message = '$<' . ($player ? $player->nickname : $login) . '$> donated ' . $amount . ' Planets! Thanks.';
} else {
$message = 'Donation successful! Thanks.';
}
$this->maniaControl->chat->sendSuccess($message, $login);
$player = $this->maniaControl->playerManager->getPlayer($login);
$this->maniaControl->statisticManager->insertStat(self::STAT_PLAYER_DONATIONS, $player, $this->maniaControl->server->getLogin(), $amount);
} }
unset($this->openBills[$billId]); } else {
break; // Payout
$message = "Successfully payed out {$amount} to '{$receiver}'!";
$this->maniaControl->chat->sendSuccess($message, $login);
} }
unset($this->openBills[$billId]);
break;
}
case 5: case 5:
{ {
// Refused // Refused
$message = 'Transaction cancelled.'; $message = 'Transaction cancelled.';
$this->maniaControl->chat->sendError($message, $login); $this->maniaControl->chat->sendError($message, $login);
unset($this->openBills[$billId]); unset($this->openBills[$billId]);
break; break;
} }
case 6: case 6:
{ {
// Error // Error
$this->maniaControl->chat->sendError($callback[1][2], $login); $this->maniaControl->chat->sendError($callback[1][2], $login);
unset($this->openBills[$billId]); unset($this->openBills[$billId]);
break; break;
} }
} }
return true; return true;
} }
@ -268,7 +263,7 @@ class DonationPlugin implements CallbackListener, CommandListener, Plugin {
/** /**
* Send an usage example for /donate to the player * Send an usage example for /donate to the player
* *
* @param Player $player * @param Player $player
* @return boolean * @return boolean
*/ */
private function sendDonateUsageExample(Player $player) { private function sendDonateUsageExample(Player $player) {
@ -279,7 +274,7 @@ class DonationPlugin implements CallbackListener, CommandListener, Plugin {
/** /**
* Send an usage example for /pay to the player * Send an usage example for /pay to the player
* *
* @param Player $player * @param Player $player
* @return boolean * @return boolean
*/ */
private function sendPayUsageExample(Player $player) { private function sendPayUsageExample(Player $player) {