CAD设计论坛

 找回密码
 立即注册
论坛新手常用操作帮助系统等待验证的用户请看获取社区币方法的说明新注册会员必读(必修)
查看: 1937|回复: 7

[求助] 自己加载的小程序为什么用不起?

[复制链接]
发表于 2007-3-12 15:01 | 显示全部楼层 |阅读模式
最近在用2007,发现自己添加的个别小应用程序出现了问题,无法使用,具体操作过程如下:
  s6 m: Y) L& f1 h$ F “工具”----“加载应用程序”-+--“添加CLOUD.LSP和UNDO.LSP”# D( \7 ]  B5 t! a; R
提示:加载成功
7 j! z6 g1 M+ k! Q1 @8 ]& E然后使用CLOUD命令,6 e7 V' X7 d2 A! a  n- m
提示“命令: cloud ; 错误: *error* 函数中出错参数类型错误: stringp nil”
% O: J6 D0 r8 e  L  q请高手指点一下,这个是怎么回事?应该怎么改正?
# p8 @0 W: N7 x/ a: ?这个小程序我在低版本也在使用,程序应该没有问题的,为何这里用不起了?
发表于 2007-3-12 15:09 | 显示全部楼层
你确认原来可以在2007版本下使用?将你的程序帖一下看看
 楼主| 发表于 2007-3-13 08:30 | 显示全部楼层

cloud.lsp

;;;  CLOUD.LSP made by xx
$ B0 p. r/ s2 a7 d) r; N+ B;;;
3 d: H  L3 p7 F/ Z8 i4 k; T;;;  DESCRIPTION
! l0 v& n: b* s8 G" O" R2 E3 \;;;     Draw cloud and you can specify the globals variables listed below9 a# c* D+ I! n
;;;     to decide the characters of cloud
$ u+ k8 v: N, s;;;5 ^4 K  t4 d5 S4 u- _% h
;;;  DATE: 02/18/98; 07/03/98; 07/06/98; 10/19/98; 12/11/98
9 T& ]7 K- Q5 I3 c) o;;;6 B7 u+ X, ]! _
;;;  HISTORY: Change CLOUD.000 in order to solve the problem of speed
* z$ s* H+ V1 U+ x4 _;;;           Change CLOUD.001 to use CLAYER to perform the same function
/ M9 ]3 y9 F* `2 i% Q/ P' P;;;           Use the common error routine UNDO.LSP to optimize this program
9 D6 S3 x' y$ y. ?+ U% V# _  H;;;           Use the layer routine LAYCHK to solve the problem of LOCKING & FREEZE
! [# N$ D- q7 V% ?! e$ {;----------------------------------------------------------------------------: O2 |, K' j1 t! |" R; k
;  GLOBALS:* o  R8 D% M0 q8 l- [/ S# y
;     cloud_layer -- layer of cloud
) d* x% Z- Q% T5 |;     cloud_scale -- scale of cloud
. ?& m9 e3 f, ~: M;     number_rev  -- revision number( _, ]/ w. O  r: ~/ C0 w( K
;----------------------------------------------------------------------------
7 {/ ^) `9 h. g1 J1 b0 e(defun cloud (/ locked temp first_point next_point relative_point- |* R/ t6 ^7 u; G+ A$ |$ _
               last_point point_tri point_ref corner_1st corner_2nd length_tri
+ R' [; H0 t5 k! z; A  g6 l  H, Y0 s               length_cloud angle_l_to_f dir_tri repeat_count
% O) I' h% j  }: `               table_cloud )+ w% q( c- b4 b
        (if (and (not undo_init) (equal -1 (load "undo.lsp" -1)))
/ H2 s: T8 s' f% e          (progn (alert "Error:\n   Cannot find UNDO.LSP.") (exit))
! N  d# x) X) U2 f: Y  b' b* [3 Z  r        );if* m- W6 ?$ \+ e3 ~9 L
        (err_init '("CMDECHO" "OSMODE" "ORTHOMODE" "PLINEWID" "BLIPMODE"/ k- H$ \. d$ q* x2 Y0 h4 w# r
                    "TEXTSTYLE" "CECOLOR" "CELTYPE" "CLAYER" "REGENMODE") T '(setq l_s nil))6 `/ a' C* h; x. \8 q) E! ^3 u8 J
        (var_set '(("CMDECHO" 0) ("PLINEWID" 0) ("OSMODE" 0) ("BLIPMODE" 0)
; C5 o2 V/ g* p                   ("CECOLOR" "3") ("CELTYPE" "CONTINUOUS") ("REGENMODE" 0)))
% g/ s: D& u' \7 L8 r8 S
. \' l2 K  d" S' z, b4 s        (if (not (numberp cloud_scale))
7 u+ P' W+ k6 g: |/ a( B6 I            (setq cloud_scale (getvar "LTSCALE"))
$ ^( t. `1 h- ^$ n0 N# Y. u; E, N        ); if
/ C. g+ K0 j7 i: _3 b' I        (if (not cloud_layer)
' h0 f9 s8 N+ M, a3 b            (setq cloud_layer (getvar "CLAYER"))9 z; Y' F) F7 S- a
        ); if
9 y" n) g# D+ W! m9 y        (prompt (strcat "\n默认图层:\"" cloud_layer "\"。" ))
, c$ Q  v8 M6 g' Z        (prompt (strcat "\n默认比例:\"" (rtos cloud_scale 2 2) "\"。"))6 A9 S' ~3 k( ~- U4 }; T: n% k
        (if (= (cdar (laychk cloud_layer)) "No")
) [0 {! E' ^3 |3 J* ?          (progn5 n8 {1 X: q. ?+ {
            (laychk (setq cloud_layer (getvar "CLAYER")))
: D% o7 o: i) v( z" E            (prompt (strcat "\n图层被设为当前层:\"" cloud_layer "\"。" ))
. J9 [2 v& d# r          ); progn+ h& H" o& C* q$ G: @! M
        ); if0 P5 [% E! x3 D3 [
; O2 h: |. B  N) A. Q
        (while (/= (type first_point) 'LIST): V; G; E9 P+ D4 I( n( m
          (initget 1 "Layer Scale")9 _* Y- w0 J7 o5 W
          (setq first_point (getpoint "\n图层 L / 比例 S / <起始点>:") last_point first_point)2 H$ }4 d2 C' {
          (if (= "Scale" first_point)      
" g9 S4 y0 F1 F( q7 }            (progn. i7 {% Z+ Z3 E. s
              (setq temp cloud_scale)
8 L! X: {/ Q1 k$ @# s              (initget 6)
. q; x' w  j( K) |0 V$ s" g; ?              (cond
8 ~) A9 n1 c4 h/ X4 }( r                ( (not (setq cloud_scale (getreal (strcat "\n请输入云彩的比例:<"& p- G- }; E5 T) v. y
                                                          (rtos cloud_scale 2 2)
" `# s: K3 z: s* |                                                          "> "))))
& P3 ^! X! j7 ~% f3 B" u                  (setq cloud_scale temp) ): m, d( I6 C3 E" d+ |; v
              ); cond
2 B" d2 M. s$ b3 o4 n1 B/ Q, h( h            ); progn$ }+ S( W! D4 k6 }: z% z
          ); if
& U4 R; _2 J4 \% E          (if (= "Layer" first_point)
# G' \$ Q- m/ g            (progn
! s, \  ?# E2 G9 X              (setq temp cloud_layer)
7 t. m. R! d, m+ p$ ^              (cond$ S, m+ L6 x2 v5 A" ^
                ( (= (setq cloud_layer (getstring (strcat "\n请选择图层:<"- Y, V0 X* k9 {5 ]" X# F4 B7 b
                                                          cloud_layer "> "))). Y! @. c2 f' O% ]$ C* ?  F
                     "")2 O& E$ M3 x* V, ?
                  (setq cloud_layer temp)
2 J8 b8 L- n: V6 B                )! K! s/ P  R% Q& c+ [: R
              ); cond, A% Q1 {- F0 B$ |, e  ~- B8 S
              (if (= (cdar (laychk cloud_layer )) "No")
. B' B1 }7 s1 r& Y6 T8 W                (progn
. z+ j8 R; I1 t. F. y+ |/ Q: b3 Z. H                  (setq cloud_layer temp)
! S* w+ b2 O$ G- n$ |                  (prompt (strcat "\n图层仍为:\"" cloud_layer "\"." ))0 g" h; Y$ t) r! j% j+ S" K& [7 _# @
                ); progn! D8 _. k1 U- C
              ); if$ n" p! D# e* }: L2 \
            ); progn# k! L( u7 y& k. p* W# j
          ); if9 x2 k- _3 p! g* N# j4 o
        ); while
2 g) B6 @) l) N  {# `5 W0 k        (setvar "CLAYER" cloud_layer)' _& B3 }- P; m( a) N

7 k5 g. q1 j* N9 s4 K        (if (>= ( getvar "LUNITS") 3)3 r- \( ?! I( M8 i( B
          (setq length_cloud (* 0.25 cloud_scale)
: e& t: S6 t& d                length_tri (* 0.3125 (getvar "LTSCALE")))
2 A$ n) \7 ^8 `6 m          (setq length_cloud (* 0.3406890 cloud_scale)
+ k$ w4 D2 e6 \# X                length_tri (* 0.438366 (getvar "LTSCALE")))* B: {! F* G7 D0 X
        )$ }6 C$ f: T6 ^$ v; @/ ~
        (command "_.PLINE" first_point "A")5 D* @8 c% v9 X$ X
        (while (not (equal next_point first_point 0.000001))! h% y8 f( p6 Q
          (initget  "Close")
( v1 f, k% @! U# t5 O  d! F          (setq next_point (getpoint last_point "\n关闭 C / <下一点>:"))  r: _6 F6 r, A* _# N
        (while (and (not (listp next_point)) (/= next_point "Close"))
7 O. e! J( h2 w: J          (initget  "Close")
% T9 ?+ X2 M& d* y, H( }: r. X          (setq next_point (getpoint last_point "\n关闭 C / <下一点>:"))
% Q% n$ M  c4 x        )
+ m, m, r7 W+ @6 a6 j& X5 B* \5 h          (if (= "Close" next_point) (setq next_point first_point))' a# \5 f/ t! J' m! N" I+ A
          (setq angle_l_to_f (angtos (angle last_point next_point))
) |5 ~1 k# b/ A  j                relative_point (strcat "@" (rtos length_cloud) "<" angle_l_to_f))
0 H7 A  D- G8 K, f% s9 P          (if (< (setq repeat_count (/ (distance last_point next_point) length_cloud)) 1)
6 M2 v6 q$ {  s- s             (setq repeat_count 0)
3 E2 [2 R* ~9 D) p; U             (if (>= (- repeat_count (fix repeat_count)) 0.5)
  e' n0 D7 h  L8 j               (setq repeat_count (fix repeat_count))
5 m7 F& t4 e1 Y; J               (setq repeat_count (1- (fix repeat_count)))
0 M6 ?3 j  [# U* L) y- {  P6 G! U0 W             ); if 9 P/ Q! \- D9 x: X
          ); if! `# L3 Z& Z; E7 L
          (repeat repeat_count (command "A" "-100" relative_point))
5 o2 v) X; I3 }' H1 P. C6 [. A          (command "A" "-100" next_point)
& I8 k' v8 I2 ?9 G6 G, K          (setq last_point next_point)( @, r& B0 ~3 A+ p& h! _9 i" A
        )( p% Z( L$ U7 ]2 p
        (command "")+ y: h7 B, d8 w3 {
        (if (= (type number_rev) 'INT)
* q, L0 {& V, c8 Y& w* p           (prompt (strcat "\n默认的版本号:\"" (itoa number_rev) "\"。"))
& T) M$ E3 `5 N4 H           (progn
' p7 @, ^' K! \" a/ w* W3 K             (initget 5)
0 B* Q1 e. n; e6 c6 V             (setq number_rev (getint "\n请输入版本号:"))
' {% V; u! y2 }5 }# K, ?           )+ {3 M8 _9 f4 n5 M
        ); if
# d& l: t3 b0 C# ?5 ~: _3 q        (setvar "OSMODE" 512)/ l2 N5 W& t# j  g& ?/ \  s
        (while (/= (type point_tri) 'LIST)
# @, i5 h6 _) ]2 v9 X          (initget "Number"). b/ j" Y! I7 a
          (setq point_tri (getpoint "\n版本号 N / <选择弧上一点>:"))3 _# D. M4 |# P, a3 k  M
          (if (= point_tri "Number"), C( x+ p) [2 _" {
              (progn2 w9 A: }/ z) z1 g! ^
                (initget 4)
9 a5 F8 `+ m8 x6 G- j* ]                (cond& a  O, F) P' l; l6 S/ o+ o3 e8 e
                  ( (not (setq temp number_rev
3 m% k& n' L6 R. c7 w/ K1 p- v- c                               number_rev
( [! ?  c+ g. l5 X; l8 }                      (getint (strcat "\n请输入版本号:<" (itoa number_rev) "> "))))
7 e' W% R! s2 a* W. z: r$ Y8 T; H0 A                    (setq number_rev temp)8 ~2 X* b; T) u+ c: u
                  )5 u7 Z7 f& L; Y3 {. `% a! ]9 Q' Z
                ); cond# t8 y. ^0 S% l1 ]  {
              ); progn
2 N+ A6 ~4 ]8 W8 O: Y          ); if7 w8 a- t+ r+ w5 r' M3 N
        ); while: T  Y1 @9 k) D  k; `& H
        (setvar "OSMODE" 0)6 O% U* B8 T8 a3 l) e9 Y0 `
        (initget 1)
" X- g+ I* d9 {0 \& s* ]# l- t        (setq point_ref (getpoint point_tri "\n请选择方向:"))5 r4 M' a9 ]2 E8 I4 x
        (setq dir_tri (if (> (cos (angle point_ref point_tri)) 0) -1 1))! V1 N" S  K5 w/ z
        (setq corner_1st (polar point_tri
- Y1 W& c9 U* u: x) h; H* `1 b                                (+ 1.570796327 (* -1.570796327 dir_tri))- n* y8 f: X5 j6 X& W9 G" i1 {3 {7 ~
                                length_tri, M) D( i! W: c
                         ): p3 N! _; I0 g! H
        )
- J$ y2 a( O  j! O        (setq corner_2nd (polar point_tri( f/ L( k. l% h. I9 b
                                (+ 1.570796327 (* -0.523598775 dir_tri))9 L; O& y. w7 m0 u
                                length_tri, q4 @' i% c% J' x( L" ^
                         ); A$ |' l- J3 W) j
        )2 \% M! Y+ V4 P" x
        (setvar "CECOLOR" "2")
+ d! }" n# _" A9 r* w3 r        (command "_.pline" point_tri corner_1st corner_2nd "c" )
. B- m$ m2 Z. p! J, ]0 c! w2 P5 B+ [        (setq textstyle (getvar "TEXTSTYLE"))1 P3 \& [9 g8 B! Q( I) V% c6 {
        (command "_.style" "stdtext" "simplex" "0" "1.0" "0" "n" "n" "n")
. b/ b& M) ~3 i% E- R% i        (setvar "CECOLOR" "7")
# n8 r+ u7 l3 u9 d, h        (command "_.text" "j" "mc" (polar corner_2nd 4.71238898 (* 0.576 length_tri))
7 T" u8 s+ S7 I7 F9 w                  (* 0.4 length_tri) "0" (itoa number_rev))7 \4 c) C( k/ \: G% v
        (layres)
& c/ I/ ~4 h0 i! f; [        (err_restore)( j" A- f* \& v8 ?% {
        (princ)
; ^3 i; _" W, l); defun cloud& j9 H+ L0 `2 T2 m8 q
; T) ]1 n& U1 Q$ Z1 O
(defun c:cloud () (cloud))
: D. w/ ~& Z% K9 Y" U2 n' f(defun c:cd () (cloud))
 楼主| 发表于 2007-3-13 08:33 | 显示全部楼层

undo.lsp

;;;  UNDO.LSP made by piggy" b, a3 O3 g: N8 J
;;;6 H$ ?0 `7 c9 u3 e% ~- K
;;;  DESCRIPTION
  {! B0 D8 n5 b4 E- q;;;     These are general error routines which can be called by
0 a+ n7 ?$ q- h* }& T) `% @;;;     other routine. See AutoCAD 14 ac_bonus.lsp for reference( r7 E# b: A$ g) N% a, h! q
;;;
( ~/ N2 [1 Y9 G2 \* U9 B;;;  SUBROUTINE INCLUDED IN THIS FILE
+ \: v5 n6 G8 }; q+ M;;;     UNDO_INIT
8 D1 u, F) X: @0 q;;;     UNDO_RESTORE7 [% U' X% }: B9 _( y
;;;     VAR_SAVE
2 W+ y2 i& N, u' m: o4 c$ q+ S;;;     VAR_SET  
, `3 y* D$ y6 P: q" b# X* ]# T;;;     VAR_RESTORE
! ]5 S5 f) f: C# d+ h6 @" I+ }7 };;;     ERR_INIT 0 Y: @9 B) U: D! d( N! V  D
;;;     ERR_MAIN
/ c4 C) j% }# q5 p6 P;;;     ERR_RESTORE
" c+ J8 f; N. _# c;;;2 n9 x1 |/ d5 H( g8 t  G3 l
;;;  DATE: 10/17/98; 03/31/99
) r4 t) v) o# q# j  K9 J;;;5 h1 N' `" F' `: y5 }; Z  ?
;;;  HISTORY: 9 u9 h; _0 ^0 H5 Y
;;;    Add routine of mod_att
& Y2 m1 S2 p4 |8 E+ I;;;
8 z6 Q( v" i& x% U8 T;;;  USING METHOD
& z8 K5 g( g' c9 {- S;;;    ERR_INIT:
* f+ y' j/ U% Q% m, V- T* o( `;;;      This routine initialzes the error handler. It should be called as:
: M* z& E# _3 x, M: k;;;
/ o) z0 F7 k* y$ G2 o8 Z' X4 Y/ P, C;;;      (if (and (not undo_init)
. z3 }# m9 K' l;;;               (equal -1 (load "undo.lsp"  -1)) 3 v7 s8 t/ J+ F- n
;;;          );and
7 Y& C5 O- ~8 ]! _;;;        (progn (alert "Error:\n     Cannot find UNDO.LSP.")(exit))! p" [1 \. ^& v! m3 N
;;;      ); if; d& F2 l. \: X  u1 J. c# Z/ B1 m
;;;/ c3 Q0 C& y* b6 b
;;;     ARGUMENTS:
, K( ~& y. R! d9 n  T2 V;;;       err_init Takes 3 arguments. " ]9 Z- G# O! a. u4 y
;;;     1. - The first element of the argument:7 p- B) l, a9 _3 u
;;;          This is a list of system variables paired with
* r' M$ w6 j+ T; D0 G6 r# c;;;          the values you want to set them to. i.e. '("CMDECHO" "ATTMODE")
# l+ A2 b7 r. p8 v; b' I;;;     2. - The second element is a flag; S2 I/ o1 {3 t% N$ ~& O
;;;          If it is true, then in the event of an error 7 ?1 _* ^$ w0 J2 L6 V3 U
;;;          the custom *error* routine will utilize UNDO
1 j+ F0 E4 }* p4 e3 ^  n% c;;;          as a cleanup mechanism.: I0 B. `% b( D. k* v' Y
;;;     3. - The third element is a quoted function call.) ^# y% F& y7 X# L5 M
;;;          You pass a quoted call to the function you1 H: l1 y& @) _  H
;;;          wish to execute at the end of nomal routine if an error occurs.
# M* G3 T( n8 }' t. u;;;          i.e. '(my_special_stuff arg1 arg2...)
% n( t9 h! `1 ]' X' _7 r;;;          Use this arg if you want to do some specialized clean up 4 w& M8 G2 D* `2 p$ s( o
;;;          things that are not already done by the standard bonus_error $ H$ K- P$ A' a$ ]- i5 @* I
;;;          function.8 ^9 |' x$ M7 }9 r
;;;
8 X# m- b( \& M4 b' m) _# J0 v;;;    ERR_MAIN: Body of error routine
$ e- O: k! N& j9 C* a: i" i;;;
0 j5 \, ]" e- O/ ^' m) q1 j7 w/ ?;;;    ERR_RESTORE: This routine should be called at the end of command to
5 c! Z* X" M% P7 @8 p;;;           restore the VARIABLES, UNDO & *error*.
) S2 J  H( l% j+ t2 _+ ^# X;;;3 R# q5 i0 D, B$ f3 V/ W
;;;    UNDO_INIT: Initialize the UNDO status
) [7 z$ L, i- A; [$ R3 W& E;;;
! |4 W1 E2 D3 ~. f0 j;;;    UNDO_RESTORE: Restore the UNDO status# F* r" ~' R; y; W
;;;
$ h7 X: p+ S8 V& g;;;    VAR_SAVE: Save the variables. the argument is like '("CMDECHO" "ATTMODE"). ^$ h4 I, N% U; ^
;;;# G3 ]+ Q. T$ Y( p  S; b
;;;    UNDO_set: Set the variables. the argument is like
! V* h) f/ W* ~, c( F;;;              '(("CMDECHO" 0) ( "ATTMODE" 0)), p  c3 T$ x- W- N2 F; i0 ?
;;;3 G: z/ ]( ^! b, l
;;;    UNDO_RESTORE: Restore the variables2 b2 c$ q, {3 ~; g& j; P
;;;# Z& }0 Q1 k  a$ e! X' P7 S
;----------------------------------------------------------------------------6 b9 G& T: E4 g! z2 ?- N4 `
;  GLOBALS:
; C4 T3 G5 u" K. P# q) J- z4 g) |; `;     old_undoctl -- old status of UNDO (voided by UNDO_RESTORE)3 M8 a, w% Q6 U+ B  R3 S* p/ B
;     m_lst       -- list of variables (voided by VAR_RESTORE)
8 ~% r5 K$ s9 _5 L0 X  I;     err_alive   -- indicate error routine is active (voided by ERR_MAIN or
  I+ o3 z9 e. o' \1 ?( U- N* u; c! T7 h;                    ERR_OLD)1 |5 T0 r* o0 ?3 M) B* m$ t  \! V
;     err_old     -- old handler of *error* (voided by ERR_MAIN or ERR_OLD)+ q  p% N+ D  Y  ^5 c
;----------------------------------------------------------------------------" S; s2 W6 |1 T, I5 B3 ^
5 Z( l! b+ i9 ]5 w/ h/ ^
;----------------------------------------------------------------------------" K4 p) Z# S/ h5 T3 g% P5 D
; Modify attributes according to entity name, attribute name, dxf_item1 \( g# n& X: y
;----------------------------------------------------------------------------
) ]: m1 Q2 d5 k. |(defun mod_att(ent id dxf_item)        . |* G* M6 Z2 a1 {; w
  (while (and (/= "ATTRIB" (car (entgetf '(0) ent))) (/= id (car (entgetf '(2) ent))))
% M( W8 U* ?/ e& P- {! h* t    (setq ent (entnext ent))
: b, w* R) Z6 z( D& V5 R  ); while  
- a3 J( t4 `0 p4 {+ z5 G$ o  ((lambda (x)+ t/ m% d0 P% h$ D" M/ B8 T0 H
        (mapcar '(lambda (y)1 n) w! G7 x% a" Z" n- T
                   (setq x (subst y (assoc (car y) x) x))5 e$ v: z0 i, q0 n
                 ); lambda' |0 t1 \4 k. U0 a( J
                 dxf_item: N  M' n2 ~; H) W
        ); mapcar
/ @5 l6 {8 z8 |: R# }4 ~: ?     (entmod x)
4 r* b9 K2 X  G& H7 T     (entupd ent)
" g1 B! d- r( e/ ~: }2 x" O# a: m; e   ); lambda
  d- G6 |7 I- ]% @: M   (entget ent)
! S0 ~' T6 a" H0 v )+ J( v8 p; C' d" V# `
); defun mod_att. K, @: ?8 j9 W7 R! s
0 d: g/ I; T1 `+ M' a0 H2 k. Q# c
;----------------------------------------------------------------------------. w+ j8 P2 |  {; f' S( ^
; Check layer status, return a association list which contains layer information1 J1 Z/ c2 O. z; d& E
;----------------------------------------------------------------------------
& D/ r5 [6 \7 L, i" n( H(defun laychk(lay / l_sta)
* I4 I, q2 ^' G1 ?  ( (lambda (x)
: K2 o' d" O' K      (if (not l_s)
6 A! K6 r% V3 b5 c1 A6 t" t          (setq l_s (list (cons x (logand 5 (cdr (assoc 70 (tblsearch "LAYER" x)))))))
2 f* z! F, Z# w      ); if
. ^* L' g, f3 o    ); lambda
( a! Y/ q$ X% i& S) S4 p: T    (getvar "CLAYER"): ]; n$ r) O! x
  )  v7 B: [5 ?4 B& |7 ~
  (if (not (tblsearch "LAYER" lay)), h5 |0 V0 Y# M$ X. j3 @
    (progn  ! ~1 `# \  Q3 O. b
      (initget "Yes No")
1 d. v6 `- P- w4 a/ {* `7 C# e      (if (= (setq l_sta (getkword "\n图层不存在,是否建立该图层 ?\(Y/N\)")) "Yes")5 Y& Z' r# C1 M. D  m: C" l* |- L
        (progn
2 w8 |- M. j5 L" p& ]          (command "_.layer" "n" lay "")/ l1 O$ q' z  h( ~1 }/ K3 k
          (setq l_sta 0); ]6 Z9 {' h% Y' i
        ); progn
( l, r1 K2 ~) l      ); if
, W0 |) Q' q6 p: k$ b: q    ); progn
1 _4 @) A! A$ b! W0 s  S! {9 {    (progn# ~& J2 s8 J" S3 o/ a
      (setq l_sta (logand 5 (cdr (assoc 70 (tblsearch "LAYER" lay)))))! V8 G7 N! b5 G
      (if (= 1 (logand 1 l_sta))  {/ x$ U" j( F- P+ M5 M. k1 T) {% \
          (progn
# I0 S0 Y/ `0 A- s& T1 b            (initget "Yes No")2 c+ f5 E$ z- |! w8 u& ?8 }
            (if (= (getkword "\n该图层被冻结,是否解冻 ?\(Y/N\)") "Yes")
% ?7 H9 ]* `  Y& k; P              (command "_.layer" "t" lay "")
! a- P) O" j& V6 w              (setq l_sta "No")
5 l) J# K* k# D3 l* o9 b             ); if
, C" F- [" r9 h, I1 d          ); progn
. b0 Y9 e" T" }/ ~+ x# R8 I  Q      ); if
- ^7 o7 b6 _; U. A! I$ K      (if (numberp l_sta)
+ K/ a/ s) ?) @( ]* E        (if (= 4 (logand 4 l_sta)) (command "_.layer" "u" lay "")); if; c: |+ d6 u: [1 F7 m* m7 n( R
      ); if
6 @. j$ |9 A* `5 u2 n; D    ); progn
7 P( U) P% [9 ~/ p1 r: {  ); if6 S5 m) P4 y4 L
  ( (lambda (x)5 x3 U# N% V5 _: R+ `
      (cond 7 X/ x: P0 n  Q/ y3 ?
        ( (not x)
  V' J1 p- I  p% @          (setq l_s (cons (cons lay l_sta) l_s))
3 F: M- a) ?, P: L3 Y        )
/ A4 p3 g+ m3 ]" u        ( (= "No" (cdr x))
: K" i( \6 {( k3 P          (setq l_s (subst (cons lay l_sta) x l_s))
2 h: h7 I8 K: V" f4 `1 j& ?        )* M) }) S  _, }5 c3 r0 Y  K! X
        ( T l_s)
. @  g& ]3 R4 z3 B      ); cond) t+ p% z! }+ h( H% f/ r
     ); lambda( q1 V7 h1 s5 [( A; s
     (assoc lay l_s)
. {6 u- W7 ^) l* b) Z  )) \# x/ t- s, T

2 r" X$ l; x- Q. q- a( V); defun chklay
- D' H7 w  Z- c5 E' X% }) p7 W# G; @, I, p
;----------------------------------------------------------------------------" c. Q* V1 W6 r4 {
; Restore layer status according to association list l_s
, E. Q2 @) o7 o" w;----------------------------------------------------------------------------# j2 `, s) z+ k( S% w9 v- N
(defun layres()4 I% h/ E8 D0 N4 B
  (setvar "CLAYER" (car (last l_s)))* t6 j0 T1 z7 C/ s5 K0 |$ o$ o5 j
  (repeat (length l_s)% r) ]0 M  |$ ~+ e# b$ u
    ( (lambda(x)  
  y7 L& U  C; G7 s8 H        (if (numberp (cdr x))+ S+ ?1 O) Q% H! ~; n
          (progn   U" N, A( [/ Z( ]# F4 D9 M% g9 u" F
            (if (= 4 (logand 4 (cdr x)))
3 n+ P& o% E1 @; k$ n  L! }3 Q              (command "_.layer" "lo" (car x) "")3 l0 J- I- s& `: m$ L
            ); if2 s" S3 g+ x$ i* z- ]
            (if (= 1 (logand 1 (cdr x)))( [1 ]6 f4 |& i+ m) _
              (command "_.layer" "f" (car x) "")
- k. a( I* N" w9 P' I' N4 X            ); if
4 s' u' t# Q6 _1 ^2 c9 v, S: @( b% |          ); progn
# ]8 |' e1 m6 O- b5 Y/ T, d' F$ ]       ); if  
. ^# |4 d, }; K& k: w: S9 y: [      ); lambda
1 c- @; N. K+ j, `0 P, }      (car l_s)1 f5 f& O$ t7 c0 Q1 ^
    )
" v6 f, K/ |9 p1 x7 {4 C    (setq l_s (cdr l_s))
2 `% G( y3 M1 Y9 E9 S$ p- T& u# V  ); repeat
. s, B7 [- I( @: b4 t$ `; _+ O); layres! Z& f4 _; X% d( \& x3 E% ]

0 _* L+ D" m+ {* p$ T1 C% T;----------------------------------------------------------------------------! W7 \2 D! c2 C. U5 s3 P: Q
; Get DXF codes4 V$ {5 q- c2 x# V1 o3 ~" D9 e
;----------------------------------------------------------------------------( q- N! o# j6 x4 F: k
(defun entgetf (index ent)- X7 L6 r# I) Z8 L0 V* U% H! K: E
  ((lambda (e). Q" @/ O7 d! E6 i
      (mapcar '(lambda (x)
# v8 v! p6 @) m7 f3 Y                 (cdr (assoc x e))' }+ p4 B4 u( {+ D: z6 Z
               ); lambda8 h( k$ t; E; E+ [4 \! p. p
               index) ; internal lambda function
+ Y- {. Z# c+ Q* q0 y    ); lambda
( `; @& ?, r% d1 I$ f    (entget ent)
/ n# f6 C) T( R. ]0 i  )
: ~5 g! R7 j6 x' |  V) ~' Q); defun entgetf
& ~/ v* p' m* ~! y
: s9 W# E- E" Y+ F;----------------------------------------------------------------------------
. q5 U" C# w% y) Z# p, m, M( p$ Y* H; Save UNDO status6 ?0 a2 [0 B+ P
;----------------------------------------------------------------------------- J, s5 c. H: _& e1 K4 ~+ R* G1 r
(defun undo_init (/ cmdecho undo_ctl)   
5 b9 a& b3 ~) Y3 U5 L  (setq cmdecho (getvar "CMDECHO") undo_ctl (getvar "UNDOCTL")) ; Save the value5 j1 T3 S  [5 y8 Q# I( }
  (setvar "CMDECHO" 0)- R+ V0 X. F6 q% i" Q% N

7 r2 f+ e- F% q; {& p  (if (equal 0 undo_ctl)                ; Make sure undo is fully enable- T% b  S7 U& {! p/ x2 z
    (command "_.undo" "_all")
4 T! }2 i$ h  j1 v* n    (command "_.undo" "_control" "_all")  p1 v- G9 Z( P6 L
  )
8 E" S2 l. R- }+ A) t) t* c* s( E3 A# q3 g9 P* ]" Z7 V
  (if (equal 4 (logand 4 (getvar "UNDOCTL")))   ; Ensure undo auto is off1 T! ~! j5 J1 \9 ^& F0 F
    (command "_.undo" "_auto" "_off")
: R6 |* z) Q+ P0 Z. l# j  )  R% E; W, w9 r+ b3 v- ]
) y8 E9 a4 t3 I- _+ ]0 q& z: [) j6 G
  (while (equal 8 (logand 8 (getvar "UNDOCTL"))) ; Place an end mark here! g" W, e* j5 F8 ~" P
    (command "_.undo" "_end")  O: Z& E* R2 ~9 ]% Y
  )
4 |- q1 e- [' T0 a
1 y+ l! @# \& j, W/ R  (while (not (equal 8 (logand 8 (getvar "UNDOCTL"))))
0 Y/ H5 ]4 v  Y+ K4 [    (command "_.undo" "_group")
, I( [+ a# k- E8 O  )0 t% H+ l9 r2 B9 G$ B

; B/ `& B$ k6 A% i2 S- p, V  (setvar "CMDECHO" cmdecho)
8 ?9 ^: A+ V  R2 r  undo_ctl+ V3 {; ~7 x# I3 G7 D  F1 f* d9 |
); defun undo_init
% K1 x* U5 E+ _6 q! c5 O$ R4 X  V$ I2 e' i
;----------------------------------------------------------------------------
! X" A0 r  U2 z% C4 w0 `6 g6 s; Restore UNDO status( l9 `( A& _: ?- w6 x, w7 Q3 `5 x
;----------------------------------------------------------------------------1 e  e' `. @3 s& c+ j+ V9 ?
(defun undo_restore (/ cmdecho)+ v* X+ T( q# ~$ v& F- d  ~
  (if old_undoctl8 f/ z# F4 J8 p3 Z- E$ S) m
    (progn
' e$ X0 K( b5 R& b. z& h      (setq cmdecho (getvar "CMDECHO"))
0 ~+ Y' F) e# Q8 \3 o* H& L/ d      (setvar "CMDECHO" 0)
+ h+ m. q8 b0 B) g3 _8 Q! b
# G/ m3 T2 Y* d' y) f      (if (equal 0 (getvar "UNDOCTL")) (command "_.undo" "_all"))
& K( c0 X! C9 z8 o; M& H8 M      (while (equal 8 (logand 8 (getvar "UNDOCTL")))
8 d7 u- f& u9 i0 E        (command "_.undo" "_end")0 u6 v6 n- K+ x  l3 `
      ); while
7 J! u% k3 N2 V# y* f) v5 D2 Z  i1 O2 f$ n6 K. Q6 c

, b  a9 |) s" y      (if (not (equal old_undoctl (getvar "UNDOCTL")))
/ h$ G$ a% y! d/ V  }7 V  e& G        (progn
* p6 _  X! |9 ?4 o: q  O          (cond0 G4 s" I! \9 x2 C
            ((equal 0 old_undoctl)
/ V# O6 {0 u2 [4 U0 \              (command "_.undo" "_control" "_none")
* U; `. x$ W; i            )" F! _8 l6 ?/ M3 C3 h
            ((equal 2 (logand 2 old_undoctl))
4 O, h( D8 r, D6 h9 Q4 D6 S% Z              (command "_.undo" "_control" "_one")
. D4 ?# A. h3 A9 |. X: v            )
) x, H! N+ {  I) n# Q0 d. V& Z          )
1 L& h/ ~" |' G          (if (equal 4 (logand 4 old_undoctl))) ?# f7 s: R6 x9 w% M  I3 C
              (command "_.undo" "_auto" "_on")
9 r# P" \# f# {$ Y# B& A+ i5 @3 h              (command "_.undo" "_auto" "_off")7 g/ ~" t% D# b  s
          )
4 w/ g) Y# w# g. Z% i) U/ k        )* d; u# I# \6 F- ~/ Y  V
      )4 P9 I1 j* Y7 ?4 w' n. q  p7 b
      (setq old_undoctl nil)" ]4 a9 G) C5 N
      (setvar "CMDECHO" cmdecho)+ E8 B. X# c+ Y
    )
' I* E' t8 B- c$ L8 [  )6 {5 A- C+ w, i/ E7 S+ A
); defun undo_restore) Z5 K4 c- d0 v" |% K) X& [( \
% F0 }; q+ V, r( B
;----------------------------------------------------------------------------+ \$ F2 n) Z0 o4 U
; Save variables4 a$ h# r5 E; {2 G* D
;----------------------------------------------------------------------------
' |8 e/ C( d8 L! v) W( S) w(defun var_save (a)& ~" B" H# g; j( _  h
  (setq m_lst '())
, r  B" O9 H+ N  (repeat (length a)6 |" N0 K4 _; R9 }
    (setq m_lst (append m_lst (list (list (car a) (getvar (car a))))))) K5 t; v& o+ p- h( D% i) L
    (setq a (cdr a))/ N, y, a" G$ B; V" K  E
  )) @6 ^2 _) M; ?# A% n7 N
); defun var_save% x0 b6 ^; z9 y5 q; e, M
! \4 ~1 Y+ M$ _% w5 ~2 ^( V7 z
;----------------------------------------------------------------------------- _% o3 L' A- ?7 a' t1 y$ ]4 O+ v* {
; Set variables
, F# f7 @9 k0 L& ^7 v- k" R;----------------------------------------------------------------------------
) ^- M: y9 X) f0 ]6 n* I' ~(defun var_set (m_lst)
" [6 m/ C! E# B) O4 W+ p! o5 A  (repeat (length m_lst)" i; L8 P8 H9 V( R
    (setvar (caar m_lst) (cadar m_lst))
( ?( e7 s5 e* B/ Z, I; K    (setq m_lst (cdr m_lst))  J( L' w* Z( y! O
  )
. I/ |( ^) u% V8 m2 |) n); defun var_set& m* c% m7 h6 p) O: n5 N6 s9 \
0 X) S$ H1 K9 D
;----------------------------------------------------------------------------( D1 \9 J3 Y: e7 z, |" Y: I
; Restore variables' m+ r- M" e2 b3 P* C
;----------------------------------------------------------------------------
: B  J8 g* y( g- s  I7 ^' {7 h(defun var_restore ()7 b0 b  j2 P. T$ c7 z0 ~6 N. s1 Y
  (repeat (length m_lst)
% G) P( M2 z4 c/ s    (setvar (caar m_lst) (cadar m_lst)); f0 p9 x+ F; L$ v! V1 q+ l0 ~
    (setq m_lst (cdr m_lst))9 V7 s( k& R9 x- T% m8 B$ p
  )
. Q2 ]5 b! R5 G3 E/ P); defun var_restore
7 O1 e1 a( I' ~/ b1 |, v
# f# ~3 @. o- U' F$ _;----------------------------------------------------------------------------0 @5 |7 A  l* [+ B$ u
; Initialize routine / u2 r' r! ~) U- U  Z7 S, u
;----------------------------------------------------------------------------
1 W% ]/ ?! G0 F# v, [(defun err_init(e_lst u_enable add_fun)
8 Q% C" ~7 I8 x$ y  (if err_alive (err_restore))          ; To avoid nested call
+ y- K$ n8 x. U" a4 j* n5 T- d  (setq err_alive T)7 \. W3 I/ T5 f. h
  (var_save e_lst)                      ; Save the modes8 o- V, n0 ?: `- l; @8 T4 Z
  (if u_enable (setq old_undoctl (undo_init))) ; Initialize UNDO status
2 C: ~/ t; }, l9 f2 J3 @# A  (setq err_old *error* *error* err_main) ; Save the handle of *error*) z* |: J2 Y8 d( {! i5 B9 N( C( g
  (if add_fun                           ; Add the user cleaner+ z% G, b6 ~% d  |' S
    (setq *error* (append (reverse (cdr (reverse *error*)))8 P. N: c. d( ?2 K
                          (list add_fun (last *error*))) T2 u( g/ F0 X
                  ); append
/ v/ N& b; {  {9 Q  }( v1 P* w    )# r# ]: x" P# B7 w, ?# K
  )3 C# a8 s% ^, q' }
); defun err_init
 楼主| 发表于 2007-3-13 08:34 | 显示全部楼层

undo.lsp(续)

;----------------------------------------------------------------------------
* c: I$ z; i/ a7 Y$ [; Error routine body$ m; u  r2 N; s, i5 I# g( ?* H+ F+ F
;----------------------------------------------------------------------------
& H; w# L+ i1 \* V" _(defun err_main( msg / )                ; Body of error routine
) R6 f/ d9 A/ Z! p' L$ ?: z  (if (/= msg "Function cancelled")     ;If an error (such as CTRL-C) occurs
6 M) u9 @/ D  O9 d; C! j' Q0 _$ l    (princ (strcat "\nError: " s))      ;while this command is active...& Q& y/ r3 P5 m
  )2 N! E2 M# _6 s# H
  (while (not (equal (getvar "CMDNAMES") "")) (command nil)) ; Get out of any active command- r/ D% l9 v% m, f% D* q
# I' k7 `6 M* ~; c6 y
  (if old_undoctl) }0 y1 v( f% Y: I: C' F
    (progn( v$ l  L6 l9 x: w# u- r3 A
      (while (not (wcmatch (getvar "CMDNAMES") "*UNDO*")) ; See
9 D& [  f. Y6 {+ J        (command "_.undo")              ; if it's in UNOD command+ d) z. j) Y* O5 ]# i0 m( S, \4 d- K
      )' u. Z4 P" P' w+ B' G
      (command "_end")
: R9 n, T% i) O, G- s0 f* R      (command "_.undo" "1")
+ U1 A6 y" X9 o- N0 G( ~# {      (while (not (equal (getvar "CMDNAMES") "")) (command nil))! b7 v! f# G, O6 v, c7 s0 ~1 M
      (undo_restore)                    ; Restore the status of UNDO
. X$ h) k8 \4 E$ G# v+ P' ]    )
( p8 t( u+ p6 @, q  ): k* Q* }, S$ k* M( A) f% x
6 y& J1 \% E; q  T' T+ C3 v
  (var_restore)                         ; Restore the variables
: X, Q4 v$ v3 j; g( K) z  (if err_old (setq *error* err_old err_old nil)) ; Restore the handle of error
  D' g- i% W) G' `3 X: w  ^7 L( l" s  (setq err_alive nil)! d" {9 _6 j. v! ~
  (princ)
) h* R* u5 W; ?4 i! X); defun err_main3 U5 T- Q. Z5 P* W5 W/ k; D
# I7 g& Q8 G8 o
;----------------------------------------------------------------------------
# t0 \  E0 p  P: N* g; Restore error status
) j2 P8 A& j0 M9 P- ^% q( y;----------------------------------------------------------------------------
" k8 O% g  C! @7 ^) V; x(defun err_restore()
( Q0 s6 ]1 v7 ]5 D( K% n( L) |4 T* ?1 @  (undo_restore)                        ; Restore the status of UNDO8 {3 Q3 }. P" \
  (var_restore)                         ; Restore the variables
% o8 B4 }* Q$ T( s$ _1 c2 Q  (if err_old (setq *error* err_old err_old nil)) ; Restore the handle of error4 Z* |6 O& Q9 _, Z
  (setq err_alive nil)
% T( |2 ?5 M' H5 ^* f- |  (princ)7 I# p! j* E! ~! r  W( R& |" N3 G
); defun err_restore
 楼主| 发表于 2007-3-13 08:40 | 显示全部楼层
以上两个程序同时加载,在R14版本下面是可以使用的,这点我确定;但是在07是否可以使用,我现在也不确定了,因为这个命令在我用07的时候用的不多,请问版主怎么修改一下可以在07里面使用呢?谢谢指点!
发表于 2007-3-13 08:49 | 显示全部楼层
敢问楼主是否懂得CAD外挂小程序的编程?日常工作中确实有些不太方便的烦琐的操作,我想学习一下,请楼主赐教~~
 楼主| 发表于 2007-3-13 12:23 | 显示全部楼层
楼上的朋友,不好意思哈,我也是菜鸟,不然我就可以自己修改程序了
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关于|免责|隐私|版权|广告|联系|手机版|CAD设计论坛

GMT+8, 2024-11-17 23:51

CAD设计论坛,为工程师增加动力。

© 2005-2024 askcad.com. All rights reserved.

快速回复 返回顶部 返回列表