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:
@@ -91,7 +91,7 @@ public abstract class RatingManagerDelegate extends GameManagerDelegate
|
|||||||
|
|
||||||
// if the game is in play and this is a player, load their ratings
|
// if the game is in play and this is a player, load their ratings
|
||||||
BodyObject occupant = (BodyObject)CrowdServer.omgr.getObject(bodyOid);
|
BodyObject occupant = (BodyObject)CrowdServer.omgr.getObject(bodyOid);
|
||||||
if (_gobj.isInPlay() && isPlayer(occupant)) {
|
if (shouldRateGame() && _gobj.isInPlay() && isPlayer(occupant)) {
|
||||||
Rating rating = maybeCreateRating(occupant);
|
Rating rating = maybeCreateRating(occupant);
|
||||||
if (rating != null) {
|
if (rating != null) {
|
||||||
loadRatings(Collections.singleton(rating));
|
loadRatings(Collections.singleton(rating));
|
||||||
@@ -118,8 +118,8 @@ public abstract class RatingManagerDelegate extends GameManagerDelegate
|
|||||||
{
|
{
|
||||||
super.gameWillStart();
|
super.gameWillStart();
|
||||||
|
|
||||||
// if this game is not rated, stop here
|
// if this game is not to be rated, stop here
|
||||||
if (!_gmgr.getGameConfig().rated) {
|
if (!shouldRateGame()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -151,8 +151,8 @@ public abstract class RatingManagerDelegate extends GameManagerDelegate
|
|||||||
{
|
{
|
||||||
super.gameDidEnd();
|
super.gameDidEnd();
|
||||||
|
|
||||||
// if this game is not rated, stop here
|
// if this game is not to be rated, stop here
|
||||||
if (!_gmgr.getGameConfig().rated) {
|
if (!shouldRateGame()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -397,6 +397,14 @@ public abstract class RatingManagerDelegate extends GameManagerDelegate
|
|||||||
return _gmgr.getGameConfig().getGameId();
|
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.
|
* Return the minimum time (in seconds) a game must've lasted for it to count towards rating.
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user