removed useless methods
This commit is contained in:
parent
cf47fb1792
commit
0a787e97be
@ -498,7 +498,7 @@ class MapManager implements CallbackListener {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$serverInfo = $this->maniaControl->server->getSystemInfo();
|
$serverInfo = $this->maniaControl->client->getSystemInfo();
|
||||||
$title = strtolower(substr($serverInfo->titleId, 0, 2));
|
$title = strtolower(substr($serverInfo->titleId, 0, 2));
|
||||||
|
|
||||||
$url = "http://{$title}.mania-exchange.com/tracks/download/{$mapInfo->id}";
|
$url = "http://{$title}.mania-exchange.com/tracks/download/{$mapInfo->id}";
|
||||||
|
@ -66,7 +66,7 @@ class Server implements CallbackListener {
|
|||||||
*/
|
*/
|
||||||
private function updateProperties() {
|
private function updateProperties() {
|
||||||
// System info
|
// System info
|
||||||
$systemInfo = $this->getSystemInfo();
|
$systemInfo = $this->maniaControl->client->getSystemInfo();
|
||||||
$this->ip = $systemInfo->publishedIp;
|
$this->ip = $systemInfo->publishedIp;
|
||||||
$this->port = $systemInfo->port;
|
$this->port = $systemInfo->port;
|
||||||
$this->p2pPort = $systemInfo->p2PPort;
|
$this->p2pPort = $systemInfo->p2PPort;
|
||||||
@ -205,43 +205,6 @@ class Server implements CallbackListener {
|
|||||||
return $this->maniaControl->client->getMainServerPlayerInfo();
|
return $this->maniaControl->client->getMainServerPlayerInfo();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Get Server Options
|
|
||||||
*
|
|
||||||
* @return ServerOptions
|
|
||||||
*/
|
|
||||||
public function getOptions() {
|
|
||||||
return $this->maniaControl->client->getServerOptions();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Fetch current Server Name
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getName() {
|
|
||||||
return $this->maniaControl->client->getServerName();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Fetch Server Version
|
|
||||||
*
|
|
||||||
* @return Version
|
|
||||||
*/
|
|
||||||
public function getVersion() {
|
|
||||||
return $this->maniaControl->client->getVersion();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Fetch Server System Info
|
|
||||||
*
|
|
||||||
* @return SystemInfos
|
|
||||||
*/
|
|
||||||
public function getSystemInfo() {
|
|
||||||
return $this->maniaControl->client->getSystemInfo();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fetch current Game Mode
|
* Fetch current Game Mode
|
||||||
*
|
*
|
||||||
|
@ -257,7 +257,7 @@ class ServerCommands implements CallbackListener, CommandListener, ManialinkPage
|
|||||||
$this->maniaControl->authenticationManager->sendNotAllowed($player);
|
$this->maniaControl->authenticationManager->sendNotAllowed($player);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
$systemInfo = $this->maniaControl->server->getSystemInfo();
|
$systemInfo = $this->maniaControl->client->getSystemInfo();
|
||||||
$message = 'SystemInfo: ip=' . $systemInfo->publishedIp . ', port=' . $systemInfo->port . ', p2pPort=' . $systemInfo->p2PPort . ', title=' . $systemInfo->titleId . ', login=' . $systemInfo->serverLogin . '.';
|
$message = 'SystemInfo: ip=' . $systemInfo->publishedIp . ', port=' . $systemInfo->port . ', p2pPort=' . $systemInfo->p2PPort . ', title=' . $systemInfo->titleId . ', login=' . $systemInfo->serverLogin . '.';
|
||||||
$this->maniaControl->chat->sendInformation($message, $player->login);
|
$this->maniaControl->chat->sendInformation($message, $player->login);
|
||||||
}
|
}
|
||||||
|
@ -54,7 +54,7 @@ class UsageReporter implements TimerListener {
|
|||||||
$properties['PHPVersion'] = phpversion();
|
$properties['PHPVersion'] = phpversion();
|
||||||
$properties['ServerLogin'] = $this->maniaControl->server->login;
|
$properties['ServerLogin'] = $this->maniaControl->server->login;
|
||||||
$properties['TitleId'] = $this->maniaControl->server->titleId;
|
$properties['TitleId'] = $this->maniaControl->server->titleId;
|
||||||
$properties['ServerName'] = Formatter::stripDirtyCodes($this->maniaControl->server->getName());
|
$properties['ServerName'] = Formatter::stripDirtyCodes($this->maniaControl->client->getServerName());
|
||||||
$properties['PlayerCount'] = $this->maniaControl->playerManager->getPlayerCount();
|
$properties['PlayerCount'] = $this->maniaControl->playerManager->getPlayerCount();
|
||||||
|
|
||||||
$maxPlayers = $this->maniaControl->client->getMaxPlayers();
|
$maxPlayers = $this->maniaControl->client->getMaxPlayers();
|
||||||
|
@ -57,7 +57,7 @@ class Dedimania implements CallbackListener, TimerListener, Plugin {
|
|||||||
private function openDedimaniaSession($init = false) {
|
private function openDedimaniaSession($init = false) {
|
||||||
// Open session
|
// Open session
|
||||||
$serverInfo = $this->maniaControl->server->getInfo();
|
$serverInfo = $this->maniaControl->server->getInfo();
|
||||||
$serverVersion = $this->maniaControl->server->getVersion();
|
$serverVersion = $this->maniaControl->client->getVersion();
|
||||||
$packMask = substr($this->maniaControl->server->titleId, 2);
|
$packMask = substr($this->maniaControl->server->titleId, 2);
|
||||||
$this->dedimaniaData = new DedimaniaData("abc", "cde", $serverInfo->path, $packMask, $serverVersion);
|
$this->dedimaniaData = new DedimaniaData("abc", "cde", $serverInfo->path, $packMask, $serverVersion);
|
||||||
|
|
||||||
|
@ -316,7 +316,7 @@ class DonationPlugin implements CallbackListener, CommandListener, Plugin {
|
|||||||
$receiverName = ($receiverPlayer ? $receiverPlayer['NickName'] : $receiver);
|
$receiverName = ($receiverPlayer ? $receiverPlayer['NickName'] : $receiver);
|
||||||
} else {
|
} else {
|
||||||
$receiver = '';
|
$receiver = '';
|
||||||
$receiverName = $this->maniaControl->server->getName();
|
$receiverName = $this->maniaControl->client->getServerName();
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->handleDonation($player, $amount, $receiver, $receiverName);
|
return $this->handleDonation($player, $amount, $receiver, $receiverName);
|
||||||
@ -330,7 +330,7 @@ class DonationPlugin implements CallbackListener, CommandListener, Plugin {
|
|||||||
*/
|
*/
|
||||||
private function handleDonation(Player $player, $amount, $receiver = '', $receiverName = false) {
|
private function handleDonation(Player $player, $amount, $receiver = '', $receiverName = false) {
|
||||||
if (!$receiverName) {
|
if (!$receiverName) {
|
||||||
$receiverName = $this->maniaControl->server->getName();
|
$receiverName = $this->maniaControl->client->getServerName();
|
||||||
}
|
}
|
||||||
|
|
||||||
$message = 'Donate ' . $amount . ' Planets to $<' . $receiverName . '$>?';
|
$message = 'Donate ' . $amount . ' Planets to $<' . $receiverName . '$>?';
|
||||||
@ -376,7 +376,7 @@ class DonationPlugin implements CallbackListener, CommandListener, Plugin {
|
|||||||
} else {
|
} else {
|
||||||
$receiver = $player->login;
|
$receiver = $player->login;
|
||||||
}
|
}
|
||||||
$message = 'Payout from $<' . $this->maniaControl->server->getName() . '$>.';
|
$message = 'Payout from $<' . $this->maniaControl->client->getServerName() . '$>.';
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$bill = $this->maniaControl->client->pay($receiver, $amount, $message);
|
$bill = $this->maniaControl->client->pay($receiver, $amount, $message);
|
||||||
|
@ -306,7 +306,7 @@ class WidgetPlugin implements CallbackListener, TimerListener, Plugin {
|
|||||||
|
|
||||||
$maxSpectators = $this->maniaControl->client->getMaxSpectators();
|
$maxSpectators = $this->maniaControl->client->getMaxSpectators();
|
||||||
|
|
||||||
$serverName = $this->maniaControl->server->getName();
|
$serverName = $this->maniaControl->client->getServerName();
|
||||||
|
|
||||||
$players = $this->maniaControl->playerManager->getPlayers();
|
$players = $this->maniaControl->playerManager->getPlayers();
|
||||||
$playerCount = 0;
|
$playerCount = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user