Skip to content

Commit

Permalink
Moved procedural blackjack game into its own folder and updated the r…
Browse files Browse the repository at this point in the history
…oot README.md
  • Loading branch information
Koen Werdler committed Mar 15, 2014
1 parent 008f100 commit 1565ff4
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 11 deletions.
14 changes: 3 additions & 11 deletions README.md
@@ -1,16 +1,8 @@
Console Blackjack game
=================

Simple Blackjack game made for lesson 1 of Ruby on Rails Online Bootcamp (Tealeaf Academy).
This is the console Blackjack game made for lessons 1 and 2 of Ruby on Rails Online Bootcamp (Tealeaf Academy).

### Requirements
I've made this blackjack game in two versions. The first version was procedurally coded, it works fine but still has some issues. It can be found in the [blackjack-procedural](blackjack-procedural/) folder.

Please note a minimal console width of 154 characters is required for running the Blackjack game!

### Known issues

* The game doesn't recognize a player's or a dealer's instant Blackjack.
* The game supports up to 5 cards per player. It can display more cards but the center will shift.
* Only two players are supported, one of those being the dealer
* Cards are chosen at random, the game doesn't track one or more deck of cards. This makes it possible to draw exactly the same cards but prevents card counting :-)

The second version has been transformed into a Object Oriented version with much of the previous issues fixed. It works well and has better ASCII art. It can be found in the [blackjack-oop](blackjack-oop/) folder.
16 changes: 16 additions & 0 deletions blackjack-procedural/README.md
@@ -0,0 +1,16 @@
Console Blackjack game
=================

Simple Blackjack game made for lesson 1 of Ruby on Rails Online Bootcamp (Tealeaf Academy).

### Requirements

Please note a minimal console width of 154 characters is required for running the Blackjack game!

### Known issues

* The game doesn't recognize a player's or a dealer's instant Blackjack.
* The game supports up to 5 cards per player. It can display more cards but the center will shift.
* Only two players are supported, one of those being the dealer
* Cards are chosen at random, the game doesn't track one or more deck of cards. This makes it possible to draw exactly the same cards but prevents card counting :-)

File renamed without changes.

0 comments on commit 1565ff4

Please sign in to comment.