Android Open Source - yahtzee4android Full House Move






From Project

Back to project page yahtzee4android.

License

The source code is released under:

GNU General Public License

If you think the Android project yahtzee4android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.tum.yahtzee.moves;
//from w  ww .  jav  a  2 s .c o  m
import java.util.List;

import com.tum.yahtzee.units.Cube;

public class FullHouseMove implements IBaseMove {
  public static boolean validate(List<Cube> cubes)
  {
    int[] values = new int[6];
    for(int i=0;i<6;i++) { values[i] = 0; }
    for (Cube cube : cubes)
    {
      values[cube.getNumber()]++;
    }
    
    boolean foundTwo = false;
    boolean foundThree = false;
    
    for(int i=0;i<6;i++) {
      if (values[i] == 2) foundTwo = true;
      if (values[i] == 3) foundThree = true;
    }
    return foundTwo && foundThree;
  }
  
  public static int calculatePoints(List<Cube> cubes)
  {
    return 25;
  }
  
  public FullHouseMove(List<Cube> cubes)
  {
    
  }
  
  public int getPoints()
  {
    return FullHouseMove.calculatePoints(null);
  }
  
  public void print()
  {
    System.out.println("FullHouse, Points: "+getPoints());
  }
}




Java Source Code List

com.tum.yahtzee.GameActivity.java
com.tum.yahtzee.GameController.java
com.tum.yahtzee.YahtzeeActivity.java
com.tum.yahtzee.listeners.OnCubeClickListener.java
com.tum.yahtzee.moves.ChanceMove.java
com.tum.yahtzee.moves.DummyMove.java
com.tum.yahtzee.moves.FourOfAKindMove.java
com.tum.yahtzee.moves.FullHouseMove.java
com.tum.yahtzee.moves.IBaseMove.java
com.tum.yahtzee.moves.LargeStraightMove.java
com.tum.yahtzee.moves.NumberMove.java
com.tum.yahtzee.moves.SmallStraightMove.java
com.tum.yahtzee.moves.ThreeOfAKindMove.java
com.tum.yahtzee.moves.YahtzeeMove.java
com.tum.yahtzee.services.MessageService.java
com.tum.yahtzee.services.MethodPointer.java
com.tum.yahtzee.units.Cube.java
com.tum.yahtzee.units.Player.java