1 / 8

Java Hold’em

Java Hold’em. By: Jordan Simon Mike Norman Charles Slack. What is Java Hold’em ?. Variant of Texas Hold’em poker made in Java! Our game boasts the 5 card River and each player has two cards themselves. Features. Bet: Player is able to place a bet based on how much money they have.

echo-jensen
Download Presentation

Java Hold’em

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Java Hold’em By: Jordan Simon Mike Norman Charles Slack

  2. What is Java Hold’em? • Variant of Texas Hold’em poker made in Java! • Our game boasts the 5 card River and each player has two cards themselves.

  3. Features • Bet: Player is able to place a bet based on how much money they have. • Call: When another player has bet the next can either call or fold. If the amount bet is greater than how much that player has they would go “all in.” • Fold: Player may fold their cards and wait for the next hand. • Check: If the player is content with their cards and is awaiting the next card to be shown on the River. (This is if/when no other player has bet). • Chat: Player may communicate with each other through chat feature. • Multiplayer: Up to four players can play.

  4. Java Hold’em GUI The GUI with four players… GO LAWLER2!

  5. Game Setup • When player starts the game they will log in to a server (IP of the machine running server) using an alias and the server IP. • The player will then wait until at least one more player has joined. • When Java Hold’em starts each player will have two cards with $500 starting cash. Upon their turn they can bet, call, fold, or check depending on the situation. • A player wins a hand after the hand evaluator checks each person’s hand against each other.

  6. Client / Server Client Server Takes the input in the inputThread() and is always awaiting its next command. Contains the GUI interface Some examples of commands include: GET_ID, MAKE_NEW_PLAYER, and BET_CALL. Likewise the server has a thread called ReadThread() that is always awaiting commands. Handles the communication between clients over the network. Some examples of commands include: TURN, REFRESH, and FULL

More Related