home *** CD-ROM | disk | FTP | other *** search
/ Amiga Power / AmigaPower05.ZIP / ap05.adf / King.doc / King.doc
Text File  |  1991-07-29  |  5KB  |  115 lines

  1.  
  2.  
  3.         ***********************************************************
  4.         *                                                         *
  5.         *     K I N G ' S     K O R N E R    S O L I T A I R E    *
  6.         *                                                         *
  7.         *                         BY                              *
  8.         *                                                         *
  9.         *                   DAVID F. DOWNING                      *
  10.         *                 1943 WHITE HOLLOW DR.                   *
  11.         *                 GREENVILLE, NC 27858                    *
  12.         *                                                         *
  13.         ***********************************************************
  14.  
  15.  
  16.    July, 1988
  17.  
  18.    Written in AmigaBASIC and compiled with the ABSOFT AC/BASIC compiler.
  19.  
  20.    King's Korner Solitaire is a simple little solitaire game that is
  21.    quick to play and contains several levels of difficulty.
  22.  
  23.    Please feel free to distribute this program to friends or BBS's, but if
  24.    if you do, please include this document and please do not alter the
  25.    document or the program.
  26.  
  27.    If you like this game, remember that all contributions are welcome!!
  28.  
  29.    The program can be launched from WorkBench (an ICON is included) or
  30.    from CLI by typing "run KING" (without the quotes of course).
  31.    You can quit any time from the "PROJECT" menu and start a new game
  32.    at any time from the "NEW GAME" menu.  A new game can be started with
  33.    the same FREE BLOCKS or FREE BLOCKS can be reset.  FREE BLOCKS are
  34.    described below.
  35.  
  36.    A note to 512K users:
  37.    This program uses a 4 bit plane high resolution screen and several
  38.    graphic arrays, all of which are, as you probably know, memory-expensive.
  39.    I have tested the program with 512K from WorkBench with a couple of
  40.    windows opened and it runs fine.  If, however, you are running other
  41.    programs and/or have several windows open, you will probably meet the
  42.    dreaded GURU.  Files in RAM disk can also cause a crash, so it is best
  43.    to end all other programs, clear the RAM disk and close most windows
  44.    before loading.  I could have done this with less memory, but I like
  45.    hi-res, multi-colored screens and graphic arrays are faster and easier
  46.    to deal with.
  47.  
  48.    Here are the rules:
  49.  
  50.    King's Korner Solitaire is played with a standard deck of 52 playing
  51.    cards.  Cards are turned over one at a time from the DECK and placed
  52.    onto a 4 x 4 GRID according to the following rules:
  53.  
  54.         1. No card may be placed on a space already occupied by another
  55.            card.
  56.  
  57.         2. Face cards must be place on spaces labeled for their type and
  58.            suite (in accordance with rule #1).  Kings are placed on the
  59.            four corners (thus the name of the game), Queens on the top and
  60.            bottoms rows, and Jacks on the sides.
  61.  
  62.         3. Non-face cards may be placed on any space (in accordance with
  63.            rule #1).
  64.  
  65.    Once place on the GRID, no card may be moved to any other space on the
  66.    GRID.  Cards are discarded from the GRID to the DISCARD pile according
  67.    to the following rules:
  68.  
  69.         1. No card be be discarded while a DECK card is face up until that
  70.            DECK card has been played.
  71.  
  72.         2. No face card may be discarded.
  73.  
  74.         3. Any TEN may be discarded by itself.
  75.  
  76.         4. Any two cards whose face value equals 10 may be discarded.
  77.            Aces count as 1
  78.  
  79.    If the GRID is full and no discard is possible, then the game is over
  80.    and you lose....
  81.  
  82.    If a face card is drawn and its space is occupied, then the game is over
  83.    and you lose....
  84.  
  85.    If all cards have been played and all non-face cards have been discarded,
  86.    then the game is over and YOU WIN!!
  87.  
  88.    Use the Mouse to select the DECK or any space on the GRID.  You can
  89.    also press any key to select the DECK.  You will find that this will
  90.    save some wear and tear on your Mouse.  Be careful when selecting the
  91.    DECK, because once a DECK card is face up, it must be place on the
  92.    GRID before further discards are possible.
  93.  
  94.    The center spaces of the GRID are known as FREE SPACES.  When the program
  95.    starts and after the introduction screen is cleared, you must select
  96.    the number of these spaces.  Four FREE SPACES is the easiest to win and
  97.    no FREE SPACES is almost impossible.  The "NEW GAME" menu has two
  98.    choices.  The first choice will allow you to play another game with the
  99.    same number of FREE SPACES and the second choice will return you to the
  100.    title screen where you can change the number of FREE SPACES.
  101.  
  102.    When the first card of a pair is chosen for discard, it will be moved
  103.    to the DISCARD pile face up (unless, of course, it is a TEN). Click
  104.    on another card for discard or click on the DISCARD pile to replace the
  105.    first card and start over.
  106.  
  107.    The numbers to the right of the DECK and DISCARD piles indicate the
  108.    number of cards left in each.
  109.  
  110.    The program will not allow illegal moves and will sound a beep if one
  111.    is attempted.
  112.  
  113.    Have fun.....
  114.  
  115.