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

  1.   ' ************************************************
  2.   ' **  Name:          LOOK                       **
  3.   ' **  Type:          Program                    **
  4.   ' **  Module:        LOOK.BAS                   **
  5.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  6.   ' ************************************************
  7.   '
  8.   ' USAGE:           LOOK filename.ext
  9.   ' .MAK FILE:       LOOK.BAS
  10.   '                  KEYS.BAS
  11.   ' PARAMETERS:      filename.ext  Name of file to view
  12.   ' VARIABLES:       a$()          Array of lines from the file
  13.   '                  fileName$     Name of file, from the command line
  14.   '                  lineCount%    Count of lines read from the file
  15.   '                  linePtr%      First file line currently on the display
  16.   '                  i%            Loop index for printing 24 lines
  17.   '                  quitFlag%     Indicates Escape key press
  18.   '                  updateFlag%   Indicates if update of screen is necessary
  19.   
  20.   ' Constants
  21.     CONST FALSE = 0
  22.     CONST TRUE = NOT FALSE
  23.   
  24.   ' Key code numbers
  25.     CONST UPARROW = 18432
  26.     CONST DOWNARROW = 20480
  27.     CONST PGUP = 18688
  28.     CONST PGDN = 20736
  29.     CONST HOME = 18176
  30.     CONST ENDKEY = 20224
  31.     CONST ESCAPE = 27
  32.   
  33.   ' Functions
  34.     DECLARE FUNCTION KeyCode% ()
  35.   
  36.   ' Subprograms
  37.     DECLARE SUB FileRead (fileName$, lineCount%, a$())
  38.   
  39.   ' Dimension string array
  40.   ' NOTE:
  41.   ' Must be dimensioned big enough to read in all lines from the file
  42.     DIM a$(1 TO 2000)
  43.   
  44.   ' Get the command line parameters
  45.     fileName$ = COMMAND$
  46.   
  47.   ' Read in the file
  48.     ON ERROR GOTO FileError
  49.     FileRead fileName$, lineCount%, a$()
  50.     ON ERROR GOTO 0
  51.   
  52.   ' Prepare the screen
  53.     SCREEN 0, 0, 0, 0
  54.     CLS
  55.   
  56.   ' Set line pointer
  57.     linePtr% = 1
  58.   
  59.   ' Main loop
  60.     DO
  61.       
  62.       ' Print information bar at top
  63.         VIEW PRINT 1 TO 1
  64.         COLOR 0, 3
  65.         LOCATE 1, 1
  66.         PRINT " Line:"; LEFT$(STR$(linePtr%) + SPACE$(7), 8);
  67.         PRINT "File: "; LEFT$(fileName$ + SPACE$(19), 19);
  68.         PRINT "Quit: ESC"; SPACE$(3);
  69.         PRINT "Move: "; CHR$(24); " "; CHR$(25); " PGUP PGDN HOME END ";
  70.       
  71.       ' Update the 24 lines of text
  72.         VIEW PRINT 2 TO 25
  73.         COLOR 7, 1
  74.         FOR i% = 0 TO 23
  75.             LOCATE i% + 2, 1
  76.             PRINT LEFT$(a$(i% + linePtr%) + SPACE$(80), 80);
  77.         NEXT i%
  78.       
  79.       ' Wait for a meaningful key to be pressed
  80.         SELECT CASE KeyCode%
  81.         CASE UPARROW
  82.             IF linePtr% > 1 THEN
  83.                 linePtr% = linePtr% - 1
  84.             END IF
  85.         CASE DOWNARROW
  86.             IF linePtr% < lineCount% THEN
  87.                 linePtr% = linePtr% + 1
  88.             END IF
  89.         CASE PGUP
  90.             IF linePtr% > 1 THEN
  91.                 linePtr% = linePtr% - 24
  92.                 IF linePtr% < 1 THEN
  93.                     linePtr% = 1
  94.                 END IF
  95.             END IF
  96.         CASE PGDN
  97.             IF linePtr% < lineCount% - 24 THEN
  98.                 linePtr% = linePtr% + 24
  99.                 IF linePtr% > lineCount% THEN
  100.                     linePtr% = lineCount%
  101.                 END IF
  102.             END IF
  103.         CASE HOME
  104.             IF linePtr% > 1 THEN
  105.                 linePtr% = 1
  106.             END IF
  107.         CASE ENDKEY
  108.             IF linePtr% < lineCount% - 24 THEN
  109.                 linePtr% = lineCount% - 24
  110.             END IF
  111.         CASE ESCAPE
  112.             quitFlag% = TRUE
  113.         CASE ELSE
  114.             updateFlag% = FALSE
  115.         END SELECT
  116.       
  117.     LOOP UNTIL quitFlag%
  118.   
  119.   ' Set color back to normal
  120.     COLOR 7, 0
  121.     END
  122.   
  123. FileError:
  124.     PRINT
  125.     PRINT "Usage: LOOK filename.ext"
  126.     SYSTEM
  127.     RESUME NEXT
  128.   
  129.   ' ************************************************
  130.   ' **  Name:          FileRead                   **
  131.   ' **  Type:          Subprogram                 **
  132.   ' **  Module:        LOOK.BAS                   **
  133.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  134.   ' ************************************************
  135.   '
  136.   ' Reads lines of an ASCII file into a$().  The
  137.   ' lineCount% is set to the number of lines read
  138.   ' in.  If a$() wasn't dimensioned large enough,
  139.   ' then lineCount% will be set to -1.
  140.   '
  141.   ' EXAMPLE OF USE:  FileRead fileName$, lineCount%, a$()
  142.   ' PARAMETERS:      fileName$     Name of file to be read into the array
  143.   '                  lineCount%    Returned count of lines read from the file
  144.   '                  a$()          String array of file contents
  145.   ' VARIABLES:       FileNumber%   Next available free file number
  146.   '                  i%            Index for string array
  147.   ' MODULE LEVEL
  148.   '   DECLARATIONS:    DECLARE SUB FileRead (fileName$, lineCount%, a$())
  149.   '
  150.     SUB FileRead (fileName$, lineCount%, a$()) STATIC
  151.         FileNumber% = FREEFILE
  152.         OPEN fileName$ FOR INPUT AS FileNumber%
  153.         FOR i% = LBOUND(a$) TO UBOUND(a$)
  154.             LINE INPUT #FileNumber%, a$(i%)
  155.             lineCount% = i%
  156.             IF EOF(FileNumber%) THEN
  157.                 EXIT FOR
  158.             END IF
  159.         NEXT i%
  160.         IF NOT EOF(FileNumber%) THEN
  161.             lineCount% = -1
  162.         END IF
  163.     END SUB
  164.   
  165.