All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ggp.base.player.request.grammar.AbortRequest Maven / Gradle / Ivy

There is a newer version: 0.0.15
Show newest version
package org.ggp.base.player.request.grammar;

import org.ggp.base.player.gamer.Gamer;
import org.ggp.base.player.gamer.event.GamerAbortedMatchEvent;
import org.ggp.base.player.gamer.event.GamerUnrecognizedMatchEvent;
import org.ggp.base.player.gamer.exception.AbortingException;
import org.ggp.base.util.logging.GamerLogger;

public final class AbortRequest extends Request
{
    private final Gamer gamer;
    private final String matchId;

    public AbortRequest(Gamer gamer, String matchId)
    {
        this.gamer = gamer;
        this.matchId = matchId;
    }

    @Override
    public String getMatchId() {
        return matchId;
    }

    @Override
    public String process(long receptionTime)
    {
        // First, check to ensure that this abort request is for the match
        // we're currently playing. If we're not playing a match, or we're
        // playing a different match, send back "busy".
        if (gamer.getMatch() == null || !gamer.getMatch().getMatchId().equals(matchId))
        {
            GamerLogger.logError("GamePlayer", "Got abort message not intended for current game: ignoring.");
            gamer.notifyObservers(new GamerUnrecognizedMatchEvent(matchId));
            return "busy";
        }

        // Mark the match as aborted and notify observers
        gamer.getMatch().markAborted();
        gamer.notifyObservers(new GamerAbortedMatchEvent());
        try {
            gamer.abort();
        } catch (AbortingException e) {
            GamerLogger.logStackTrace("GamePlayer", e);
        }

        // Once the match has ended, set 'roleName' and 'match'
        // to NULL to indicate that we're ready to begin a new match.
        gamer.setRoleName(null);
        gamer.setMatch(null);

        return "aborted";
    }

    @Override
    public String toString()
    {
        return "abort";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy