Work the Shell - Calling All Functions, and Some Math Too!
If you've been keeping track of my column, you'll know that we're building a Blackjack game as a shell script. Why? Because most shell scripts are far too boring to study without nodding off, so considering all the nuances of shell script programming within the context of a game just sounds more fun!
My last column talked about how to shuffle a deck of cards, as portrayed in a program with a simple array of 52 values, 1-52. There are some interesting nuances to the shuffle problem. Let's start there. Then we'll look at how to turn an arbitrary 1-52 value into a familiar rank and suite from a deck of cards.
If you've been writing shell scripts since the dawn of UNIX, you might not have realized that modern shells now support functions and procedures, just like a “real” programming language. For any block of code that you plan on executing more than once, it's the way to go.
Here's the shuffle code, written as a shell function:
function shuffleDeck
{
count=1
while [ $count -le 52 ]
do
pickCard
newdeck[$count]=$picked
count=$(( $count + 1 ))
done
}
This builds an array called newdeck, which is actually the shuffled deck (in the last column we showed deck, which was an array of cards in linear order), and it uses some basic shell math with the $(( )) notation to save spawning a subshell to invoke expr for each increment of the count variable.
I said that shell scripts are robust programming environments and that might be a tiny bit of hyperbole, really. Eagle-eyed readers will notice that the pickCard function returns its value by setting a global variable, picked, which isn't really optimal programming strategy. But it works, and pragmatism is an important part of any good approach to software development, isn't it?
The full pickCard function is key to making this work, but it is too long to include here, so grab it from the LJ FTP site for your reading pleasure (ftp.linuxjournal.com/pub/lj/listings/8774.tgz).
With the shuffleDeck function written and an initializeDeck function, as shown here:
function initializeDeck
{
card=1 while [ $card -le 52 ] do
deck[$card]=$card card=$(( $card + 1 ))
done
}
it's easy to do the rudiments of shuffling the deck and dealing out two cards for the player and two for the dealer:
initializeDeck shuffleDeck
echo "** Player's hand: ${newdeck[1]}, ${newdeck[3]}"
echo "** Dealer's hand: ${newdeck[2]}, ${newdeck[4]}"
Let's run this and see what kind of results we get:
$ ./blackjack.sh ** Player's hand: 22, 49 ** Dealer's hand: 11, 8 $ ./blackjack.sh ** Player's hand: 19, 32 ** Dealer's hand: 49, 10 $ ./blackjack.sh ** Player's hand: 44, 23 ** Dealer's hand: 46, 11
Displaying cards as a numeric value from 1-52 is not the most friendly, so let's turn our attention to the display of the card values in the familiar rank and suite of a traditional deck of playing cards.
A deck of cards is composed of 52 cards, split evenly into four suites of 13 cards. The order of the suites doesn't matter (in Blackjack, at least), but the rank does. Indeed, the goal of the game is have a summary rank value of 21 points without going any higher.
The rank of a card is the remainder of the numeric card value divided by 13. In math terms, this is called the modulus and can be computed thusly:
rank = cardvalue % 13
To put this into proper shell notation, we'll again use the $(( )) shortcuts and end up with:
rank=$(( $card % 13 ))
Getting the suite should be simple too; it's the other half of the division. In other words, if the card value is 17, then 17/13 = 1, meaning it's suite #1, and 17%13 = 4. Since we'd like to have our suites in the range of 1-4, rather than 0-3, however, we'll need to add one to the equation. Further, the 13th of each card is the same suite as the earlier 12, so we'll also have to subtract one before we do the division (card #13 would be suite #1 if we just calculated 13/13, but if we calculate 12/13 for that, we'll correctly identify it as part of suite #0).
This is very confusing, so here's the equation instead:
suite="$(( ( ( $card - 1) / 13 ) + 1))"
Much clearer, right? Seriously, you can experimentally verify that this works correctly. The important edge cases are value=1, value=12, value=13 and value=14. If you can get those right, you're good for all values in the deck.
Once we've identified the rank and suite of a card, we just have to do a bit of fancy footwork to turn numbers into words:
case $suite in 1 ) suite="Hearts" ;; 2 ) suite="Clubs" ;; 3 ) suite="Spades" ;; 4 ) suite="Diamonds" ;; * ) echo "Bad suite value: $suite"; exit 1 esac
Dave Taylor is the author of the popular Work the Shell column in Linux Journal.
Trending Topics
| You Need A Budget | Feb 10, 2012 |
| The Linux powered LAN Gaming House | Feb 08, 2012 |
| Creating a vDSO: the Colonel's Other Chicken | Feb 06, 2012 |
| Your CMS Is Not Your Web Site | Feb 01, 2012 |
| Casper, the Friendly (and Persistent) Ghost | Jan 31, 2012 |
| Razor-qt 0.4 - Qt based Desktop Environment | Jan 30, 2012 |
- Fun with ethtool
- 100% disappointed with the decision to go all digital.
- Readers' Choice Awards 2011
- Parallel Programming with NVIDIA CUDA
- Validate an E-Mail Address with PHP, the Right Way
- You Need A Budget
- Why Python?
- The Linux powered LAN Gaming House
- Linux-Based X Terminals with XDMCP
- Short Notices: News In Linux Audio
- buena información
2 hours 46 min ago - One important "bucket" that I didn't note (désolé si qqun deja d
3 hours 46 min ago - Gnome3 is such a POS. No one
13 hours 14 min ago - Gnome 3 is the biggest POS
13 hours 24 min ago - I didn't knew this thing by
19 hours 29 min ago - Author's reply
22 hours 53 min ago - Link to modlys
1 day 12 sec ago - I use YNAB because of the
1 day 11 min ago - Search
1 day 5 hours ago - Question
1 day 5 hours ago






Comments
SUIT/SUITE
AARGH - four SUITs of cards... a SUITE of rooms... where's your editor!