2013-11-12 15:48:25 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace ManiaControl\Maps;
|
|
|
|
|
|
|
|
require_once __DIR__ . '/Map.php';
|
2013-11-12 16:52:23 +01:00
|
|
|
require_once __DIR__ . '/MapCommands.php';
|
2013-11-12 15:48:25 +01:00
|
|
|
|
2013-12-15 15:13:56 +01:00
|
|
|
use ManiaControl\FileUtil;
|
2013-11-12 15:48:25 +01:00
|
|
|
use ManiaControl\ManiaControl;
|
|
|
|
use ManiaControl\Callbacks\CallbackListener;
|
|
|
|
use ManiaControl\Callbacks\CallbackManager;
|
|
|
|
|
2013-11-12 16:52:23 +01:00
|
|
|
|
2013-11-12 15:48:25 +01:00
|
|
|
/**
|
|
|
|
* Manager for maps
|
|
|
|
*
|
|
|
|
* @author kremsy & steeffeen
|
|
|
|
*/
|
|
|
|
class MapManager implements CallbackListener {
|
2013-11-12 16:52:23 +01:00
|
|
|
/**
|
|
|
|
* Constants
|
|
|
|
*/
|
|
|
|
const TABLE_MAPS = 'mc_maps';
|
2013-11-12 15:48:25 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Private properties
|
|
|
|
*/
|
|
|
|
private $maniaControl = null;
|
2013-11-12 16:52:23 +01:00
|
|
|
private $mapCommands = null;
|
2013-11-12 15:48:25 +01:00
|
|
|
private $mapList = array();
|
2013-12-15 17:52:16 +01:00
|
|
|
private $mapListUids = array();
|
|
|
|
private $currentMap = null;
|
2013-11-12 15:48:25 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct map manager
|
|
|
|
*
|
|
|
|
* @param \ManiaControl\ManiaControl $maniaControl
|
|
|
|
*/
|
|
|
|
public function __construct(ManiaControl $maniaControl) {
|
|
|
|
$this->maniaControl = $maniaControl;
|
2013-11-25 02:01:15 +01:00
|
|
|
|
|
|
|
// Init database tables
|
2013-11-12 15:48:25 +01:00
|
|
|
$this->initTables();
|
2013-11-25 02:01:15 +01:00
|
|
|
|
|
|
|
// Create map commands instance
|
2013-11-12 16:52:23 +01:00
|
|
|
$this->mapCommands = new MapCommands($maniaControl);
|
2013-11-12 15:48:25 +01:00
|
|
|
|
2013-11-25 02:01:15 +01:00
|
|
|
// Register for callbacks
|
2013-11-26 13:49:36 +01:00
|
|
|
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MC_ONINIT, $this, 'handleOnInit');
|
2013-11-12 15:48:25 +01:00
|
|
|
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MC_BEGINMAP, $this, 'handleBeginMap');
|
2013-12-16 14:21:30 +01:00
|
|
|
$this->maniaControl->callbackManager->registerCallbackListener(CallbackManager::CB_MP_MAPLISTMODIFIED, $this, 'mapListModified');
|
2013-11-12 15:48:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize necessary database tables
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
private function initTables() {
|
2013-11-12 16:52:23 +01:00
|
|
|
$mysqli = $this->maniaControl->database->mysqli;
|
2013-11-25 02:01:15 +01:00
|
|
|
$query = "CREATE TABLE IF NOT EXISTS `" . self::TABLE_MAPS . "` (
|
2013-11-12 16:52:23 +01:00
|
|
|
`index` int(11) NOT NULL AUTO_INCREMENT,
|
|
|
|
`uid` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
|
|
|
|
`name` varchar(150) COLLATE utf8_unicode_ci NOT NULL,
|
|
|
|
`authorLogin` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
|
|
|
|
`fileName` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
|
|
|
|
`environment` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
|
|
|
|
`mapType` varchar(50) COLLATE utf8_unicode_ci 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;";
|
2013-11-25 02:01:15 +01:00
|
|
|
$result = $mysqli->query($query);
|
2013-11-12 16:52:23 +01:00
|
|
|
if ($mysqli->error) {
|
|
|
|
trigger_error($mysqli->error, E_USER_ERROR);
|
|
|
|
return false;
|
|
|
|
}
|
2013-11-25 02:01:15 +01:00
|
|
|
return $result;
|
2013-11-12 16:52:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Save map to the database
|
|
|
|
*
|
|
|
|
* @param \ManiaControl\Maps\Map $map
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2013-11-25 02:01:15 +01:00
|
|
|
private function saveMap(Map &$map) {
|
2013-11-12 16:52:23 +01:00
|
|
|
$mysqli = $this->maniaControl->database->mysqli;
|
|
|
|
$mapQuery = "INSERT INTO `" . self::TABLE_MAPS . "` (
|
|
|
|
`uid`,
|
|
|
|
`name`,
|
|
|
|
`authorLogin`,
|
|
|
|
`fileName`,
|
|
|
|
`environment`,
|
|
|
|
`mapType`
|
|
|
|
) VALUES (
|
|
|
|
?, ?, ?, ?, ?, ?
|
|
|
|
) ON DUPLICATE KEY UPDATE
|
|
|
|
`index` = LAST_INSERT_ID(`index`);";
|
|
|
|
$mapStatement = $mysqli->prepare($mapQuery);
|
|
|
|
if ($mysqli->error) {
|
|
|
|
trigger_error($mysqli->error);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$mapStatement->bind_param('ssssss', $map->uid, $map->name, $map->authorLogin, $map->fileName, $map->environment, $map->mapType);
|
|
|
|
$mapStatement->execute();
|
|
|
|
if ($mapStatement->error) {
|
|
|
|
trigger_error($mapStatement->error);
|
|
|
|
$mapStatement->close();
|
|
|
|
return false;
|
|
|
|
}
|
2013-11-25 02:01:15 +01:00
|
|
|
$map->index = $mapStatement->insert_id;
|
2013-11-12 16:52:23 +01:00
|
|
|
$mapStatement->close();
|
2013-11-12 15:48:25 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a map to the MapList
|
|
|
|
*
|
|
|
|
* @param \ManiaControl\Maps\Map $map
|
|
|
|
* @return bool
|
|
|
|
*/
|
2013-12-15 17:52:16 +01:00
|
|
|
private function addMap(Map $map) { //TODO needed?
|
2013-11-12 16:52:23 +01:00
|
|
|
$this->saveMap($map);
|
2013-12-15 17:52:16 +01:00
|
|
|
$this->mapListUids[$map->uid] = $map;
|
|
|
|
$this->mapList[] = $map;
|
2013-11-12 15:48:25 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-12-16 13:14:26 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Erases a Map
|
|
|
|
* @param $id
|
|
|
|
* @param $uid
|
|
|
|
*/
|
|
|
|
public function eraseMap($id, $uid) {
|
|
|
|
$map = $this->mapListUids[$uid];
|
|
|
|
$this->maniaControl->client->query('RemoveMap', $map->fileName);
|
|
|
|
$this->maniaControl->chat->sendSuccess('Map $<' . $map->name . '$> removed!'); //TODO specified message, who done it?
|
|
|
|
$this->maniaControl->log('Map $<' . $map->name . '$> removed!');
|
|
|
|
unset($this->mapListUids[$uid]);
|
|
|
|
unset($this->mapList[$id]);
|
|
|
|
}
|
|
|
|
|
2013-12-15 17:52:16 +01:00
|
|
|
/**
|
|
|
|
* Updates the full Map list, needed on Init, addMap and on ShuffleMaps
|
|
|
|
* @return null
|
|
|
|
*/
|
|
|
|
private function updateFullMapList(){
|
|
|
|
if(!$this->maniaControl->client->query('GetMapList', 100,0)){ //fetch 100 Maps
|
|
|
|
trigger_error("Couldn't fetch mapList. " . $this->maniaControl->getClientErrorText());
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
$tempList = array();
|
|
|
|
|
|
|
|
$mapList = $this->maniaControl->client->getResponse();
|
|
|
|
foreach($mapList as $rpcMap){
|
|
|
|
if(array_key_exists($rpcMap["UId"], $this->mapListUids)){ //Map already exists, only update index
|
|
|
|
$tempList[] = $this->mapListUids[$rpcMap["UId"]];
|
|
|
|
}else{ //Insert Map Object
|
|
|
|
$map = new Map($this->maniaControl, $rpcMap);
|
|
|
|
$this->saveMap($map);
|
|
|
|
$tempList[] = $map;
|
|
|
|
$this->mapListUids[$map->uid] = $map;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//restore Sorted Maplist
|
|
|
|
$this->mapList = $tempList;
|
|
|
|
}
|
2013-12-15 15:13:56 +01:00
|
|
|
|
2013-11-12 16:52:23 +01:00
|
|
|
/**
|
|
|
|
* Fetch current map
|
|
|
|
*
|
|
|
|
* @return \ManiaControl\Maps\Map
|
|
|
|
*/
|
2013-12-15 17:52:16 +01:00
|
|
|
private function fetchCurrentMapInfo() {
|
2013-11-12 16:52:23 +01:00
|
|
|
if (!$this->maniaControl->client->query('GetCurrentMapInfo')) {
|
|
|
|
trigger_error("Couldn't fetch map info. " . $this->maniaControl->getClientErrorText());
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
$rpcMap = $this->maniaControl->client->getResponse();
|
2013-12-16 12:16:33 +01:00
|
|
|
if(!array_key_exists($rpcMap["UId"], $this->mapListUids)){
|
|
|
|
$map = new Map($this->maniaControl, $rpcMap);
|
|
|
|
$this->addMap($map);
|
|
|
|
return $map;
|
|
|
|
}
|
|
|
|
return $this->mapListUids[$rpcMap["UId"]];
|
2013-11-12 16:52:23 +01:00
|
|
|
}
|
|
|
|
|
2013-11-26 13:49:36 +01:00
|
|
|
/**
|
|
|
|
* Handle OnInit callback
|
|
|
|
*
|
|
|
|
* @param array $callback
|
|
|
|
*/
|
|
|
|
public function handleOnInit(array $callback) {
|
2013-12-15 17:52:16 +01:00
|
|
|
$this->updateFullMapList();
|
|
|
|
$this->currentMap = $this->fetchCurrentMapInfo();
|
2013-11-26 13:49:36 +01:00
|
|
|
}
|
|
|
|
|
2013-12-15 17:52:16 +01:00
|
|
|
/**
|
|
|
|
* @return null
|
|
|
|
*/
|
|
|
|
public function getCurrentMap(){
|
|
|
|
return $this->currentMap;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-11-12 15:48:25 +01:00
|
|
|
/**
|
|
|
|
* Handle BeginMap callback
|
|
|
|
*
|
|
|
|
* @param array $callback
|
|
|
|
*/
|
|
|
|
public function handleBeginMap(array $callback) {
|
2013-12-15 17:52:16 +01:00
|
|
|
if(array_key_exists($callback[1][0]["UId"], $this->mapListUids)){ //Map already exists, only update index
|
2013-12-16 12:16:33 +01:00
|
|
|
$this->currentMap = $this->mapListUids[$callback[1][0]["UId"]];
|
2013-12-15 17:52:16 +01:00
|
|
|
}else{ //can this ever happen?
|
|
|
|
$this->currentMap = $this->fetchCurrentMapInfo();
|
2013-11-12 16:52:23 +01:00
|
|
|
}
|
2013-11-12 15:48:25 +01:00
|
|
|
}
|
2013-12-14 22:00:59 +01:00
|
|
|
|
2013-12-16 14:21:30 +01:00
|
|
|
/**
|
|
|
|
* MapList modified by other controller or web panels
|
|
|
|
* @param array $callback
|
|
|
|
*/
|
|
|
|
public function mapListModified(array $callback){
|
|
|
|
$this->updateFullMapList();
|
|
|
|
}
|
2013-12-15 17:52:16 +01:00
|
|
|
|
2013-12-14 22:00:59 +01:00
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getMapList(){
|
|
|
|
return $this->mapList;
|
|
|
|
}
|
|
|
|
|
2013-12-15 15:13:56 +01:00
|
|
|
/**
|
|
|
|
* Adds a Map from Mania Exchange
|
|
|
|
* @param $mapId
|
|
|
|
* @param $login
|
|
|
|
*/
|
|
|
|
public function addMapFromMx($mapId, $login){
|
|
|
|
// Check if ManiaControl can even write to the maps dir
|
|
|
|
if (!$this->maniaControl->client->query('GetMapsDirectory')) {
|
|
|
|
trigger_error("Couldn't get map directory. " . $this->maniaControl->getClientErrorText());
|
|
|
|
$this->maniaControl->chat->sendError("ManiaControl couldn't retrieve the maps directory.", $login);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$mapDir = $this->maniaControl->client->getResponse();
|
|
|
|
if (!is_dir($mapDir)) {
|
|
|
|
trigger_error("ManiaControl doesn't have have access to the maps directory in '{$mapDir}'.");
|
|
|
|
$this->maniaControl->chat->sendError("ManiaControl doesn't have access to the maps directory.", $login);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$downloadDirectory = $this->maniaControl->settingManager->getSetting($this, 'MapDownloadDirectory', 'MX');
|
|
|
|
// Create download directory if necessary
|
|
|
|
if (!is_dir($mapDir . $downloadDirectory) && !mkdir($mapDir . $downloadDirectory)) {
|
|
|
|
trigger_error("ManiaControl doesn't have to rights to save maps in '{$mapDir}{$downloadDirectory}'.");
|
|
|
|
$this->maniaControl->chat->sendError("ManiaControl doesn't have the rights to save maps.", $login);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$mapDir .= $downloadDirectory . '/';
|
|
|
|
|
|
|
|
// Download the map
|
|
|
|
if (is_numeric($mapId)) {
|
|
|
|
// Load from MX
|
|
|
|
$serverInfo = $this->maniaControl->server->getSystemInfo();
|
|
|
|
$title = strtolower(substr($serverInfo['TitleId'], 0, 2));
|
2013-12-16 14:21:30 +01:00
|
|
|
|
2013-12-15 15:13:56 +01:00
|
|
|
// Check if map exists
|
2013-12-16 14:21:30 +01:00
|
|
|
$url = "http://api.mania-exchange.com/{$title}/maps/{$mapId}?format=json";
|
2013-12-15 15:13:56 +01:00
|
|
|
$mapInfo = FileUtil::loadFile($url);
|
|
|
|
if (!$mapInfo || strlen($mapInfo) <= 0) {
|
|
|
|
// Invalid id
|
|
|
|
$this->maniaControl->chat->sendError('Invalid MX-Id!', $login);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$mapInfo = json_decode($mapInfo, true);
|
|
|
|
$url = "http://{$title}.mania-exchange.com/tracks/download/{$mapId}";
|
|
|
|
$file = FileUtil::loadFile($url);
|
|
|
|
if (!$file) {
|
|
|
|
// Download error
|
|
|
|
$this->maniaControl->chat->sendError('Download failed!', $login);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Save map
|
|
|
|
$fileName = $mapInfo['TrackID'] . '_' . $mapInfo['Name'] . '.Map.Gbx';
|
|
|
|
$fileName = FileUtil::getClearedFileName($fileName);
|
|
|
|
if (!file_put_contents($mapDir . $fileName, $file)) {
|
|
|
|
// Save error
|
|
|
|
$this->maniaControl->chat->sendError('Saving map failed!', $login);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Check for valid map
|
|
|
|
$mapFileName = $downloadDirectory . '/' . $fileName;
|
|
|
|
if (!$this->maniaControl->client->query('CheckMapForCurrentServerParams', $mapFileName)) {
|
|
|
|
trigger_error("Couldn't check if map is valid ('{$mapFileName}'). " . $this->maniaControl->getClientErrorText());
|
|
|
|
$this->maniaControl->chat->sendError('Error checking map!', $login);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$response = $this->maniaControl->client->getResponse();
|
|
|
|
if (!$response) {
|
|
|
|
// Invalid map type
|
|
|
|
$this->maniaControl->chat->sendError("Invalid map type.", $login);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Add map to map list
|
2013-12-16 14:21:30 +01:00
|
|
|
if (!$this->maniaControl->client->query('InsertMap', $mapFileName)) { //TODO irgentein bug?
|
2013-12-15 15:13:56 +01:00
|
|
|
$this->maniaControl->chat->sendError("Couldn't add map to match settings!", $login);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$this->maniaControl->chat->sendSuccess('Map $<' . $mapInfo['Name'] . '$> added!');
|
2013-12-15 17:52:16 +01:00
|
|
|
|
|
|
|
$this->updateFullMapList();
|
2013-12-15 15:13:56 +01:00
|
|
|
}
|
|
|
|
// TODO: add local map by filename
|
|
|
|
}
|
2013-11-25 02:01:15 +01:00
|
|
|
}
|