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

  1.   ' ************************************************
  2.   ' **  Name:          OBJECT                     **
  3.   ' **  Type:          Program                    **
  4.   ' **  Module:        OBJECT.BAS                 **
  5.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  6.   ' ************************************************
  7.   '
  8.   ' Allows interactive graphics object creation.
  9.   ' Dumps code for another program to be able to create
  10.   ' the graphics object "PUT array" directly.
  11.   '
  12.   ' USAGE:           No command line parameters
  13.   ' REQUIREMENTS:    CGA
  14.   ' .MAK FILE:       OBJECT.BAS
  15.   '                  KEYS.BAS
  16.   '                  EDIT.BAS
  17.   ' PARAMETERS:      (none)
  18.   ' VARIABLES:       quitFlag%     Indicates user is ready to quit
  19.   '                  modeFlag%     Indicates a valid graphics mode was selected
  20.   '                  mode%         Graphics mode
  21.   '                  xMax%         Maximum screen X coordinate
  22.   '                  yMax%         Maximum screen Y coordinate
  23.   '                  fileName$     Name of object creation subprogram file
  24.   '                  exitCode%     Return code from EditLine subprogram
  25.   '                  t$            Temporary work string while reading file
  26.   '                                contents
  27.   '                  a$            The DRAW string
  28.   '                  editFlag%     Indicates an edit of the string is desired
  29.   '               drawErrorFlag%   Indicates an error occurred during the DRAW
  30.   '                  keyNumber%    Integer key code returned by KeyCode%
  31.   '                                function
  32.   '                  okayFlag%     Shared flag for determining array dimensions
  33.   
  34.   ' Logical constants
  35.     CONST FALSE = 0
  36.     CONST TRUE = NOT FALSE
  37.   
  38.   ' Key code constants
  39.     CONST SKEYLC = 115
  40.     CONST SKEYUC = SKEYLC - 32
  41.     CONST QKEYLC = 113
  42.     CONST QKEYUC = QKEYLC - 32
  43.     CONST ESC = 27
  44.   
  45.   ' Color constants
  46.     CONST BLACK = 0
  47.     CONST BLUE = 1
  48.     CONST GREEN = 2
  49.     CONST CYAN = 3
  50.     CONST RED = 4
  51.     CONST MAGENTA = 5
  52.     CONST BROWN = 6
  53.     CONST WHITE = 7
  54.     CONST BRIGHT = 8
  55.     CONST BLINK = 16
  56.     CONST YELLOW = BROWN + BRIGHT
  57.   
  58.   ' Functions
  59.     DECLARE FUNCTION KeyCode% ()
  60.   
  61.   ' Subprograms
  62.     DECLARE SUB DrawBox (row1%, col1%, row2%, col2%)
  63.     DECLARE SUB EditBox (a$, row1%, col1%, row2%, col2%)
  64.     DECLARE SUB EditLine (a$, exitCode%)
  65.     DECLARE SUB SaveObject (mode%, xMax%, yMax%, fileName$, a$)
  66.   
  67.   ' Initialization
  68.     SCREEN 0
  69.     CLS
  70.     quitFlag% = FALSE
  71.   
  72.   ' Title
  73.     PRINT "OBJECT - Interactive graphics object editor"
  74.     PRINT
  75.     PRINT
  76.   
  77.   ' Display screen mode table
  78.     PRINT "Adapter       SCREEN modes allowed"
  79.     PRINT "----------    --------------------"
  80.     PRINT "Monochrome    (none)"
  81.     PRINT "Hercules      3"
  82.     PRINT "CGA           1,2"
  83.     PRINT "EGA           1,2,7,8,9"
  84.     PRINT "MCGA          1,2,11,13"
  85.     PRINT "VGA           1,2,7,8,9,10,11,12,13"
  86.     PRINT
  87.   
  88.   ' Ask user for the graphics screen mode
  89.     DO
  90.         PRINT "Enter a SCREEN mode number, ";
  91.         INPUT "based on your graphics adapter "; mode%
  92.         modeFlag% = TRUE
  93.         SELECT CASE mode%
  94.         CASE 1, 7, 13
  95.             xMax% = 319
  96.             yMax% = 199
  97.         CASE 2, 8
  98.             xMax% = 639
  99.             yMax% = 199
  100.         CASE 9, 10
  101.             xMax% = 639
  102.             yMax% = 349
  103.         CASE 11, 12
  104.             xMax% = 639
  105.             yMax% = 479
  106.         CASE 3
  107.             xMax% = 719
  108.             yMax% = 347
  109.         CASE ELSE
  110.             modeFlag% = FALSE
  111.         END SELECT
  112.     LOOP UNTIL modeFlag% = TRUE
  113.   
  114.   ' Ask user for the filename
  115.     fileName$ = "IMAGEARY.BAS" + SPACE$(20)
  116.     SCREEN 0
  117.     WIDTH 80
  118.     CLS
  119.     COLOR WHITE, BLACK
  120.     PRINT "Name of the file where source code will be written:"
  121.     PRINT
  122.     PRINT "Edit the default filename IMAGEARY.BAS ";
  123.     PRINT "if desired, and then press Enter ..."
  124.     PRINT
  125.     PRINT SPACE$(12);
  126.     COLOR YELLOW, BLUE
  127.     EditLine fileName$, exitCode%
  128.     COLOR WHITE, BLACK
  129.   
  130.   ' Try to read in previous contents of the file
  131.     ON ERROR GOTO FileError
  132.     OPEN fileName$ FOR INPUT AS #1
  133.     ON ERROR GOTO 0
  134.     DO UNTIL EOF(1)
  135.         LINE INPUT #1, t$
  136.         IF INSTR(t$, "(DRAW$)") THEN
  137.             t$ = MID$(t$, INSTR(t$, CHR$(34)) + 1)
  138.             t$ = LEFT$(t$, INSTR(t$, CHR$(34)) - 1)
  139.             a$ = a$ + t$
  140.         END IF
  141.     LOOP
  142.     CLOSE #1
  143.   
  144.   ' Main loop
  145.     DO
  146.       
  147.       ' Prepare for DRAW string editing by the user
  148.         SCREEN 0
  149.         WIDTH 80
  150.         CLS
  151.         editFlag% = FALSE
  152.  
  153.       ' Display useful information
  154.         PRINT "OBJECT - Screen mode"; mode%
  155.         PRINT
  156.         PRINT "Edit the DRAW string workspace; then press"
  157.         PRINT "the Esc key to try out your creation..."
  158.         PRINT
  159.         PRINT , "                Cn      Color"
  160.         PRINT , " H   U   E      Mx,y    Move absolute"
  161.         PRINT , "   \ | /        M+|-x,y Move relative"
  162.         PRINT , " L -   - R      An      Angle (1=90,2=180...)"
  163.         PRINT , "   / | \        TAn     Turn angle (-360 to 360)"
  164.         PRINT , " G   D   F      Sn      Scale factor"
  165.         PRINT , "                Pc,b    Paint (color, border)"
  166.         PRINT "(These commands are described in detail in the ";
  167.         PRINT "Microsoft QuickBASIC Language Reference)"
  168.      
  169.       ' Input DRAW string via EditBox subprogram
  170.         COLOR GREEN + BRIGHT, BLUE
  171.         DrawBox 15, 1, 24, 80
  172.         COLOR YELLOW, BLUE
  173.         EditBox a$, 15, 1, 24, 80
  174.       
  175.       ' Try out the DRAW string
  176.         SCREEN mode%
  177.         drawErrorFlag% = FALSE
  178.         ON ERROR GOTO DrawError
  179.         DRAW a$
  180.         ON ERROR GOTO 0
  181.       
  182.       ' Give user idea of what to do
  183.         LOCATE 1, 1
  184.         PRINT "<S>ave, <Esc> to edit, or <Q>uit"
  185.       
  186.       ' Get next valid keystroke
  187.         DO UNTIL editFlag% OR drawErrorFlag% OR quitFlag%
  188.           
  189.           ' Grab key code
  190.             keyNumber% = KeyCode%
  191.           
  192.           ' Process the keystroke
  193.             SELECT CASE keyNumber%
  194.               
  195.             CASE ESC
  196.                 editFlag% = TRUE
  197.               
  198.             CASE QKEYLC, QKEYUC
  199.                 quitFlag% = TRUE
  200.               
  201.             CASE SKEYLC, SKEYUC
  202.                 SaveObject mode%, xMax%, yMax%, fileName$, a$
  203.               
  204.             CASE ELSE
  205.             END SELECT
  206.           
  207.         LOOP
  208.       
  209.     LOOP UNTIL quitFlag%
  210.   
  211.   ' All done
  212.     CLS
  213.     SCREEN 0
  214.     WIDTH 80
  215.     END
  216.   
  217. FileError:
  218.   ' Create the new file
  219.     OPEN fileName$ FOR OUTPUT AS #1
  220.     CLOSE #1
  221.     OPEN fileName$ FOR INPUT AS #1
  222.     RESUME NEXT
  223.   
  224. DrawError:
  225.     drawErrorFlag% = TRUE
  226.     SCREEN 0
  227.     CLS
  228.     PRINT "Your DRAW string caused an error"
  229.     PRINT
  230.     PRINT "Press any key to continue"
  231.     DO
  232.     LOOP UNTIL INKEY$ <> ""
  233.     RESUME NEXT
  234.   
  235. ArrayError:
  236.     okayFlag% = FALSE
  237.     RESUME NEXT
  238.  
  239.   ' ************************************************
  240.   ' **  Name:          SaveObject                 **
  241.   ' **  Type:          Subprogram                 **
  242.   ' **  Module:        OBJECT.BAS                 **
  243.   ' **  Language:      Microsoft QuickBASIC 4.00  **
  244.   ' ************************************************
  245.   '
  246.   ' Creates source code file for creating graphics mode
  247.   ' objects for efficient "PUT" graphics.
  248.   '
  249.   ' EXAMPLE OF USE:   SaveObject mode%, xMax%, yMax%, fileName$, a$
  250.   ' PARAMETERS:       mode%      Graphics mode
  251.   '                   xMax%      Maximum X screen coordinate for given
  252.   '                              graphics mode
  253.   '                   yMax%      Maximum Y screen coordinate for given
  254.   '                              graphics mode
  255.   '                   fileName$  Name of source code file to edit and/or
  256.   '                              create
  257.   '                   a$         The DRAW string that creates the object
  258.   '                              initially
  259.   ' VARIABLES:        okayFlag%  Shared flag used to determine array size
  260.   '                   size%      Array sizing
  261.   '                   edge%      Array for efficiently finding edges of object
  262.   '                   stepSize%  Scanning step for search for object edges
  263.   '                   yTop%      Y coordinate at top edge of object
  264.   '                   yBot%      Y coordinate at bottom edge of object
  265.   '                   y1%        Starting edge search Y coordinate
  266.   '                   y2%        Ending edge search Y coordinate
  267.   '                   i%         Looping index
  268.   '                   xLeft%     X coordinate at left edge of object
  269.   '                   xRight%    X coordinate at right edge of object
  270.   '                   x1%        Starting edge search X coordinate
  271.   '                   x2%        Ending edge search X coordinate
  272.   '                   object%()  Array to hold GET object from screen
  273.   '                   objName$   Name of object, derived from filename
  274.   '                   ndx%       Index to any special characters in objName$
  275.   '                   ary$       Name of array, derived from filename
  276.   '                   d$         Works string for building lines for file
  277.   ' MODULE LEVEL
  278.   '   DECLARATIONS: DECLARE FUNCTION SaveObject (mode%, xMax%, yMax%,
  279.   '                                              fileName$, a$)
  280.   '
  281.     SUB SaveObject (mode%, xMax%, yMax%, fileName$, a$) STATIC
  282.       
  283.       ' Shared error trap variable
  284.         SHARED okayFlag%
  285.       
  286.       ' Select the right array size for the mode
  287.         SELECT CASE mode%
  288.         CASE 1, 2
  289.             size% = 93
  290.         CASE 7, 8
  291.             size% = 367
  292.         CASE 9
  293.             size% = 667
  294.         CASE 10
  295.             size% = 334
  296.         CASE 11
  297.             size% = 233
  298.         CASE 12
  299.             size% = 927
  300.         CASE 13
  301.             size% = 161
  302.         CASE ELSE
  303.         END SELECT
  304.       
  305.       ' Build the array space
  306.         DIM edge%(size%)
  307.       
  308.       ' Scan to find top and bottom edges of the object
  309.         stepSize% = 32
  310.         yTop% = yMax%
  311.         yBot% = 0
  312.         y1% = 17
  313.         y2% = yMax%
  314.         DO
  315.             FOR y% = y1% TO y2% STEP stepSize%
  316.                 IF y% < yTop% OR y% > yBot% THEN
  317.                     GET (0, y%)-(xMax%, y%), edge%
  318.                     LINE (0, y%)-(xMax%, y%)
  319.                     FOR i% = 2 TO size%
  320.                         IF edge%(i%) THEN
  321.                             IF y% < yTop% THEN
  322.                                 yTop% = y%
  323.                             END IF
  324.                             IF y% > yBot% THEN
  325.                                 yBot% = y%
  326.                             END IF
  327.                             i% = size%
  328.                         END IF
  329.                     NEXT i%
  330.                     PUT (0, y%), edge%, PSET
  331.                 END IF
  332.             NEXT y%
  333.             IF yTop% <= yBot% THEN
  334.                 y1% = yTop% - stepSize% * 2
  335.                 y2% = yBot% + stepSize% * 2
  336.                 IF y1% < 17 THEN
  337.                     y1% = 17
  338.                 END IF
  339.                 IF y2% > yMax% THEN
  340.                     y2% = yMax%
  341.                 END IF
  342.             END IF
  343.             stepSize% = stepSize% \ 2
  344.         LOOP UNTIL stepSize% = 0
  345.       
  346.       ' Scan to find left and right edges of the object
  347.         stepSize% = 32
  348.         xLeft% = xMax%
  349.         xRight% = 0
  350.         x1% = 0
  351.         x2% = xMax%
  352.         DO
  353.             FOR x% = x1% TO x2% STEP stepSize%
  354.                 IF x% < xLeft% OR x% > xRight% THEN
  355.                     GET (x%, yTop%)-(x%, yBot%), edge%
  356.                     LINE (x%, yTop%)-(x%, yBot%)
  357.                     FOR i% = 2 TO size%
  358.                         IF edge%(i%) THEN
  359.                             IF x% < xLeft% THEN
  360.                                 xLeft% = x%
  361.                             END IF
  362.                             IF x% > xRight% THEN
  363.                                 xRight% = x%
  364.                             END IF
  365.                             i% = size%
  366.                         END IF
  367.                     NEXT i%
  368.                     PUT (x%, yTop%), edge%, PSET
  369.                 END IF
  370.             NEXT x%
  371.             IF xLeft% <= xRight% THEN
  372.                 x1% = xLeft% - stepSize% * 2
  373.                 x2% = xRight% + stepSize% * 2
  374.                 IF x1% < 0 THEN
  375.                     x1% = 0
  376.                 END IF
  377.                 IF x2% > xMax% THEN
  378.                     x2% = xMax%
  379.                 END IF
  380.             END IF
  381.             stepSize% = stepSize% \ 2
  382.         LOOP UNTIL stepSize% = 0
  383.       
  384.       ' Draw border around the object
  385.         LINE (xLeft% - 1, yTop% - 1)-(xRight% + 1, yBot% + 1), , B
  386.       
  387.       ' Build the right size integer array
  388.         stepSize% = 256
  389.         size% = 3
  390.         DO
  391.             DO
  392.                 IF size% < 3 THEN
  393.                     size% = 3
  394.                 END IF
  395.                 REDIM object%(size%)
  396.                 okayFlag% = TRUE
  397.                 ON ERROR GOTO ArrayError
  398.                 GET (xLeft%, yTop%)-(xRight%, yBot%), object%
  399.                 ON ERROR GOTO 0
  400.                 IF okayFlag% = FALSE THEN
  401.                     size% = size% + stepSize%
  402.                 ELSE
  403.                     IF stepSize% > 1 THEN
  404.                         size% = size% - stepSize%
  405.                     END IF
  406.                 END IF
  407.             LOOP UNTIL okayFlag%
  408.             stepSize% = stepSize% \ 2
  409.         LOOP UNTIL stepSize% = 0
  410.       
  411.       ' Make the name of the object
  412.         objName$ = LTRIM$(RTRIM$(fileName$)) + "."
  413.         ndx% = INSTR(objName$, "\")
  414.         DO WHILE ndx%
  415.             objName$ = MID$(objName$, ndx% + 1)
  416.             ndx% = INSTR(objName$, "\")
  417.         LOOP
  418.         ndx% = INSTR(objName$, ":")
  419.         DO WHILE ndx%
  420.             objName$ = MID$(objName$, ndx% + 1)
  421.             ndx% = INSTR(objName$, ":")
  422.         LOOP
  423.         ndx% = INSTR(objName$, ".")
  424.         objName$ = LCASE$(LEFT$(objName$, ndx% - 1))
  425.         IF objName$ = "" THEN
  426.             objName$ = "xxxxxx"
  427.         END IF
  428.       
  429.       ' Make array name
  430.         ary$ = objName$ + "%("
  431.       
  432.       ' Open the file for the new source lines
  433.         OPEN fileName$ FOR OUTPUT AS #1
  434.       
  435.       ' Print the lines
  436.         PRINT #1, " "
  437.         PRINT #1, "  ' " + objName$
  438.         FOR i% = 1 TO LEN(a$) STEP 50
  439.             PRINT #1, "  ' (DRAW$) "; CHR$(34);
  440.             PRINT #1, MID$(a$, i%, 50); CHR$(34)
  441.         NEXT i%
  442.         PRINT #1, "    DIM " + ary$; "0 TO";
  443.         PRINT #1, STR$(size%) + ")"
  444.         PRINT #1, "    FOR i% = 0 TO"; size%
  445.         PRINT #1, "        READ h$"
  446.         PRINT #1, "        " + ary$ + "i%) = VAL(";
  447.         PRINT #1, CHR$(34) + "&H" + CHR$(34);
  448.         PRINT #1, " + h$)"
  449.         PRINT #1, "    NEXT i%"
  450.         FOR i% = 0 TO size%
  451.             IF d$ = "" THEN
  452.                 d$ = "    DATA "
  453.             ELSE
  454.                 d$ = d$ + ","
  455.             END IF
  456.             d$ = d$ + HEX$(object%(i%))
  457.             IF LEN(d$) > 60 OR i% = size% THEN
  458.                 PRINT #1, d$
  459.                 d$ = ""
  460.             END IF
  461.         NEXT i%
  462.         PRINT #1, " "
  463.       
  464.       ' Close the file
  465.         CLOSE
  466.       
  467.       ' Erase the border around the object
  468.         LINE (xLeft% - 1, yTop% - 1)-(xRight% + 1, yBot% + 1), 0, B
  469.       
  470.     END SUB
  471.  
  472.