finished timermanager
This commit is contained in:
parent
140c77441e
commit
7518eec9eb
@ -1,11 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
* Created by PhpStorm.
|
* Class for managing Timers
|
||||||
* User: Lukas
|
*
|
||||||
* Date: 30.01.14
|
* @author steeffeen & kremsy
|
||||||
* Time: 21:11
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace ManiaControl\Callbacks;
|
namespace ManiaControl\Callbacks;
|
||||||
|
|
||||||
|
|
||||||
@ -15,10 +13,27 @@ class TimerManager {
|
|||||||
private $maniaControl = null;
|
private $maniaControl = null;
|
||||||
private $timerListenings = array();
|
private $timerListenings = array();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Construct a new Timer Manager
|
||||||
|
*
|
||||||
|
* @param \ManiaControl\ManiaControl $maniaControl
|
||||||
|
*/
|
||||||
public function __construct(ManiaControl $maniaControl) {
|
public function __construct(ManiaControl $maniaControl) {
|
||||||
$this->maniaControl = $maniaControl;
|
$this->maniaControl = $maniaControl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Registers a One Time Listening
|
||||||
|
*
|
||||||
|
* @param TimerListener $listener
|
||||||
|
* @param $method
|
||||||
|
* @param $time
|
||||||
|
*/
|
||||||
|
public function registerOneTimeListening(TimerListener $listener, $method, $time) {
|
||||||
|
$this->registerTimerListening($listener, $method, $time, true);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Registers a Timing Listening, note < 10ms it can get inaccurate
|
* Registers a Timing Listening, note < 10ms it can get inaccurate
|
||||||
*
|
*
|
||||||
@ -27,14 +42,41 @@ class TimerManager {
|
|||||||
* @param $time
|
* @param $time
|
||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
public function registerTimerListening(TimerListener $listener, $method, $time) {
|
public function registerTimerListening(TimerListener $listener, $method, $time, $oneTime = false) {
|
||||||
if (!method_exists($listener, $method)) {
|
if (!method_exists($listener, $method)) {
|
||||||
trigger_error("Given listener (" . get_class($listener) . ") can't handle timer (no method '{$method}')!");
|
trigger_error("Given listener (" . get_class($listener) . ") can't handle timer (no method '{$method}')!");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
array_push($this->timerListenings, array("Listener" => $listener, "Method" => $method, "DeltaTime" => ($time / 1000), "LastTrigger" => microtime(true)));
|
|
||||||
return true;
|
|
||||||
|
|
||||||
|
//Init the Timer Listening
|
||||||
|
$listening = new \stdClass();
|
||||||
|
$listening->listener = $listener;
|
||||||
|
$listening->method = $method;
|
||||||
|
$listening->deltaTime = $time / 1000;
|
||||||
|
$listening->lastTrigger = -1;
|
||||||
|
$listening->oneTime = $oneTime;
|
||||||
|
|
||||||
|
array_push($this->timerListenings, $listening);
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Remove a Script Callback Listener
|
||||||
|
*
|
||||||
|
* @param CallbackListener $listener
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function unregisterTimerListenings(CallbackListener $listener) {
|
||||||
|
$removed = false;
|
||||||
|
foreach($this->timerListenings as $key => &$listening) {
|
||||||
|
if ($listening->listener != $listener) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
unset($this->timerListenings[$key]);
|
||||||
|
$removed = true;
|
||||||
|
}
|
||||||
|
return $removed;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -42,12 +84,23 @@ class TimerManager {
|
|||||||
*/
|
*/
|
||||||
public function manageTimings() {
|
public function manageTimings() {
|
||||||
$time = microtime(true);
|
$time = microtime(true);
|
||||||
foreach($this->timerListenings as $key => $listening) {
|
foreach($this->timerListenings as $key => &$listening) {
|
||||||
if ($listening["LastTrigger"] + $listening["DeltaTime"] < $time) {
|
if (($listening->lastTrigger + $listening->deltaTime) <= $time) {
|
||||||
call_user_func(array($listening["Listener"], $listening["Method"]), $time);
|
call_user_func(array($listening->listener, $listening->method), $time);
|
||||||
$this->timerListenings[$key]["LastTrigger"] += ($listening["DeltaTime"]);
|
|
||||||
|
//Unregister one time Listening
|
||||||
|
if ($listening->oneTime == true) {
|
||||||
|
unset($this->timerListenings[$key]);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($listening->lastTrigger != -1) {
|
||||||
|
$listening->lastTrigger += $listening->deltaTime;
|
||||||
|
} else {
|
||||||
|
//Initial Time Initialize (self increment needed to improve accuracy)
|
||||||
|
$listening->lastTrigger = microtime(true);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -76,13 +76,8 @@ class PlayerList implements ManialinkPageAnswerListener, CallbackListener, Timer
|
|||||||
$this->maniaControl->callbackManager->registerCallbackListener(PlayerManager::CB_PLAYERDISCONNECTED, $this, 'updateWidget');
|
$this->maniaControl->callbackManager->registerCallbackListener(PlayerManager::CB_PLAYERDISCONNECTED, $this, 'updateWidget');
|
||||||
$this->maniaControl->callbackManager->registerCallbackListener(PlayerManager::CB_PLAYERJOINED, $this, 'updateWidget');
|
$this->maniaControl->callbackManager->registerCallbackListener(PlayerManager::CB_PLAYERJOINED, $this, 'updateWidget');
|
||||||
$this->maniaControl->callbackManager->registerCallbackListener(AuthenticationManager::CB_AUTH_LEVEL_CHANGED, $this, 'updateWidget');
|
$this->maniaControl->callbackManager->registerCallbackListener(AuthenticationManager::CB_AUTH_LEVEL_CHANGED, $this, 'updateWidget');
|
||||||
|
|
||||||
$this->maniaControl->timerManager->registerTimerListening($this, 'test', 1); //TODo just a test
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function test($triggerTime){
|
|
||||||
var_dump($triggerTime);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function addPlayerToShownList(Player $player, $showStatus = self::SHOWN_MAIN_WINDOW) {
|
public function addPlayerToShownList(Player $player, $showStatus = self::SHOWN_MAIN_WINDOW) {
|
||||||
$this->playersListShown[$player->login] = $showStatus;
|
$this->playersListShown[$player->login] = $showStatus;
|
||||||
|
Loading…
Reference in New Issue
Block a user