Examples of Letter


Examples of pdp.scrabble.game.Letter

    public void play(Board board, Player p) {
  Location currentLoc = this.first.clone();
  for (int i=0 ; i<this.word.length() ; i++) {
      char c = this.word.charAt(i);
      if (board.isFree(currentLoc.getH(), currentLoc.getV())) {
    Letter currentLetter = null;
    if (Character.isLowerCase(c)) {
        currentLetter = p.getRack().getLetter(Bag.JOKER);
        p.getRack().removeLetter(currentLetter);
        currentLetter.setJokerChar(Character.toUpperCase(c));
    }
    else {
        currentLetter = p.getRack().getLetter(c);
        p.getRack().removeLetter(currentLetter);
    }
View Full Code Here
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.