Allow derived classes to not rate games for other reasons.

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@438 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Michael Bayne
2007-09-25 16:32:17 +00:00
parent 2d24116c97
commit 3eff6e03cd
@@ -91,7 +91,7 @@ public abstract class RatingManagerDelegate extends GameManagerDelegate
// if the game is in play and this is a player, load their ratings
BodyObject occupant = (BodyObject)CrowdServer.omgr.getObject(bodyOid);
if (_gobj.isInPlay() && isPlayer(occupant)) {
if (shouldRateGame() && _gobj.isInPlay() && isPlayer(occupant)) {
Rating rating = maybeCreateRating(occupant);
if (rating != null) {
loadRatings(Collections.singleton(rating));
@@ -118,8 +118,8 @@ public abstract class RatingManagerDelegate extends GameManagerDelegate
{
super.gameWillStart();
// if this game is not rated, stop here
if (!_gmgr.getGameConfig().rated) {
// if this game is not to be rated, stop here
if (!shouldRateGame()) {
return;
}
@@ -151,8 +151,8 @@ public abstract class RatingManagerDelegate extends GameManagerDelegate
{
super.gameDidEnd();
// if this game is not rated, stop here
if (!_gmgr.getGameConfig().rated) {
// if this game is not to be rated, stop here
if (!shouldRateGame()) {
return;
}
@@ -397,6 +397,14 @@ public abstract class RatingManagerDelegate extends GameManagerDelegate
return _gmgr.getGameConfig().getGameId();
}
/**
* Returns true if this game should be rated, false otherwise.
*/
protected boolean shouldRateGame ()
{
return _gmgr.getGameConfig().rated;
}
/**
* Return the minimum time (in seconds) a game must've lasted for it to count towards rating.
*/