Project #5 CMSC 131
Due: November 13th before 11:00pm.
Object-Oriented Programming I
Type of Project: CLOSED Fall 2012

Wacky Rules Poker Simulator

This is a closed project.  You are expected to do all of the work on this project without consulting with anyone other than the CMSC 131 instructors and TAs.  Treat this project as though it were a take home exam.  If you have any questions about whether or not a certain topic is okay to discuss with classmates or friends, please ask your instructor.

 

Overview

This project will simulate something that bears some similarities to the game of Poker but which has some of its own made up winning hands. You don't know how to play this game. We'll explain everything!  Most of this program has been written for you.  We provide the graphical interface and most of the infrastructure for the project.  You will supply two classes (and a series of JUnit tests).  The classes you will write are:  Deck, which represents a deck of cards, and  PokerHandEvaluator, which contains several static methods that evaluate a set of 5 cards to determine which "wacky poker" hands are represented..

 

Cards

If you are not familiar with the standard deck of 52 playing cards and the terminology that goes along with it ("suit", "queen", "clubs", etc.), then please take a look at the Playing Card Page.

 

Poker Hands

Read the Wacky Poker Hand Page.  To successfully implement this project you need to know the definitions of these hands very precisely, and some of them are my own creation, so it would be a good idea to read this information carefully!

 

(Partial) Rules of Texas Hold 'Em

If you are not familiar with this game, you might find it interesting to read an Introduction to Texas Hold 'Em page.

 

Card Class (Provided)

Before you get started, you should read the JavaDoc for the Card class.  You will use this class while writing your classes.

 

Classes You Must Implement

There are two classes you must implement.  (You will also write a series of JUnit tests, described below.)  We have given you just "skeletons" for the classes to get you started.  The two classes you will write are:

Deck.java

The Deck class represents a deck of cards.  It starts off with 52 cards, but as cards are dealt from the deck, the number of cards becomes smaller. 

The class has one private instance variable that stores the Cards that are currently in the Deck:

private Card[] cards;

Important Note:  The first Card in the array will be considered the card that is at the top of the deck.  When cards are removed from the deck they will be removed from the front of the array.

You must implement the following methods for the Deck class:

  • public Deck() -- This constructor initializes the Deck with 52 card objects, representing the 52 cards that are in a standard deck.  The cards must be ordered as in the diagram below:

Important:  The FIRST card in your array should be the Ace of Spades, and the LAST card should be the King of Diamonds.  Note that in the picture above, the Ace of Spades is at the TOP of the deck, which is to the left.

 

  • public Deck(Deck other) -- Standard copy constructor.  Note that it is okay to make a shallow copy of the array of cards.  (The Card class is immutable, so aliasing Cards is not a problem.)

 

  • public Card getCardAt(int position) -- Returns the card that is at the specified position in the array.  (Uses the usual 0-based indexing.)

 

  • public int getNumCards() -- Returns the size of the array of Cards.  (It starts off equal to 52, but becomes smaller as cards are dealt from the deck.)

 

  • public void shuffle() -- This method will re-arrange the cards that are in the deck.  The idea is that the deck will be divided into two "packets" -- the top half and the bottom half.  The new array of cards will consist of:  the first card from the top packet, followed by the first card from the bottom packet, followed by the second card from the top packet, followed by the second card from the bottom packet, etc.  Important:  If there are an odd number of cards, the top packet should have one more card than the bottom packet.  Remember that the top of the deck is considered to be the front of the array.  In the pictures below, remember that the top of the deck appears at the left side.

Below  are two examples of how the shuffle should work:

Example 1 (even number of cards):

Before Shuffling

After Shuffling

 

Example 2 (odd number of cards):

Before Shuffling

After Shuffling

 

  • public void cut(int position)-- This method divides the deck into two subpackets:  The part above the specified position, and the part that is at the specified position or below.  The two subpackets are reversed (the top packet is placed on the bottom and the bottom packet is placed on the top.)  The position value uses 0-based indexing as usual, so the card at the top of the deck (to the left in the diagrams) is at position 0.  Here is an example:

Before cut

