TrackManiaControl/application/core/Maps/MapManager.php

709 lines
20 KiB
PHP
Raw Normal View History

<?php
namespace ManiaControl\Maps;
2014-01-09 18:45:39 +01:00
use ManiaControl\Admin\AuthenticationManager;
use ManiaControl\Callbacks\CallbackListener;
use ManiaControl\Callbacks\CallbackManager;
2014-02-07 00:26:32 +01:00
use ManiaControl\Files\FileUtil;
2014-01-12 20:56:25 +01:00
use ManiaControl\Formatter;
2014-01-08 18:07:09 +01:00
use ManiaControl\ManiaControl;
2014-01-28 16:54:23 +01:00
use ManiaControl\ManiaExchange\ManiaExchangeList;
2014-01-28 15:56:50 +01:00
use ManiaControl\ManiaExchange\ManiaExchangeManager;
2014-02-07 17:27:09 +01:00
use ManiaControl\ManiaExchange\MXMapInfo;
2014-01-10 12:22:37 +01:00
use ManiaControl\Players\Player;
2014-02-17 00:34:20 +01:00
use Maniaplanet\DedicatedServer\InvalidArgumentException;
use Maniaplanet\DedicatedServer\Xmlrpc\Exception;
/**
2014-01-05 14:13:18 +01:00
* Manager for Maps
*
* @author kremsy & steeffeen
*/
class MapManager implements CallbackListener {
/*
* Constants
*/
2014-03-31 21:04:15 +02:00
const TABLE_MAPS = 'mc_maps';
const CB_BEGINMAP = 'MapManager.BeginMap';
const CB_ENDMAP = 'MapManager.EndMap';
const CB_MAPS_UPDATED = 'MapManager.MapsUpdated';
const CB_KARMA_UPDATED = 'MapManager.KarmaUpdated';
const SETTING_PERMISSION_ADD_MAP = 'Add Maps';
const SETTING_PERMISSION_REMOVE_MAP = 'Remove Maps';
2014-01-11 16:34:05 +01:00
const SETTING_PERMISSION_SHUFFLE_MAPS = 'Shuffle Maps';
2014-01-28 20:14:21 +01:00
const SETTING_PERMISSION_CHECK_UPDATE = 'Check Map Update';
2014-03-31 21:04:15 +02:00
const SETTING_PERMISSION_SKIP_MAP = 'Skip Map';
const SETTING_PERMISSION_RESTART_MAP = 'Restart Map';
const SETTING_AUTOSAVE_MAPLIST = 'Autosave Maplist file';
const SETTING_MAPLIST_FILE = 'File to write Maplist in';
/*
2014-01-06 18:50:26 +01:00
* Public Properties
*/
2014-01-06 18:50:26 +01:00
public $mapQueue = null;
public $mapCommands = null;
public $mapList = null;
2014-01-28 16:54:23 +01:00
public $mxList = null;
2014-01-14 15:28:22 +01:00
public $mxManager = null;
2014-03-31 21:04:15 +02:00
/*
2014-01-06 18:50:26 +01:00
* Private Properties
2013-12-28 19:48:06 +01:00
*/
2014-01-06 18:50:26 +01:00
private $maniaControl = null;
private $maps = array();
2014-03-31 21:04:15 +02:00
/**
* @var Map $currentMap
*/
2014-01-06 18:50:26 +01:00
private $currentMap = null;
private $mapEnded = false;
private $mapBegan = false;
2013-12-28 19:48:06 +01:00
/**
* Construct a new Map Manager
*
2013-12-27 21:10:53 +01:00
* @param \ManiaControl\ManiaControl $maniaControl
*/
public function __construct(ManiaControl $maniaControl) {
$this->maniaControl = $maniaControl;
$this->initTables();
2014-03-31 21:04:15 +02:00
// Create map commands instance
2014-03-31 21:04:15 +02:00
$this->mxManager = new ManiaExchangeManager($this->maniaControl);
$this->mapList = new MapList($this->maniaControl);
$this->mxList = new ManiaExchangeList($this->maniaControl);
2014-01-14 15:15:13 +01:00
$this->mapCommands = new MapCommands($maniaControl);
2014-03-31 21:04:15 +02:00
$this->mapQueue = new MapQueue($this->maniaControl);
// Register for callbacks
2014-02-19 12:53:06 +01:00
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_ONINIT, $this, 'handleOnInit');
2014-01-06 18:50:26 +01:00
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MP_MAPLISTMODIFIED, $this, 'mapsModified');
2014-03-31 21:04:15 +02:00
// Define Rights
2014-01-09 19:00:37 +01:00
$this->maniaControl->authenticationManager->definePermissionLevel(self::SETTING_PERMISSION_ADD_MAP, AuthenticationManager::AUTH_LEVEL_ADMIN);
2014-03-31 21:04:15 +02:00
$this->maniaControl->authenticationManager->definePermissionLevel(self::SETTING_PERMISSION_REMOVE_MAP,
AuthenticationManager::AUTH_LEVEL_ADMIN);
$this->maniaControl->authenticationManager->definePermissionLevel(self::SETTING_PERMISSION_SHUFFLE_MAPS,
AuthenticationManager::AUTH_LEVEL_ADMIN);
$this->maniaControl->authenticationManager->definePermissionLevel(self::SETTING_PERMISSION_CHECK_UPDATE,
AuthenticationManager::AUTH_LEVEL_MODERATOR);
$this->maniaControl->authenticationManager->definePermissionLevel(self::SETTING_PERMISSION_SKIP_MAP,
AuthenticationManager::AUTH_LEVEL_MODERATOR);
$this->maniaControl->authenticationManager->definePermissionLevel(self::SETTING_PERMISSION_RESTART_MAP,
AuthenticationManager::AUTH_LEVEL_MODERATOR);
2014-03-07 14:43:09 +01:00
$this->maniaControl->settingManager->initSetting($this, self::SETTING_AUTOSAVE_MAPLIST, true);
$this->maniaControl->settingManager->initSetting($this, self::SETTING_MAPLIST_FILE, "MatchSettings/tracklist.txt");
}
/**
* Initialize necessary Database Tables
*
* @return bool
*/
private function initTables() {
$mysqli = $this->maniaControl->database->mysqli;
2014-03-31 21:04:15 +02:00
$query = "CREATE TABLE IF NOT EXISTS `" . self::TABLE_MAPS . "` (
`index` int(11) NOT NULL AUTO_INCREMENT,
2014-01-09 21:32:17 +01:00
`mxid` int(11),
`uid` varchar(50) NOT NULL,
`name` varchar(150) NOT NULL,
`authorLogin` varchar(100) NOT NULL,
`fileName` varchar(100) NOT NULL,
`environment` varchar(50) NOT NULL,
`mapType` varchar(50) NOT NULL,
`changed` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`index`),
UNIQUE KEY `uid` (`uid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='Map Data' AUTO_INCREMENT=1;";
$result = $mysqli->query($query);
2014-01-27 21:38:30 +01:00
if ($mysqli->error) {
trigger_error($mysqli->error, E_USER_ERROR);
return false;
}
return $result;
}
/**
2014-01-06 18:50:26 +01:00
* Save a Map in the Database
*
2013-12-27 21:10:53 +01:00
* @param \ManiaControl\Maps\Map $map
2014-01-06 18:50:26 +01:00
* @return bool
*/
private function saveMap(Map &$map) {
2014-03-31 21:04:15 +02:00
$mysqli = $this->maniaControl->database->mysqli;
2014-02-07 00:26:32 +01:00
$mapQuery = "INSERT INTO `" . self::TABLE_MAPS . "` (
`uid`,
`name`,
`authorLogin`,
`fileName`,
`environment`,
`mapType`
) VALUES (
?, ?, ?, ?, ?, ?
) ON DUPLICATE KEY UPDATE
`index` = LAST_INSERT_ID(`index`),
2014-02-02 19:16:16 +01:00
`fileName` = VALUES(`fileName`),
`environment` = VALUES(`environment`),
`mapType` = VALUES(`mapType`);";
2014-03-31 21:04:15 +02:00
$mapStatement = $mysqli->prepare($mapQuery);
2014-01-27 21:38:30 +01:00
if ($mysqli->error) {
trigger_error($mysqli->error);
return false;
}
2014-02-24 20:20:17 +01:00
$mapStatement->bind_param('ssssss', $map->uid, $map->rawName, $map->authorLogin, $map->fileName, $map->environment, $map->mapType);
$mapStatement->execute();
2014-01-27 21:38:30 +01:00
if ($mapStatement->error) {
trigger_error($mapStatement->error);
$mapStatement->close();
return false;
}
$map->index = $mapStatement->insert_id;
$mapStatement->close();
return true;
}
2014-01-15 20:40:14 +01:00
/**
* Updates the Timestamp of a map
*
* @param $map
* @return bool
*/
private function updateMapTimestamp($uid) {
2014-03-31 21:04:15 +02:00
$mysqli = $this->maniaControl->database->mysqli;
2014-01-15 20:40:14 +01:00
$mapQuery = "UPDATE `" . self::TABLE_MAPS . "` SET mxid = 0, changed = NOW() WHERE 'uid' = ?";
2014-03-31 21:04:15 +02:00
2014-01-15 20:40:14 +01:00
$mapStatement = $mysqli->prepare($mapQuery);
2014-01-27 21:38:30 +01:00
if ($mysqli->error) {
2014-01-15 20:40:14 +01:00
trigger_error($mysqli->error);
return false;
}
$mapStatement->bind_param('s', $uid);
$mapStatement->execute();
2014-01-27 21:38:30 +01:00
if ($mapStatement->error) {
2014-01-15 20:40:14 +01:00
trigger_error($mapStatement->error);
$mapStatement->close();
return false;
}
$mapStatement->close();
return true;
}
2014-01-12 21:39:27 +01:00
/**
* Updates a Map from Mania Exchange
*
* @param Player $admin
2014-03-31 21:04:15 +02:00
* @param $mxId
* @param $uid
2014-01-12 21:39:27 +01:00
*/
public function updateMap(Player $admin, $uid) {
2014-01-15 20:40:14 +01:00
$this->updateMapTimestamp($uid);
2014-03-31 21:04:15 +02:00
2014-01-27 21:38:30 +01:00
if (!isset($uid)) {
2014-01-25 22:29:25 +01:00
trigger_error("Error while updating Map, unkown UID: " . $uid);
$this->maniaControl->chat->sendError("Error while updating Map.", $admin->login);
return;
}
2014-03-31 21:04:15 +02:00
2014-01-12 21:39:27 +01:00
$map = $this->maps[$uid];
2014-03-31 21:04:15 +02:00
/**
* @var Map $map
*/
2014-01-12 21:39:27 +01:00
$mxId = $map->mx->id;
2014-01-15 20:40:14 +01:00
$this->removeMap($admin, $uid, true, false);
$this->addMapFromMx($mxId, $admin->login, true);
2014-01-12 21:39:27 +01:00
}
/**
2014-01-06 18:50:26 +01:00
* Remove a Map
2014-01-05 14:13:18 +01:00
*
2014-01-15 18:31:06 +01:00
* @param \ManiaControl\Players\Player $admin
2014-03-31 21:04:15 +02:00
* @param string $uid
* @param bool $eraseFile
* @param bool $message
2013-12-16 13:14:26 +01:00
*/
2014-01-31 15:56:57 +01:00
public function removeMap(Player $admin, $uid, $eraseFile = false, $message = true) {
2014-01-10 12:22:37 +01:00
$map = $this->maps[$uid];
2014-03-31 21:04:15 +02:00
// Unset the Map everywhere
2014-01-28 20:09:09 +01:00
$this->mapQueue->removeFromMapQueue($admin, $map->uid);
2014-03-31 21:04:15 +02:00
2014-03-19 11:11:25 +01:00
if ($map->mx) {
2014-01-31 15:56:57 +01:00
$this->mxManager->unsetMap($map->mx->id);
}
2014-03-31 21:04:15 +02:00
2014-01-10 12:22:37 +01:00
// Remove map
$this->maniaControl->client->removeMap($map->fileName);
2014-03-31 21:04:15 +02:00
2014-01-31 15:56:57 +01:00
if ($eraseFile) {
// Check if ManiaControl can even write to the maps dir
$mapDir = $this->maniaControl->client->getMapsDirectory();
2014-03-31 21:04:15 +02:00
// Delete map file
2014-01-31 15:56:57 +01:00
if (!@unlink($mapDir . $map->fileName)) {
trigger_error("Couldn't remove Map '{$mapDir}{$map->fileName}'.");
$this->maniaControl->chat->sendError("ManiaControl couldn't remove the MapFile.", $admin->login);
return;
}
}
2014-03-31 21:04:15 +02:00
// Show Message
2014-01-27 21:38:30 +01:00
if ($message) {
2014-01-15 20:40:14 +01:00
$message = '$<' . $admin->nickname . '$> removed $<' . $map->name . '$>!';
$this->maniaControl->chat->sendSuccess($message);
$this->maniaControl->log($message, true);
}
2014-03-31 21:04:15 +02:00
2014-01-10 12:22:37 +01:00
unset($this->maps[$uid]);
2013-12-16 13:14:26 +01:00
}
2014-01-15 18:31:06 +01:00
/**
* Restructures the Maplist
*/
public function restructureMapList() {
$currentIndex = $this->getMapIndex($this->currentMap);
2014-03-31 21:04:15 +02:00
// No RestructureNeeded
2014-02-26 15:19:44 +01:00
if ($currentIndex < Maplist::MAX_MAPS_PER_PAGE - 1) {
2014-01-15 18:31:06 +01:00
return true;
}
2014-03-31 21:04:15 +02:00
$lowerMapArray = array();
2014-01-15 18:31:06 +01:00
$higherMapArray = array();
2014-03-31 21:04:15 +02:00
2014-01-15 18:31:06 +01:00
$i = 0;
2014-03-31 21:04:15 +02:00
foreach ($this->maps as $map) {
2014-01-27 21:38:30 +01:00
if ($i < $currentIndex) {
2014-01-15 18:31:06 +01:00
$lowerMapArray[] = $map->fileName;
2014-03-31 21:04:15 +02:00
}
else {
2014-01-15 18:31:06 +01:00
$higherMapArray[] = $map->fileName;
}
$i++;
}
2014-03-31 21:04:15 +02:00
2014-01-15 18:31:06 +01:00
$mapArray = array_merge($higherMapArray, $lowerMapArray);
2014-02-26 15:19:44 +01:00
array_shift($mapArray);
2014-03-31 21:04:15 +02:00
2014-01-20 20:51:03 +01:00
try {
$this->maniaControl->client->chooseNextMapList($mapArray);
2014-03-31 21:04:15 +02:00
}
catch (Exception $e) {
2014-01-20 20:51:03 +01:00
trigger_error("Error while restructuring the Maplist. " . $e->getMessage());
2014-01-15 18:31:06 +01:00
return false;
}
return true;
}
2014-01-11 16:34:05 +01:00
/**
* Shuffles the MapList
*
2014-01-15 18:31:06 +01:00
* @param Player $admin
2014-01-11 16:34:05 +01:00
* @return bool
*/
2014-01-14 15:45:36 +01:00
public function shuffleMapList($admin = null) {
2014-01-15 18:31:06 +01:00
$shuffledMaps = $this->maps;
shuffle($shuffledMaps);
2014-03-31 21:04:15 +02:00
2014-01-11 17:06:32 +01:00
$mapArray = array();
2014-03-31 21:04:15 +02:00
foreach ($shuffledMaps as $map) {
/**
* @var Map $map
*/
2014-01-11 17:06:32 +01:00
$mapArray[] = $map->fileName;
}
2014-03-31 21:04:15 +02:00
2014-01-20 20:51:03 +01:00
try {
$this->maniaControl->client->chooseNextMapList($mapArray);
2014-03-31 21:04:15 +02:00
}
catch (Exception $e) {
2014-01-20 20:51:03 +01:00
trigger_error("Couldn't shuffle mapList. " . $e->getMessage());
2014-01-11 16:34:05 +01:00
return false;
}
2014-03-31 21:04:15 +02:00
2014-01-11 17:06:32 +01:00
$this->fetchCurrentMap();
2014-03-31 21:04:15 +02:00
if ($admin) {
2014-01-14 15:45:36 +01:00
$message = '$<' . $admin->nickname . '$> shuffled the Maplist!';
$this->maniaControl->chat->sendSuccess($message);
$this->maniaControl->log($message, true);
}
2014-03-31 21:04:15 +02:00
// Restructure if needed
2014-01-15 18:31:06 +01:00
$this->restructureMapList();
2014-01-11 16:34:05 +01:00
return true;
}
2014-01-12 20:56:25 +01:00
/**
* Initializes a Map
*
* @param $rpcMap
* @return Map
*/
public function initializeMap($rpcMap) {
$map = new Map($rpcMap);
$this->saveMap($map);
2014-03-31 21:04:15 +02:00
2014-01-12 20:56:25 +01:00
$mapsDirectory = $this->maniaControl->server->getMapsDirectory();
2014-01-27 21:38:30 +01:00
if (is_readable($mapsDirectory . $map->fileName)) {
2014-01-12 20:56:25 +01:00
$mapFetcher = new \GBXChallMapFetcher(true);
2014-02-20 13:06:11 +01:00
$mapFetcher->processFile($mapsDirectory . $map->fileName);
2014-03-31 21:04:15 +02:00
$map->authorNick = FORMATTER::stripDirtyCodes($mapFetcher->authorNick);
2014-02-20 13:06:11 +01:00
$map->authorEInfo = $mapFetcher->authorEInfo;
2014-03-31 21:04:15 +02:00
$map->authorZone = $mapFetcher->authorZone;
$map->comment = $mapFetcher->comment;
2014-01-12 20:56:25 +01:00
}
return $map;
}
2014-01-11 16:34:05 +01:00
/**
* Updates the full Map list, needed on Init, addMap and on ShuffleMaps
*/
2014-01-05 14:13:18 +01:00
private function updateFullMapList() {
2014-03-31 21:04:15 +02:00
$maps = $this->maniaControl->client->getMapList(100, 0);
$tempList = array();
2014-03-31 21:04:15 +02:00
foreach ($maps as $rpcMap) {
2014-01-27 21:38:30 +01:00
if (array_key_exists($rpcMap->uId, $this->maps)) {
2014-01-06 18:50:26 +01:00
// Map already exists, only update index
2014-01-16 18:08:32 +01:00
$tempList[$rpcMap->uId] = $this->maps[$rpcMap->uId];
2014-03-31 21:04:15 +02:00
}
else { // Insert Map Object
$map = $this->initializeMap($rpcMap);
2014-01-10 12:22:37 +01:00
$tempList[$map->uid] = $map;
}
}
2014-03-31 21:04:15 +02:00
2014-01-05 14:13:18 +01:00
// restore Sorted Maplist
2014-01-06 18:50:26 +01:00
$this->maps = $tempList;
2014-03-31 21:04:15 +02:00
2013-12-28 23:24:54 +01:00
// Trigger own callback
$this->maniaControl->callbackManager->triggerCallback(self::CB_MAPS_UPDATED);
2014-03-31 21:04:15 +02:00
// Write MapList
2014-03-13 18:25:29 +01:00
if ($this->maniaControl->settingManager->getSetting($this, self::SETTING_AUTOSAVE_MAPLIST)) {
try {
$this->maniaControl->client->saveMatchSettings($this->maniaControl->settingManager->getSetting($this, self::SETTING_MAPLIST_FILE));
2014-03-31 21:04:15 +02:00
}
catch (Exception $e) {
2014-03-13 18:25:29 +01:00
if ($e->getMessage() == 'Unable to write the playlist file.') {
$this->maniaControl->log("Unable to write the playlist file, please checkout your MX-Folders File permissions!");
2014-03-31 21:04:15 +02:00
}
else {
2014-03-13 18:25:29 +01:00
throw $e;
}
}
2014-03-07 14:43:09 +01:00
}
}
2013-12-15 15:13:56 +01:00
/**
* Freshly fetch current Map
*
* @return Map
*/
2014-02-19 16:59:27 +01:00
private function fetchCurrentMap() {
$rpcMap = $this->maniaControl->client->getCurrentMapInfo();
2014-03-31 21:04:15 +02:00
2014-01-27 21:38:30 +01:00
if (array_key_exists($rpcMap->uId, $this->maps)) {
2014-03-31 21:04:15 +02:00
$this->currentMap = $this->maps[$rpcMap->uId];
2014-02-16 00:51:30 +01:00
$this->currentMap->nbCheckpoints = $rpcMap->nbCheckpoints;
2014-03-31 21:04:15 +02:00
$this->currentMap->nbLaps = $rpcMap->nbLaps;
return $this->currentMap;
2013-12-16 12:16:33 +01:00
}
2014-03-31 21:04:15 +02:00
$this->currentMap = $this->initializeMap($rpcMap);
$this->maps[$this->currentMap->uid] = $this->currentMap;
return $this->currentMap;
}
/**
* Handle OnInit callback
*/
public function handleOnInit() {
$this->updateFullMapList();
2014-01-06 18:50:26 +01:00
$this->fetchCurrentMap();
2014-03-31 21:04:15 +02:00
// Fetch Mx Infos
2014-01-14 15:15:13 +01:00
$this->mxManager->fetchManiaExchangeMapInformations();
2014-03-31 21:04:15 +02:00
// Restructure Maplist
2014-01-15 18:31:06 +01:00
$this->restructureMapList();
}
/**
2014-01-05 14:13:18 +01:00
* Get Current Map
*
2013-12-30 16:45:26 +01:00
* @return Map currentMap
*/
2014-01-05 14:13:18 +01:00
public function getCurrentMap() {
2014-02-19 16:53:09 +01:00
if (!$this->currentMap) {
return $this->fetchCurrentMap();
}
return $this->currentMap;
}
2013-12-28 19:48:06 +01:00
/**
* Returns map By UID
2014-01-05 14:13:18 +01:00
*
2013-12-28 19:48:06 +01:00
* @param $uid
2014-01-11 22:06:52 +01:00
* @return Map array
2013-12-28 19:48:06 +01:00
*/
2014-01-05 14:13:18 +01:00
public function getMapByUid($uid) {
2014-01-27 21:38:30 +01:00
if (!isset($this->maps[$uid])) {
2014-01-06 18:50:26 +01:00
return null;
}
2014-01-10 12:22:37 +01:00
return $this->maps[$uid];
2013-12-28 19:48:06 +01:00
}
/**
* Handle BeginMap callback
*
2013-12-27 21:10:53 +01:00
* @param array $callback
*/
public function handleBeginMap(array $callback) {
if ($this->mapBegan) {
return;
}
$this->mapBegan = true;
$this->mapEnded = false;
2014-03-31 21:04:15 +02:00
if (!isset($callback[1][0]["UId"])) {
// TODO: why can this even happen?
2014-02-20 13:06:11 +01:00
$this->maniaControl->errorHandler->triggerDebugNotice('map uid not set! ' . print_r($callback, true));
2014-01-23 22:08:52 +01:00
return;
}
2014-01-27 21:38:30 +01:00
if (array_key_exists($callback[1][0]["UId"], $this->maps)) {
2014-01-06 18:50:26 +01:00
// Map already exists, only update index
2014-01-10 12:22:37 +01:00
$this->currentMap = $this->maps[$callback[1][0]["UId"]];
2014-02-20 13:06:11 +01:00
if (!$this->currentMap->nbCheckpoints || !$this->currentMap->nbLaps) {
2014-03-31 21:04:15 +02:00
$rpcMap = $this->maniaControl->client->getCurrentMapInfo();
$this->currentMap->nbLaps = $rpcMap->nbLaps;
2014-02-20 13:06:11 +01:00
$this->currentMap->nbCheckpoints = $rpcMap->nbCheckpoints;
}
2014-03-31 21:04:15 +02:00
}
else {
$rpcMap = \Maniaplanet\DedicatedServer\Structures\Map::fromArray($callback[1][0]);
2014-02-19 16:53:09 +01:00
$this->currentMap = $this->initializeMap($rpcMap);
// TODO: can this ever happen?
2014-02-20 13:06:11 +01:00
$this->maniaControl->errorHandler->triggerDebugNotice("new map wasn't fetched yet! " . $callback[1][0]["UId"]);
}
2014-03-31 21:04:15 +02:00
// Restructure MapList if id is over 15
2014-01-15 18:31:06 +01:00
$this->restructureMapList();
2014-03-31 21:04:15 +02:00
// Update the mx of the map (for update checks, etc.)
2014-01-15 18:31:06 +01:00
$this->mxManager->fetchManiaExchangeMapInformations($this->currentMap);
2014-03-31 21:04:15 +02:00
2014-01-09 19:00:37 +01:00
// Trigger own BeginMap callback
$this->maniaControl->callbackManager->triggerCallback(self::CB_BEGINMAP, $this->currentMap);
}
2014-02-20 13:06:11 +01:00
/**
* Handle Script BeginMap callback
*
* @param array $callback
*/
public function handleScriptBeginMap(array $callback) {
// ignored
}
2014-02-20 13:06:11 +01:00
/**
* Handle EndMap Callback
2014-02-20 13:06:11 +01:00
*
* @param array $callback
*/
public function handleEndMap(array $callback) {
if ($this->mapEnded) {
return;
}
$this->mapEnded = true;
$this->mapBegan = false;
2014-03-31 21:04:15 +02:00
// Trigger own EndMap callback
$this->maniaControl->callbackManager->triggerCallback(self::CB_ENDMAP, $this->currentMap);
}
2014-02-20 13:06:11 +01:00
/**
* Handle Script EndMap Callback
2014-02-20 13:06:11 +01:00
*
* @param array $callback
*/
public function handleScriptEndMap(array $callback) {
if ($this->mapEnded) {
return;
}
$this->mapEnded = true;
$this->mapBegan = false;
2014-03-31 21:04:15 +02:00
// Trigger own EndMap callback
$this->maniaControl->callbackManager->triggerCallback(self::CB_ENDMAP, $this->currentMap);
}
2013-12-14 22:00:59 +01:00
2013-12-16 14:21:30 +01:00
/**
2014-01-06 18:50:26 +01:00
* Handle Maps Modified Callback
2014-01-05 14:13:18 +01:00
*
2013-12-16 14:21:30 +01:00
* @param array $callback
*/
2014-01-06 18:50:26 +01:00
public function mapsModified(array $callback) {
2013-12-16 14:21:30 +01:00
$this->updateFullMapList();
}
2013-12-14 22:00:59 +01:00
/**
* Get all Maps
2014-02-20 13:06:11 +01:00
*
2013-12-14 22:00:59 +01:00
* @return array
*/
2014-01-06 18:50:26 +01:00
public function getMaps() {
2014-01-10 12:32:11 +01:00
return array_values($this->maps);
2013-12-14 22:00:59 +01:00
}
2014-01-15 18:31:06 +01:00
/**
* Returns the MapIndex of a given map
*
* @param Map $map
* @internal param $uid
* @return mixed
*/
public function getMapIndex(Map $map) {
$maps = $this->getMaps();
return array_search($map, $maps);
}
2013-12-15 15:13:56 +01:00
/**
* Adds a Map from Mania Exchange
2014-01-05 14:13:18 +01:00
*
2014-03-31 21:04:15 +02:00
* @param $mapId
* @param $login
2014-01-15 20:40:14 +01:00
* @param bool $update
2013-12-15 15:13:56 +01:00
*/
2014-01-15 20:40:14 +01:00
public function addMapFromMx($mapId, $login, $update = false) {
2014-01-27 21:38:30 +01:00
if (is_numeric($mapId)) {
2013-12-15 15:13:56 +01:00
// Check if map exists
2014-03-31 21:04:15 +02:00
$this->maniaControl->mapManager->mxManager->getMapInfo($mapId,
function (MXMapInfo $mapInfo) use(&$login, &$update) {
if (!$mapInfo || !isset($mapInfo->uploaded)) {
// Invalid id
$this->maniaControl->chat->sendError('Invalid MX-Id!', $login);
return;
}
// TODO hardcoded during closed beta, later take just $mapInfo->url again
$url = 'http://' . $mapInfo->prefix . '.mania-exchange.com/' . $mapInfo->dir . '/download/' . $mapInfo->id;
if ($this->maniaControl->settingManager->getSetting($this->mxManager, ManiaExchangeManager::SETTING_MP3_BETA_TESTING)) {
$url .= '?key=t42kEMjzH7xpAjBFHAvEkC7rqAlw';
}
// Download the file
$this->maniaControl->fileReader->loadFile($url,
function ($file, $error) use(&$login, &$mapInfo, &$update) {
if (!$file) {
// Download error
$this->maniaControl->chat->sendError('Download failed!', $login);
return;
}
$this->processMapFile($file, $mapInfo, $login, $update);
});
});
2014-02-07 17:27:09 +01:00
}
}
2014-01-29 22:44:06 +01:00
2014-02-07 17:27:09 +01:00
/**
* Process the MapFile
*
2014-03-31 21:04:15 +02:00
* @param $file
2014-02-07 17:27:09 +01:00
* @param MXMapInfo $mapInfo
2014-03-31 21:04:15 +02:00
* @param $login
* @param $update
2014-02-07 17:27:09 +01:00
*/
2014-03-21 10:52:40 +01:00
private function processMapFile($file, MXMapInfo $mapInfo, $login, $update) {
2014-03-31 21:04:15 +02:00
// Check if map is already on the server
if ($this->getMapByUid($mapInfo->uid)) {
2014-02-07 17:27:09 +01:00
// Download error
$this->maniaControl->chat->sendError('Map is already on the server!', $login);
return;
}
2014-03-31 21:04:15 +02:00
2014-02-07 17:27:09 +01:00
// Save map
$fileName = $mapInfo->id . '_' . $mapInfo->name . '.Map.Gbx';
$fileName = FileUtil::getClearedFileName($fileName);
2014-03-31 21:04:15 +02:00
$downloadFolderName = $this->maniaControl->settingManager->getSetting($this, 'MapDownloadDirectory', 'MX');
$relativeMapFileName = $downloadFolderName . '/' . $fileName;
$mapDir = $this->maniaControl->client->getMapsDirectory();
$downloadDirectory = $mapDir . '/' . $downloadFolderName . '/';
$fullMapFileName = $downloadDirectory . $fileName;
// Check if it can get written locally
2014-02-07 17:27:09 +01:00
if (is_dir($mapDir)) {
// Create download directory if necessary
2014-03-31 21:04:15 +02:00
if (!is_dir($downloadDirectory) && !mkdir($downloadDirectory)) {
trigger_error("ManiaControl doesn't have to rights to save maps in '{$downloadDirectory}'.");
2014-02-07 17:27:09 +01:00
$this->maniaControl->chat->sendError("ManiaControl doesn't have the rights to save maps.", $login);
return;
2014-01-29 22:44:06 +01:00
}
2014-03-31 21:04:15 +02:00
if (!file_put_contents($fullMapFileName, $file)) {
2014-02-07 17:27:09 +01:00
// Save error
$this->maniaControl->chat->sendError('Saving map failed!', $login);
2013-12-15 15:13:56 +01:00
return;
}
2014-03-31 21:04:15 +02:00
}
else {
// Write map via write file method
2014-01-27 22:01:42 +01:00
try {
2014-03-31 21:04:15 +02:00
$this->maniaControl->client->writeFileFromString($relativeMapFileName, $file);
}
catch (InvalidArgumentException $e) {
2014-02-17 00:34:20 +01:00
if ($e->getMessage() == 'data are too big') {
2014-02-14 14:16:24 +01:00
$this->maniaControl->chat->sendError("Map is too big for a remote save.", $login);
return;
}
throw $e;
2013-12-15 15:13:56 +01:00
}
2014-02-07 17:27:09 +01:00
}
2014-03-31 21:04:15 +02:00
2014-02-07 17:27:09 +01:00
// Check for valid map
try {
2014-03-31 21:04:15 +02:00
$this->maniaControl->client->checkMapForCurrentServerParams($relativeMapFileName);
}
catch (Exception $e) {
trigger_error("Couldn't check if map is valid ('{$relativeMapFileName}'). " . $e->getMessage());
2014-02-07 17:27:09 +01:00
$this->maniaControl->chat->sendError('Wrong MapType or not validated!', $login);
return;
}
2014-03-31 21:04:15 +02:00
2014-02-07 17:27:09 +01:00
// Add map to map list
2014-03-31 21:04:15 +02:00
$this->maniaControl->client->insertMap($relativeMapFileName);
2014-02-07 17:27:09 +01:00
$this->updateFullMapList();
2014-03-31 21:04:15 +02:00
// Update Mx MapInfo
2014-02-07 17:27:09 +01:00
$this->maniaControl->mapManager->mxManager->updateMapObjectsWithManiaExchangeIds(array($mapInfo));
2014-03-31 21:04:15 +02:00
// Update last updated time
2014-02-07 17:27:09 +01:00
$map = $this->maps[$mapInfo->uid];
2014-03-31 21:04:15 +02:00
/**
* @var Map $map
*/
2014-02-07 17:27:09 +01:00
$map->lastUpdate = time();
2014-03-31 21:04:15 +02:00
2014-02-07 17:27:09 +01:00
$player = $this->maniaControl->playerManager->getPlayer($login);
2014-03-31 21:04:15 +02:00
2014-02-07 17:27:09 +01:00
if (!$update) {
2014-03-31 21:04:15 +02:00
// Message
2014-02-07 17:27:09 +01:00
$message = '$<' . $player->nickname . '$> added $<' . $mapInfo->name . '$>!';
$this->maniaControl->chat->sendSuccess($message);
$this->maniaControl->log($message, true);
// Queue requested Map
$this->maniaControl->mapManager->mapQueue->addMapToMapQueue($login, $mapInfo->uid);
2014-03-31 21:04:15 +02:00
}
else {
2014-02-07 17:27:09 +01:00
$message = '$<' . $player->nickname . '$> updated $<' . $mapInfo->name . '$>!';
$this->maniaControl->chat->sendSuccess($message);
$this->maniaControl->log($message, true);
2013-12-15 15:13:56 +01:00
}
}
2014-02-07 17:27:09 +01:00
// TODO: add local map by filename
}