2013-11-25 02:01:15 +01:00
|
|
|
<?php
|
2014-01-31 00:04:40 +01:00
|
|
|
use ManiaControl\Callbacks\TimerListener;
|
2013-11-25 02:01:15 +01:00
|
|
|
use ManiaControl\Formatter;
|
|
|
|
use ManiaControl\ManiaControl;
|
|
|
|
use ManiaControl\Callbacks\CallbackListener;
|
|
|
|
use ManiaControl\Callbacks\CallbackManager;
|
|
|
|
use ManiaControl\Maps\Map;
|
|
|
|
use ManiaControl\Players\Player;
|
|
|
|
use ManiaControl\Players\PlayerManager;
|
|
|
|
use ManiaControl\Plugins\Plugin;
|
|
|
|
use FML\ManiaLink;
|
|
|
|
use FML\Controls\Control;
|
|
|
|
use FML\Controls\Frame;
|
|
|
|
use FML\Controls\Label;
|
|
|
|
use FML\Controls\Quad;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ManiaControl Local Records Plugin
|
|
|
|
*
|
|
|
|
* @author steeffeen
|
|
|
|
*/
|
2014-01-31 00:04:40 +01:00
|
|
|
class LocalRecordsPlugin implements CallbackListener, TimerListener, Plugin {
|
2013-11-25 02:01:15 +01:00
|
|
|
/**
|
|
|
|
* Constants
|
|
|
|
*/
|
2013-12-09 10:04:22 +01:00
|
|
|
const ID = 6;
|
|
|
|
const VERSION = 0.1;
|
2013-11-25 02:01:15 +01:00
|
|
|
const MLID_RECORDS = 'ml_local_records';
|
|
|
|
const TABLE_RECORDS = 'mc_localrecords';
|
2013-11-28 03:47:08 +01:00
|
|
|
const SETTING_WIDGET_TITLE = 'Widget Title';
|
|
|
|
const SETTING_WIDGET_POSX = 'Widget Position: X';
|
|
|
|
const SETTING_WIDGET_POSY = 'Widget Position: Y';
|
|
|
|
const SETTING_WIDGET_WIDTH = 'Widget Width';
|
|
|
|
const SETTING_WIDGET_LINESCOUNT = 'Widget Displayed Lines Count';
|
|
|
|
const SETTING_WIDGET_LINEHEIGHT = 'Widget Line Height';
|
2013-12-31 15:27:40 +01:00
|
|
|
const SETTING_NOTIFY_ONLY_DRIVER = 'Notify only the Driver on New Records';
|
2013-12-31 15:30:25 +01:00
|
|
|
const SETTING_NOTIFY_BEST_RECORDS = 'Notify Publicly only for the X Best Records';
|
2013-11-25 02:01:15 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Private properties
|
|
|
|
*/
|
2013-12-31 15:27:40 +01:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @var maniaControl $maniaControl
|
|
|
|
*/
|
2013-12-14 23:29:17 +01:00
|
|
|
private $maniaControl = null;
|
2013-11-25 02:01:15 +01:00
|
|
|
private $updateManialink = false;
|
|
|
|
|
2014-01-27 20:39:10 +01:00
|
|
|
/**
|
|
|
|
* Prepares the Plugin
|
|
|
|
*
|
|
|
|
* @param ManiaControl $maniaControl
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public static function prepare(ManiaControl $maniaControl) {
|
2014-01-27 21:05:02 +01:00
|
|
|
//do nothing
|
2014-01-27 20:39:10 +01:00
|
|
|
}
|
|
|
|
|
2013-11-25 02:01:15 +01:00
|
|
|
/**
|
2013-12-14 23:29:17 +01:00
|
|
|
*
|
|
|
|
* @see \ManiaControl\Plugins\Plugin::load()
|
2013-11-25 02:01:15 +01:00
|
|
|
*/
|
2013-12-14 23:29:17 +01:00
|
|
|
public function load(ManiaControl $maniaControl) {
|
2013-11-25 02:01:15 +01:00
|
|
|
$this->maniaControl = $maniaControl;
|
|
|
|
$this->initTables();
|
|
|
|
|
2013-11-28 03:47:08 +01:00
|
|
|
// Init settings
|
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_WIDGET_TITLE, 'Local Records');
|
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_WIDGET_POSX, -139.);
|
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_WIDGET_POSY, 65.);
|
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_WIDGET_WIDTH, 40.);
|
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_WIDGET_LINESCOUNT, 25);
|
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_WIDGET_LINEHEIGHT, 4.);
|
2013-12-31 15:27:40 +01:00
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_NOTIFY_ONLY_DRIVER, false);
|
2013-12-31 15:30:25 +01:00
|
|
|
$this->maniaControl->settingManager->initSetting($this, self::SETTING_NOTIFY_BEST_RECORDS, -1);
|
2013-11-28 03:47:08 +01:00
|
|
|
|
2013-11-25 02:01:15 +01:00
|
|
|
// Register for callbacks
|
2014-01-31 00:04:40 +01:00
|
|
|
$this->maniaControl->timerManager->registerTimerListening($this, 'handle1Second', 1000);
|
2013-11-25 02:01:15 +01:00
|
|
|
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MC_ONINIT, $this, 'handleOnInit');
|
|
|
|
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MC_BEGINMAP, $this, 'handleMapBegin');
|
|
|
|
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MC_CLIENTUPDATED, $this,
|
|
|
|
'handleClientUpdated');
|
|
|
|
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_TM_PLAYERFINISH, $this,
|
|
|
|
'handlePlayerFinish');
|
2013-12-14 23:29:17 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @see \ManiaControl\Plugins\Plugin::unload()
|
|
|
|
*/
|
|
|
|
public function unload() {
|
|
|
|
$this->maniaControl->callbackManager->unregisterCallbackListener($this);
|
2014-02-01 14:50:24 +01:00
|
|
|
$this->maniaControl->timerManager->unregisterTimerListenings($this);
|
2013-12-14 23:29:17 +01:00
|
|
|
unset($this->maniaControl);
|
2013-11-25 02:01:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize needed database tables
|
|
|
|
*/
|
|
|
|
private function initTables() {
|
|
|
|
$mysqli = $this->maniaControl->database->mysqli;
|
|
|
|
$query = "CREATE TABLE IF NOT EXISTS `" . self::TABLE_RECORDS . "` (
|
|
|
|
`index` int(11) NOT NULL AUTO_INCREMENT,
|
|
|
|
`mapIndex` int(11) NOT NULL,
|
|
|
|
`playerIndex` int(11) NOT NULL,
|
|
|
|
`time` int(11) NOT NULL,
|
|
|
|
`changed` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|
|
|
PRIMARY KEY (`index`),
|
|
|
|
UNIQUE KEY `player_map_record` (`mapIndex`,`playerIndex`)
|
|
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1;";
|
2013-11-28 03:47:08 +01:00
|
|
|
$mysqli->query($query);
|
|
|
|
if ($mysqli->error) {
|
|
|
|
trigger_error($mysqli->error, E_USER_ERROR);
|
2013-11-25 02:01:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-09 10:04:22 +01:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @see \ManiaControl\Plugins\Plugin::getId()
|
|
|
|
*/
|
|
|
|
public static function getId() {
|
|
|
|
return self::ID;
|
|
|
|
}
|
|
|
|
|
2013-12-03 22:21:17 +01:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @see \ManiaControl\Plugins\Plugin::getName()
|
|
|
|
*/
|
|
|
|
public static function getName() {
|
|
|
|
return 'Local Records Plugin';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @see \ManiaControl\Plugins\Plugin::getVersion()
|
|
|
|
*/
|
|
|
|
public static function getVersion() {
|
|
|
|
return self::VERSION;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @see \ManiaControl\Plugins\Plugin::getAuthor()
|
|
|
|
*/
|
|
|
|
public static function getAuthor() {
|
|
|
|
return 'steeffeen';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @see \ManiaControl\Plugins\Plugin::getDescription()
|
|
|
|
*/
|
|
|
|
public static function getDescription() {
|
|
|
|
return 'Plugin offering tracking of local records and manialinks to display them.';
|
|
|
|
}
|
|
|
|
|
2013-11-25 02:01:15 +01:00
|
|
|
/**
|
|
|
|
* Handle ManiaControl init
|
|
|
|
*
|
2013-12-31 15:27:40 +01:00
|
|
|
* @param array $callback
|
2013-11-25 02:01:15 +01:00
|
|
|
*/
|
|
|
|
public function handleOnInit(array $callback) {
|
|
|
|
$this->updateManialink = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle 1Second callback
|
|
|
|
*
|
2014-01-31 00:04:40 +01:00
|
|
|
* @param $time
|
2013-11-25 02:01:15 +01:00
|
|
|
*/
|
2014-01-31 00:04:40 +01:00
|
|
|
public function handle1Second($time) {
|
2013-11-28 03:47:08 +01:00
|
|
|
if (!$this->updateManialink) return;
|
|
|
|
$this->updateManialink = false;
|
|
|
|
$manialink = $this->buildManialink();
|
2014-02-08 15:00:21 +01:00
|
|
|
$this->maniaControl->manialinkManager->sendManialink($manialink);
|
2013-11-25 02:01:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle PlayerConnect callback
|
|
|
|
*
|
2013-12-31 15:27:40 +01:00
|
|
|
* @param array $callback
|
2013-11-25 02:01:15 +01:00
|
|
|
*/
|
|
|
|
public function handlePlayerConnect(array $callback) {
|
|
|
|
$this->updateManialink = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle BeginMap callback
|
|
|
|
*
|
2013-12-31 15:27:40 +01:00
|
|
|
* @param array $callback
|
2013-11-25 02:01:15 +01:00
|
|
|
*/
|
|
|
|
public function handleMapBegin(array $callback) {
|
|
|
|
$this->updateManialink = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle PlayerFinish callback
|
|
|
|
*
|
2013-12-31 15:27:40 +01:00
|
|
|
* @param array $callback
|
2013-11-25 02:01:15 +01:00
|
|
|
*/
|
|
|
|
public function handlePlayerFinish(array $callback) {
|
|
|
|
$data = $callback[1];
|
|
|
|
if ($data[0] <= 0 || $data[2] <= 0) {
|
|
|
|
// Invalid player or time
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$login = $data[1];
|
|
|
|
$player = $this->maniaControl->playerManager->getPlayer($login);
|
|
|
|
if (!$player) {
|
|
|
|
// Invalid player
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$time = $data[2];
|
|
|
|
$map = $this->maniaControl->mapManager->getCurrentMap();
|
|
|
|
|
|
|
|
// Check old record of the player
|
|
|
|
$oldRecord = $this->getLocalRecord($map, $player);
|
|
|
|
if ($oldRecord) {
|
|
|
|
if ($oldRecord->time < $time) {
|
|
|
|
// Not improved
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ($oldRecord->time == $time) {
|
|
|
|
// Same time
|
|
|
|
$message = '$<' . $player->nickname . '$> equalized her/his $<$o' . $oldRecord->rank . '.$> Local Record: ' .
|
|
|
|
Formatter::formatTime($oldRecord->time);
|
|
|
|
$this->maniaControl->chat->sendInformation($message);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Save time
|
|
|
|
$mysqli = $this->maniaControl->database->mysqli;
|
|
|
|
$query = "INSERT INTO `" . self::TABLE_RECORDS . "` (
|
|
|
|
`mapIndex`,
|
|
|
|
`playerIndex`,
|
|
|
|
`time`
|
|
|
|
) VALUES (
|
|
|
|
{$map->index},
|
|
|
|
{$player->index},
|
|
|
|
{$time}
|
|
|
|
) ON DUPLICATE KEY UPDATE
|
|
|
|
`time` = VALUES(`time`);";
|
2013-12-09 13:45:58 +01:00
|
|
|
$mysqli->query($query);
|
2013-11-25 02:01:15 +01:00
|
|
|
if ($mysqli->error) {
|
|
|
|
trigger_error($mysqli->error);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$this->updateManialink = true;
|
|
|
|
|
|
|
|
// Announce record
|
|
|
|
$newRecord = $this->getLocalRecord($map, $player);
|
2013-12-31 15:27:40 +01:00
|
|
|
$notifyOnlyDriver = $this->maniaControl->settingManager->getSetting($this, self::SETTING_NOTIFY_ONLY_DRIVER);
|
2013-12-31 15:30:25 +01:00
|
|
|
$notifyOnlyBestRecords = $this->maniaControl->settingManager->getSetting($this, self::SETTING_NOTIFY_BEST_RECORDS);
|
|
|
|
if ($notifyOnlyDriver || $notifyOnlyBestRecords > 0 && $newRecord->rank > $notifyOnlyBestRecords) {
|
2014-01-01 18:42:43 +01:00
|
|
|
$improvement = ((!$oldRecord || $newRecord->rank < $oldRecord->rank) ? 'gained the' : 'improved Your');
|
2013-12-31 15:27:40 +01:00
|
|
|
$message = 'You ' . $improvement . ' $<$o' . $newRecord->rank . '.$> Local Record: ' .
|
|
|
|
Formatter::formatTime($newRecord->time);
|
|
|
|
$this->maniaControl->chat->sendInformation($message, $player->login);
|
2013-11-25 02:01:15 +01:00
|
|
|
}
|
|
|
|
else {
|
2014-01-01 18:42:43 +01:00
|
|
|
$improvement = ((!$oldRecord || $newRecord->rank < $oldRecord->rank) ? 'gained the' : 'improved the');
|
2013-12-31 15:27:40 +01:00
|
|
|
$message = '$<' . $player->nickname . '$> ' . $improvement . ' $<$o' . $newRecord->rank . '.$> Local Record: ' .
|
|
|
|
Formatter::formatTime($newRecord->time);
|
|
|
|
$this->maniaControl->chat->sendInformation($message);
|
2013-11-25 02:01:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle ClientUpdated callback
|
|
|
|
*
|
2013-12-31 15:27:40 +01:00
|
|
|
* @param array $callback
|
2013-11-25 02:01:15 +01:00
|
|
|
*/
|
|
|
|
public function handleClientUpdated(array $callback) {
|
|
|
|
$this->updateManialink = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Build the local records manialink
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-11-28 03:47:08 +01:00
|
|
|
private function buildManialink() {
|
2013-11-25 02:01:15 +01:00
|
|
|
$map = $this->maniaControl->mapManager->getCurrentMap();
|
|
|
|
if (!$map) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2013-11-28 03:47:08 +01:00
|
|
|
$title = $this->maniaControl->settingManager->getSetting($this, self::SETTING_WIDGET_TITLE);
|
|
|
|
$pos_x = $this->maniaControl->settingManager->getSetting($this, self::SETTING_WIDGET_POSX);
|
|
|
|
$pos_y = $this->maniaControl->settingManager->getSetting($this, self::SETTING_WIDGET_POSY);
|
|
|
|
$width = $this->maniaControl->settingManager->getSetting($this, self::SETTING_WIDGET_WIDTH);
|
|
|
|
$lines = $this->maniaControl->settingManager->getSetting($this, self::SETTING_WIDGET_LINESCOUNT);
|
|
|
|
$lineHeight = $this->maniaControl->settingManager->getSetting($this, self::SETTING_WIDGET_LINEHEIGHT);
|
|
|
|
$labelStyle = $this->maniaControl->manialinkManager->styleManager->getDefaultLabelStyle();
|
|
|
|
$quadStyle = $this->maniaControl->manialinkManager->styleManager->getDefaultQuadStyle();
|
|
|
|
$quadSubstyle = $this->maniaControl->manialinkManager->styleManager->getDefaultQuadSubstyle();
|
2013-11-25 02:01:15 +01:00
|
|
|
|
|
|
|
$records = $this->getLocalRecords($map);
|
|
|
|
if (!is_array($records)) {
|
|
|
|
trigger_error("Couldn't fetch player records.");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$manialink = new ManiaLink(self::MLID_RECORDS);
|
|
|
|
$frame = new Frame();
|
|
|
|
$manialink->add($frame);
|
|
|
|
$frame->setPosition($pos_x, $pos_y);
|
|
|
|
|
|
|
|
$backgroundQuad = new Quad();
|
|
|
|
$frame->add($backgroundQuad);
|
|
|
|
$backgroundQuad->setVAlign(Control::TOP);
|
2013-11-28 03:47:08 +01:00
|
|
|
$backgroundQuad->setSize($width * 1.05, 7. + $lines * $lineHeight);
|
|
|
|
$backgroundQuad->setStyles($quadStyle, $quadSubstyle);
|
2013-11-25 02:01:15 +01:00
|
|
|
|
|
|
|
$titleLabel = new Label();
|
|
|
|
$frame->add($titleLabel);
|
2013-11-28 03:47:08 +01:00
|
|
|
$titleLabel->setPosition(0, $lineHeight * -0.9);
|
2013-11-28 02:04:06 +01:00
|
|
|
$titleLabel->setWidth($width);
|
2013-11-28 03:47:08 +01:00
|
|
|
$titleLabel->setStyle($labelStyle);
|
2013-11-25 02:01:15 +01:00
|
|
|
$titleLabel->setTextSize(2);
|
|
|
|
$titleLabel->setText($title);
|
2013-11-28 03:47:08 +01:00
|
|
|
$titleLabel->setTranslate(true);
|
2013-11-25 02:01:15 +01:00
|
|
|
|
|
|
|
// Times
|
|
|
|
foreach ($records as $index => $record) {
|
2013-11-28 03:47:08 +01:00
|
|
|
$y = -8. - $index * $lineHeight;
|
2013-11-25 02:01:15 +01:00
|
|
|
|
|
|
|
$recordFrame = new Frame();
|
|
|
|
$frame->add($recordFrame);
|
|
|
|
$recordFrame->setPosition(0, $y);
|
|
|
|
|
|
|
|
$backgroundQuad = new Quad();
|
|
|
|
$recordFrame->add($backgroundQuad);
|
2014-01-01 18:42:43 +01:00
|
|
|
$backgroundQuad->setSize($width * 1.03, $lineHeight * 1.32);
|
2013-11-28 03:47:08 +01:00
|
|
|
$backgroundQuad->setStyles($quadStyle, $quadSubstyle);
|
2013-11-25 02:01:15 +01:00
|
|
|
|
|
|
|
$rankLabel = new Label();
|
|
|
|
$recordFrame->add($rankLabel);
|
|
|
|
$rankLabel->setHAlign(Control::LEFT);
|
2013-11-28 17:36:39 +01:00
|
|
|
$rankLabel->setX($width * -0.47);
|
2013-11-28 03:47:08 +01:00
|
|
|
$rankLabel->setSize($width * 0.06, $lineHeight);
|
2013-11-25 02:01:15 +01:00
|
|
|
$rankLabel->setTextSize(1);
|
|
|
|
$rankLabel->setTextPrefix('$o');
|
|
|
|
$rankLabel->setText($record->rank);
|
|
|
|
|
|
|
|
$nameLabel = new Label();
|
|
|
|
$recordFrame->add($nameLabel);
|
|
|
|
$nameLabel->setHAlign(Control::LEFT);
|
2013-11-28 17:36:39 +01:00
|
|
|
$nameLabel->setX($width * -0.4);
|
2013-11-28 03:47:08 +01:00
|
|
|
$nameLabel->setSize($width * 0.6, $lineHeight);
|
2013-11-25 02:01:15 +01:00
|
|
|
$nameLabel->setTextSize(1);
|
|
|
|
$nameLabel->setText($record->nickname);
|
|
|
|
|
|
|
|
$timeLabel = new Label();
|
|
|
|
$recordFrame->add($timeLabel);
|
|
|
|
$timeLabel->setHAlign(Control::RIGHT);
|
2013-11-28 17:36:39 +01:00
|
|
|
$timeLabel->setX($width * 0.47);
|
2013-11-28 03:47:08 +01:00
|
|
|
$timeLabel->setSize($width * 0.25, $lineHeight);
|
2013-11-25 02:01:15 +01:00
|
|
|
$timeLabel->setTextSize(1);
|
|
|
|
$timeLabel->setText(Formatter::formatTime($record->time));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $manialink->render()->saveXML();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fetch local records for the given map
|
|
|
|
*
|
2013-12-31 15:27:40 +01:00
|
|
|
* @param Map $map
|
|
|
|
* @param int $limit
|
2013-11-25 02:01:15 +01:00
|
|
|
* @return array
|
|
|
|
*/
|
2014-02-06 14:35:54 +01:00
|
|
|
public function getLocalRecords(Map $map, $limit = -1) {
|
2013-11-25 02:01:15 +01:00
|
|
|
$mysqli = $this->maniaControl->database->mysqli;
|
|
|
|
$limit = ($limit > 0 ? "LIMIT " . $limit : "");
|
|
|
|
$query = "SELECT * FROM (
|
|
|
|
SELECT recs.*, @rank := @rank + 1 as `rank` FROM `" . self::TABLE_RECORDS . "` recs, (SELECT @rank := 0) ra
|
|
|
|
WHERE recs.`mapIndex` = {$map->index}
|
|
|
|
ORDER BY recs.`time` ASC
|
|
|
|
{$limit}) records
|
|
|
|
LEFT JOIN `" . PlayerManager::TABLE_PLAYERS . "` players
|
|
|
|
ON records.`playerIndex` = players.`index`;";
|
|
|
|
$result = $mysqli->query($query);
|
|
|
|
if ($mysqli->error) {
|
|
|
|
trigger_error($mysqli->error);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
$records = array();
|
|
|
|
while ($record = $result->fetch_object()) {
|
|
|
|
array_push($records, $record);
|
|
|
|
}
|
|
|
|
$result->free();
|
|
|
|
return $records;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve the local record for the given map and login
|
|
|
|
*
|
2013-12-31 15:27:40 +01:00
|
|
|
* @param Map $map
|
|
|
|
* @param Player $player
|
2013-11-25 02:01:15 +01:00
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
private function getLocalRecord(Map $map, Player $player) {
|
|
|
|
$mysqli = $this->maniaControl->database->mysqli;
|
|
|
|
$query = "SELECT records.* FROM (
|
|
|
|
SELECT recs.*, @rank := @rank + 1 as `rank` FROM `" . self::TABLE_RECORDS . "` recs, (SELECT @rank := 0) ra
|
|
|
|
WHERE recs.`mapIndex` = {$map->index}
|
|
|
|
ORDER BY recs.`time` ASC) records
|
|
|
|
WHERE records.`playerIndex` = {$player->index};";
|
|
|
|
$result = $mysqli->query($query);
|
|
|
|
if ($mysqli->error) {
|
|
|
|
trigger_error("Couldn't retrieve player record for '{$player->login}'." . $mysqli->error);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
$record = $result->fetch_object();
|
|
|
|
$result->free();
|
|
|
|
return $record;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|