2013-12-23 20:57:50 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace ManiaControl\Players;
|
|
|
|
|
2013-12-24 12:49:53 +01:00
|
|
|
use FML\Controls\Frame;
|
|
|
|
use FML\Controls\Labels\Label_Text;
|
|
|
|
use FML\Controls\Quad;
|
|
|
|
use FML\Controls\Quads\Quad_Icons64x64_1;
|
|
|
|
use FML\ManiaLink;
|
2013-12-23 21:47:39 +01:00
|
|
|
use ManiaControl\Admin\AuthenticationManager;
|
2013-12-24 12:49:53 +01:00
|
|
|
use ManiaControl\Formatter;
|
2013-12-23 20:57:50 +01:00
|
|
|
use ManiaControl\ManiaControl;
|
2013-12-24 12:49:53 +01:00
|
|
|
use ManiaControl\Manialinks\ManialinkManager;
|
2013-12-23 20:57:50 +01:00
|
|
|
|
2013-12-24 13:09:39 +01:00
|
|
|
/**
|
|
|
|
* PlayerActions Class
|
|
|
|
*
|
|
|
|
* @author steeffeen & kremsy
|
|
|
|
*/
|
2013-12-23 20:57:50 +01:00
|
|
|
class PlayerActions {
|
|
|
|
/**
|
|
|
|
* Constants
|
|
|
|
*/
|
2014-01-09 18:32:52 +01:00
|
|
|
const TEAM_BLUE = 0;
|
|
|
|
const TEAM_RED = 1;
|
|
|
|
const SPECTATOR_USER_SELECTABLE = 0;
|
|
|
|
const SPECTATOR_SPECTATOR = 1;
|
|
|
|
const SPECTATOR_PLAYER = 2;
|
2013-12-23 20:57:50 +01:00
|
|
|
const SPECTATOR_BUT_KEEP_SELECTABLE = 3;
|
2014-01-09 18:32:52 +01:00
|
|
|
|
2014-01-09 19:08:29 +01:00
|
|
|
/**
|
|
|
|
* Permission Setting Constants
|
|
|
|
*/
|
|
|
|
const SETTING_PERMISSION_FORCE_PLAYER_PLAY = 'Force Player to Play';
|
|
|
|
const SETTING_PERMISSION_FORCE_PLAYER_TEAM = 'Force Player to Team';
|
|
|
|
const SETTING_PERMISSION_FORCE_PLAYER_SPEC = 'Force Player to Spec';
|
2014-01-09 19:15:06 +01:00
|
|
|
const SETTING_PERMISSION_MUTE_PLAYER = 'Mute Player';
|
|
|
|
const SETTING_PERMISSION_WARN_PLAYER = 'Warn Player';
|
|
|
|
const SETTING_PERMISSION_KICK_PLAYER = 'Kick Player';
|
|
|
|
const SETTING_PERMISSION_BAN_PLAYER = 'Ban Player';
|
2014-01-09 19:08:29 +01:00
|
|
|
|
2013-12-23 20:57:50 +01:00
|
|
|
/**
|
2013-12-31 16:01:22 +01:00
|
|
|
* Private Properties
|
2013-12-23 20:57:50 +01:00
|
|
|
*/
|
|
|
|
private $maniaControl = null;
|
|
|
|
|
2013-12-31 16:01:22 +01:00
|
|
|
/**
|
|
|
|
* Create a PlayerActions Instance
|
|
|
|
*
|
|
|
|
* @param ManiaControl $maniaControl
|
|
|
|
*/
|
2013-12-23 20:57:50 +01:00
|
|
|
public function __construct(ManiaControl $maniaControl) {
|
|
|
|
$this->maniaControl = $maniaControl;
|
2014-01-09 19:08:29 +01:00
|
|
|
|
|
|
|
//Define Rights
|
|
|
|
$this->maniaControl->authenticationManager->definePermissionLevel(self::SETTING_PERMISSION_BAN_PLAYER, AuthenticationManager::AUTH_LEVEL_ADMIN);
|
|
|
|
$this->maniaControl->authenticationManager->definePermissionLevel(self::SETTING_PERMISSION_KICK_PLAYER, AuthenticationManager::AUTH_LEVEL_MODERATOR);
|
|
|
|
$this->maniaControl->authenticationManager->definePermissionLevel(self::SETTING_PERMISSION_WARN_PLAYER, AuthenticationManager::AUTH_LEVEL_MODERATOR);
|
|
|
|
$this->maniaControl->authenticationManager->definePermissionLevel(self::SETTING_PERMISSION_MUTE_PLAYER, AuthenticationManager::AUTH_LEVEL_MODERATOR);
|
|
|
|
$this->maniaControl->authenticationManager->definePermissionLevel(self::SETTING_PERMISSION_FORCE_PLAYER_PLAY, AuthenticationManager::AUTH_LEVEL_MODERATOR);
|
|
|
|
$this->maniaControl->authenticationManager->definePermissionLevel(self::SETTING_PERMISSION_FORCE_PLAYER_TEAM, AuthenticationManager::AUTH_LEVEL_MODERATOR);
|
2014-01-09 19:15:06 +01:00
|
|
|
$this->maniaControl->authenticationManager->definePermissionLevel(self::SETTING_PERMISSION_FORCE_PLAYER_SPEC, AuthenticationManager::AUTH_LEVEL_MODERATOR);
|
2013-12-23 20:57:50 +01:00
|
|
|
}
|
|
|
|
|
2014-01-06 18:09:47 +01:00
|
|
|
/**
|
|
|
|
* Force a Player to Play
|
|
|
|
*
|
|
|
|
* @param string $adminLogin
|
|
|
|
* @param string $targetLogin
|
2014-01-14 14:37:31 +01:00
|
|
|
* @param bool $userIsAbleToSelect
|
|
|
|
* @param bool $displayAnnouncement
|
|
|
|
* @internal param int $type
|
2014-01-06 18:09:47 +01:00
|
|
|
*/
|
2014-01-14 14:37:31 +01:00
|
|
|
public function forcePlayerToPlay($adminLogin, $targetLogin, $userIsAbleToSelect = true, $displayAnnouncement = true) {
|
2014-01-06 18:09:47 +01:00
|
|
|
$admin = $this->maniaControl->playerManager->getPlayer($adminLogin);
|
2014-01-09 19:08:29 +01:00
|
|
|
if(!$this->maniaControl->authenticationManager->checkPermission($admin, self::SETTING_PERMISSION_FORCE_PLAYER_PLAY)) {
|
2014-01-06 18:09:47 +01:00
|
|
|
$this->maniaControl->authenticationManager->sendNotAllowed($admin);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$target = $this->maniaControl->playerManager->getPlayer($targetLogin);
|
2014-01-09 18:32:52 +01:00
|
|
|
if(!$target) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-01-16 19:07:00 +01:00
|
|
|
$success = $this->maniaControl->client->forceSpectator($target->login, self::SPECTATOR_PLAYER);
|
2014-01-09 18:32:52 +01:00
|
|
|
if(!$success) {
|
2014-01-06 18:09:47 +01:00
|
|
|
$this->maniaControl->chat->sendError('Error occurred: ' . $this->maniaControl->getClientErrorText(), $admin->login);
|
|
|
|
return;
|
|
|
|
}
|
2014-01-09 18:32:52 +01:00
|
|
|
|
2014-01-14 14:37:31 +01:00
|
|
|
if($userIsAbleToSelect) {
|
2014-01-16 19:07:00 +01:00
|
|
|
$success = $this->maniaControl->client->forceSpectator($target->login, self::SPECTATOR_USER_SELECTABLE);
|
2014-01-14 14:37:31 +01:00
|
|
|
if(!$success) {
|
|
|
|
$this->maniaControl->chat->sendError('Error occurred: ' . $this->maniaControl->getClientErrorText(), $admin->login);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-06 18:09:47 +01:00
|
|
|
// Announce force
|
2014-01-14 14:37:31 +01:00
|
|
|
if($displayAnnouncement) {
|
|
|
|
$chatMessage = '$<' . $admin->nickname . '$> forced $<' . $target->nickname . '$> to Play!';
|
|
|
|
$this->maniaControl->chat->sendInformation($chatMessage);
|
|
|
|
}
|
2014-01-06 18:09:47 +01:00
|
|
|
}
|
|
|
|
|
2013-12-23 20:57:50 +01:00
|
|
|
/**
|
2013-12-31 16:01:22 +01:00
|
|
|
* Force a Player to a certain Team
|
|
|
|
*
|
|
|
|
* @param string $adminLogin
|
|
|
|
* @param string $targetLogin
|
2014-01-09 18:32:52 +01:00
|
|
|
* @param int $teamId
|
2013-12-23 20:57:50 +01:00
|
|
|
*/
|
2013-12-31 16:01:22 +01:00
|
|
|
public function forcePlayerToTeam($adminLogin, $targetLogin, $teamId) {
|
2014-01-06 16:14:49 +01:00
|
|
|
$admin = $this->maniaControl->playerManager->getPlayer($adminLogin);
|
2014-01-09 19:08:29 +01:00
|
|
|
if(!$this->maniaControl->authenticationManager->checkPermission($admin, self::SETTING_PERMISSION_FORCE_PLAYER_TEAM)) {
|
2014-01-06 18:09:47 +01:00
|
|
|
$this->maniaControl->authenticationManager->sendNotAllowed($admin);
|
|
|
|
return;
|
|
|
|
}
|
2013-12-23 21:47:39 +01:00
|
|
|
$target = $this->maniaControl->playerManager->getPlayer($targetLogin);
|
2014-01-09 19:08:29 +01:00
|
|
|
if(!$target) {
|
2014-01-09 18:32:52 +01:00
|
|
|
return;
|
2014-01-09 19:08:29 +01:00
|
|
|
}
|
2014-01-09 18:32:52 +01:00
|
|
|
|
|
|
|
if($target->isSpectator) {
|
2014-01-14 14:37:31 +01:00
|
|
|
$this->forcePlayerToPlay($adminLogin, $targetLogin, true, false);
|
2013-12-23 21:47:39 +01:00
|
|
|
}
|
2014-01-09 18:32:52 +01:00
|
|
|
|
2014-01-16 19:07:00 +01:00
|
|
|
$success = $this->maniaControl->client->forcePlayerTeam($target->login, $teamId);
|
2014-01-09 18:32:52 +01:00
|
|
|
if(!$success) {
|
2013-12-23 21:47:39 +01:00
|
|
|
$this->maniaControl->chat->sendError('Error occurred: ' . $this->maniaControl->getClientErrorText(), $admin->login);
|
|
|
|
return;
|
|
|
|
}
|
2014-01-09 18:32:52 +01:00
|
|
|
|
2013-12-31 16:01:22 +01:00
|
|
|
$chatMessage = false;
|
2014-01-09 18:32:52 +01:00
|
|
|
$title = $this->maniaControl->authenticationManager->getAuthLevelName($admin->authLevel);
|
|
|
|
if($teamId == self::TEAM_BLUE) {
|
2013-12-31 16:01:22 +01:00
|
|
|
$chatMessage = $title . ' $<' . $admin->nickname . '$> forced $<' . $target->nickname . '$> into the Blue-Team!';
|
2014-01-09 18:32:52 +01:00
|
|
|
} else if($teamId == self::TEAM_RED) {
|
2013-12-31 16:01:22 +01:00
|
|
|
$chatMessage = $title . ' $<' . $admin->nickname . '$> forced $<' . $target->nickname . '$> into the Red-Team!';
|
2013-12-24 12:49:53 +01:00
|
|
|
}
|
2014-01-09 19:08:29 +01:00
|
|
|
if(!$chatMessage) {
|
2014-01-09 18:32:52 +01:00
|
|
|
return;
|
2014-01-09 19:08:29 +01:00
|
|
|
}
|
2013-12-31 16:01:22 +01:00
|
|
|
$this->maniaControl->chat->sendInformation($chatMessage);
|
2014-01-06 17:33:45 +01:00
|
|
|
$this->maniaControl->log($chatMessage, true);
|
2013-12-23 20:57:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-12-31 16:01:22 +01:00
|
|
|
* Force a Player to Spectator
|
|
|
|
*
|
|
|
|
* @param string $adminLogin
|
|
|
|
* @param string $targetLogin
|
2014-01-09 18:32:52 +01:00
|
|
|
* @param int $spectatorState
|
|
|
|
* @param bool $releaseSlot
|
2013-12-23 20:57:50 +01:00
|
|
|
*/
|
2014-01-02 19:37:52 +01:00
|
|
|
public function forcePlayerToSpectator($adminLogin, $targetLogin, $spectatorState = self::SPECTATOR_BUT_KEEP_SELECTABLE, $releaseSlot = true) {
|
2014-01-06 16:14:49 +01:00
|
|
|
$admin = $this->maniaControl->playerManager->getPlayer($adminLogin);
|
2014-01-09 19:08:29 +01:00
|
|
|
if(!$this->maniaControl->authenticationManager->checkPermission($admin, self::SETTING_PERMISSION_FORCE_PLAYER_SPEC)) {
|
2014-01-06 17:33:45 +01:00
|
|
|
$this->maniaControl->authenticationManager->sendNotAllowed($admin);
|
|
|
|
return;
|
|
|
|
}
|
2013-12-23 21:47:39 +01:00
|
|
|
$target = $this->maniaControl->playerManager->getPlayer($targetLogin);
|
2014-01-09 18:32:52 +01:00
|
|
|
|
2014-01-16 19:07:00 +01:00
|
|
|
$success = $this->maniaControl->client->forceSpectator($target->login, $spectatorState);
|
2014-01-09 18:32:52 +01:00
|
|
|
if(!$success) {
|
2013-12-23 21:47:39 +01:00
|
|
|
$this->maniaControl->chat->sendError('Error occurred: ' . $this->maniaControl->getClientErrorText(), $admin->login);
|
|
|
|
return;
|
|
|
|
}
|
2014-01-09 18:32:52 +01:00
|
|
|
|
|
|
|
$title = $this->maniaControl->authenticationManager->getAuthLevelName($admin->authLevel);
|
2013-12-31 16:01:22 +01:00
|
|
|
$chatMessage = $title . ' $<' . $admin->nickname . '$> forced $<' . $target->nickname . '$> to Spectator!';
|
|
|
|
$this->maniaControl->chat->sendInformation($chatMessage);
|
2014-01-06 17:33:45 +01:00
|
|
|
$this->maniaControl->log($chatMessage, true);
|
2014-01-09 18:32:52 +01:00
|
|
|
|
|
|
|
if($releaseSlot) {
|
2014-01-06 17:33:45 +01:00
|
|
|
// Free player slot
|
2014-01-16 19:40:54 +01:00
|
|
|
//$this->maniaControl->client->spectatorReleasePlayerSlot($target->login); //TODO not in spec exception mp crash
|
2014-01-06 17:33:45 +01:00
|
|
|
}
|
2013-12-23 20:57:50 +01:00
|
|
|
}
|
|
|
|
|
2014-01-02 16:37:52 +01:00
|
|
|
/**
|
2014-01-06 17:33:45 +01:00
|
|
|
* UnMute a Player
|
2014-01-02 16:37:52 +01:00
|
|
|
*
|
|
|
|
* @param string $adminLogin
|
|
|
|
* @param string $targetLogin
|
2014-01-09 18:32:52 +01:00
|
|
|
* @param int $spectatorState
|
2014-01-02 16:37:52 +01:00
|
|
|
*/
|
|
|
|
public function unMutePlayer($adminLogin, $targetLogin) {
|
2014-01-06 16:14:49 +01:00
|
|
|
$admin = $this->maniaControl->playerManager->getPlayer($adminLogin);
|
2014-01-09 19:08:29 +01:00
|
|
|
if(!$this->maniaControl->authenticationManager->checkPermission($admin, self::SETTING_PERMISSION_MUTE_PLAYER)) {
|
2014-01-06 17:33:45 +01:00
|
|
|
$this->maniaControl->authenticationManager->sendNotAllowed($admin);
|
|
|
|
return;
|
|
|
|
}
|
2014-01-09 18:32:52 +01:00
|
|
|
|
2014-01-06 17:33:45 +01:00
|
|
|
$target = $this->maniaControl->playerManager->getPlayer($targetLogin);
|
2014-01-09 18:32:52 +01:00
|
|
|
|
2014-01-16 19:07:00 +01:00
|
|
|
$success = $this->maniaControl->client->unIgnore($target->login);
|
2014-01-09 18:32:52 +01:00
|
|
|
if(!$success) {
|
2014-01-02 16:37:52 +01:00
|
|
|
$this->maniaControl->chat->sendError('Error occurred: ' . $this->maniaControl->getClientErrorText(), $admin->login);
|
|
|
|
return;
|
|
|
|
}
|
2014-01-09 18:32:52 +01:00
|
|
|
|
|
|
|
$title = $this->maniaControl->authenticationManager->getAuthLevelName($admin->authLevel);
|
2014-01-02 16:37:52 +01:00
|
|
|
$chatMessage = $title . ' $<' . $admin->nickname . '$> un-muted $<' . $target->nickname . '$>!';
|
|
|
|
$this->maniaControl->chat->sendInformation($chatMessage);
|
2014-01-06 17:33:45 +01:00
|
|
|
$this->maniaControl->log($chatMessage, true);
|
2014-01-02 16:37:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-01-06 17:33:45 +01:00
|
|
|
* Mute a Player
|
2014-01-02 16:37:52 +01:00
|
|
|
*
|
|
|
|
* @param string $adminLogin
|
|
|
|
* @param string $targetLogin
|
2014-01-09 18:32:52 +01:00
|
|
|
* @param int $spectatorState
|
2014-01-02 16:37:52 +01:00
|
|
|
*/
|
|
|
|
public function mutePlayer($adminLogin, $targetLogin) {
|
2014-01-06 16:14:49 +01:00
|
|
|
$admin = $this->maniaControl->playerManager->getPlayer($adminLogin);
|
2014-01-09 19:08:29 +01:00
|
|
|
if(!$this->maniaControl->authenticationManager->checkPermission($admin, self::SETTING_PERMISSION_MUTE_PLAYER)) {
|
2014-01-06 17:33:45 +01:00
|
|
|
$this->maniaControl->authenticationManager->sendNotAllowed($admin);
|
|
|
|
return;
|
|
|
|
}
|
2014-01-09 18:32:52 +01:00
|
|
|
|
2014-01-02 16:37:52 +01:00
|
|
|
$target = $this->maniaControl->playerManager->getPlayer($targetLogin);
|
2014-01-09 18:32:52 +01:00
|
|
|
|
2014-01-16 19:07:00 +01:00
|
|
|
$success = $this->maniaControl->client->ignore($targetLogin);
|
2014-01-09 18:32:52 +01:00
|
|
|
if(!$success) {
|
2014-01-02 16:37:52 +01:00
|
|
|
$this->maniaControl->chat->sendError('Error occurred: ' . $this->maniaControl->getClientErrorText(), $admin->login);
|
|
|
|
return;
|
|
|
|
}
|
2014-01-09 18:32:52 +01:00
|
|
|
|
|
|
|
$title = $this->maniaControl->authenticationManager->getAuthLevelName($admin->authLevel);
|
2014-01-02 16:37:52 +01:00
|
|
|
$chatMessage = $title . ' $<' . $admin->nickname . '$> muted $<' . $target->nickname . '$>!';
|
|
|
|
$this->maniaControl->chat->sendInformation($chatMessage);
|
2014-01-06 17:33:45 +01:00
|
|
|
$this->maniaControl->log($chatMessage, true);
|
2014-01-02 16:37:52 +01:00
|
|
|
}
|
|
|
|
|
2013-12-23 21:47:39 +01:00
|
|
|
/**
|
|
|
|
* Warn a Player
|
2013-12-31 16:01:22 +01:00
|
|
|
*
|
|
|
|
* @param string $adminLogin
|
|
|
|
* @param string $targetLogin
|
2013-12-23 21:47:39 +01:00
|
|
|
*/
|
2013-12-31 16:01:22 +01:00
|
|
|
public function warnPlayer($adminLogin, $targetLogin) {
|
2014-01-06 16:14:49 +01:00
|
|
|
$admin = $this->maniaControl->playerManager->getPlayer($adminLogin);
|
2014-01-09 19:08:29 +01:00
|
|
|
if(!$this->maniaControl->authenticationManager->checkPermission($admin, self::SETTING_PERMISSION_WARN_PLAYER)) {
|
2014-01-06 17:33:45 +01:00
|
|
|
$this->maniaControl->authenticationManager->sendNotAllowed($admin);
|
|
|
|
return;
|
|
|
|
}
|
2013-12-24 12:49:53 +01:00
|
|
|
$target = $this->maniaControl->playerManager->getPlayer($targetLogin);
|
2014-01-09 19:08:29 +01:00
|
|
|
if(!$target) {
|
2014-01-09 18:32:52 +01:00
|
|
|
return;
|
2014-01-09 19:08:29 +01:00
|
|
|
}
|
2014-01-09 18:32:52 +01:00
|
|
|
|
2014-01-06 17:33:45 +01:00
|
|
|
// Display warning message
|
2013-12-24 12:49:53 +01:00
|
|
|
$message = '$s$f00This is an administrative warning.{br}{br}$gWhatever you wrote or you have done is against {br} our server\'s policy.
|
|
|
|
{br}Not respecting other players, or{br}using offensive language might result in a{br}$f00kick, or ban $ff0the next time.
|
|
|
|
{br}{br}$gThe server administrators.';
|
|
|
|
$message = preg_split('/{br}/', $message);
|
2014-01-09 18:32:52 +01:00
|
|
|
|
2014-01-06 17:33:45 +01:00
|
|
|
// Build Manialink
|
2014-01-09 18:32:52 +01:00
|
|
|
$width = 80;
|
|
|
|
$height = 50;
|
|
|
|
$quadStyle = $this->maniaControl->manialinkManager->styleManager->getDefaultMainWindowStyle();
|
2013-12-29 10:19:39 +01:00
|
|
|
$quadSubstyle = $this->maniaControl->manialinkManager->styleManager->getDefaultMainWindowSubStyle();
|
2014-01-09 18:32:52 +01:00
|
|
|
|
2013-12-24 12:49:53 +01:00
|
|
|
$maniaLink = new ManiaLink(ManialinkManager::MAIN_MLID);
|
2014-01-09 18:32:52 +01:00
|
|
|
$frame = new Frame();
|
2013-12-24 12:49:53 +01:00
|
|
|
$maniaLink->add($frame);
|
|
|
|
$frame->setPosition(0, 10);
|
2014-01-09 18:32:52 +01:00
|
|
|
|
2014-01-06 17:33:45 +01:00
|
|
|
// Background
|
2013-12-24 12:49:53 +01:00
|
|
|
$backgroundQuad = new Quad();
|
|
|
|
$frame->add($backgroundQuad);
|
2013-12-31 16:01:22 +01:00
|
|
|
$backgroundQuad->setSize($width, $height);
|
2013-12-24 12:49:53 +01:00
|
|
|
$backgroundQuad->setStyles($quadStyle, $quadSubstyle);
|
2014-01-09 18:32:52 +01:00
|
|
|
|
2014-01-06 17:33:45 +01:00
|
|
|
// Close Quad (X)
|
2013-12-24 12:49:53 +01:00
|
|
|
$closeQuad = new Quad_Icons64x64_1();
|
|
|
|
$frame->add($closeQuad);
|
|
|
|
$closeQuad->setPosition($width * 0.473, $height * 0.457, 3);
|
|
|
|
$closeQuad->setSize(6, 6);
|
2014-01-06 17:33:45 +01:00
|
|
|
$closeQuad->setSubStyle($closeQuad::SUBSTYLE_QuitRace);
|
2013-12-24 12:49:53 +01:00
|
|
|
$closeQuad->setAction(ManialinkManager::ACTION_CLOSEWIDGET);
|
2014-01-09 18:32:52 +01:00
|
|
|
|
2014-01-06 17:33:45 +01:00
|
|
|
// Headline
|
2013-12-24 12:49:53 +01:00
|
|
|
$label = new Label_Text();
|
|
|
|
$frame->add($label);
|
|
|
|
$label->setY($height / 2 - 5);
|
2014-01-06 17:33:45 +01:00
|
|
|
$label->setStyle($label::STYLE_TextCardMedium);
|
2013-12-24 12:49:53 +01:00
|
|
|
$label->setTextSize(4);
|
|
|
|
$label->setText('Administrative Warning');
|
2014-01-06 17:33:45 +01:00
|
|
|
$label->setTextColor('f00');
|
2014-01-09 18:32:52 +01:00
|
|
|
|
2013-12-24 12:49:53 +01:00
|
|
|
$y = $height / 2 - 15;
|
2014-01-09 18:32:52 +01:00
|
|
|
foreach($message as $line) {
|
2014-01-06 17:33:45 +01:00
|
|
|
// Message lines
|
2013-12-24 12:49:53 +01:00
|
|
|
$label = new Label_Text();
|
|
|
|
$frame->add($label);
|
|
|
|
$label->setY($y);
|
|
|
|
$label->setStyle(Label_Text::STYLE_TextCardMedium);
|
|
|
|
$label->setText($line);
|
2014-01-06 17:33:45 +01:00
|
|
|
$label->setTextColor('ff0');
|
2014-01-10 15:58:27 +01:00
|
|
|
$label->setTextSize(1.3);
|
2013-12-24 12:49:53 +01:00
|
|
|
$y -= 4;
|
|
|
|
}
|
2014-01-09 18:32:52 +01:00
|
|
|
|
2013-12-31 16:01:22 +01:00
|
|
|
// Display manialink
|
2013-12-24 12:49:53 +01:00
|
|
|
$this->maniaControl->manialinkManager->displayWidget($maniaLink, $target);
|
2014-01-09 18:32:52 +01:00
|
|
|
|
2014-01-06 17:33:45 +01:00
|
|
|
// Announce warning
|
2014-01-09 18:32:52 +01:00
|
|
|
$title = $this->maniaControl->authenticationManager->getAuthLevelName($admin->authLevel);
|
2013-12-31 16:01:22 +01:00
|
|
|
$chatMessage = $title . ' $<' . $admin->nickname . '$> warned $<' . $target->nickname . '$>!';
|
|
|
|
$this->maniaControl->chat->sendInformation($chatMessage);
|
2014-01-06 17:33:45 +01:00
|
|
|
$this->maniaControl->log($chatMessage, true);
|
2013-12-23 20:57:50 +01:00
|
|
|
}
|
|
|
|
|
2013-12-23 21:47:39 +01:00
|
|
|
/**
|
2014-01-06 17:33:45 +01:00
|
|
|
* Kick a Player
|
2013-12-31 16:01:22 +01:00
|
|
|
*
|
|
|
|
* @param string $adminLogin
|
|
|
|
* @param string $targetLogin
|
2013-12-23 21:47:39 +01:00
|
|
|
* @param string $message
|
|
|
|
*/
|
2013-12-31 16:01:22 +01:00
|
|
|
public function kickPlayer($adminLogin, $targetLogin, $message = '') {
|
2014-01-06 16:14:49 +01:00
|
|
|
$admin = $this->maniaControl->playerManager->getPlayer($adminLogin);
|
2014-01-09 19:08:29 +01:00
|
|
|
if(!$this->maniaControl->authenticationManager->checkPermission($admin, self::SETTING_PERMISSION_KICK_PLAYER)) {
|
2014-01-06 17:33:45 +01:00
|
|
|
$this->maniaControl->authenticationManager->sendNotAllowed($admin);
|
|
|
|
return;
|
|
|
|
}
|
2013-12-23 21:47:39 +01:00
|
|
|
$target = $this->maniaControl->playerManager->getPlayer($targetLogin);
|
2014-01-09 19:08:29 +01:00
|
|
|
if(!$target) {
|
2014-01-09 18:32:52 +01:00
|
|
|
return;
|
2014-01-09 19:08:29 +01:00
|
|
|
}
|
2014-01-09 18:32:52 +01:00
|
|
|
|
|
|
|
if($target->isFakePlayer()) {
|
2014-01-16 19:07:00 +01:00
|
|
|
$success = $this->maniaControl->client->disconnectFakePlayer($target->login);
|
2014-01-09 18:32:52 +01:00
|
|
|
} else {
|
2014-01-16 19:07:00 +01:00
|
|
|
$success = $this->maniaControl->client->kick($target->login, $message);
|
2013-12-31 16:01:22 +01:00
|
|
|
}
|
2014-01-09 18:32:52 +01:00
|
|
|
if(!$success) {
|
2013-12-23 21:47:39 +01:00
|
|
|
$this->maniaControl->chat->sendError('Error occurred: ' . $this->maniaControl->getClientErrorText(), $admin->login);
|
|
|
|
return;
|
|
|
|
}
|
2014-01-09 18:32:52 +01:00
|
|
|
|
2014-01-06 17:33:45 +01:00
|
|
|
// Announce kick
|
2014-01-09 18:32:52 +01:00
|
|
|
$title = $this->maniaControl->authenticationManager->getAuthLevelName($admin->authLevel);
|
2013-12-31 16:01:22 +01:00
|
|
|
$chatMessage = $title . ' $<' . $admin->nickname . '$> kicked $<' . $target->nickname . '$>!';
|
|
|
|
$this->maniaControl->chat->sendInformation($chatMessage);
|
|
|
|
$this->maniaControl->log(Formatter::stripCodes($chatMessage));
|
2013-12-23 20:57:50 +01:00
|
|
|
}
|
|
|
|
|
2013-12-23 21:47:39 +01:00
|
|
|
/**
|
2014-01-06 17:33:45 +01:00
|
|
|
* Ban a Player
|
2013-12-31 16:01:22 +01:00
|
|
|
*
|
|
|
|
* @param string $adminLogin
|
|
|
|
* @param string $targetLogin
|
2013-12-23 21:47:39 +01:00
|
|
|
* @param string $message
|
|
|
|
*/
|
2013-12-31 16:01:22 +01:00
|
|
|
public function banPlayer($adminLogin, $targetLogin, $message = '') {
|
2014-01-06 16:14:49 +01:00
|
|
|
$admin = $this->maniaControl->playerManager->getPlayer($adminLogin);
|
2014-01-09 19:08:29 +01:00
|
|
|
if(!$this->maniaControl->authenticationManager->checkPermission($admin, self::SETTING_PERMISSION_BAN_PLAYER)) {
|
2014-01-06 17:33:45 +01:00
|
|
|
$this->maniaControl->authenticationManager->sendNotAllowed($admin);
|
|
|
|
return;
|
|
|
|
}
|
2013-12-23 21:47:39 +01:00
|
|
|
$target = $this->maniaControl->playerManager->getPlayer($targetLogin);
|
2014-01-09 19:08:29 +01:00
|
|
|
if(!$target) {
|
2014-01-09 18:32:52 +01:00
|
|
|
return;
|
2014-01-09 19:08:29 +01:00
|
|
|
}
|
2014-01-09 18:32:52 +01:00
|
|
|
|
2014-01-16 19:07:00 +01:00
|
|
|
$success = $this->maniaControl->client->ban($target->login, $message);
|
2014-01-09 18:32:52 +01:00
|
|
|
if(!$success) {
|
2013-12-23 21:47:39 +01:00
|
|
|
$this->maniaControl->chat->sendError('Error occurred: ' . $this->maniaControl->getClientErrorText(), $admin->login);
|
|
|
|
return;
|
|
|
|
}
|
2014-01-09 18:32:52 +01:00
|
|
|
|
2014-01-06 17:33:45 +01:00
|
|
|
// Announce ban
|
2014-01-09 18:32:52 +01:00
|
|
|
$title = $this->maniaControl->authenticationManager->getAuthLevelName($admin->authLevel);
|
2013-12-31 16:01:22 +01:00
|
|
|
$chatMessage = $title . ' $<' . $admin->nickname . '$> banned $<' . $target->nickname . '$>!';
|
|
|
|
$this->maniaControl->chat->sendInformation($chatMessage);
|
2014-01-06 17:33:45 +01:00
|
|
|
$this->maniaControl->log($chatMessage, true);
|
2013-12-23 20:57:50 +01:00
|
|
|
}
|
2013-12-26 11:25:10 +01:00
|
|
|
|
|
|
|
/**
|
2013-12-31 16:01:22 +01:00
|
|
|
* Grands the Player an Authorization Level
|
|
|
|
*
|
|
|
|
* @param string $adminLogin
|
|
|
|
* @param string $targetLogin
|
2014-01-09 18:32:52 +01:00
|
|
|
* @param int $authLevel
|
2013-12-26 11:25:10 +01:00
|
|
|
*/
|
2013-12-31 16:01:22 +01:00
|
|
|
public function grandAuthLevel($adminLogin, $targetLogin, $authLevel) {
|
2014-01-09 18:32:52 +01:00
|
|
|
$admin = $this->maniaControl->playerManager->getPlayer($adminLogin);
|
2013-12-26 11:25:10 +01:00
|
|
|
$target = $this->maniaControl->playerManager->getPlayer($targetLogin);
|
2014-01-09 19:08:29 +01:00
|
|
|
if(!$admin || !$target) {
|
2014-01-09 18:32:52 +01:00
|
|
|
return;
|
2014-01-09 19:08:29 +01:00
|
|
|
}
|
2014-01-09 18:32:52 +01:00
|
|
|
|
2013-12-30 22:36:20 +01:00
|
|
|
$authLevelName = $this->maniaControl->authenticationManager->getAuthLevelName($authLevel);
|
2014-01-09 18:32:52 +01:00
|
|
|
if(!$this->maniaControl->authenticationManager->checkRight($admin, $authLevel + 1)) {
|
2014-01-06 17:33:45 +01:00
|
|
|
$this->maniaControl->chat->sendError("You don't have the permission to add a {$authLevelName}!", $admin->login);
|
2014-01-09 18:32:52 +01:00
|
|
|
return;
|
2014-01-06 17:33:45 +01:00
|
|
|
}
|
2014-01-09 18:32:52 +01:00
|
|
|
|
|
|
|
if($this->maniaControl->authenticationManager->checkRight($target, $authLevel)) {
|
2014-01-06 17:33:45 +01:00
|
|
|
$this->maniaControl->chat->sendError("This Player is already {$authLevelName}!", $admin->login);
|
2013-12-30 22:36:20 +01:00
|
|
|
return;
|
|
|
|
}
|
2014-01-09 18:32:52 +01:00
|
|
|
|
2013-12-26 11:25:10 +01:00
|
|
|
$success = $this->maniaControl->authenticationManager->grantAuthLevel($target, $authLevel);
|
2014-01-09 18:32:52 +01:00
|
|
|
if(!$success) {
|
2014-01-06 17:33:45 +01:00
|
|
|
$this->maniaControl->chat->sendError('Error occurred.', $admin->login);
|
2013-12-26 11:25:10 +01:00
|
|
|
return;
|
|
|
|
}
|
2014-01-09 18:32:52 +01:00
|
|
|
|
2014-01-06 17:33:45 +01:00
|
|
|
// Announce granting
|
2014-01-09 18:32:52 +01:00
|
|
|
$title = $this->maniaControl->authenticationManager->getAuthLevelName($admin->authLevel);
|
2013-12-31 16:01:22 +01:00
|
|
|
$chatMessage = $title . ' $<' . $admin->nickname . '$> added $<' . $target->nickname . '$> as $< ' . $authLevelName . '$>!';
|
|
|
|
$this->maniaControl->chat->sendInformation($chatMessage);
|
2014-01-06 17:33:45 +01:00
|
|
|
$this->maniaControl->log($chatMessage, true);
|
2013-12-26 11:25:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-12-31 16:01:22 +01:00
|
|
|
* Revokes all Rights from the Player
|
|
|
|
*
|
|
|
|
* @param string $adminLogin
|
|
|
|
* @param string $targetLogin
|
2013-12-26 11:25:10 +01:00
|
|
|
*/
|
2013-12-31 16:01:22 +01:00
|
|
|
public function revokeAuthLevel($adminLogin, $targetLogin) {
|
2014-01-09 18:32:52 +01:00
|
|
|
$admin = $this->maniaControl->playerManager->getPlayer($adminLogin);
|
2013-12-26 11:25:10 +01:00
|
|
|
$target = $this->maniaControl->playerManager->getPlayer($targetLogin);
|
2014-01-09 19:08:29 +01:00
|
|
|
if(!$admin || !$target) {
|
2014-01-09 18:32:52 +01:00
|
|
|
return;
|
2014-01-09 19:08:29 +01:00
|
|
|
}
|
2014-01-09 18:32:52 +01:00
|
|
|
|
|
|
|
if(!$this->maniaControl->authenticationManager->checkRight($admin, $target->authLevel + 1)) {
|
2014-01-06 17:33:45 +01:00
|
|
|
$title = $this->maniaControl->authenticationManager->getAuthLevelName($target->authLevel);
|
|
|
|
$this->maniaControl->chat->sendError("You can't revoke the Rights of a {$title}!", $admin->login);
|
|
|
|
return;
|
|
|
|
}
|
2014-01-09 18:32:52 +01:00
|
|
|
|
|
|
|
if($this->maniaControl->authenticationManager->checkRight($target, AuthenticationManager::AUTH_LEVEL_MASTERADMIN)) {
|
2014-01-06 17:33:45 +01:00
|
|
|
$this->maniaControl->chat->sendError("MasterAdmins can't be removed!", $admin->login);
|
2013-12-26 11:25:10 +01:00
|
|
|
return;
|
|
|
|
}
|
2014-01-09 18:32:52 +01:00
|
|
|
|
2013-12-26 11:25:10 +01:00
|
|
|
$success = $this->maniaControl->authenticationManager->grantAuthLevel($target, AuthenticationManager::AUTH_LEVEL_PLAYER);
|
2014-01-09 18:32:52 +01:00
|
|
|
if(!$success) {
|
2014-01-06 17:33:45 +01:00
|
|
|
$this->maniaControl->chat->sendError('Error occurred.', $admin->login);
|
2013-12-26 11:25:10 +01:00
|
|
|
return;
|
|
|
|
}
|
2014-01-09 18:32:52 +01:00
|
|
|
|
2014-01-06 17:33:45 +01:00
|
|
|
// Announce revoke
|
2014-01-09 18:32:52 +01:00
|
|
|
$title = $this->maniaControl->authenticationManager->getAuthLevelName($admin->authLevel);
|
2014-01-06 17:33:45 +01:00
|
|
|
$chatMessage = $title . ' $<' . $admin->nickname . '$> revoked the Rights of $<' . $target->nickname . '$>!';
|
2013-12-31 16:01:22 +01:00
|
|
|
$this->maniaControl->chat->sendInformation($chatMessage);
|
2014-01-06 17:33:45 +01:00
|
|
|
$this->maniaControl->log($chatMessage, true);
|
2013-12-26 11:25:10 +01:00
|
|
|
}
|
2014-01-02 16:37:52 +01:00
|
|
|
|
|
|
|
/**
|
2014-01-06 17:33:45 +01:00
|
|
|
* Check if a Player is muted
|
2014-01-02 16:37:52 +01:00
|
|
|
*
|
2014-01-06 17:33:45 +01:00
|
|
|
* @param string $login
|
2014-01-02 16:37:52 +01:00
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isPlayerMuted($login) {
|
2014-01-16 19:07:00 +01:00
|
|
|
$ignoreList = $this->maniaControl->client->getIgnoreList(100, 0);
|
|
|
|
foreach($ignoreList as $ignoredPlayers) {
|
|
|
|
if($ignoredPlayers->login == $login) {
|
2014-01-09 18:32:52 +01:00
|
|
|
return true;
|
2014-01-09 19:08:29 +01:00
|
|
|
}
|
2014-01-02 16:37:52 +01:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2013-12-31 16:01:22 +01:00
|
|
|
}
|