home *** CD-ROM | disk | FTP | other *** search
/ Adventures in Heaven 1 / advinhev1.iso / casino / poker / poker.doc < prev    next >
Text File  |  1992-06-14  |  7KB  |  198 lines

  1. *****************************************************************
  2. ** PROGRAM TITLE: FIVE SQUARED NO PEEKY POKER SOLITAIRE        **
  3. **                                                             **
  4. ** PROGRAM AUTHOR: DANIEL WILLIAMS                             **
  5. **                                                             **
  6. **                                                             **
  7. **                                                             **
  8. ** PROGRAM CREATED: YEAR OF 1991                               **
  9. **                                                             **
  10. **               [[[      COPYRIGHT 1992         ]]]           **
  11. **               [[[      BY: DANIEL WILLIAMS    ]]]           **
  12. **                                                             **
  13. ** RELATED FILES: DANW1.DAT   = CARD GRAPHIC IMAGE FILE        **
  14. **                DANW2.DAT   = CARD GRAPHIC IMAGE FILE        **
  15. **                DANW3.DAT   = CARD GRAPHIC IMAGE FILE        **
  16. **                DANW4.DAT   = CARD GRAPHIC IMAGE FILE        **
  17. **                DANW5.DAT   = CARD GRAPHIC IMAGE FILE        **
  18. **                SCORES.DAT  = HIGH SCORES DATA FILE          **
  19. **                SPIECE.DAT  = SCORES GRAPHIC IMAGE FILE      **
  20. **                                                             **
  21. ** PROGRAM REQUIREMENTS:  CLONE COMPUTER                       **
  22. **                        WITH VGA GRAPHICS 640 BY 480         **
  23. **                             16 COLORS                       **
  24. **                        640K MEMORY                          **
  25. **                                                             **
  26. *****************************************************************
  27.  
  28.  
  29.         This Poker Solitaire game is based on a grid of 25 cards   
  30. (5 Squared).  Five cards are placed face down on the grid, and twenty
  31. cards are given to you.  You will try to build the best poker hands
  32. possible horizontally and vertically.  The gray block will move when
  33. the arrow keys are pressed.  The number pad can also be used if Num
  34. Lock is off, keys 1, 3, 7 and 9 can be used to move diagonally.  When
  35. the Gray block is at the location where you want to place the card
  36. press the Enter/Return key.  The twist in this game is that you do
  37. not know the value or the suit of the face down cards.  When you get
  38. a pair, in any column or row you will be able to choose which face
  39. down card you want to flip over.
  40.  
  41.     For example ( see Figure 1 )
  42.  
  43. 1.) A two of hearts is placed at A1. A two of spades is placed at A2.
  44.     The program will signal you, and allow you to choose which face  
  45.     down card you want to flip over.
  46.  
  47. 2.) A six of diamonds is placed at A3. A six of spades is placed at  
  48.     E3.  The program will signal you, and allow you to choose which  
  49.     face down card you want to flip over.  When you are able to flip 
  50.     over a card the block will change colors and a "F" will be in the
  51.     center of it.
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.     The following conditions will allow you to flip over a card:
  59.        1. A pair allows you to flip over one card.
  60.        2. Two pairs allow you to flip over one card.
  61.        3. Three of a kind allows you to flip over two cards.
  62.        4. Four of a kind allows you to flip over one card.
  63.        5. The player flips over a card that creates a pair in any    
  64.           column or row.  After all five of the face down cards have 
  65.           been flipped over continue to place the remaining cards in 
  66.           the best possible position.
  67.  
  68.  
  69.  
  70.             Figure 1.
  71.              Text representation of the playing screen.
  72.  
  73.  
  74.                      COLUMNS
  75.               1    2    3    4    5
  76.  
  77.          A    +    +    +    +    FD       FD=Card which has been
  78.   R                                           placed on grid face
  79.   O      B    +    +    +    FD   +           down
  80.   W                                         +=Open area where a
  81.   S      C    +    +    FD   +    +           card can be placed
  82.  
  83.          D    +    FD   +    +    +
  84.  
  85.          E    FD   +    +    +    +
  86.  
  87.  
  88.  
  89.    SCORING
  90.    =======
  91.    1.  Pair                    25 Points
  92.    2.  Two pairs               75 Points
  93.    3.  Three of a kind        125 Points
  94.    4.  Straight               150 Points
  95.    5.  Flush                  225 Points
  96.    6.  Full House             250 Points
  97.    7.  Four of a kind         340 Points
  98.    8.  Straight Flush         750 Points
  99.    9.  Royal Straight Flush  1250 Points
  100.  
  101.    EXITING THE PROGRAM
  102.    ===================
  103.    1. PRESS CTRL-BREAK TO END THE PROGRAM AND EXIT TO DOS
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113. Five Squared No Peeky Poker Solitaire is a shareware product.  It can
  114. be freely copied and distributed.  You can not sell this product for
  115. a profit without my consent.  You may not alter any file included
  116. with this product.  This software is distributed "AS IS" without
  117. warranty.  There is a possibility that this product can be modified
  118. illegally because of the distribution method.  The best way to
  119. receive an unmodified copy is to send for the registered version.  
  120.  
  121. A) If you enjoy the program and want to become a registered user send
  122.    $10.00 to:
  123.                **************************
  124.                *                        *
  125.                *    Daniel Williams     *
  126.                *    P.O. Box 89         *
  127.                *    Shirley, MA 01464   *
  128.                *                        *
  129.                **************************
  130.  
  131. The registered version will allow you to:
  132.  
  133.      1. Save the top twenty high scores to a disk file
  134.  
  135.      2. Disable the game sounds
  136.      
  137.      3. Remove the password number question from the game
  138.  
  139.      4. The name you send me will be copied into the Hand Values     
  140.         window under the " Register to:" line.
  141.  
  142.      5. If requested I can generate 16 bit code for the 16 or 32     
  143.         bit CPU's this will increase the program performance
  144.           
  145. B) I would appreciated any comments or suggestions.
  146.  
  147. C) I am planning to add mouse support to this program in the fall of 
  148.    1992.  I am waiting for my compiler update which will allow me to 
  149.    add this feature.          
  150.  
  151.  
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.                          REGISTRATION FORM 
  169.                          -----------------
  170.  
  171.      Remit to:           Daniel Williams
  172.                          P.O. Box 89
  173.                          Shirley, MA 01464
  174.  
  175.  
  176.  
  177. Registrant:  __________________________________________
  178. Address:     __________________________________________
  179.              __________________________________________
  180.              __________________________________________
  181.  
  182.  
  183.  
  184.  
  185. Where did you obtain your copy of this software?
  186.             __________________________________________
  187.  
  188.  
  189.  
  190. Comments or Suggestions:
  191.             __________________________________________
  192.             __________________________________________
  193.             __________________________________________
  194.  
  195.  
  196.  
  197. Thank you, enjoy the program
  198.