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

  1.   ' ************************************************
  2.   ' **  Name:          STDOUT                     **
  3.   ' **  Type:          Toolbox                    **
  4.   ' **  Module:        STDOUT.BAS                 **
  5.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  6.   ' ************************************************
  7.   '
  8.   ' USAGE:            No command line parameters
  9.   ' REQUIREMENTS:     MIXED.QLB/.LIB
  10.   '                   ANSI.SYS
  11.   ' .MAK FILE:        (none)
  12.   ' PARAMETERS:       (none)
  13.   ' VARIABLES:        t0         Timer variable
  14.   '                   bell$      ASCII character 7 (bell)
  15.   
  16.   ' Attribute definitions
  17.     CONST NORMAL = 0
  18.     CONST BRIGHT = 1
  19.     CONST UNDERSCORE = 4
  20.     CONST BLINK = 5
  21.     CONST REVERSE = 7
  22.     CONST INVISIBLE = 8
  23.     CONST BLACKFOREGROUND = 30
  24.     CONST REDFOREGROUND = 31
  25.     CONST GREENFOREGROUND = 32
  26.     CONST YELLOWFOREGROUND = 33
  27.     CONST BLUEFOREGROUND = 34
  28.     CONST MAGENTAFOREGROUND = 35
  29.     CONST CYANFOREGROUND = 36
  30.     CONST WHITEFOREGROUND = 37
  31.     CONST BLACKBACKGROUND = 40
  32.     CONST REDBACKGROUND = 41
  33.     CONST GREENBACKGROUND = 42
  34.     CONST YELLOWBACKGROUND = 43
  35.     CONST BLUEBACKGROUND = 44
  36.     CONST MAGENTABACKGROUND = 45
  37.     CONST CYANBACKGROUND = 46
  38.     CONST WHITEBACKGROUND = 47
  39.   
  40.     TYPE RegTypeX
  41.         ax    AS INTEGER
  42.         bx    AS INTEGER
  43.         cx    AS INTEGER
  44.         dx    AS INTEGER
  45.         Bp    AS INTEGER
  46.         si    AS INTEGER
  47.         di    AS INTEGER
  48.         flags AS INTEGER
  49.         ds    AS INTEGER
  50.         es    AS INTEGER
  51.     END TYPE
  52.   
  53.   ' Subprograms
  54.     DECLARE SUB InterruptX (intnum%, inreg AS RegTypeX, outreg AS RegTypeX)
  55.     DECLARE SUB ClearLine ()
  56.     DECLARE SUB ClearScreen ()
  57.     DECLARE SUB StdOut (a$)
  58.     DECLARE SUB CrLf ()
  59.     DECLARE SUB CursorPosition (row%, col%)
  60.     DECLARE SUB CursorDown (n%)
  61.     DECLARE SUB CursorLeft (n%)
  62.     DECLARE SUB CursorRight (n%)
  63.     DECLARE SUB CursorUp (n%)
  64.     DECLARE SUB AssignKey (keyCode%, assign$)
  65.     DECLARE SUB Attribute (attr%)
  66.   
  67.   ' Demonstrate the ClearLine and ClearScreen routines
  68.     CLS
  69.     PRINT "This will be erased quickly, in two steps..."
  70.     t0 = TIMER
  71.     DO
  72.     LOOP UNTIL TIMER - t0 > 2
  73.     LOCATE 1, 27
  74.     ClearLine
  75.     t0 = TIMER
  76.     DO
  77.     LOOP UNTIL TIMER - t0 > 2
  78.     LOCATE 15, 1
  79.     ClearScreen
  80.   
  81.   ' Demonstrate the StdOut routine
  82.     bell$ = CHR$(7)
  83.     StdOut "Sending a 'Bell' to StdOut" + bell$
  84.     CrLf
  85.   
  86.   ' Set cursor position
  87.     CursorPosition 3, 20
  88.     StdOut "* CursorPosition 3, 20"
  89.     CrLf
  90.   
  91.   ' Move the cursor around the screen
  92.     StdOut "Cursor movements..."
  93.     CrLf
  94.     CursorDown 1
  95.     StdOut "Down 1"
  96.     CursorRight 12
  97.     StdOut "Right 12"
  98.     CursorDown 2
  99.     StdOut "Down 2"
  100.     CursorLeft 99
  101.     StdOut "Left 99"
  102.     CrLf
  103.   
  104.   ' Character attributes
  105.     CrLf
  106.     Attribute YELLOWFOREGROUND
  107.     Attribute BRIGHT
  108.     Attribute BLUEBACKGROUND
  109.     StdOut "Bright yellow on blue"
  110.     CrLf
  111.     Attribute NORMAL
  112.     StdOut "Back to normal attributes"
  113.     CrLf
  114.   
  115.   ' Key reassignment
  116.     AssignKey 97, "REM The 'a' and 'b' keys have been redefined" + CHR$(13)
  117.     AssignKey 98, "EXIT" + CHR$(13)
  118.     CursorDown 1
  119.     Attribute BRIGHT
  120.     Attribute YELLOWFOREGROUND
  121.     StdOut "NOTE:"
  122.     CrLf
  123.     StdOut "Press the 'a' key and then the 'b' key ... "
  124.     CrLf
  125.     StdOut "The program will then continue ........ "
  126.     Attribute NORMAL
  127.     CrLf
  128.     SHELL
  129.     AssignKey 97, ""
  130.     AssignKey 98, ""
  131.   
  132.   ' ************************************************
  133.   ' **  Name:          AssignKey                  **
  134.   ' **  Type:          Subprogram                 **
  135.   ' **  Module:        STDOUT.BAS                 **
  136.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  137.   ' ************************************************
  138.   '
  139.   ' Assigns a string to any key using ANSI.SYS driver.
  140.   '
  141.   ' EXAMPLE OF USE:  AssignKey keyCode%, assign$
  142.   ' PARAMETERS:      keyCode%   ASCII number for key to be reassigned
  143.   '                  assign$    String to assign to key
  144.   ' VARIABLES:       k$         Command string for ANSI.SYS driver
  145.   '                  i%         Index to each character of assign$
  146.   ' MODULE LEVEL
  147.   '   DECLARATIONS:  DECLARE SUB AssignKey (keyCode%, assign$)
  148.   '
  149.     SUB AssignKey (keyCode%, assign$) STATIC
  150.         IF keyCode% <= 0 THEN
  151.             k$ = "[0;"
  152.         ELSE
  153.             k$ = "["
  154.         END IF
  155.         k$ = k$ + MID$(STR$(keyCode%), 2)
  156.         IF assign$ <> "" THEN
  157.             FOR i% = 1 TO LEN(assign$)
  158.                 k$ = k$ + ";" + MID$(STR$(ASC(MID$(assign$, i%))), 2)
  159.             NEXT i%
  160.         END IF
  161.         StdOut CHR$(27) + k$ + "p"
  162.     END SUB
  163.   
  164.   ' ************************************************
  165.   ' **  Name:          Attribute                  **
  166.   ' **  Type:          Subprogram                 **
  167.   ' **  Module:        STDOUT.BAS                 **
  168.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  169.   ' ************************************************
  170.   '
  171.   ' Sets the foreground, background, and other color
  172.   ' attributes.
  173.   '
  174.   ' EXAMPLE OF USE:  Attribute attr%
  175.   ' PARAMETERS:      attr%      Number for attribute to be set
  176.   ' VARIABLES:       (none)
  177.   ' MODULE LEVEL
  178.   '   DECLARATIONS:  DECLARE SUB StdOut (a$)
  179.   '                  DECLARE SUB Attribute (attr%)
  180.   '
  181.     SUB Attribute (attr%) STATIC
  182.         StdOut CHR$(27) + "[" + MID$(STR$(attr%), 2) + "m"
  183.     END SUB
  184.   
  185.   ' ************************************************
  186.   ' **  Name:          ClearLine                  **
  187.   ' **  Type:          Subprogram                 **
  188.   ' **  Module:        STDOUT.BAS                 **
  189.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  190.   ' ************************************************
  191.   '
  192.   ' Clears the display line from the current cursor
  193.   ' position to the end of the line.
  194.   '
  195.   ' EXAMPLE OF USE:  ClearLine
  196.   ' PARAMETERS:      (none)
  197.   ' VARIABLES:       (none)
  198.   ' MODULE LEVEL
  199.   '   DECLARATIONS:  DECLARE SUB ClearLine ()
  200.   '                  DECLARE SUB StdOut (a$)
  201.   '
  202.     SUB ClearLine STATIC
  203.         StdOut CHR$(27) + "[K"
  204.     END SUB
  205.   
  206.   ' ************************************************
  207.   ' **  Name:          ClearScreen                **
  208.   ' **  Type:          Subprogram                 **
  209.   ' **  Module:        STDOUT.BAS                 **
  210.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  211.   ' ************************************************
  212.   '
  213.   ' Clears the screen and moves the cursor to the
  214.   ' home position.
  215.   '
  216.   ' EXAMPLE OF USE:  ClearScreen
  217.   ' PARAMETERS:      (none)
  218.   ' VARIABLES:       (none)
  219.   ' MODULE LEVEL
  220.   '   DECLARATIONS:  DECLARE SUB ClearScreen ()
  221.   '                  DECLARE SUB StdOut (a$)
  222.   '
  223.     SUB ClearScreen STATIC
  224.         StdOut CHR$(27) + "[2J"
  225.     END SUB
  226.   
  227.   ' ************************************************
  228.   ' **  Name:          CrLf                       **
  229.   ' **  Type:          Subprogram                 **
  230.   ' **  Module:        STDOUT.BAS                 **
  231.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  232.   ' ************************************************
  233.   '
  234.   ' Sends line feed and carriage return characters
  235.   ' to standard output.
  236.   '
  237.   ' EXAMPLE OF USE:  CrLf
  238.   ' PARAMETERS:      (none)
  239.   ' VARIABLES:       (none)
  240.   ' MODULE LEVEL
  241.   '   DECLARATIONS:  DECLARE SUB StdOut (a$)
  242.   '                  DECLARE SUB CrLf ()
  243.   '
  244.     SUB CrLf STATIC
  245.         StdOut CHR$(13) + CHR$(10)
  246.     END SUB
  247.   
  248.   ' ************************************************
  249.   ' **  Name:          CursorDown                 **
  250.   ' **  Type:          Subprogram                 **
  251.   ' **  Module:        STDOUT.BAS                 **
  252.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  253.   ' ************************************************
  254.   '
  255.   ' Moves the cursor n% lines down the screen.
  256.   '
  257.   ' EXAMPLE OF USE:   CursorDown n%
  258.   ' PARAMETERS:       n%         Number of lines to move the cursor down
  259.   ' VARIABLES:        (none)
  260.   ' MODULE LEVEL
  261.   '   DECLARATIONS:   DECLARE SUB StdOut (a$)
  262.   '                   DECLARE SUB CursorDown (n%)
  263.   '
  264.     SUB CursorDown (n%) STATIC
  265.         StdOut CHR$(27) + "[" + MID$(STR$(n%), 2) + "B"
  266.     END SUB
  267.   
  268.   ' ************************************************
  269.   ' **  Name:          CursorHome                 **
  270.   ' **  Type:          Subprogram                 **
  271.   ' **  Module:        STDOUT.BAS                 **
  272.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  273.   ' ************************************************
  274.   '
  275.   ' Moves the cursor to the top left of the
  276.   ' screen.
  277.   '
  278.   ' EXAMPLE OF USE:  CursorHome
  279.   ' PARAMETERS:      (none)
  280.   ' VARIABLES:       (none)
  281.   ' MODULE LEVEL
  282.   '   DECLARATIONS:  DECLARE SUB CursorHome
  283.   '
  284.     SUB CursorHome STATIC
  285.         StdOut CHR$(27) + "[H"
  286.     END SUB
  287.   
  288.   ' ************************************************
  289.   ' **  Name:          CursorLeft                 **
  290.   ' **  Type:          Subprogram                 **
  291.   ' **  Module:        STDOUT.BAS                 **
  292.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  293.   ' ************************************************
  294.   '
  295.   ' Moves the cursor n% columns left on the screen.
  296.   '
  297.   ' EXAMPLE OF USE:  CursorLeft n%
  298.   ' PARAMETERS:      n%      Number of columns to move the cursor left
  299.   ' VARIABLES:       (none)
  300.   ' MODULE LEVEL
  301.   '   DECLARATIONS:  DECLARE SUB CursorLeft (n%)
  302.   '
  303.     SUB CursorLeft (n%) STATIC
  304.         StdOut CHR$(27) + "[" + MID$(STR$(n%), 2) + "D"
  305.     END SUB
  306.   
  307.   ' ************************************************
  308.   ' **  Name:          CursorPosition             **
  309.   ' **  Type:          Subprogram                 **
  310.   ' **  Module:        STDOUT.BAS                 **
  311.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  312.   ' ************************************************
  313.   '
  314.   ' Moves the cursor to the indicated row and column.
  315.   '
  316.   ' EXAMPLE OF USE:  CursorPosition row%, col%
  317.   ' PARAMETERS:      row%       Row to move the cursor to
  318.   '                  col%       Column to move the cursor to
  319.   ' VARIABLES:       row$       String representation of row%
  320.   '                  col$       String representation of col%
  321.   ' MODULE LEVEL
  322.   '   DECLARATIONS:  DECLARE SUB CursorPosition (row%, col%)
  323.   '
  324.     SUB CursorPosition (row%, col%) STATIC
  325.         row$ = MID$(STR$(row%), 2)
  326.         col$ = MID$(STR$(col%), 2)
  327.         StdOut CHR$(27) + "[" + row$ + ";" + col$ + "H"
  328.     END SUB
  329.   
  330.   ' ************************************************
  331.   ' **  Name:          CursorRight                **
  332.   ' **  Type:          Subprogram                 **
  333.   ' **  Module:        STDOUT.BAS                 **
  334.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  335.   ' ************************************************
  336.   '
  337.   ' Moves the cursor n% columns right on the screen.
  338.   '
  339.   ' EXAMPLE OF USE:  CursorRight n%
  340.   ' PARAMETERS:      n%     Number of columns to move the cursor right
  341.   ' VARIABLES:       (none)
  342.   ' MODULE LEVEL
  343.   '   DECLARATIONS:  DECLARE SUB CursorRight (n%)
  344.   '
  345.     SUB CursorRight (n%) STATIC
  346.         StdOut CHR$(27) + "[" + MID$(STR$(n%), 2) + "C"
  347.     END SUB
  348.   
  349.   ' ************************************************
  350.   ' **  Name:          CursorUp                   **
  351.   ' **  Type:          Subprogram                 **
  352.   ' **  Module:        STDOUT.BAS                 **
  353.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  354.   ' ************************************************
  355.   '
  356.   ' Moves the cursor n% lines up the screen.
  357.   '
  358.   ' EXAMPLE OF USE:  CursorUp n%
  359.   ' PARAMETERS:      n%         Number of lines to move the cursor up
  360.   ' VARIABLES:       (none)
  361.   ' MODULE LEVEL
  362.   '   DECLARATIONS:  DECLARE SUB CursorUp (n%)
  363.   '
  364.     SUB CursorUp (n%) STATIC
  365.         StdOut CHR$(27) + "[" + MID$(STR$(n%), 2) + "A"
  366.     END SUB
  367.   
  368.   ' ************************************************
  369.   ' **  Name:          StdOut                     **
  370.   ' **  Type:          Subprogram                 **
  371.   ' **  Module:        STDOUT.BAS                 **
  372.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  373.   ' ************************************************
  374.   '
  375.   ' Writes string to the MS-DOS standard output.
  376.   '
  377.   ' EXAMPLE OF USE:  StdOut a$
  378.   ' PARAMETERS:      a$         String to be output
  379.   ' VARIABLES:       regX       Structure of type RegTypeX
  380.   ' MODULE LEVEL
  381.   '   DECLARATIONS:    DECLARE SUB InterruptX (intnum%, inreg AS RegTypeX,
  382.   '                                          outreg AS RegTypeX)
  383.   '                  DECLARE SUB StdOut (a$)
  384.   '
  385.     SUB StdOut (a$) STATIC
  386.         DIM regX AS RegTypeX
  387.         regX.ax = &H4000
  388.         regX.cx = LEN(a$)
  389.         regX.bx = 1
  390.         regX.ds = VARSEG(a$)
  391.         regX.dx = SADD(a$)
  392.         InterruptX &H21, regX, regX
  393.         IF regX.flags AND 1 THEN
  394.             PRINT "Error while calling StdOut:"; regX.ax
  395.             SYSTEM
  396.         END IF
  397.     END SUB
  398.   
  399.