Lines 1-23
Link Here
|
|
|
1 |
Blackjack is an X-windows based version of the casino game. The |
2 |
program is used to help learn the basic strategy of the game of |
3 |
blackjack. The help level can be set from a mode that tells you |
4 |
each correct move to make, to one that only warns you by a pop up |
5 |
window if you make a "bad" play. Betting limits, number of decks, |
6 |
number of splits, and shuffle point can be set. This program uses |
7 |
the Qt toolkit. |
1 |
|
8 |
|
2 |
This is an X windows based game of the casino game blackjack. |
9 |
WWW: http://members.peakinet.net/tdaley/blackjack/blackjack.html |
3 |
The program is currently written to use the Qt toolkit from Troll Tech. |
|
|
4 |
For more information on Qt see "http://www.trolltech.com/". |
5 |
|
6 |
I have always enjoyed the game of blackjack. When I first played in |
7 |
a casino I lost all the money I had brought. After reading some books |
8 |
on blackjack and the FAQ for rec.gambling.blackjack, I now know that there |
9 |
is a basic strategy to follow. The strategy is based on the odds of each |
10 |
hand and the dealers up card. I wrote this program so I could practice |
11 |
the basic strategy of blackjack. The basic strategy is in the program |
12 |
and a help level can be set to help the user learn to play by these rules. |
13 |
My blackjack game has improved greatly. |
14 |
|
15 |
I first wrote this program in tcl/tk. It was OK, but I have trouble |
16 |
remembering all the syntax and parsing rules. The tcl/tk version was also |
17 |
noticably slow on my 386 running Linux. Qt has been very good as a C++ |
18 |
GUI library and is not slow at all on my 386. |
19 |
|
20 |
Tom Daley |
21 |
tdaley@vsys.com |
22 |
|
23 |
WWW: http://members.surfbest.net/daley/blackjack/blackjack.html |