TrackManiaControl/core/Bills/BillManager.php

116 lines
3.2 KiB
PHP
Raw Normal View History

2014-02-25 18:34:35 +01:00
<?php
namespace ManiaControl\Bills;
2014-02-25 18:34:35 +01:00
use ManiaControl\Callbacks\CallbackListener;
use ManiaControl\Callbacks\CallbackManager;
use ManiaControl\ManiaControl;
use ManiaControl\Players\Player;
use Maniaplanet\DedicatedServer\Structures\Bill;
/**
* ManiaControl Bill Manager Class
*
2014-05-02 17:40:47 +02:00
* @author ManiaControl Team <mail@maniacontrol.com>
* @copyright 2014 ManiaControl Team
2014-04-19 22:59:11 +02:00
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
*/
2014-02-25 18:34:35 +01:00
class BillManager implements CallbackListener {
/*
2014-02-25 18:34:35 +01:00
* Constants
*/
const DONATED_TO_SERVER = 1;
const DONATED_TO_RECEIVER = 2;
const PAYED_FROM_SERVER = 3;
const PLAYER_REFUSED_DONATION = 4;
const ERROR_WHILE_TRANSACTION = 5;
/*
* Private properties
2014-02-25 18:34:35 +01:00
*/
/** @var ManiaControl $maniaControl */
2014-02-25 18:34:35 +01:00
private $maniaControl = null;
2014-09-07 23:17:02 +02:00
/** @var BillData[] $openBills */
2014-02-25 18:34:35 +01:00
private $openBills = array();
/**
2014-09-07 23:17:02 +02:00
* Construct a new Bill Manager instance
2014-02-25 18:34:35 +01:00
*
* @param ManiaControl $maniaControl
2014-02-25 18:34:35 +01:00
*/
public function __construct(ManiaControl $maniaControl) {
$this->maniaControl = $maniaControl;
// Callbacks
2014-08-13 11:05:52 +02:00
$this->maniaControl->getCallbackManager()->registerCallbackListener(CallbackManager::CB_MP_BILLUPDATED, $this, 'handleBillUpdated');
2014-02-25 18:34:35 +01:00
}
/**
2014-09-07 23:17:02 +02:00
* Send a bill to a player
2014-02-25 18:34:35 +01:00
*
2014-05-09 17:30:31 +02:00
* @param callable $function
* @param Player $player
* @param int $amount
* @param string $message
* @param string $receiver
2014-02-25 18:34:35 +01:00
* @return bool
*/
2014-08-03 13:30:07 +02:00
public function sendBill(callable $function, Player $player, $amount, $message, $receiver = '') {
2014-09-07 23:17:02 +02:00
$billId = $this->maniaControl->getClient()->sendBill($player->login, $amount, $message, $receiver);
$this->openBills[$billId] = new BillData($function, $player, $amount);
2014-02-25 18:34:35 +01:00
return true;
}
/**
2014-09-07 23:17:02 +02:00
* Send planets from the server to a player
2014-02-25 18:34:35 +01:00
*
* @param callable $function
* @param string $receiverLogin
* @param int $amount
* @param string $message
2014-02-25 18:34:35 +01:00
* @return bool
*/
public function sendPlanets(callable $function, $receiverLogin, $amount, $message) {
2014-09-07 23:17:02 +02:00
$billId = $this->maniaControl->getClient()->pay($receiverLogin, $amount, $message);
$this->openBills[$billId] = new BillData($function, $receiverLogin, $amount, true);
2014-02-25 18:34:35 +01:00
return true;
}
/**
* Handle bill updated callback
*
* @param array $callback
* @return bool
*/
public function handleBillUpdated(array $callback) {
$billId = $callback[1][0];
2014-09-07 23:17:02 +02:00
if (!isset($this->openBills[$billId])) {
2014-02-25 18:34:35 +01:00
return;
}
$billData = $this->openBills[$billId];
2014-05-02 17:40:47 +02:00
switch ($callback[1][1]) {
2014-02-25 18:34:35 +01:00
case Bill::STATE_PAYED:
if ($billData->pay) {
call_user_func($billData->function, $billData, self::PAYED_FROM_SERVER);
} else {
if ($billData->receiverLogin) {
call_user_func($billData->function, $billData, self::DONATED_TO_RECEIVER);
} else {
call_user_func($billData->function, $billData, self::DONATED_TO_SERVER);
}
}
unset($this->openBills[$billId]);
break;
case Bill::STATE_REFUSED:
call_user_func($billData->function, $billData, self::PLAYER_REFUSED_DONATION);
unset($this->openBills[$billId]);
break;
case Bill::STATE_ERROR:
call_user_func($billData->function, $callback[1][2], self::ERROR_WHILE_TRANSACTION);
unset($this->openBills[$billId]);
break;
}
}
}