home *** CD-ROM | disk | FTP | other *** search
- REM @(#)CADKEY SOLIDS block.cdl 2.2 10/31/88
- REM Program to draw a block entity
- array vmat[9]
-
- :block
- REM Get the X-Y plane. CUR-SYS option means choose the current system X-Y
- REM plane (view or world, depending on the view/world switch setting).
- REM DEFINE option lets the user define the X-Y plane.
-
- getmenu "Choose X-Y plane option",\
- "VIEW",\
- "WORLD",\
- "DEFINE"
-
- if (@key <= -2)
- exit
- if (@key == 3)
- goto define
-
- REM set view/world switch
-
- vwwld = 1
- if (abs(@key) == 1)
- vwwld = 0
-
- REM vnum defines the view number to use for drawing the VLINEs.
- REM vnum = 0 means current view, vnum = 10 means user defined view.
- vnum = 0
-
- :view
- REM This portion is executed when CUR-SYS (default) option is selected.
- REM CORNERS option lets the user pick two corners in the current system
- REM X-Y plane and then enter displacement (positive or negative) along the
- REM Z-axis to define the block.
-
- getmenu "Choose block defining option",\
- "CORNERS",\
- "VALUES"
-
- on (@key + 3) goto exit, block, corners, , corners, values
-
- :corners
- REM To define the corners, each GETPOS command is followed by a check on the
- REM vwwld variable (view/world setting stored previously) to determine which
- REM set of coordinates should be read.
-
- def = 1
-
- :view_1
- getpos "Indicate 1st corner", def
- if (@key == -1)
- goto view_1
- if (vwwld == 1)
- goto wld_1st
- x1 = @xview
- y1 = @yview
- z1 = @zview
- goto check1
-
- :wld_1st
- x1 = @xworld
- y1 = @yworld
- z1 = @zworld
-
- :check1
- if (@key == -3)
- exit
- if (@key == -2)
- goto view
- def = @key
-
- :view_2
- getpos "Indicate 2nd corner", def
- if (@key == -1)
- goto view_2
- if (vwwld == 1)
- goto wld_2nd
- xc = @xview - x1
- yc = @yview - y1
- zc = @zview - z1
- goto check2
-
- :wld_2nd
- REM xc, yc and zc store the distances between the points in current x, y and
- REM z directions. The corners must define a rectangle in the X-Y plane
- REM (xc > 0, yc > 0) and have to be in the plane selected (zc = 0)
-
- xc = @xworld - x1
- yc = @yworld - y1
- zc = @zworld - z1
-
- :check2
- if (@key == -3)
- exit
- if (@key == -2)
- goto view_1
- def = @key
- if ((abs(xc) > 0.00001) && \
- (abs(yc) > 0.00001) && \
- (abs(zc) < 0.00001))
- goto length
- pause "Invalid point ... (Press RETURN)"
- goto view_2
-
- :length
- REM The defined rectangle in the X-Y plane will be projected along the Z-axis
- REM in either positive or negative direction by a non-zero displacement.
-
- getflt "Displacement along Z axis (%f) =>", 1.00, zc
- if (@key == -3)
- exit
- if (@key == -2)
- goto view_2
-
- REM After the two points and the displacement have been entered, set the
- REM return flag to compute the return area and goto the block drawing part.
-
- if (abs(zc) > 0.00001)
- ret_flag = 0
- if (abs(zc) > 0.00001)
- goto calc
-
- pause "Invalid displacement ... (Press RETURN)"
- goto length
-
- :values
- REM If the VALUES option is selected after CUR-SYS, three positive lengths
- REM have to be entered (along current x, y, and z axes), and the origin
- REM point for the block indicated
-
- def = 1
- getflt "Length along X axis (%f) =>", 1.00, xc
- if (@key == -3)
- exit
- if (@key == -2)
- goto view
- if (abs(xc) > 0.00001)
- goto y_val
- pause "Invalid length ... (Press RETURN)"
- goto values
-
- :y_val
- getflt "Length along Y axis (%f) =>", 1.00, yc
- if (@key == -3)
- exit
- if (@key == -2)
- goto values
- if (abs(yc) > 0.00001)
- goto z_val
- pause "Invalid length ... (Press RETURN)"
- goto y_val
-
- :z_val
- getflt "Length along Z axis (%f) =>", 1.00, zc
- if (@key == -3)
- exit
- if (@key == -2)
- goto y_val
- if (abs(zc) > 0.00001)
- goto insert
- pause "Invalid length ... (Press RETURN)"
- goto z_val
-
- :insert
- REM View or World origin point coordinates are read, depending on vwwld.
- getpos "Indicate corner point", def
- if (@key == -1)
- goto insert
- if (vwwld == 1)
- goto wld_inst
- x1 = @xview
- y1 = @yview
- z1 = @zview
- goto chk_inst
-
- :wld_inst
- x1 = @xworld
- y1 = @yworld
- z1 = @zworld
-
- :chk_inst
- if (@key == -3)
- exit
- if (@key == -2)
- goto z_val
- def = @key
-
- REM After the three lengths and the origin point have been entered, set the
- REM return flag to compute the return area and goto the block drawing part.
-
- ret_flag = 1
- goto calc
-
- :define
- REM If the DEFINE option has been selected from the BLOCK menu, the user will
- REM define the X-Y plane. The block will be drawn in this new view, so the
- REM vwwld switch is set to 0 (view) and vnum to 10 (user defined).
-
- vwwld = 0
- vnum = 10
-
- :plane
- getplane "Indicate X-Y plane for the block", 1
-
- if (@key == -3)
- exit
- if (@key == -2)
- goto block
-
- getmenu "Accept plane (YES) ? ",\
- "NO",\
- "YES"
-
- on (@key+3) goto exit, plane, , , plane, plmat
-
- :plmat
- REM origin point for the trinomen.
-
- call xfvw, @xmax-0.75/@scale, @ymax-0.75/@scale, 0.0, x1, y1, z1
-
- REM define the view matrix and the view with ref no. 10
-
- vmat[0] = @fltdat[1]
- vmat[1] = @fltdat[2]
- vmat[2] = @fltdat[3]
- vmat[3] = @fltdat[4]
- vmat[4] = @fltdat[5]
- vmat[5] = @fltdat[6]
- vmat[6] = @fltdat[7]
- vmat[7] = @fltdat[8]
- vmat[8] = @fltdat[9]
-
- :def_view
- view 10, vmat[0], vmat[1], vmat[2],\
- vmat[3], vmat[4], vmat[5],\
- vmat[6], vmat[7], vmat[8]
-
- :trinomen
- mode draw
- getview @view
- REM Draw line of magnitude 1/2 in X unit vector direction with "X" at its end
-
- call dotprod, vmat[0], vmat[3], vmat[6], @fltdat[2], @fltdat[5], @fltdat[8], r
- if (r < 0)
- ltype = 2
- if (r >= 0)
- ltype = 1
-
- dx = vmat[0]/(2*@scale)
- dy = vmat[3]/(2*@scale)
- dz = vmat[6]/(2*@scale)
- line x1, y1, z1, x1+dx, y1+dy, z1+dz, 15, , ltype
- arr = 0.15/@scale
- call xfwv, x1+1.3*dx, y1+1.3*dy, z1+1.3*dz, xc, yc, zc
- text xc, yc, "x", 0, arr, 0.7, 0, 15
-
- REM Draw line of magnitude 1/2 in Y unit vector direction with "Y" at its end
-
- call dotprod, vmat[1], vmat[4], vmat[7], @fltdat[2], @fltdat[5], @fltdat[8], r
- if (r < 0)
- ltype = 2
- if (r >= 0)
- ltype = 1
-
- dx = vmat[1]/(2*@scale)
- dy = vmat[4]/(2*@scale)
- dz = vmat[7]/(2*@scale)
- line x1, y1, z1, x1+dx, y1+dy, z1+dz, 15, , ltype
- call xfwv, x1+1.3*dx, y1+1.3*dy, z1+1.3*dz, xc, yc, zc
- text xc, yc, "y", 0, arr, 0.7, 0, 15
-
- REM Draw line of magnitude 1/2 in Z unit vector direction with "Z" at its end
-
- call dotprod, vmat[2], vmat[5], vmat[8], @fltdat[2], @fltdat[5], @fltdat[8], r
- if (r < 0)
- ltype = 2
- if (r >= 0)
- ltype = 1
-
- dx = vmat[2]/(2*@scale)
- dy = vmat[5]/(2*@scale)
- dz = vmat[8]/(2*@scale)
- line x1, y1, z1, x1+dx, y1+dy, z1+dz, 15, , ltype
- call xfwv, x1+1.3*dx, y1+1.3*dy, z1+1.3*dz, xc, yc, zc
- text xc, yc, "z", 0, arr, 0.7, 0, 15
- mode normal
-
- :def2
- REM After the user has defined the X-Y plane, the same options as CUR_SYS
- REM are available specify the block parameter
-
- getmenu "Choose block defining option",\
- "CORNERS",\
- "VALUES"
-
- on (@key + 3) goto exit, block, corners2, , corners2, values2
-
- :corners2
- REM CORNERS option lets the user pick two corners in the user defined
- REM X-Y plane and then enter displacement (positive or negative) along the
- REM Z-axis to define the block.
- def = 1
-
- :pos_1
- getpos "Indicate 1st corner", def
- if (@key == -1)
- goto pos_1
- call xfmwv, vmat, @xworld, @yworld, @zworld, x1, y1, z1
-
- if (@key == -3)
- exit
- if (@key == -2)
- goto def2
- def = @key
-
- :pos_2
- getpos "Indicate 2nd corner", def
- if (@key == -1)
- goto pos_2
- call xfmwv, vmat, @xworld, @yworld, @zworld, x2, y2, z2
-
- if (@key == -3)
- exit
- if (@key == -2)
- goto pos_1
-
- def = @key
-
- REM xc, yc and zc store the distances between the points in user defined x,
- REM y and z directions. The corners must define a rectangle in the X-Y plane
- REM (xc > 0, yc > 0) and have to be in the plane selected (zc = 0)
-
- xc = x2 - x1
- yc = y2 - y1
- zc = z2 - z1
-
- if ((abs(xc) > 0.00001) && \
- (abs(yc) > 0.00001) && \
- (abs(zc) < 0.00001))
- goto length2
- pause "Invalid point ... (Press RETURN)"
- goto pos_2
-
- :length2
- REM The defined rectangle in the X-Y plane will be projected along the Z-axis
- REM in either positive or negative direction by a non-zero displacement.
-
- getflt "Displacement along Z axis (%f) =>", 1.00, zc
- if (@key == -3)
- exit
- if (@key == -2)
- goto pos_2
-
- REM After the two points and the displacement have been entered, set the
- REM return flag to compute the return area and goto the block drawing part.
-
- if (abs(zc) > 0.00001)
- ret_flag = 2
- if (abs(zc) > 0.00001)
- goto calc
- pause "Invalid displacement ... (Press RETURN)"
- goto length2
-
- :values2
- REM If the VALUES option is selected after DEFINE, three positive lengths
- REM have to be entered (along user defined x, y, and z axes), and the origin
- REM point for the block
-
- def = 1
- getflt "Length along X axis (%f) =>", 1.00, xc
- if (@key == -3)
- exit
- if (@key == -2)
- goto def2
- if (abs(xc) > 0.00001)
- goto y_val2
- pause "Invalid length ... (Press RETURN)"
- goto values2
-
- :y_val2
- getflt "Length along Y axis (%f) =>", 1.00, yc
- if (@key == -3)
- exit
- if (@key == -2)
- goto values2
- if (abs(yc) > 0.00001)
- goto z_val2
- pause "Invalid length ... (Press RETURN)"
- goto y_val2
-
- :z_val2
- getflt "Length along Z axis (%f) =>", 1.00, zc
- if (@key == -3)
- exit
- if (@key == -2)
- goto y_val2
- if (abs(zc) > 0.00001)
- goto insert2
- pause "Invalid length ... (Press RETURN)"
- goto z_val2
-
- :insert2
- REM Defined View origin point coordinates are read by tranformation.
-
- getpos "Indicate corner point", def
- if (@key == -1)
- goto insert2
- call xfmwv, vmat, @xworld, @yworld, @zworld, x1, y1, z1
-
- if (@key == -3)
- exit
- if (@key == -2)
- goto z_val2
-
- REM After the three lengths and the origin point have been entered, set the
- REM return flag to compute the return area and goto the block drawing part.
-
- ret_flag = 3
-
- :calc
- REM Increment the total group number and check for overflow
-
- ptot = ptot + 1
- IF (ptot > 128)
- goto overflow
-
- REM Name and make the group.
-
- sprint $grp, "_blk%d", ptot
- group $grp, ptot, 1
-
- if (vwwld == 0)
- goto draw_view
-
- :draw_wld
- line x1, y1, z1, x1+xc, y1, z1,,,, ptot, 1
- line x1+xc, y1, z1, x1+xc, y1+yc, z1,,,, ptot, 1
- line x1+xc, y1+yc, z1, x1, y1+yc, z1,,,, ptot, 1
- line x1, y1+yc, z1, x1, y1, z1,,,, ptot, 1
-
- line x1, y1, z1, x1, y1, z1+zc,,,, ptot, 1
- line x1+xc, y1, z1, x1+xc, y1, z1+zc,,,, ptot, 1
- line x1+xc, y1+yc, z1, x1+xc, y1+yc, z1+zc,,,, ptot, 1
- line x1, y1+yc, z1, x1, y1+yc, z1+zc,,,, ptot, 1
-
- line x1, y1, z1+zc, x1+xc, y1, z1+zc,,,, ptot, 1
- line x1+xc, y1, z1+zc, x1+xc, y1+yc, z1+zc,,,, ptot, 1
- line x1+xc, y1+yc, z1+zc, x1, y1+yc, z1+zc,,,, ptot, 1
- line x1, y1+yc, z1+zc, x1, y1, z1+zc,,,, ptot, 1
- goto return
-
- :draw_view
- vline x1, y1, z1, x1+xc, y1, z1, vnum,,,, ptot, 1
- vline x1+xc, y1, z1, x1+xc, y1+yc, z1, vnum,,,, ptot, 1
- vline x1+xc, y1+yc, z1, x1, y1+yc, z1, vnum,,,, ptot, 1
- vline x1, y1+yc, z1, x1, y1, z1, vnum,,,, ptot, 1
-
- vline x1, y1, z1, x1, y1, z1+zc, vnum,,,, ptot, 1
- vline x1+xc, y1, z1, x1+xc, y1, z1+zc, vnum,,,, ptot, 1
- vline x1+xc, y1+yc, z1, x1+xc, y1+yc, z1+zc, vnum,,,, ptot, 1
- vline x1, y1+yc, z1, x1, y1+yc, z1+zc, vnum,,,, ptot, 1
-
- vline x1, y1, z1+zc, x1+xc, y1, z1+zc, vnum,,,, ptot, 1
- vline x1+xc, y1, z1+zc, x1+xc, y1+yc, z1+zc, vnum,,,, ptot, 1
- vline x1+xc, y1+yc, z1+zc, x1, y1+yc, z1+zc, vnum,,,, ptot, 1
- vline x1, y1+yc, z1+zc, x1, y1, z1+zc, vnum,,,, ptot, 1
-
- :return
-
- REM After drawing the block, return to the appropriate part
-
- on (ret_flag) goto view_1, insert, pos_1, insert2
-
- :exit
- exit
-
- :overflow
- pause "Group overflow ... Abnormal termination"
- abort
-
-