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

  1.   ' ************************************************
  2.   ' **  Name:          WINDOWS                    **
  3.   ' **  Type:          Toolbox                    **
  4.   ' **  Module:        WINDOWS.BAS                **
  5.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  6.   ' ************************************************
  7.   ' USAGE:           No command line parameters
  8.   ' REQUIREMENTS:    MIXED.QLB/.LIB
  9.   '                  Mouse (optional)
  10.   ' .MAK FILES:      WINDOWS.BAS
  11.   '                  BITS.BAS
  12.   '                  BIOSCALL.BAS
  13.   '                  MOUSSUBS.BAS
  14.   '                  KEYS.BAS
  15.   ' PARAMETERS:      (none)
  16.   ' VARIABLES:       w1         Structure of type WindowsType
  17.   '                  w2         Structure of type WindowsType
  18.   '                  w3         Structure of type WindowsType
  19.   '                  w1Text$()  Strings to display in first window
  20.   '                  w2Text$()  Strings to display in second window
  21.   '                  w3Text$()  Strings to display in third window
  22.   '                  w1Title$   Title string for first window
  23.   '                  w1Prompt$  Prompt string for first window
  24.   '                  w2Title$   Title string for second window
  25.   '                  w2Prompt$  Prompt string for second window
  26.   '                  w3Title$   Title string for third window
  27.   '                  arrow$     String showing up and down arrows
  28.   '                  entSymbol$ String showing the Enter key symbol
  29.   '                  w3Prompt$  Prompt string for third window
  30.   '                  i%         Looping index
  31.   '                  t0         Timer value
  32.   
  33.   
  34.   ' Define color constants
  35.     CONST BLACK = 0
  36.     CONST BLUE = 1
  37.     CONST GREEN = 2
  38.     CONST CYAN = 3
  39.     CONST RED = 4
  40.     CONST MAGENTA = 5
  41.     CONST BROWN = 6
  42.     CONST WHITE = 7
  43.     CONST BRIGHT = 8
  44.     CONST BLINK = 16
  45.     CONST YELLOW = BROWN + BRIGHT
  46.   
  47.     TYPE WindowsType
  48.         action       AS INTEGER
  49.         edgeLine     AS INTEGER
  50.         row          AS INTEGER
  51.         col          AS INTEGER
  52.         fgdEdge      AS INTEGER
  53.         bgdEdge      AS INTEGER
  54.         fgdBody      AS INTEGER
  55.         bgdBody      AS INTEGER
  56.         fgdHighlight AS INTEGER
  57.         bgdHighlight AS INTEGER
  58.         fgdTitle     AS INTEGER
  59.         bgdTitle     AS INTEGER
  60.         fgdPrompt    AS INTEGER
  61.         bgdPrompt    AS INTEGER
  62.         returnCode   AS INTEGER
  63.     END TYPE
  64.   
  65.   ' Functions
  66.     DECLARE FUNCTION InKeyCode% ()
  67.   
  68.   ' Subprograms
  69.     DECLARE SUB Windows (w AS WindowsType, wText$(), wTitle$, wPrompt$)
  70.     DECLARE SUB WindowsPop ()
  71.     DECLARE SUB VideoState (mode%, columns%, page%)
  72.     DECLARE SUB Mouse (m1%, m2%, m3%, m4%)
  73.     DECLARE SUB MouseMickey (horizontal%, vertical%)
  74.     DECLARE SUB MouseNow (leftButton%, rightButton%, xMouse%, yMouse%)
  75.   
  76.   ' Data structures
  77.     DIM w1 AS WindowsType
  78.     DIM w2 AS WindowsType
  79.     DIM w3 AS WindowsType
  80.   
  81.   ' Arrays
  82.     DIM w1Text$(1 TO 5)
  83.     DIM w2Text$(1 TO 3)
  84.     DIM w3Text$(1 TO 9)
  85.   
  86.   ' Define first window
  87.     w1.action = 0
  88.     w1.edgeLine = 1
  89.     w1.row = 2
  90.     w1.col = 3
  91.     w1.fgdEdge = YELLOW
  92.     w1.bgdEdge = BLUE
  93.     w1.fgdBody = BRIGHT + WHITE
  94.     w1.bgdBody = BLUE
  95.     w1.fgdHighlight = 0
  96.     w1.bgdHighlight = 0
  97.     w1.fgdTitle = YELLOW
  98.     w1.bgdTitle = BLUE
  99.     w1.fgdPrompt = YELLOW
  100.     w1.bgdPrompt = BLUE
  101.     w1Title$ = " First Window "
  102.     w1Text$(1) = "This window demonstrates how information"
  103.     w1Text$(2) = "can be displayed without requesting any"
  104.     w1Text$(3) = "response from the user.  The action code"
  105.     w1Text$(4) = "is 0, causing an immediate return to the"
  106.     w1Text$(5) = "program after the window is displayed."
  107.     w1Prompt$ = ""
  108.   
  109.   ' Define second window
  110.     w2.action = 1
  111.     w2.edgeLine = 2
  112.     w2.row = 10
  113.     w2.col = 12
  114.     w2.fgdEdge = CYAN + BRIGHT
  115.     w2.bgdEdge = BLACK
  116.     w2.fgdBody = YELLOW
  117.     w2.bgdBody = BLACK
  118.     w2.fgdHighlight = 0
  119.     w2.bgdHighlight = 0
  120.     w2.fgdTitle = CYAN + BRIGHT
  121.     w2.bgdTitle = BLUE
  122.     w2.fgdPrompt = CYAN + BRIGHT
  123.     w2.bgdPrompt = BLUE
  124.     w2Title$ = " Second window, action code is 1 "
  125.     w2Text$(1) = "This window waits for the user to press"
  126.     w2Text$(2) = "any key before continuing.  The key code"
  127.     w2Text$(3) = "is passed back to the calling program."
  128.     w2Prompt$ = " Press any key to continue. "
  129.   
  130.   ' Define third window
  131.     w3.action = 2
  132.     w3.edgeLine = 2
  133.     w3.row = 7
  134.     w3.col = 15
  135.     w3.fgdEdge = YELLOW
  136.     w3.bgdEdge = WHITE
  137.     w3.fgdBody = BLACK
  138.     w3.bgdBody = WHITE
  139.     w3.fgdHighlight = WHITE + BRIGHT
  140.     w3.bgdHighlight = BLACK
  141.     w3.fgdTitle = YELLOW
  142.     w3.bgdTitle = WHITE
  143.     w3.fgdPrompt = YELLOW
  144.     w3.bgdPrompt = WHITE
  145.     w3Title$ = " Third window, action is 2 (menu selection) "
  146.     arrows$ = CHR$(24) + " " + CHR$(25) + " "
  147.     entSymbol$ = CHR$(17) + CHR$(196) + CHR$(217)
  148.     w3Prompt$ = " <Character> " + arrows$ + entSymbol$ + " or use mouse "
  149.     w3Text$(1) = "1. This is the first line in the window."
  150.     w3Text$(2) = "2. This is the second."
  151.     w3Text$(3) = "3. This is the third line."
  152.     w3Text$(4) = "4. The fourth."
  153.     w3Text$(5) = "5. The fifth."
  154.     w3Text$(6) = "A. You can press <A> or <a> to select this line."
  155.     w3Text$(7) = "B. You can press <1> to <5> for one of the first 5 lines."
  156.     w3Text$(8) = "C. Try moving the cursor up or down and pressing Enter."
  157.     w3Text$(9) = "D. Also, try the mouse. Click with left button."
  158.   
  159.   ' Initialize the display
  160.     SCREEN 0, , 0, 0
  161.     WIDTH 80
  162.     CLS
  163.     FOR i% = 1 TO 20
  164.         PRINT STRING$(80, 178)
  165.     NEXT i%
  166.     LOCATE 6, 24
  167.     PRINT " * Windows toolbox demonstration * "
  168.   
  169.   ' Wait for any key to be pressed
  170.     LOCATE 22, 1
  171.     PRINT "Press any key to continue"
  172.     DO
  173.     LOOP UNTIL INKEY$ <> ""
  174.   
  175.   ' Clear the "press any key" prompt
  176.     LOCATE 22, 1
  177.     PRINT SPACE$(25)
  178.   
  179.   ' Create the three windows
  180.     Windows w1, w1Text$(), w1Title$, w1Prompt$
  181.     Windows w2, w2Text$(), w2Title$, w2Prompt$
  182.     Windows w3, w3Text$(), w3Title$, w3Prompt$
  183.   
  184.   ' Display the result codes, and erase each window
  185.     FOR i% = 1 TO 4
  186.         LOCATE 21, 1
  187.         COLOR WHITE, BLACK
  188.         PRINT "The three return codes...";
  189.         PRINT w1.returnCode; w2.returnCode; w3.returnCode
  190.         COLOR YELLOW
  191.         PRINT "Every five seconds another window will disappear..."
  192.         COLOR WHITE, BLACK
  193.         t0 = TIMER
  194.         DO
  195.         LOOP UNTIL TIMER - t0 > 5
  196.         WindowsPop
  197.     NEXT i%
  198.   
  199.   ' All done
  200.     CLS
  201.     END
  202.   
  203.   ' ************************************************
  204.   ' **  Name:          Windows                    **
  205.   ' **  Type:          Subprogram                 **
  206.   ' **  Module:        WINDOWS.BAS                **
  207.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  208.   ' ************************************************
  209.   '
  210.   ' Displays a rectangular window for information display
  211.   ' or menu selection.
  212.   '
  213.   ' EXAMPLE OF USE:  Windows w1, wText$(), wTitle$, wPrompt$
  214.   ' PARAMETERS:      w1            Structure of type WindowsType
  215.   '                  wTest$()      Array of strings to be displayed
  216.   '                  wTitle$       Title string
  217.   '                  wPrompt$      Prompt string
  218.   ' VARIABLES:       mode%         Current video mode
  219.   '                  columns%      Current number of character columns
  220.   '                  page%         Current video page
  221.   '                  cursorRow%    Saved cursor row position
  222.   '                  cursorCol%    Saved cursor column position
  223.   '                  newpage%      Next video page
  224.   '                  lbText%       Lower boundary of array of text lines
  225.   '                  ubText%       Upper boundary of array of text lines
  226.   '                  i%            Looping index
  227.   '                  maxlen%       Length of longest string to display
  228.   '                  length%       Length of each array string
  229.   '                  row2%         Row number at bottom right corner of window
  230.   '                  col2%         Column number at bottom right corner of
  231.   '                                window
  232.   '                  ul%           Upper left corner border character code
  233.   '                  ur%           Upper right corner border character code
  234.   '                  ll%           Lower left corner border character code
  235.   '                  lr%           Lower right corner border character code
  236.   '                  vl%           Vertical border character code
  237.   '                  hl%           Horizontal border character code
  238.   '                  r%            Index to each line of text
  239.   '                  ptr%          Highlighted line pointer
  240.   '                  lastPtr%      Last highlighted line
  241.   '                  horizontal%   Horizontal mouse mickies
  242.   '                  vertical%     Vertical mouse mickies
  243.   '                  mickies       Accumulated vertical mickies
  244.   '                  choice$       Set of unique characters for each menu line
  245.   '                  tmp$          Work string
  246.   '                  kee%          Key code returned by InKeyCode% function
  247.   '                  leftButton%   Mouse left button state
  248.   '                  rightButton%  Mouse right button state
  249.   '                  xMouse%       Mouse X position
  250.   '                  yMouse%       Mouse Y position
  251.   ' MODULE LEVEL
  252.   '   DECLARATIONS:  SUB Windows (w AS WindowsType, wText$(), wTitle$,
  253.   '                               wPrompt$) STATIC
  254.   '
  255.     SUB Windows (w AS WindowsType, wText$(), wTitle$, wPrompt$) STATIC
  256.       ' Key code numbers
  257.         CONST DOWNARROW = 20480
  258.         CONST ENTER = 13
  259.         CONST ESCAPE = 27
  260.         CONST UPARROW = 18432
  261.       
  262.       ' Determine current video page
  263.         VideoState mode%, columns%, page%
  264.       
  265.       ' Record current cursor location
  266.         cursorRow% = CSRLIN
  267.         cursorCol% = POS(0)
  268.       
  269.       ' Window will be on the next page, if available
  270.         newpage% = page% + 1
  271.         IF newpage% > 7 THEN
  272.             SCREEN , , 0, 0
  273.             PRINT "Error: Windows - not enough video pages"
  274.             SYSTEM
  275.         END IF
  276.       
  277.       ' Copy current page to new page
  278.         PCOPY page%, newpage%
  279.       
  280.       ' Show the current page while building window on new page
  281.         SCREEN , , newpage%, page%
  282.       
  283.       ' Determine array bounds
  284.         lbText% = LBOUND(wText$)
  285.         ubText% = UBOUND(wText$)
  286.       
  287.       ' Check the text array bounds, lower always 1, upper > 0
  288.         IF lbText% <> 1 OR ubText% < 1 THEN
  289.             SCREEN , , 0, 0
  290.             PRINT "Error: Windows - text array dimensioned incorrectly"
  291.             SYSTEM
  292.         END IF
  293.       
  294.       ' Determine longest string in the text array
  295.         maxLen% = 0
  296.         FOR i% = lbText% TO ubText%
  297.             length% = LEN(wText$(i%))
  298.             IF length% > maxLen% THEN
  299.                 maxLen% = length%
  300.             END IF
  301.         NEXT i%
  302.       
  303.       ' Determine the bottom right corner of window
  304.         row2% = w.row + ubText% + 1
  305.         col2% = w.col + maxLen% + 3
  306.       
  307.       ' Check that window is on screen
  308.         IF w.row < 1 OR w.col < 1 OR row2% > 25 OR col2% > columns% THEN
  309.             SCREEN , , 0, 0
  310.             PRINT "Error: Windows - part of window is off screen"
  311.             SYSTEM
  312.         END IF
  313.       
  314.       ' Set the edge characters
  315.         SELECT CASE w.edgeLine
  316.         CASE 0
  317.             ul% = 32
  318.             ur% = 32
  319.             ll% = 32
  320.             lr% = 32
  321.             vl% = 32
  322.             hl% = 32
  323.         CASE 1
  324.             ul% = 218
  325.             ur% = 191
  326.             ll% = 192
  327.             lr% = 217
  328.             vl% = 179
  329.             hl% = 196
  330.         CASE 2
  331.             ul% = 201
  332.             ur% = 187
  333.             ll% = 200
  334.             lr% = 188
  335.             vl% = 186
  336.             hl% = 205
  337.         CASE ELSE
  338.             SCREEN , , 0, 0
  339.             PRINT "Error: Windows - Edge line type incorrect"
  340.             SYSTEM
  341.         END SELECT
  342.       
  343.       ' Draw top edge of the box
  344.         LOCATE w.row, w.col, 0
  345.         COLOR w.fgdEdge, w.bgdEdge
  346.         PRINT CHR$(ul%); STRING$(maxLen% + 2, hl%); CHR$(ur%);
  347.       
  348.       ' Draw the body of the window
  349.         FOR r% = w.row + 1 TO row2% - 1
  350.             LOCATE r%, w.col, 0
  351.             COLOR w.fgdEdge, w.bgdEdge
  352.             PRINT CHR$(vl%);
  353.             COLOR w.fgdBody, w.bgdBody
  354.             tmp$ = LEFT$(wText$(r% - w.row) + SPACE$(maxLen%), maxLen%)
  355.             PRINT " "; tmp$; " ";
  356.             COLOR w.fgdEdge, w.bgdEdge
  357.             PRINT CHR$(vl%);
  358.         NEXT r%
  359.       
  360.       ' Draw bottom edge of the box
  361.         LOCATE row2%, w.col, 0
  362.         COLOR w.fgdEdge, w.bgdEdge
  363.         PRINT CHR$(ll%); STRING$(maxLen% + 2, hl%); CHR$(lr%);
  364.       
  365.       ' Center and print top title if present
  366.         IF wTitle$ <> "" THEN
  367.             LOCATE w.row, (w.col + col2% - LEN(wTitle$) + 1) \ 2, 0
  368.             COLOR w.fgdTitle, w.bgdTitle
  369.             PRINT wTitle$;
  370.         END IF
  371.       
  372.       ' Center and print prompt if present
  373.         IF wPrompt$ <> "" THEN
  374.             LOCATE row2%, (w.col + col2% - LEN(wPrompt$) + 1) \ 2, 0
  375.             COLOR w.fgdPrompt, w.bgdPrompt
  376.             PRINT wPrompt$;
  377.         END IF
  378.       
  379.       ' Now make the new page visible and active
  380.         SCREEN , , newpage%, newpage%
  381.       
  382.       ' Take next action based on action code
  383.         SELECT CASE w.action
  384.         CASE 1
  385.           
  386.           ' Get a key code number and return it
  387.             DO
  388.                 w.returnCode = InKeyCode%
  389.             LOOP UNTIL w.returnCode
  390.           
  391.         CASE 2
  392.           
  393.           ' Set choice pointer to last selection if known
  394.             IF w.returnCode > 0 AND w.returnCode < ubText% THEN
  395.                 ptr% = w.returnCode
  396.             ELSE
  397.                 ptr% = 1
  398.             END IF
  399.           
  400.           ' Start with last pointer different, to update highlighting
  401.             IF ptr% > 1 THEN
  402.                 lastPtr% = 1
  403.             ELSE
  404.                 lastPtr% = 2
  405.             END IF
  406.           
  407.           ' Clear any mouse mickey counts
  408.             MouseMickey horizontal%, vertical%
  409.             mickies% = 0
  410.           
  411.           ' Create unique key selection string
  412.             choice$ = ""
  413.             FOR i% = 1 TO ubText%
  414.                 tmp$ = UCASE$(LTRIM$(wText$(i%)))
  415.                 DO
  416.                     IF tmp$ <> "" THEN
  417.                         t$ = LEFT$(tmp$, 1)
  418.                         tmp$ = MID$(tmp$, 2)
  419.                         IF INSTR(choice$, t$) = 0 THEN
  420.                             choice$ = choice$ + t$
  421.                         END IF
  422.                     ELSE
  423.                         SCREEN 0, , 0
  424.                         PRINT "Error: Windows - No unique character"
  425.                         SYSTEM
  426.                     END IF
  427.                 LOOP UNTIL LEN(choice$) = i%
  428.             NEXT i%
  429.           
  430.           ' Main loop, monitor mouse and keyboard
  431.             DO
  432.               
  433.               ' Add the mouse mickies
  434.                 MouseMickey horizontal%, vertical%
  435.                 mickies% = mickies% + vertical%
  436.               
  437.               ' Check for enough mickies
  438.                 IF mickies% < -17 THEN
  439.                     mickies% = 0
  440.                     IF ptr% > 1 THEN
  441.                         ptr% = ptr% - 1
  442.                     END IF
  443.                 ELSEIF mickies% > 17 THEN
  444.                     mickies% = 0
  445.                     IF ptr% < ubText% THEN
  446.                         ptr% = ptr% + 1
  447.                     END IF
  448.                 END IF
  449.               
  450.               ' Check keyboard
  451.                 kee% = InKeyCode%
  452.                 IF kee% >= ASC("a") AND kee% <= ASC("z") THEN
  453.                     kee% = ASC(UCASE$(CHR$(kee%)))
  454.                 END IF
  455.                 SELECT CASE kee%
  456.                 CASE UPARROW
  457.                     IF ptr% > 1 THEN
  458.                         ptr% = ptr% - 1
  459.                     END IF
  460.                 CASE DOWNARROW
  461.                     IF ptr% < ubText% THEN
  462.                         ptr% = ptr% + 1
  463.                     END IF
  464.                 CASE ENTER
  465.                     w.returnCode = ptr%
  466.                 CASE ESCAPE
  467.                     w.returnCode = -1
  468.                 CASE ELSE
  469.                     w.returnCode = INSTR(choice$, CHR$(kee%))
  470.                     IF w.returnCode THEN
  471.                         ptr% = w.returnCode
  472.                     END IF
  473.                 END SELECT
  474.               
  475.               ' Check the left mouse button
  476.                 MouseNow leftButton%, rightButton%, xMouse%, yMouse%
  477.                 IF leftButton% THEN
  478.                     w.returnCode = ptr%
  479.                 END IF
  480.               
  481.               ' Update the highlight if line has changed
  482.                 IF ptr% <> lastPtr% THEN
  483.                     LOCATE lastPtr% + w.row, w.col + 2, 0
  484.                     COLOR w.fgdBody, w.bgdBody
  485.                     tmp$ = LEFT$(wText$(lastPtr%) + SPACE$(maxLen%), maxLen%)
  486.                     PRINT tmp$;
  487.                     LOCATE ptr% + w.row, w.col + 2, 0
  488.                     COLOR w.fgdHighlight, w.bgdHighlight
  489.                     tmp$ = LEFT$(wText$(ptr%) + SPACE$(maxLen%), maxLen%)
  490.                     PRINT tmp$;
  491.                     lastPtr% = ptr%
  492.                 END IF
  493.               
  494.             LOOP WHILE w.returnCode = 0
  495.           
  496.         CASE ELSE
  497.             w.returnCode = 0
  498.         END SELECT
  499.       
  500.       ' Reset the cursor position
  501.         LOCATE cursorRow%, cursorCol%
  502.       
  503.     END SUB
  504.   
  505.   ' ************************************************
  506.   ' **  Name:          WindowsPop                 **
  507.   ' **  Type:          Subprogram                 **
  508.   ' **  Module:        WINDOWS.BAS                **
  509.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  510.   ' ************************************************
  511.   '
  512.   ' Removes last displayed window.
  513.   '
  514.   ' EXAMPLE OF USE:  WindowsPop
  515.   ' PARAMETERS:      (none)
  516.   ' VARIABLES:       mode%      Current video mode
  517.   '                  columns%   Current number of display columns
  518.   '                  page%      Current display page
  519.   ' MODULE LEVEL
  520.   '   DECLARATIONS:  DECLARE SUB WindowsPop ()
  521.   '
  522.     SUB WindowsPop STATIC
  523.         VideoState mode%, columns%, page%
  524.         IF page% THEN
  525.             SCREEN 0, , page% - 1, page% - 1
  526.         END IF
  527.     END SUB
  528.   
  529.