PlayerList improvments
This commit is contained in:
parent
d2faf4de33
commit
557dd7b9a6
@ -61,6 +61,10 @@ class Player {
|
||||
$this->joinTime = time();
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Check if player is not a real player
|
||||
*
|
||||
|
@ -3,14 +3,22 @@
|
||||
namespace ManiaControl\Players;
|
||||
|
||||
|
||||
use FML\Controls\Control;
|
||||
use FML\Controls\Frame;
|
||||
use FML\Controls\Label;
|
||||
use FML\Controls\Labels\Label_Text;
|
||||
use FML\Controls\Quad;
|
||||
use FML\Controls\Quads\Quad_BgRaceScore2;
|
||||
use FML\Controls\Quads\Quad_Emblems;
|
||||
use FML\Controls\Quads\Quad_Icons64x64_1;
|
||||
use FML\Controls\Quads\Quad_Icons64x64_2;
|
||||
use FML\Controls\Quads\Quad_UIConstruction_Buttons;
|
||||
use FML\ManiaLink;
|
||||
use FML\Script\Script;
|
||||
use FML\Script\Tooltips;
|
||||
use ManiaControl\Admin\AuthenticationManager;
|
||||
use ManiaControl\Callbacks\CallbackListener;
|
||||
use ManiaControl\Callbacks\CallbackManager;
|
||||
use ManiaControl\ManiaControl;
|
||||
use ManiaControl\Manialinks\ManialinkManager;
|
||||
use ManiaControl\Manialinks\ManialinkPageAnswerListener;
|
||||
@ -21,7 +29,9 @@ class PlayerList implements ManialinkPageAnswerListener, CallbackListener {
|
||||
* Constants
|
||||
*/
|
||||
const ACTION_CLOSEWIDGET = 'PlayerList.CloseWidget';
|
||||
|
||||
const ACTION_FORCE_RED = 'PlayerList.ForceRed';
|
||||
const ACTION_FORCE_BLUE = 'PlayerList.ForceBlue';
|
||||
const ACTION_FORCE_SPEC = 'PlayerList.ForceSpec';
|
||||
/**
|
||||
* Private properties
|
||||
*/
|
||||
@ -30,6 +40,7 @@ class PlayerList implements ManialinkPageAnswerListener, CallbackListener {
|
||||
private $height;
|
||||
private $quadStyle;
|
||||
private $quadSubstyle;
|
||||
private $playersListShown = array();
|
||||
|
||||
/**
|
||||
* Create a new server commands instance
|
||||
@ -42,8 +53,9 @@ class PlayerList implements ManialinkPageAnswerListener, CallbackListener {
|
||||
|
||||
$this->maniaControl->manialinkManager->registerManialinkPageAnswerListener(self::ACTION_CLOSEWIDGET , $this,
|
||||
'closeWidget');
|
||||
/* $this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MP_PLAYERMANIALINKPAGEANSWER, $this,
|
||||
'handleManialinkPageAnswer');*/
|
||||
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MP_PLAYERMANIALINKPAGEANSWER, $this,
|
||||
'handleManialinkPageAnswer');
|
||||
$this->maniaControl->callbackManager->registerCallbackListener(PlayerManager::CB_PLAYERINFOCHANGED, $this, 'playerInfoChanged');
|
||||
|
||||
//settings
|
||||
$this->width = 150;
|
||||
@ -54,8 +66,18 @@ class PlayerList implements ManialinkPageAnswerListener, CallbackListener {
|
||||
}
|
||||
|
||||
public function showPlayerList(Player $player){
|
||||
$this->playersListShown[$player->login] = true;
|
||||
|
||||
$maniaLink = new ManiaLink(ManialinkManager::MAIN_MLID);
|
||||
|
||||
|
||||
// Create script and features
|
||||
$script = new Script();
|
||||
$maniaLink->setScript($script);
|
||||
|
||||
$tooltips = new Tooltips();
|
||||
$script->addFeature($tooltips);
|
||||
|
||||
//mainframe
|
||||
$frame = new Frame();
|
||||
$maniaLink->add($frame);
|
||||
@ -83,9 +105,13 @@ class PlayerList implements ManialinkPageAnswerListener, CallbackListener {
|
||||
//Headline
|
||||
$headFrame = new Frame();
|
||||
$frame->add($headFrame);
|
||||
$headFrame->setY($y - 3);
|
||||
$headFrame->setY($y - 5);
|
||||
//$array = array("Id" => $x + 5, "Nickname" => $x + 10, "Login" => $x + 40, "Ladder" => $x + 60,"Zone" => $x + 85);
|
||||
$array = array("Id" => $x + 5, "Nickname" => $x + 18, "Login" => $x + 60, "Home" => $x + 85);
|
||||
if($this->maniaControl->authenticationManager->checkRight($player, AuthenticationManager::AUTH_LEVEL_OPERATOR)){
|
||||
$array = array("Id" => $x + 5, "Nickname" => $x + 18, "Login" => $x + 60, "Location" => $x + 91, "Actions" => $x + 135);
|
||||
}else{
|
||||
$array = array("Id" => $x + 5, "Nickname" => $x + 18, "Login" => $x + 60, "Location" => $x + 91);
|
||||
}
|
||||
$this->maniaControl->manialinkManager->labelLine($headFrame,$array);
|
||||
|
||||
//get PlayerList
|
||||
@ -95,39 +121,150 @@ class PlayerList implements ManialinkPageAnswerListener, CallbackListener {
|
||||
$y -= 10;
|
||||
foreach($players as $listPlayer){
|
||||
//$path = substr($listPlayer->path, 6);
|
||||
$path = $listPlayer->getCountry() . " - " . $listPlayer->getProvince();
|
||||
//$path = $listPlayer->getCountry() . " - " . $listPlayer->getProvince();
|
||||
$path = $listPlayer->getProvince();
|
||||
$playerFrame = new Frame();
|
||||
$frame->add($playerFrame);
|
||||
//$array = array($i => $x + 5, $listPlayer->nickname => $x + 10, $listPlayer->login => $x + 50, $listPlayer->ladderRank => $x + 60, $listPlayer->ladderScore => $x + 70, $path => $x + 85);
|
||||
$array = array($i => $x + 5, $listPlayer->nickname => $x + 18, $listPlayer->login => $x + 60, $path => $x + 85);
|
||||
$array = array($i => $x + 5, $listPlayer->nickname => $x + 18, $listPlayer->login => $x + 60, $path => $x + 91);
|
||||
$this->maniaControl->manialinkManager->labelLine($playerFrame,$array);
|
||||
$playerFrame->setY($y);
|
||||
|
||||
if($this->maniaControl->authenticationManager->checkRight($player, AuthenticationManager::AUTH_LEVEL_OPERATOR)){
|
||||
$rightQuad = new Quad_BgRaceScore2();
|
||||
$playerFrame->add($rightQuad);
|
||||
$rightQuad->setX($x + 13);
|
||||
$rightQuad->setZ(-0.1);
|
||||
$rightQuad->setSubStyle($rightQuad::SUBSTYLE_CupFinisher);
|
||||
$rightQuad->setSize(7,4);
|
||||
//Team Emblem
|
||||
if($listPlayer->teamId != -1){ //Show Players Team
|
||||
$redQuad = new Quad_Emblems(); //TODO rename quads
|
||||
$playerFrame->add($redQuad);
|
||||
$redQuad->setX($x + 10);
|
||||
$redQuad->setZ(0.1);
|
||||
$redQuad->setSize(3.8,3.8);
|
||||
|
||||
$rightLabel = new Label_Text();
|
||||
$playerFrame->add($rightLabel);
|
||||
$rightLabel->setX($x + 13.3);
|
||||
$rightLabel->setTextSize(0.8);
|
||||
|
||||
echo $this->maniaControl->authenticationManager->getAuthLevel($listPlayer->login);
|
||||
switch($listPlayer->authLevel){
|
||||
case authenticationManager::AUTH_LEVEL_MASTERADMIN: $rightLabel->setText("MA");
|
||||
break;
|
||||
case authenticationManager::AUTH_LEVEL_SUPERADMIN: $rightLabel->setText("SA");
|
||||
break;
|
||||
case authenticationManager::AUTH_LEVEL_ADMIN: $rightLabel->setText("AD");
|
||||
break;
|
||||
case authenticationManager::AUTH_LEVEL_OPERATOR: $rightLabel->setText("OP");
|
||||
switch($listPlayer->teamId){
|
||||
case 0: $redQuad->setSubStyle($redQuad::SUBSTYLE_1); break;
|
||||
case 1: $redQuad->setSubStyle($redQuad::SUBSTYLE_2); break;
|
||||
//case 2: $redQuad->setSubStyle($redQuad::SUBSTYLE_2); break;
|
||||
}
|
||||
}else{ //player is in spec
|
||||
$neutralQuad = new Quad_BgRaceScore2();
|
||||
$playerFrame->add($neutralQuad);
|
||||
$neutralQuad->setX($x + 10);
|
||||
$neutralQuad->setZ(0.1);
|
||||
$neutralQuad->setSubStyle($neutralQuad::SUBSTYLE_Spectator);
|
||||
$neutralQuad->setSize(3.8,3.8);
|
||||
}
|
||||
|
||||
$rightLabel->setTextColor("f00");
|
||||
//Nation Quad
|
||||
$countryQuad = new Quad();
|
||||
$playerFrame->add($countryQuad);
|
||||
|
||||
$countryQuad->setImage("file://Skins/Avatars/Flags/{$this->mapCountry($listPlayer->getCountry())}.dds");
|
||||
$countryQuad->setX($x + 88);
|
||||
$countryQuad->setSize(4,4);
|
||||
$countryQuad->setZ(-0.1);
|
||||
|
||||
//Level Quad
|
||||
$rightQuad = new Quad_BgRaceScore2();
|
||||
$playerFrame->add($rightQuad);
|
||||
$rightQuad->setX($x + 13);
|
||||
$rightQuad->setZ(-0.1);
|
||||
$rightQuad->setSubStyle($rightQuad::SUBSTYLE_CupFinisher);
|
||||
$rightQuad->setSize(7,3.5);
|
||||
|
||||
$rightLabel = new Label_Text();
|
||||
$playerFrame->add($rightLabel);
|
||||
$rightLabel->setX($x + 13.9);
|
||||
$rightLabel->setTextSize(0.8);
|
||||
|
||||
|
||||
//Description Label
|
||||
$descriptionLabel = new Label();
|
||||
$frame->add($descriptionLabel);
|
||||
$descriptionLabel->setAlign(Control::LEFT, Control::TOP);
|
||||
$descriptionLabel->setPosition($x + 10, -$this->height / 2 + 5);
|
||||
$descriptionLabel->setSize($this->width * 0.7, 4);
|
||||
$descriptionLabel->setTextSize(2);
|
||||
$descriptionLabel->setVisible(false);
|
||||
$descriptionLabel->setText($this->maniaControl->authenticationManager->getAuthLevelName($listPlayer->authLevel));
|
||||
$tooltips->add($rightQuad, $descriptionLabel);
|
||||
|
||||
switch($listPlayer->authLevel){
|
||||
case authenticationManager::AUTH_LEVEL_MASTERADMIN:
|
||||
case authenticationManager::AUTH_LEVEL_SUPERADMIN: $rightLabel->setText("MA"); break;
|
||||
case authenticationManager::AUTH_LEVEL_ADMIN: $rightLabel->setText("AD"); break;
|
||||
case authenticationManager::AUTH_LEVEL_OPERATOR: $rightLabel->setText("OP");
|
||||
}
|
||||
|
||||
$rightLabel->setTextColor("fff");
|
||||
|
||||
|
||||
if($this->maniaControl->authenticationManager->checkRight($player, AuthenticationManager::AUTH_LEVEL_OPERATOR)){
|
||||
|
||||
//Further Player actions
|
||||
$playerQuad = new Quad_Icons64x64_1();
|
||||
$playerFrame->add($playerQuad);
|
||||
$playerQuad->setX($x + 132);
|
||||
$playerQuad->setZ(0.1);
|
||||
$playerQuad->setSubStyle($playerQuad::SUBSTYLE_Buddy);
|
||||
$playerQuad->setSize(3.8,3.8);
|
||||
//$playerQuad->setAction(self::ACTION_FORCE_BLUE . "." .$listPlayer->login);
|
||||
|
||||
$redQuad = new Quad_Emblems();
|
||||
$playerFrame->add($redQuad);
|
||||
$redQuad->setX($x + 145);
|
||||
$redQuad->setZ(0.1);
|
||||
$redQuad->setSubStyle($redQuad::SUBSTYLE_2);
|
||||
$redQuad->setSize(3.8,3.8);
|
||||
$redQuad->setAction(self::ACTION_FORCE_RED . "." .$listPlayer->login);
|
||||
|
||||
//Description Label
|
||||
$descriptionLabel = new Label();
|
||||
$frame->add($descriptionLabel);
|
||||
$descriptionLabel->setAlign(Control::LEFT, Control::TOP);
|
||||
$descriptionLabel->setPosition($x + 10, -$this->height / 2 + 5);
|
||||
$descriptionLabel->setSize($this->width * 0.7, 4);
|
||||
$descriptionLabel->setTextSize(2);
|
||||
$descriptionLabel->setVisible(false);
|
||||
$descriptionLabel->setText("Force " . $listPlayer->nickname . '$z to Red Team!');
|
||||
$tooltips->add($redQuad, $descriptionLabel);
|
||||
|
||||
//Force to Blue Team
|
||||
$blueQuad = new Quad_Emblems();
|
||||
$playerFrame->add($blueQuad);
|
||||
$blueQuad->setX($x + 141);
|
||||
$blueQuad->setZ(0.1);
|
||||
$blueQuad->setSubStyle($blueQuad::SUBSTYLE_1);
|
||||
$blueQuad->setSize(3.8,3.8);
|
||||
$blueQuad->setAction(self::ACTION_FORCE_BLUE . "." .$listPlayer->login);
|
||||
|
||||
//Description Label
|
||||
$descriptionLabel = new Label();
|
||||
$frame->add($descriptionLabel);
|
||||
$descriptionLabel->setAlign(Control::LEFT, Control::TOP);
|
||||
$descriptionLabel->setPosition($x + 10, -$this->height / 2 + 5);
|
||||
$descriptionLabel->setSize($this->width * 0.7, 4);
|
||||
$descriptionLabel->setTextSize(2);
|
||||
$descriptionLabel->setVisible(false);
|
||||
$descriptionLabel->setText("Force " . $listPlayer->nickname . '$z to Blue Team!');
|
||||
$tooltips->add($blueQuad, $descriptionLabel);
|
||||
|
||||
|
||||
$spectatorQuad = new Quad_BgRaceScore2();
|
||||
$playerFrame->add($spectatorQuad);
|
||||
$spectatorQuad->setX($x + 137);
|
||||
$spectatorQuad->setZ(0.1);
|
||||
$spectatorQuad->setSubStyle($spectatorQuad::SUBSTYLE_Spectator);
|
||||
$spectatorQuad->setSize(3.8,3.8);
|
||||
$spectatorQuad->setAction(self::ACTION_FORCE_SPEC . "." .$listPlayer->login);
|
||||
|
||||
//Description Label
|
||||
$descriptionLabel = new Label();
|
||||
$frame->add($descriptionLabel);
|
||||
$descriptionLabel->setAlign(Control::LEFT, Control::TOP);
|
||||
$descriptionLabel->setPosition($x + 10, -$this->height / 2 + 5);
|
||||
$descriptionLabel->setSize($this->width * 0.7, 4);
|
||||
$descriptionLabel->setTextSize(2);
|
||||
$descriptionLabel->setVisible(false);
|
||||
$descriptionLabel->setText("Force " . $listPlayer->nickname . '$z to Spectator!');
|
||||
$tooltips->add($spectatorQuad, $descriptionLabel);
|
||||
}
|
||||
$i++;
|
||||
$y -= 4;
|
||||
@ -144,6 +281,256 @@ class PlayerList implements ManialinkPageAnswerListener, CallbackListener {
|
||||
* @param Player $player
|
||||
*/
|
||||
public function closeWidget(array $callback, Player $player) {
|
||||
$this->playersListShown[$player->login] = false; //TODO unset
|
||||
$this->maniaControl->manialinkManager->closeWidget($player);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param array $callback
|
||||
*/
|
||||
public function handleManialinkPageAnswer(array $callback){
|
||||
$actionId = $callback[1][2];
|
||||
$forceBlue = (strpos($actionId, self::ACTION_FORCE_BLUE) === 0);
|
||||
$forceRed = (strpos($actionId, self::ACTION_FORCE_RED) === 0);
|
||||
$forceSpec = (strpos($actionId, self::ACTION_FORCE_SPEC) === 0);
|
||||
|
||||
if(!$forceBlue && !$forceRed && !$forceSpec)
|
||||
return;
|
||||
|
||||
$actionArray = explode(".", $actionId);
|
||||
|
||||
//TODO maybe with ids isntead of logins, lower network traffic
|
||||
if($forceBlue){
|
||||
$this->maniaControl->client->query('ForcePlayerTeam', $actionArray[2], 0); //TODO bestätigung
|
||||
}else if($forceRed){
|
||||
$this->maniaControl->client->query('ForcePlayerTeam', $actionArray[2], 1); //TODO bestätigung
|
||||
}else if($forceSpec){
|
||||
$this->maniaControl->client->query('ForceSpectator', $actionArray[2], 3); //TODO bestätigung
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Reopen the widget on PlayerInfoChanged
|
||||
* @param array $callback
|
||||
*/
|
||||
public function playerInfoChanged(array $callback){
|
||||
foreach($this->playersListShown as $login => $shown){
|
||||
if($shown == true){
|
||||
$player = $this->maniaControl->playerManager->getPlayer($login);
|
||||
$this->showPlayerList($player);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
//TODO move that into somewhere
|
||||
/**
|
||||
* Map country names to 3-letter Nation abbreviations
|
||||
* Created by Xymph
|
||||
* Based on http://en.wikipedia.org/wiki/List_of_IOC_country_codes
|
||||
* See also http://en.wikipedia.org/wiki/Comparison_of_IOC,_FIFA,_and_ISO_3166_country_codes
|
||||
*/
|
||||
private function mapCountry($country) {
|
||||
|
||||
$nations = array(
|
||||
'Afghanistan' => 'AFG',
|
||||
'Albania' => 'ALB',
|
||||
'Algeria' => 'ALG',
|
||||
'Andorra' => 'AND',
|
||||
'Angola' => 'ANG',
|
||||
'Argentina' => 'ARG',
|
||||
'Armenia' => 'ARM',
|
||||
'Aruba' => 'ARU',
|
||||
'Australia' => 'AUS',
|
||||
'Austria' => 'AUT',
|
||||
'Azerbaijan' => 'AZE',
|
||||
'Bahamas' => 'BAH',
|
||||
'Bahrain' => 'BRN',
|
||||
'Bangladesh' => 'BAN',
|
||||
'Barbados' => 'BAR',
|
||||
'Belarus' => 'BLR',
|
||||
'Belgium' => 'BEL',
|
||||
'Belize' => 'BIZ',
|
||||
'Benin' => 'BEN',
|
||||
'Bermuda' => 'BER',
|
||||
'Bhutan' => 'BHU',
|
||||
'Bolivia' => 'BOL',
|
||||
'Bosnia&Herzegovina' => 'BIH',
|
||||
'Botswana' => 'BOT',
|
||||
'Brazil' => 'BRA',
|
||||
'Brunei' => 'BRU',
|
||||
'Bulgaria' => 'BUL',
|
||||
'Burkina Faso' => 'BUR',
|
||||
'Burundi' => 'BDI',
|
||||
'Cambodia' => 'CAM',
|
||||
'Cameroon' => 'CAR', // actually CMR
|
||||
'Canada' => 'CAN',
|
||||
'Cape Verde' => 'CPV',
|
||||
'Central African Republic' => 'CAF',
|
||||
'Chad' => 'CHA',
|
||||
'Chile' => 'CHI',
|
||||
'China' => 'CHN',
|
||||
'Chinese Taipei' => 'TPE',
|
||||
'Colombia' => 'COL',
|
||||
'Congo' => 'CGO',
|
||||
'Costa Rica' => 'CRC',
|
||||
'Croatia' => 'CRO',
|
||||
'Cuba' => 'CUB',
|
||||
'Cyprus' => 'CYP',
|
||||
'Czech Republic' => 'CZE',
|
||||
'Czech republic' => 'CZE',
|
||||
'DR Congo' => 'COD',
|
||||
'Denmark' => 'DEN',
|
||||
'Djibouti' => 'DJI',
|
||||
'Dominica' => 'DMA',
|
||||
'Dominican Republic' => 'DOM',
|
||||
'Ecuador' => 'ECU',
|
||||
'Egypt' => 'EGY',
|
||||
'El Salvador' => 'ESA',
|
||||
'Eritrea' => 'ERI',
|
||||
'Estonia' => 'EST',
|
||||
'Ethiopia' => 'ETH',
|
||||
'Fiji' => 'FIJ',
|
||||
'Finland' => 'FIN',
|
||||
'France' => 'FRA',
|
||||
'Gabon' => 'GAB',
|
||||
'Gambia' => 'GAM',
|
||||
'Georgia' => 'GEO',
|
||||
'Germany' => 'GER',
|
||||
'Ghana' => 'GHA',
|
||||
'Greece' => 'GRE',
|
||||
'Grenada' => 'GRN',
|
||||
'Guam' => 'GUM',
|
||||
'Guatemala' => 'GUA',
|
||||
'Guinea' => 'GUI',
|
||||
'Guinea-Bissau' => 'GBS',
|
||||
'Guyana' => 'GUY',
|
||||
'Haiti' => 'HAI',
|
||||
'Honduras' => 'HON',
|
||||
'Hong Kong' => 'HKG',
|
||||
'Hungary' => 'HUN',
|
||||
'Iceland' => 'ISL',
|
||||
'India' => 'IND',
|
||||
'Indonesia' => 'INA',
|
||||
'Iran' => 'IRI',
|
||||
'Iraq' => 'IRQ',
|
||||
'Ireland' => 'IRL',
|
||||
'Israel' => 'ISR',
|
||||
'Italy' => 'ITA',
|
||||
'Ivory Coast' => 'CIV',
|
||||
'Jamaica' => 'JAM',
|
||||
'Japan' => 'JPN',
|
||||
'Jordan' => 'JOR',
|
||||
'Kazakhstan' => 'KAZ',
|
||||
'Kenya' => 'KEN',
|
||||
'Kiribati' => 'KIR',
|
||||
'Korea' => 'KOR',
|
||||
'Kuwait' => 'KUW',
|
||||
'Kyrgyzstan' => 'KGZ',
|
||||
'Laos' => 'LAO',
|
||||
'Latvia' => 'LAT',
|
||||
'Lebanon' => 'LIB',
|
||||
'Lesotho' => 'LES',
|
||||
'Liberia' => 'LBR',
|
||||
'Libya' => 'LBA',
|
||||
'Liechtenstein' => 'LIE',
|
||||
'Lithuania' => 'LTU',
|
||||
'Luxembourg' => 'LUX',
|
||||
'Macedonia' => 'MKD',
|
||||
'Malawi' => 'MAW',
|
||||
'Malaysia' => 'MAS',
|
||||
'Mali' => 'MLI',
|
||||
'Malta' => 'MLT',
|
||||
'Mauritania' => 'MTN',
|
||||
'Mauritius' => 'MRI',
|
||||
'Mexico' => 'MEX',
|
||||
'Moldova' => 'MDA',
|
||||
'Monaco' => 'MON',
|
||||
'Mongolia' => 'MGL',
|
||||
'Montenegro' => 'MNE',
|
||||
'Morocco' => 'MAR',
|
||||
'Mozambique' => 'MOZ',
|
||||
'Myanmar' => 'MYA',
|
||||
'Namibia' => 'NAM',
|
||||
'Nauru' => 'NRU',
|
||||
'Nepal' => 'NEP',
|
||||
'Netherlands' => 'NED',
|
||||
'New Zealand' => 'NZL',
|
||||
'Nicaragua' => 'NCA',
|
||||
'Niger' => 'NIG',
|
||||
'Nigeria' => 'NGR',
|
||||
'Norway' => 'NOR',
|
||||
'Oman' => 'OMA',
|
||||
'Other Countries' => 'OTH',
|
||||
'Pakistan' => 'PAK',
|
||||
'Palau' => 'PLW',
|
||||
'Palestine' => 'PLE',
|
||||
'Panama' => 'PAN',
|
||||
'Paraguay' => 'PAR',
|
||||
'Peru' => 'PER',
|
||||
'Philippines' => 'PHI',
|
||||
'Poland' => 'POL',
|
||||
'Portugal' => 'POR',
|
||||
'Puerto Rico' => 'PUR',
|
||||
'Qatar' => 'QAT',
|
||||
'Romania' => 'ROM', // actually ROU
|
||||
'Russia' => 'RUS',
|
||||
'Rwanda' => 'RWA',
|
||||
'Samoa' => 'SAM',
|
||||
'San Marino' => 'SMR',
|
||||
'Saudi Arabia' => 'KSA',
|
||||
'Senegal' => 'SEN',
|
||||
'Serbia' => 'SCG', // actually SRB
|
||||
'Sierra Leone' => 'SLE',
|
||||
'Singapore' => 'SIN',
|
||||
'Slovakia' => 'SVK',
|
||||
'Slovenia' => 'SLO',
|
||||
'Somalia' => 'SOM',
|
||||
'South Africa' => 'RSA',
|
||||
'Spain' => 'ESP',
|
||||
'Sri Lanka' => 'SRI',
|
||||
'Sudan' => 'SUD',
|
||||
'Suriname' => 'SUR',
|
||||
'Swaziland' => 'SWZ',
|
||||
'Sweden' => 'SWE',
|
||||
'Switzerland' => 'SUI',
|
||||
'Syria' => 'SYR',
|
||||
'Taiwan' => 'TWN',
|
||||
'Tajikistan' => 'TJK',
|
||||
'Tanzania' => 'TAN',
|
||||
'Thailand' => 'THA',
|
||||
'Togo' => 'TOG',
|
||||
'Tonga' => 'TGA',
|
||||
'Trinidad and Tobago' => 'TRI',
|
||||
'Tunisia' => 'TUN',
|
||||
'Turkey' => 'TUR',
|
||||
'Turkmenistan' => 'TKM',
|
||||
'Tuvalu' => 'TUV',
|
||||
'Uganda' => 'UGA',
|
||||
'Ukraine' => 'UKR',
|
||||
'United Arab Emirates' => 'UAE',
|
||||
'United Kingdom' => 'GBR',
|
||||
'United States of America' => 'USA',
|
||||
'Uruguay' => 'URU',
|
||||
'Uzbekistan' => 'UZB',
|
||||
'Vanuatu' => 'VAN',
|
||||
'Venezuela' => 'VEN',
|
||||
'Vietnam' => 'VIE',
|
||||
'Yemen' => 'YEM',
|
||||
'Zambia' => 'ZAM',
|
||||
'Zimbabwe' => 'ZIM',
|
||||
);
|
||||
|
||||
if (array_key_exists($country, $nations)) {
|
||||
$nation = $nations[$country];
|
||||
} else {
|
||||
$nation = 'OTH';
|
||||
if ($country != '')
|
||||
trigger_error('Could not map country: ' . $country, E_USER_WARNING);
|
||||
}
|
||||
return $nation;
|
||||
}
|
||||
}
|
@ -21,6 +21,7 @@ class PlayerManager implements CallbackListener {
|
||||
*/
|
||||
const CB_PLAYERJOINED = 'PlayerManagerCallback.PlayerJoined';
|
||||
const CB_ONINIT = 'PlayerManagerCallback.OnInit';
|
||||
const CB_PLAYERINFOCHANGED = 'PlayerManagerCallback.PlayerInfoChanged';
|
||||
const TABLE_PLAYERS = 'mc_players';
|
||||
const SETTING_JOIN_LEAVE_MESSAGES = 'Enable Join & Leave Messages';
|
||||
|
||||
@ -48,8 +49,8 @@ class PlayerManager implements CallbackListener {
|
||||
// Register for callbacks
|
||||
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MC_ONINIT, $this, 'onInit');
|
||||
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MP_PLAYERCONNECT, $this, 'playerConnect');
|
||||
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MP_PLAYERDISCONNECT, $this,
|
||||
'playerDisconnect');
|
||||
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MP_PLAYERDISCONNECT, $this, 'playerDisconnect');
|
||||
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MP_PLAYERINFOCHANGED, $this, 'playerInfoChanged');
|
||||
}
|
||||
|
||||
/**
|
||||
@ -153,6 +154,21 @@ class PlayerManager implements CallbackListener {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Update PlayerInfo
|
||||
* @param array $callback
|
||||
*/
|
||||
public function playerInfoChanged(array $callback){
|
||||
//TODO update other info
|
||||
//TODO something on playerjoin not working here
|
||||
$player = $this->getPlayer($callback[1][0]['Login']);
|
||||
$player->teamId = $callback[1][0]["TeamId"];
|
||||
//var_dump($callback);
|
||||
|
||||
// Trigger own callback
|
||||
$this->maniaControl->callbackManager->triggerCallback(self::CB_PLAYERINFOCHANGED, array(self::CB_PLAYERINFOCHANGED));
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the complete PlayerList
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user