2010-08-28 22:05:41 -04:00
|
|
|
<?php
|
|
|
|
namespace Moserware\Skills;
|
|
|
|
|
2010-09-18 11:11:44 -04:00
|
|
|
require_once(dirname(__FILE__) . "/HashMap.php");
|
2010-10-02 21:15:47 -04:00
|
|
|
require_once(dirname(__FILE__) . "/Player.php");
|
|
|
|
require_once(dirname(__FILE__) . "/Rating.php");
|
2010-09-18 11:11:44 -04:00
|
|
|
|
2010-08-28 22:05:41 -04:00
|
|
|
class RatingContainer
|
|
|
|
{
|
2010-09-18 11:11:44 -04:00
|
|
|
private $_playerToRating;
|
|
|
|
|
|
|
|
public function __construct()
|
|
|
|
{
|
2010-09-25 18:25:56 -04:00
|
|
|
$this->_playerToRating = new HashMap();
|
2010-09-18 11:11:44 -04:00
|
|
|
}
|
2010-08-28 22:05:41 -04:00
|
|
|
|
2010-10-02 21:15:47 -04:00
|
|
|
public function &getRating(Player &$player)
|
2010-08-28 22:05:41 -04:00
|
|
|
{
|
2010-09-30 08:25:31 -04:00
|
|
|
$rating = &$this->_playerToRating->getValue($player);
|
|
|
|
return $rating;
|
2010-08-28 22:05:41 -04:00
|
|
|
}
|
|
|
|
|
2010-10-02 21:15:47 -04:00
|
|
|
public function setRating(Player &$player, Rating $rating)
|
2010-08-28 22:05:41 -04:00
|
|
|
{
|
2010-09-18 11:11:44 -04:00
|
|
|
return $this->_playerToRating->setValue($player, $rating);
|
2010-08-28 22:05:41 -04:00
|
|
|
}
|
|
|
|
|
2010-10-02 21:15:47 -04:00
|
|
|
public function &getAllPlayers()
|
2010-08-28 22:05:41 -04:00
|
|
|
{
|
2010-10-02 21:15:47 -04:00
|
|
|
$allPlayers = &$this->_playerToRating->getAllKeys();
|
|
|
|
return $allPlayers;
|
2010-08-28 22:05:41 -04:00
|
|
|
}
|
|
|
|
|
2010-10-02 21:15:47 -04:00
|
|
|
public function &getAllRatings()
|
2010-08-28 22:05:41 -04:00
|
|
|
{
|
2010-10-02 21:15:47 -04:00
|
|
|
$allRatings = &$this->_playerToRating->getAllValues();
|
|
|
|
return $allRatings;
|
2010-08-28 22:05:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function count()
|
|
|
|
{
|
2010-10-03 20:17:34 -04:00
|
|
|
return $this->_playerToRating->count();
|
2010-09-18 11:11:44 -04:00
|
|
|
}
|
2010-08-28 22:05:41 -04:00
|
|
|
}
|
|
|
|
?>
|