map and maphandler class begin

This commit is contained in:
kremsy 2013-11-10 17:04:57 +01:00
parent 10939b0104
commit 222972808d
3 changed files with 143 additions and 0 deletions

View File

@ -17,6 +17,7 @@ require_once __DIR__ . '/pluginHandler.php';
require_once __DIR__ . '/server.php';
require_once __DIR__ . '/settingManager.php';
require_once __DIR__ . '/settingConfigurator.php';
require_once __DIR__ . '/mapHandler.php';
list($endiantest) = array_values(unpack('L1L', pack('V', 1)));
if ($endiantest == 1) {
require_once __DIR__ . '/PhpRemote/GbxRemote.inc.php';

70
application/core/map.php Normal file
View File

@ -0,0 +1,70 @@
<?php
/**
* Created by PhpStorm.
* User: Lukas
* Date: 10.11.13
* Time: 16:46
*/
namespace ManiaControl;
class map {
public $id = 0;
public $name = '';
public $uid = 0;
public $filename = '';
public $author = '';
public $environment = '';
public $mood = '';
public $bronzetime; //format?
public $silvertime; //format?
public $goldtime; //format?
public $authortime; //format?
public $copperprice = 0;
public $laprace = 0;
public $forcedlaps = 0;
public $nblaps = 0;
public $nbchecks = 0;
public $score = 0;
public $starttime = 0;
public $maptype; //format?
public $mapstyle; //format?
public $titleuid; //format?
public $gbx; //format?
public $mx; //format?
public $authorNick; //format?
public $authorZone; //format?
public $authorEInfo; //format?
//Todo: check RPC infos
// instantiates the map with an RPC response
public function __construct($rpc_infos = null) {
$this->id = 0;
if ($rpc_infos) {
$this->name = stripNewlines($rpc_infos['Name']);
$this->uid = $rpc_infos['UId'];
$this->filename = $rpc_infos['FileName'];
$this->author = $rpc_infos['Author'];
$this->environment = $rpc_infos['Environnement'];
$this->mood = $rpc_infos['Mood'];
$this->bronzetime = $rpc_infos['BronzeTime'];
$this->silvertime = $rpc_infos['SilverTime'];
$this->goldtime = $rpc_infos['GoldTime'];
$this->authortime = $rpc_infos['AuthorTime'];
$this->copperprice = $rpc_infos['CopperPrice'];
$this->laprace = $rpc_infos['LapRace'];
$this->forcedlaps = 0;
$this->nblaps = $rpc_infos['NbLaps'];
$this->nbchecks = $rpc_infos['NbCheckpoints'];
$this->maptype = $rpc_infos['MapType'];
$this->mapstyle = $rpc_infos['MapStyle'];
$this->starttime = time();
} else {
$this->name = 'undefined';
}
}
}

View File

@ -0,0 +1,72 @@
<?php
/**
* Created by PhpStorm.
* User: Lukas
* Date: 10.11.13
* Time: 16:46
*/
namespace ManiaControl;
class mapHandler {
/**
* Private properties
*/
private $maniaControl = null;
private $mapList = array();
/**
* Construct map handler
* @param ManiaControl $maniaControl
*/
public function __construct(ManiaControl $maniaControl) {
$this->maniaControl = $maniaControl;
$this->initTables();
$this->maniaControl->callbacks->registerCallbackHandler(Callbacks::CB_MC_ONINIT, $this, 'onInit');
$this->maniaControl->callbacks->registerCallbackHandler(Callbacks::CB_MP_BEGINMAP, $this, 'beginMap');
$this->maniaControl->callbacks->registerCallbackHandler(Callbacks::CB_MP_ENDMAP, $this, 'endMap');
}
/**
* Initialize all necessary tables
*
* @return bool
*/
private function initTables() {
}
/**
* Handle OnInit callback
*
* @param array $callback
*/
public function onInit(){
$this->maniaControl->client->query('GetMapList', 300, 0);
$mapList = $this->maniaControl->client->getResponse();
foreach ($mapList as $map) {
$this->addMap($map);
}
}
/**
* Add a map to the MapList
*
* @param Map $map
* @return bool
*/
private function addMap(Map $map) {
if (!$map) {
return false;
}
$this->mapList[$map->uid] = $map;
return true;
}
}