Skip to content

SoapCode/HanabiGameSimplified

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 

Repository files navigation

HanabiGameSimplified

This single cs file implements a Hanabi card game with simplified rules.

There are only 2 players in the game, each turn they swap.

The goal of the game, to create 5 card decks(5 cards each) of the same color in ascending
order on the table by adding cards.

Game starts when user enters specific start game command

"Start new game with deck(\s[RGBYW][1-5]){11,50}"

For example:

"Start new game with deck R1 R2 R3 R4 R5 R1 R2 R3 R4 Y1 Y2 Y3".

Remember that according to the rules there is a specific amount of cards of the same rank
per color: (111 22 33 44 5), so you can't have four R1's or two Y5's. And amount of cards
in the deck must be in range of 11 to 50.

Then player can start entering commands.

Player can enter 1 of 4 commands:

1."Play card [0-4]{1,5}"
Attempts to add card to the table, if attempt fails - game restarts.

2."Drop card [0-4]"
Removes card from players hand, and adds it to discard.

3."Tell color (Red|Blue|Yellow|Green|White) for cards [0-4]{1,5}"
Player gives next player information about all cards of the specified color in his hand.

4."Tell rank [0-4]{1,5}"
Same as with tell color, but with rank.

Game continues until one of players plays incorrect card, gives incorrect information,
empties the deck or when there is 25 cards on the table. In this case game restarts
and waits for the new "Start new game" command. In case player enters incorrect input
or null input - game immediately terminates.

Example input

Start new game with deck R1 R2 R3 R4 R5 Y1 Y2 Y3 Y4 Y5 W1 W2 W3 W4 W5 B2 B1

Play card 0

Tell color Red for cards 0 1 2 3

Tell rank 1 for card 0

Play card 0

Play card 3

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages