home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 13 / 13.iso / p / p030 / 2.ddi / 3DARRAY.LSP < prev    next >
Encoding:
Lisp/Scheme  |  1988-09-08  |  6.0 KB  |  212 lines

  1. ;*************************************************************************
  2. ;                             3DARRAY.LSP
  3.  
  4. ;       By Simon Jones   Autodesk Ltd,London   March 1987
  5.  
  6. ;  Functions included:
  7. ;       1) Rectangular ARRAYS (rows, columns & levels)
  8. ;       2) Circular ARRAYS around any axis
  9.  
  10. ;  All are loaded by: (load "3darray")
  11.  
  12. ;  And run by:
  13. ;       Command: 3darray
  14. ;                Select objects:
  15. ;                Rectangular or Polar array (R/P): (select type of array)
  16.  
  17. ;  Expanded the circular arrays to revolve around any user
  18. ;  specified axis - June 1988
  19. ;***********************************************************************
  20.  
  21. ;******************************** MODES ********************************
  22.  
  23. ; System variable save
  24.  
  25. (defun MODES (a)
  26.    (setq MLST '())
  27.    (repeat (length a)
  28.       (setq MLST (append MLST (list (list (car a) (getvar (car a))))))
  29.       (setq a (cdr a)))
  30. )
  31.  
  32. ;******************************** MODER ********************************
  33.  
  34. ; System variable restore
  35.  
  36. (defun MODER ()
  37.    (repeat (length MLST)
  38.       (setvar (caar MLST) (cadar MLST))
  39.       (setq MLST (cdr MLST))
  40.    )
  41. )
  42.  
  43. ;******************************** 3DAERR *******************************
  44.  
  45. ; Standard error function
  46.  
  47. (defun 3DAERR (st)                    ; If an error (such as CTRL-C) occurs
  48.                                       ; while this command is active...
  49.   (if (/= st "Function cancelled")
  50.       (princ (strcat "\nError: " s))
  51.   )
  52.   (command "UNDO" "E")
  53.   (moder)                             ; Restore system variables
  54.   (setq *error* olderr)               ; Restore old *error* handler
  55.   (princ)
  56. )
  57.  
  58. ;******************************* P-ARRAY *******************************
  59.  
  60. ; Perform polar (circular) array around any axis
  61.  
  62. (defun P-ARRAY (/ n af yn cen c ra)
  63.  
  64.    ; Define number of items in array
  65.    (setq n 0)
  66.    (while (<= n 1)
  67.           (initget (+ 1 2 4))
  68.           (setq n (getint "\nNumber of items: "))
  69.           (if (= n 1)
  70.               (prompt "\nNumber of items must be greater than 1")
  71.           )
  72.    )
  73.  
  74.    ; Define angle to fill
  75.    (initget 2)
  76.    (setq af (getreal "\nAngle to fill <360>: "))
  77.    (if (= af nil) (setq af 360))
  78.  
  79.    ; Are objects to be rotated?
  80.    (initget "Yes No")
  81.    (setq yn (getkword "\nRotate objects as they are copied? <Y>: "))
  82.    (if (null yn)
  83.       (setq yn "Y")
  84.    )
  85.  
  86.    ; Define center point of array
  87.    (initget 17)
  88.    (setq cen (getpoint "\nCenter point of array: "))
  89.    (setq c (trans cen 1 0))
  90.  
  91.    ; Define rotational axis
  92.    (initget 17)
  93.    (setq ra (getpoint cen "\nSecond point on axis of rotation: "))
  94.    (while (equal ra cen)
  95.       (princ "\nInvalid point. Second point cannot equal center point.")
  96.       (initget 17)
  97.       (setq ra (getpoint cen "\nPlease try again: "))
  98.    )
  99.    (setvar "UCSFOLLOW" 0)
  100.    (setvar "GRIDMODE" 0)
  101.    (command "UCS" "ZAXIS" cen ra)
  102.    (setq cen (trans c 0 1))
  103.  
  104.    ; Draw polar array
  105.    (command "ARRAY" ss "" "P" cen n af yn)
  106.    (command "UCS" "p")
  107. )
  108.  
  109. ;******************************* R-ARRAY *******************************
  110.  
  111. ; Perform rectangular array
  112.  
  113. (defun R-ARRAY (/ nr nc nl flag x y z c el en ss2 e)
  114.  
  115.    ; Set array parameters
  116.    (while (or (= nr nc nl nil) (= nr nc nl 1))
  117.       (setq nr 1)
  118.       (initget (+ 2 4))
  119.       (setq nr (getint "\nNumber of rows (---) <1>: "))
  120.       (if (null nr) (setq nr 1))
  121.       (initget (+ 2 4))
  122.       (setq nc (getint "\nNumber of columns (|||) <1>: "))
  123.       (if (null nc) (setq nc 1))
  124.       (initget (+ 2 4))
  125.       (setq nl (getint "\nNumber of levels (...) <1>: "))
  126.       (if (null nl) (setq nl 1))
  127.       (if (= nr nc nl 1)
  128.          (princ "\nOne-element array, nothing to do.\nPlease try again")
  129.       )
  130.    )
  131.    (setvar "ORTHOMODE" 1)
  132.    (setvar "HIGHLIGHT" 0)
  133.    (setq flag 0)                      ; Command style flag
  134.    (cond ((/= nr 1)
  135.           (initget (+ 1 2))
  136.           (setq y (getdist "\nDistance between rows (---): "))
  137.           (setq flag 1)
  138.          )
  139.    )
  140.    (cond ((/= nc 1)
  141.           (initget (+ 1 2))
  142.           (setq x (getdist "\nDistance between columns (|||): "))
  143.           (setq flag (+ flag 2))
  144.          )
  145.    )
  146.    (cond  ((/= nl 1)
  147.            (initget (+ 1 2))
  148.            (setq z (getdist "\nDistance between levels (...): "))
  149.           )
  150.    )
  151.    (setvar "BLIPMODE" 0)
  152.  
  153.    (setq c 1)
  154.    (setq el (entlast))                ; Reference entity
  155.    (setq en (entnext el))
  156.    (while (not (null en))
  157.        (setq el en)
  158.        (setq en (entnext el))
  159.    )
  160.  
  161.    ; Copy the selected entities one level at a time
  162.    (while (< c nl)
  163.           (command "COPY" ss ""
  164.                           "0,0,0"
  165.                           (append (list 0 0) (list (* c z)))
  166.           )
  167.           (setq c (1+ c))
  168.    )
  169.  
  170.    (setq ss2 (ssadd))                 ; create a new selection set
  171.    (setq e (entnext el))              ; of all the new entities since
  172.    (while e                           ; the reference entity.
  173.        (ssadd e ss2)
  174.        (setq e (entnext e))
  175.    )
  176.  
  177.    ; Array original selection set and copied entities
  178.    (cond
  179.      ((= flag 1) (command "ARRAY" ss ss2 "" "R" nr "1" y))
  180.      ((= flag 2) (command "ARRAY" ss ss2 "" "R" "1" nc x))
  181.      ((= flag 3) (command "ARRAY" ss ss2 "" "R" nr nc y x))
  182.    )
  183. )
  184.  
  185. ;***************************** MAIN PROGRAM ****************************
  186.  
  187. (defun C:3DARRAY (/ olderr ss xx)
  188.  
  189.    (setq olderr *error*
  190.          *error* 3daerr)
  191.    (modes '("cmdecho" "blipmode" "highlight" "orthomode" 
  192.             "ucsfollow" "gridmode"))
  193.    (setvar "CMDECHO" 0)
  194.    (command "UNDO" "GROUP")
  195.    (graphscr)
  196.  
  197.    (setq ss nil)
  198.    (while  (null ss)                  ; Ensure selection of entities
  199.            (setq ss (ssget))
  200.    )
  201.  
  202.    (initget 1 "Rectangular Polar Circular")
  203.    (setq xx (getkword "\nRectangular or Polar array (R/P): "))
  204.    (cond ((eq xx "Rectangular") (r-array))
  205.          (T (p-array))
  206.    )
  207.    (command "UNDO" "E")
  208.    (moder)                            ; Restore system variables
  209.    (setq *error* olderr)              ; Restore old *error* handler
  210.    (princ)
  211. )
  212.