Package org.cspoker.server.embedded.gamecontrol.rounds

Source Code of org.cspoker.server.embedded.gamecontrol.rounds.FinalRound

/**
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
*  This program is distributed in the hope that it will be useful,
*  but WITHOUT ANY WARRANTY; without even the implied warranty of
*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
*  GNU General Public License for more details.
*
*  You should have received a copy of the GNU General Public License
*  along with this program; if not, write to the Free Software
*  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

package org.cspoker.server.embedded.gamecontrol.rounds;

import org.apache.log4j.Logger;
import org.cspoker.common.api.lobby.holdemtable.event.NewRoundEvent;
import org.cspoker.common.api.lobby.holdemtable.event.NextPlayerEvent;
import org.cspoker.common.elements.table.Round;
import org.cspoker.server.embedded.gamecontrol.Game;
import org.cspoker.server.embedded.gamecontrol.PokerTable;
import org.cspoker.server.embedded.gamecontrol.Showdown;

public class FinalRound
    extends BettingRound {
 
  private static Logger logger = Logger.getLogger(FinalRound.class);
 
  public FinalRound(PokerTable gameMediator, Game game) {
    super(gameMediator, game);
   
    gameMediator.publishNewRoundEvent(new NewRoundEvent(getRound(), game.getPots().getSnapshot()));
   
    drawMuckCard();
    drawOpenCardAndPublishCommonCard();
    FinalRound.logger.info("*** RIVER *** " + game.getCommunityCards());
    if (getGame().getCurrentPlayer() != null && getGame().getNbCurrentDealPlayers() > 1) {
      gameMediator.publishNextPlayerEvent(new NextPlayerEvent(game.getCurrentPlayer().getId()));
    }
  }
 
  @Override
  public void endRound() {
    if (onlyOneShowdownPlayerLeft()) {
      super.endRound();
    } else {
      collectChips();
      Showdown showdown = new Showdown(gameMediator, getGame());
      showdown.determineWinners();
      game.showdownOccured(showdown.getNbShowdownPlayers());
    }
    if(!game.getTableConfiguration().isDoylesGame()){
      removeBrokePlayers();
    }
    game.initializeForNewHand();
  }
 
  @Override
  public AbstractRound getNextRound() {
    return getNewDealRound();
  }
 
  @Override
  public boolean isLowBettingRound() {
    return false;
  }
 
  @Override
  public boolean isHighBettingRound() {
    return !isLowBettingRound();
  }
 
  @Override
  public String toString() {
    return "final round";
  }
 
  @Override
  public Round getRound() {
    return Round.FINAL;
  }
}
TOP

Related Classes of org.cspoker.server.embedded.gamecontrol.rounds.FinalRound

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.