home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l180 / 1.ddi / GAMES.BAS < prev    next >
Encoding:
BASIC Source File  |  1989-02-07  |  12.2 KB  |  373 lines

  1.   ' ************************************************
  2.   ' **  Name:          GAMES                      **
  3.   ' **  Type:          Toolbox                    **
  4.   ' **  Module:        GAMES.BAS                  **
  5.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  6.   ' ************************************************
  7.   '
  8.   ' USAGE:          No command line parameters
  9.   ' REQUIREMENTS:   CGA
  10.   ' .MAK FILE:      (none)
  11.   ' PARAMETERS:     (none)
  12.   ' VARIABLES:      a$             String containing the 26 letters of the
  13.   '                                alphabet
  14.   '                 x%             Lower bound for array a%()
  15.   '                 y%             Upper bound for array a%()
  16.   '                 a%()           Array of numbers to be shuffled
  17.   '                 i%             Looping index
  18.   '                 size%          Dimension of bouncing ball array
  19.   '                 object%()      Array for GET and PUT of bouncing ball
  20.   '                 backGround%()  Array for GET and PUT of background
  21.   '                 dx%            X velocity of bouncing ball
  22.   '                 dy%            Y velocity of bouncing ball
  23.   '                 px%            X coordinate of bouncing ball
  24.   '                 py%            Y coordinate of bouncing ball
  25.   '                 testNumber%    One of four bounce direction tests
  26.   '                 test%          Result of the Collision% test
  27.   
  28.   
  29.   ' Constants
  30.     CONST FALSE = 0
  31.     CONST TRUE = NOT FALSE
  32.   
  33.   ' Functions
  34.     DECLARE FUNCTION Shuffle$ (a$)
  35.     DECLARE FUNCTION Dice% (numberOfDice%)
  36.     DECLARE FUNCTION Card$ (cardNumber%)
  37.     DECLARE FUNCTION Collision% (object%(), backGround%())
  38.   
  39.   ' Subprograms
  40.     DECLARE SUB FillArray (a%())
  41.     DECLARE SUB ShuffleArray (a%())
  42.   
  43.   ' Demonstration of the Shuffle$ function
  44.     CLS
  45.     RANDOMIZE TIMER
  46.     a$ = "abcdefghijklmnopqrstuvwxyz"
  47.     PRINT "a$           = "; a$
  48.     PRINT "Shuffle$(a$) = "; Shuffle$(a$)
  49.     PRINT
  50.   
  51.   ' Demonstration of the FillArray subprogram
  52.     x% = -7
  53.     y% = 12
  54.     DIM a%(x% TO y%)
  55.     PRINT "FillArray a%()   where DIM a%( -7 TO 12) ..."
  56.     FillArray a%()
  57.     FOR i% = x% TO y%
  58.         PRINT a%(i%);
  59.     NEXT i%
  60.     PRINT
  61.   
  62.   ' Demonstration of the ShuffleArray subprogram
  63.     PRINT
  64.     PRINT "ShuffleArray a%() ..."
  65.     ShuffleArray a%()
  66.     FOR i% = x% TO y%
  67.         PRINT a%(i%);
  68.     NEXT i%
  69.     PRINT
  70.   
  71.   ' Demonstration of the Dice% function
  72.     PRINT
  73.     PRINT "Dice%(2)..."
  74.     FOR i% = 1 TO 20
  75.         PRINT Dice%(2);
  76.     NEXT i%
  77.     PRINT
  78.   
  79.   ' Deal a hand of seven cards
  80.     PRINT
  81.     PRINT "Seven random cards, without replacement..."
  82.     REDIM a%(1 TO 54)
  83.     FillArray a%()
  84.     ShuffleArray a%()
  85.     FOR i% = 1 TO 7
  86.         PRINT Card$(a%(i%))
  87.     NEXT i%
  88.     PRINT
  89.   
  90.   ' Wait for user to press a key
  91.     PRINT
  92.     PRINT "Press any key to continue"
  93.     DO
  94.     LOOP WHILE INKEY$ = ""
  95.   
  96.   ' Demonstration of the Collision% function
  97.     size% = 6
  98.     DIM object%(size%), backGround%(size%)
  99.   
  100.   ' Set medium resolution graphics mode
  101.     SCREEN 1
  102.   
  103.   ' Create the bouncing ball
  104.     CIRCLE (2, 2), 2, 3
  105.     PAINT (2, 2), 3
  106.     GET (0, 0)-(4, 4), object%
  107.   
  108.   ' Make solid border around screen
  109.     LINE (14, 18)-(305, 187), 1, B
  110.     PAINT (0, 0), 1
  111.   
  112.     PRINT " Collision% function... Press any key to quit "
  113.   
  114.   ' Make three obstacles
  115.     CIRCLE (115, 78), 33, 2, , , .6
  116.     PAINT (115, 78), 2
  117.     CIRCLE (205, 78), 33, 2, , , .6
  118.     PAINT (205, 78), 2
  119.     LINE (90, 145)-(230, 155), 2, BF
  120.   
  121.   ' Initialize position and velocity of the object
  122.     dx% = 1
  123.     dy% = 1
  124.     px% = 160
  125.     py% = 44
  126.     PUT (px%, py%), object%
  127.   
  128.   ' Move the object around the screen, avoiding collisions,
  129.   ' until any key is pressed
  130.     DO
  131.         testNumber% = 0
  132.         DO
  133.             PUT (px%, py%), object%
  134.             px% = px% + dx%
  135.             py% = py% + dy%
  136.             GET (px%, py%)-(px% + 4, py% + 4), backGround%
  137.             PUT (px%, py%), object%
  138.             test% = Collision%(object%(), backGround%())
  139.             IF test% THEN
  140.                 testNumber% = testNumber% + 1
  141.                 PUT (px%, py%), object%
  142.                 px% = px% - dx%
  143.                 py% = py% - dy%
  144.                 SELECT CASE testNumber%
  145.                 CASE 1
  146.                     dx% = -dx%
  147.                 CASE 2
  148.                     dx% = -dx%
  149.                     dy% = -dy%
  150.                 CASE 3
  151.                     dy% = -dy%
  152.                 CASE ELSE
  153.                 END SELECT
  154.                 PUT (px%, py%), object%
  155.             END IF
  156.         LOOP UNTIL test% = 0
  157.     LOOP UNTIL INKEY$ <> ""
  158.   
  159.   ' Clean up a little
  160.     SCREEN 0
  161.     WIDTH 80
  162.     CLS
  163.     SYSTEM
  164.   
  165.  
  166.   ' ************************************************
  167.   ' **  Name:          Card$                      **
  168.   ' **  Type:          Function                   **
  169.   ' **  Module:        GAMES.BAS                  **
  170.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  171.   ' ************************************************
  172.   '
  173.   ' Returns the name of a playing card given a number
  174.   ' from 1 to 52.  Any other number returns "Joker."
  175.   '
  176.   ' EXAMPLE OF USE:  PRINT Card$(n%)
  177.   ' PARAMETERS:      n%         Number from 1 to 52 representing a card (any
  178.   '                             other number returns a Joker)
  179.   ' VARIABLES:       suit$      Name of one of the four card suits
  180.   ' MODULE LEVEL
  181.   '   DECLARATIONS:  DECLARE FUNCTION Card$ (cardNumber%)
  182.   '
  183.     FUNCTION Card$ (cardNumber%)
  184.       
  185.         SELECT CASE (cardNumber% - 1) \ 13      ' Which suit?
  186.         CASE 0
  187.             suit$ = " of Spades"
  188.         CASE 1
  189.             suit$ = " of Clubs"
  190.         CASE 2
  191.             suit$ = " of Hearts"
  192.         CASE 3
  193.             suit$ = " of Diamonds"
  194.         CASE ELSE
  195.             Card$ = "Joker"
  196.             EXIT FUNCTION
  197.         END SELECT
  198.       
  199.         SELECT CASE (cardNumber% - 1) MOD 13    ' Which card?
  200.         CASE 0
  201.             Card$ = "Ace" + suit$
  202.         CASE 1 TO 9
  203.             Card$ = MID$(STR$(cardNumber% MOD 13), 2) + suit$
  204.         CASE 10
  205.             Card$ = "Jack" + suit$
  206.         CASE 11
  207.             Card$ = "Queen" + suit$
  208.         CASE 12
  209.             Card$ = "King" + suit$
  210.         END SELECT
  211.       
  212.     END FUNCTION
  213.  
  214.   ' ************************************************
  215.   ' **  Name:          Collision%                 **
  216.   ' **  Type:          Function                   **
  217.   ' **  Module:        GAMES.BAS                  **
  218.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  219.   ' ************************************************
  220.   '
  221.   ' Returns TRUE if any non-zero pixels occur in the
  222.   ' same byte of video memory, as saved in the object%()
  223.   ' and backGround%() arrays.  The arrays must be the
  224.   ' same size.
  225.   '
  226.   ' EXAMPLE OF USE:  test% = Collision%(object%(), backGround%())
  227.   ' PARAMETERS:      object%()       First array, filled in with the GET
  228.   '                                  statement
  229.   '                  backGround%()   Second array, filled in with the GET
  230.   '                                  statement
  231.   ' VARIABLES:       lo%             Lower bound of first array
  232.   '                  up%             Upper bound of first array
  233.   '                  lb%             Lower bound of second array
  234.   '                  ub%             Upper bound of second array
  235.   '                  i%              Index to integers in each array
  236.   ' MODULE LEVEL
  237.   '   DECLARATIONS:  CONST FALSE = 0
  238.   '                  CONST TRUE = NOT FALSE
  239.   '                  DECLARE FUNCTION Collision% (object%(), backGround%())
  240.   '
  241.     FUNCTION Collision% (object%(), backGround%()) STATIC
  242.         lo% = LBOUND(object%)
  243.         uo% = UBOUND(object%)
  244.         lb% = LBOUND(backGround%)
  245.         ub% = UBOUND(backGround%)
  246.         IF lo% <> lb% OR uo% <> ub% THEN
  247.             PRINT "Error: Collision - The object and background"
  248.             PRINT "graphics arrays have different dimensions."
  249.             SYSTEM
  250.         END IF
  251.         FOR i% = lo% + 2 TO uo%
  252.             IF object%(i%) THEN
  253.                 IF backGround%(i%) THEN
  254.                     Collision% = TRUE
  255.                     EXIT FUNCTION
  256.                 END IF
  257.             END IF
  258.         NEXT i%
  259.         Collision% = FALSE
  260.     END FUNCTION
  261.  
  262.   ' ************************************************
  263.   ' **  Name:          Dice%                      **
  264.   ' **  Type:          Function                   **
  265.   ' **  Module:        GAMES.BAS                  **
  266.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  267.   ' ************************************************
  268.   '
  269.   ' Returns the total of the dots showing when any
  270.   ' desired number of dice are rolled.
  271.   '
  272.   ' EXAMPLE OF USE:  total% = Dice%(n%)
  273.   ' PARAMETERS:      n%         Number of dice
  274.   ' VARIABLES:       toss%      Loop index for throwing the n% dice
  275.   '                  total%     Total of the dots showing
  276.   ' MODULE LEVEL
  277.   '   DECLARATIONS:  DECLARE FUNCTION Dice% (numberOfDice%)
  278.   '
  279.     FUNCTION Dice% (numberOfDice%)
  280.         IF numberOfDice% < 1 THEN
  281.             PRINT "Error: Dice%() - Can't throw fewer than one die"
  282.             SYSTEM
  283.         END IF
  284.         FOR toss% = 1 TO numberOfDice%
  285.             total% = total% + INT(RND * 6) + 1
  286.         NEXT toss%
  287.         Dice% = total%
  288.     END FUNCTION
  289.  
  290.   ' ************************************************
  291.   ' **  Name:          FillArray                  **
  292.   ' **  Type:          Subprogram                 **
  293.   ' **  Module:        GAMES.BAS                  **
  294.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  295.   ' ************************************************
  296.   '
  297.   ' Initializes an integer array by putting i% into
  298.   ' each i%th element.
  299.   '
  300.   ' EXAMPLE OF USE:  FillArray a%()
  301.   ' PARAMETERS:      a%()       Array to be filled with a sequence of numbers
  302.   ' VARIABLES:       i%         Looping index
  303.   ' MODULE LEVEL
  304.   '   DECLARATIONS:  DECLARE SUB FillArray (a%())
  305.   '
  306.     SUB FillArray (a%()) STATIC
  307.         FOR i% = LBOUND(a%) TO UBOUND(a%)
  308.             a%(i%) = i%
  309.         NEXT i%
  310.     END SUB
  311.  
  312.   ' ************************************************
  313.   ' **  Name:          Shuffle$                   **
  314.   ' **  Type:          Function                   **
  315.   ' **  Module:        GAMES.BAS                  **
  316.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  317.   ' ************************************************
  318.   '
  319.   ' Randomizes the order of the character bytes in a$.
  320.   '
  321.   ' EXAMPLE OF USE:  b$ = Shuffle$(a$)
  322.   ' PARAMETERS:      a$         String to be shuffled
  323.   ' VARIABLES:       x$         Working string space
  324.   '                  lenx%      Number of bytes in the string
  325.   '                  i%         Pointer to each byte
  326.   '                  j%         Pointer to randomly selected byte
  327.   '                  t$         Temporary byte-swapping string
  328.   ' MODULE LEVEL
  329.   '   DECLARATIONS:  DECLARE FUNCTION Shuffle$ (a$)
  330.   '
  331.     FUNCTION Shuffle$ (a$) STATIC
  332.         x$ = a$
  333.         lenx% = LEN(x$)
  334.         FOR i% = 1 TO lenx%
  335.             j% = INT(RND * lenx% + 1)
  336.             t$ = MID$(x$, i%, 1)
  337.             MID$(x$, i%, 1) = MID$(x$, j%, 1)
  338.             MID$(x$, j%, 1) = t$
  339.         NEXT i%
  340.         Shuffle$ = x$
  341.         x$ = ""
  342.     END FUNCTION
  343.  
  344.   ' ************************************************
  345.   ' **  Name:          ShuffleArray               **
  346.   ' **  Type:          Subprogram                 **
  347.   ' **  Module:        GAMES.BAS                  **
  348.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  349.   ' ************************************************
  350.   '
  351.   ' Randomizes the order of the integers in a%()
  352.   ' by swapping contents in a pseudorandom order.
  353.   '
  354.   ' EXAMPLE OF USE:  ShuffleArray a%()
  355.   ' PARAMETERS:      a%()       Array to be shuffled
  356.   ' VARIABLES:       lb%        Lower bound of the array
  357.   '                  ub%        Upper bound of the array
  358.   '                  range%     Number of array entries
  359.   '                  i%         Looping index
  360.   '
  361.   ' MODULE LEVEL
  362.   '   DECLARATIONS:  DECLARE SUB ShuffleArray (a%())
  363.   '
  364.     SUB ShuffleArray (a%()) STATIC
  365.         lb% = LBOUND(a%)
  366.         ub% = UBOUND(a%)
  367.         range% = ub% - lb% + 1
  368.         FOR i% = lb% TO ub%
  369.             SWAP a%(i%), a%(INT(RND * range% + lb%))
  370.         NEXT i%
  371.     END SUB
  372.  
  373.