After cutting at position 4.  (The 5 of spades was at position 4 in the diagram above.)

 

  • public Card[] deal(int numCards)-- This method will remove the specified number of cards from the top of the deck and return them as an array.  For example, if the parameter is 4, then the first four cards in the deck will be returned as an array of size 4.  Important:  The cards will be removed from the front of the "cards" array, not the back. 

    Hint:  The "cards" array will need to be resized.  Here is the idea:

    • Make a new array (call it "smaller") that is the same size as the current deck of cards minus the number of cards being dealt.

    • Copy the cards that are not being dealt from the original array into the new one.

    • Assign the instance variable "cards" so that it refers to the new array.

     

PokerHandEvaluator.java

This class consists of several static methods that you will write.  Eventhough the GUI will be looking for the best 5-card subset of the 7 cards an individual is playing at the current time, each method can assume that the array passed into it has exactly 5 elements. The prototypes for the methods are:

  • public static boolean hasPair(Card[] cards)

  • public static boolean hasRainbow(Card[] cards)

  • public static boolean hasTwoPair(Card[] cards)

  • public static boolean hasThreeOfAKind(Card[] cards)

  • public static boolean hasOddStraight(Card[] cards)

  • public static boolean hasEvenStraight(Card[] cards)

  • public static boolean hasFlush(Card[] cards)

  • public static boolean hasFullHouse(Card[] cards)

  • public static boolean hasFourOfAKind(Card[] cards)

  • public static boolean hasStraightRainbow(Card[] cards)

  • public static boolean hasStraightFlush(Card[] cards)

The parameter for each of these methods will be an array of exactly 5 cards.  Each method will return true or false, based on whether or not the given set of cards satisfies the poker hand being evaluated in the method.   For example, the hasTwoPair method will return true if the set of cards has two pairs of different values (e.g. a pair of 4's and a pair of Jacks).  If you need to review the various "poker hands" being tested in the methods, please take another look at the Wacky Poker Hand Page.

Important:  Each of these methods checks whether or not the set of cards satisfies the given poker hand, but it does not care if it could also satisfy a better hand.  For example, if the current hand is

<Ace of diamonds, Ace of spades, Ace of hearts, Jack of Spades, Jack of Diamonds>

then the results of calling each method should be as indicated below:

  • hasPair -- true  (there is at least one pair)

  • hasRainbow -- false 

  • hasTwoPair -- true (there are two pairs of distinct values)

  • hasThreeOfAKind -- true (there are three Aces)

  • hasOddStraight -- false

  • hasEvenStraight -- false

  • hasFlush -- false

  • hasFullHouse -- true (there are three Aces and two Jacks -- that makes a "full house")

  • hasFourOfAKind -- false

  • hasStraightRainbow -- false

  • hasStraightFlush -- false

Important:  In order for a hand to qualify as "Two Pair", it must have two pairs of distinct values -- in particular, having four-of-a-kind does not also count as two pair.  For example, if the current hand is

<2 of diamonds, 2 of spades, 2 of hearts, 2 of clubs, 9 of spades>

then the results of calling each method should be as indicated below:

  • hasPair -- true  (there is at least one pair)

  • hasRainbow -- true  (each suit is represented)

  • hasTwoPair -- false (there are not two pairs of distinct values)

  • hasThreeOfAKind -- true (there are three 2's)

  • hasOddStraight -- false

  • hasEvenStraight -- false

  • hasFlush -- false

  • hasFullHouse -- false

  • hasFourOfAKind -- true (there are four 2's)

  • hasStraightRainbow -- false

  • hasStraightFlush -- false

 

JUnit Tests

You are required to submit JUnit tests for all of the methods in the PokerHandEvaluator class.  Your tests should be as thorough as possible!  Be sure that for each method you have written some tests where the method returns "true", and some tests where the method returns "false".

10% of your grade on this project will be determined by the thoroughness of the tests you write.  (Note:  To get any credit at all for your JUnit tests, your project must pass all of the tests you have written!)  Put your tests into the file provided called "StudentTests.java".   If the tests are not located in this file, you will not get credit for them.

 

Requirements

 

Running the Simulation

To run the simulation, execute the main method in the Driver.java class.  Before clicking on the "Deal" button, you will usually want to do a series of "cuts" and "shuffles".  (You can cut the deck by clicking somewhere in the middle of the deck.  Shuffle is accomplished by clicking a button.)

 

Grading

Your grade will be computed as follows:

 

 

Web Accessibility