CAD设计论坛

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

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

[复制链接]
发表于 2007-3-12 15:01 | 显示全部楼层 |阅读模式
最近在用2007,发现自己添加的个别小应用程序出现了问题,无法使用,具体操作过程如下:; s+ ^# x5 l4 I$ t9 r: O5 j0 b
“工具”----“加载应用程序”-+--“添加CLOUD.LSP和UNDO.LSP”
$ ]! o* M3 s& g. B& ?0 G) {- F提示:加载成功
2 T! Z! r$ k$ t) O9 p( m然后使用CLOUD命令,+ t1 {/ W! ^/ n4 h: Y# m
提示“命令: cloud ; 错误: *error* 函数中出错参数类型错误: stringp nil”0 ~9 l; e( U8 r) B/ c) R
请高手指点一下,这个是怎么回事?应该怎么改正?
6 n. p* J5 W. y* C8 E' x; d3 ?# U, p  W这个小程序我在低版本也在使用,程序应该没有问题的,为何这里用不起了?
发表于 2007-3-12 15:09 | 显示全部楼层
你确认原来可以在2007版本下使用?将你的程序帖一下看看
 楼主| 发表于 2007-3-13 08:30 | 显示全部楼层

cloud.lsp

;;;  CLOUD.LSP made by xx+ x, |$ s- ~1 @  z+ k
;;;
# D' V3 V3 ~1 Z6 E; l( Z) q8 l  [;;;  DESCRIPTION
3 e# Y! w) ?3 L/ m7 ~;;;     Draw cloud and you can specify the globals variables listed below! E( [. G5 t$ b8 a$ W7 [
;;;     to decide the characters of cloud
) a- _: q$ ~) i$ H  G+ L1 `;;;
' `; h" I+ F6 Y& `  ];;;  DATE: 02/18/98; 07/03/98; 07/06/98; 10/19/98; 12/11/98
$ v1 M. {+ X# g1 T;;;# {* d2 g! M+ B9 s
;;;  HISTORY: Change CLOUD.000 in order to solve the problem of speed
/ b* H+ x1 f6 s1 f" e;;;           Change CLOUD.001 to use CLAYER to perform the same function
: F, B5 _" i) n1 j) k, s! y8 ~9 o;;;           Use the common error routine UNDO.LSP to optimize this program
3 N5 Q& K$ m5 Z) `  c;;;           Use the layer routine LAYCHK to solve the problem of LOCKING & FREEZE; `! E6 ?/ D- d% S; C
;----------------------------------------------------------------------------
# w1 G/ k7 r% L7 \5 P;  GLOBALS:
% \: r7 r7 T* @; d2 e4 D1 t! P;     cloud_layer -- layer of cloud
: h) R( f6 h$ C" r0 f;     cloud_scale -- scale of cloud! e1 t- [$ M. m6 S4 E5 N
;     number_rev  -- revision number
! X, a. z; o8 w;----------------------------------------------------------------------------
' s+ U5 m; `3 H  e(defun cloud (/ locked temp first_point next_point relative_point
7 ~  }. _  ?* d3 N, Q' C               last_point point_tri point_ref corner_1st corner_2nd length_tri
7 Z' D6 F( w; F. m5 _               length_cloud angle_l_to_f dir_tri repeat_count $ y( c4 N1 u3 z9 d
               table_cloud )4 I8 T  A; h% w* d; Q# y' I/ k: }
        (if (and (not undo_init) (equal -1 (load "undo.lsp" -1))); Z/ \1 e8 k( |( {
          (progn (alert "Error:\n   Cannot find UNDO.LSP.") (exit))
' T3 h; o( D9 E: h& I  T        );if
3 K. e9 m+ w: K9 N        (err_init '("CMDECHO" "OSMODE" "ORTHOMODE" "PLINEWID" "BLIPMODE"# C2 G- d. e: J, J2 p# y5 v: _  b
                    "TEXTSTYLE" "CECOLOR" "CELTYPE" "CLAYER" "REGENMODE") T '(setq l_s nil))
: |- R, X7 c. E6 h        (var_set '(("CMDECHO" 0) ("PLINEWID" 0) ("OSMODE" 0) ("BLIPMODE" 0)
9 R0 [0 ~: u/ J, a' v7 F- ]# n9 |                   ("CECOLOR" "3") ("CELTYPE" "CONTINUOUS") ("REGENMODE" 0)))
' ~) s6 Z$ _+ g3 @; o
/ [4 N. ^$ s- w        (if (not (numberp cloud_scale))& Y/ {% W1 V3 m
            (setq cloud_scale (getvar "LTSCALE"))- N2 A8 J, h- e2 N" v
        ); if5 M/ A  I" ]& \- f5 ?
        (if (not cloud_layer)" q$ f* k/ ^% v) s1 z# |: V8 {( p
            (setq cloud_layer (getvar "CLAYER"))8 }3 U+ j# G6 n5 m: D% i% m/ {" S
        ); if0 _+ ?) t$ V  V" k7 C) `
        (prompt (strcat "\n默认图层:\"" cloud_layer "\"。" ))
8 E& l* m8 n2 F5 J" G$ \        (prompt (strcat "\n默认比例:\"" (rtos cloud_scale 2 2) "\"。"))) D5 R) n0 ]% ]- ?* Q0 F/ t
        (if (= (cdar (laychk cloud_layer)) "No")
2 F% D5 \: j* @7 ?2 p* _4 Z/ q7 ]6 A          (progn/ U6 _. Z* ?0 ?* Y+ O: [
            (laychk (setq cloud_layer (getvar "CLAYER"))). U! _/ H! N  n- p/ s
            (prompt (strcat "\n图层被设为当前层:\"" cloud_layer "\"。" ))
+ |. h  O7 s8 ?) R% D- @# n) Q          ); progn. x, v) c' |+ e; X0 j
        ); if
$ ?+ L' `6 @0 }$ s/ l1 n( I* H% l5 d* {: _1 Y4 p& H
        (while (/= (type first_point) 'LIST)
6 z& \6 Q2 \3 V6 Y1 @  _          (initget 1 "Layer Scale")3 Y& d8 _5 N6 X4 G  M3 v$ K& a0 j& z
          (setq first_point (getpoint "\n图层 L / 比例 S / <起始点>:") last_point first_point)
/ V" H1 r/ Q- T  f% I# E' j9 d; x          (if (= "Scale" first_point)      / q: b6 x. ?, N: ]# z) g) t0 t
            (progn
% ^# y, w/ ?0 G! @              (setq temp cloud_scale)  p+ f0 {% ]0 h
              (initget 6)7 A/ H0 h8 a! G  n( v9 D& e
              (cond# g( p* f+ R+ Z/ f
                ( (not (setq cloud_scale (getreal (strcat "\n请输入云彩的比例:<"
* e* R: U, ^  h7 _% e; C; V8 M                                                          (rtos cloud_scale 2 2)
3 }6 j% L/ w; Y0 M                                                          "> "))))) ?( u# ?. }' r0 @' S. Y
                  (setq cloud_scale temp) )
+ x: t5 |9 l+ Q3 R$ m              ); cond$ s8 M5 z1 z$ o4 D. H) G9 e" |) V
            ); progn
7 e0 k$ }* L, j/ f/ R! D          ); if
+ ~0 x7 s$ s; y$ A- N          (if (= "Layer" first_point)! X) l  H. N8 }
            (progn; P& v- Y6 l( @7 S& O0 Z
              (setq temp cloud_layer). ?! ]/ k" A; y, P
              (cond
# H* v0 A: {+ n( Y0 f. L7 _  ~                ( (= (setq cloud_layer (getstring (strcat "\n请选择图层:<"/ {5 G( H3 E9 H& ^3 [0 {
                                                          cloud_layer "> ")))
( \. h* \2 Z. _5 S- l! c4 o' A                     "")
# B9 i! j( `" L- z                  (setq cloud_layer temp)
% w" S( R! X4 a5 N% v2 p" B( f                )
6 `5 f- ^, e- p: {              ); cond
; L2 v+ n( y( i9 N              (if (= (cdar (laychk cloud_layer )) "No"): R6 L3 y7 A. i0 f6 s5 ]
                (progn4 A0 s. }$ Q0 G* y6 ?; ^) Y5 {
                  (setq cloud_layer temp)  z: C& H1 u0 `( X( D3 z8 V
                  (prompt (strcat "\n图层仍为:\"" cloud_layer "\"." ))
  t. m9 R& m6 S- z- K: ~( B                ); progn
" `  e3 C( i. |8 B              ); if5 t1 p' ?% s( p  n: O
            ); progn
  ~! l. j8 T2 b8 Z  h& H% u( Q          ); if8 ?( \/ Y# d& N/ M( p7 [
        ); while) R7 @$ ], G) j& K' A  a
        (setvar "CLAYER" cloud_layer)
) C/ d! U8 k, L  d7 _6 l. G" o7 P' V. W* H0 T- w+ K/ z
        (if (>= ( getvar "LUNITS") 3)
: g# }- Z% w6 k$ C% S          (setq length_cloud (* 0.25 cloud_scale)0 U. c$ f3 v6 I, Y
                length_tri (* 0.3125 (getvar "LTSCALE")))
5 B, c9 t" p) D2 U9 h          (setq length_cloud (* 0.3406890 cloud_scale)4 O  [% l, ?* @. i0 G
                length_tri (* 0.438366 (getvar "LTSCALE")))+ F0 v2 D3 [2 [- r4 d
        )
; A; V) i. B5 }% x% v: U& m        (command "_.PLINE" first_point "A")3 q1 N8 l' ?: u  Z. H
        (while (not (equal next_point first_point 0.000001))/ f) U7 w+ z! \; K. b2 ^  P  N: U
          (initget  "Close")
5 o8 C$ K7 _$ H4 O; }5 E4 E( k          (setq next_point (getpoint last_point "\n关闭 C / <下一点>:"))5 B3 n. ~8 Z+ u; l' X% D
        (while (and (not (listp next_point)) (/= next_point "Close"))7 Y0 z  l+ {- {1 n6 }  k2 W4 J$ I6 r
          (initget  "Close")' B$ D: ?. W. L  u$ J
          (setq next_point (getpoint last_point "\n关闭 C / <下一点>:"))1 B  X- `" J8 ^
        ). F2 M5 ]9 O) B; n+ w+ O, F9 s) c
          (if (= "Close" next_point) (setq next_point first_point))
# b9 m1 I, R" V          (setq angle_l_to_f (angtos (angle last_point next_point))1 Z8 r' o. V! z
                relative_point (strcat "@" (rtos length_cloud) "<" angle_l_to_f))
" {) @* h6 `0 {6 P+ ~; K          (if (< (setq repeat_count (/ (distance last_point next_point) length_cloud)) 1)
1 n1 v$ d& p8 A/ k: D% ~. b             (setq repeat_count 0)
" R: s' Z* i# d# L- K( @             (if (>= (- repeat_count (fix repeat_count)) 0.5)* |: ~7 ~+ p  H0 H( T7 X& o& g
               (setq repeat_count (fix repeat_count))
3 X2 |& U' D: T* m& L  _- m9 Y               (setq repeat_count (1- (fix repeat_count)))
3 T# |4 M& p, a- p# K             ); if ( b: v. ~% e9 \  C9 T) @
          ); if
! l1 G& u( [$ u6 @0 l# e- U( m5 k          (repeat repeat_count (command "A" "-100" relative_point))
1 h; G* d! U2 F0 o% {          (command "A" "-100" next_point)
# a( a% ?; `% I& i) g# U$ ^" e  _* N          (setq last_point next_point)6 C* D5 T  L( O8 r! f) u+ i3 B
        )& T, w/ H0 k0 O* p# F9 Z4 h- {% r
        (command "")' W1 H+ k% {8 g
        (if (= (type number_rev) 'INT)
$ M0 K/ Y0 F9 L$ Y           (prompt (strcat "\n默认的版本号:\"" (itoa number_rev) "\"。"))
8 X" w$ T  W8 ^4 L& s           (progn/ I2 ?( B5 g  g  V) f/ w
             (initget 5)8 E* a8 J3 R4 X
             (setq number_rev (getint "\n请输入版本号:"))
  i. Y8 ?+ U+ Z- a# F           )
- T, x/ O: }; O, {; l& o7 T        ); if
" Z1 ]& m& m! C$ K* y% s: c- |        (setvar "OSMODE" 512)
* Y3 O4 s% `& p, n+ X        (while (/= (type point_tri) 'LIST)7 G6 o: f% I. ~" e; \5 c
          (initget "Number")
1 h) ]6 n6 Y, p8 X5 }          (setq point_tri (getpoint "\n版本号 N / <选择弧上一点>:"))
- e- E$ N, N6 N; K          (if (= point_tri "Number")( u7 j9 V' N& d" S) C
              (progn
. d) _1 B) G2 L' F" X) t: m                (initget 4)! E4 y" a! h3 K, S. G3 V) [
                (cond
# a9 q3 W  |7 ~: Z" z                  ( (not (setq temp number_rev
. Y0 A5 b/ n( m9 B% W                               number_rev
" U; N7 k1 T+ Z% E& H: x/ M7 n                      (getint (strcat "\n请输入版本号:<" (itoa number_rev) "> "))))
, [+ q! V9 A9 ~                    (setq number_rev temp)
; D* H; @. u0 |; U                  )
+ o* _! I* q" x                ); cond
' p- w- u/ Q% R              ); progn
/ L- v  M3 e  n- @3 M+ b          ); if
0 N, i/ Z/ Z' ^" N7 D* j        ); while+ h: }) S% V6 g! g2 I+ [/ }
        (setvar "OSMODE" 0)5 f/ V& \& }! S$ p4 @# B5 {) Z- m
        (initget 1)
0 p; ?' r4 Y/ l# b        (setq point_ref (getpoint point_tri "\n请选择方向:"))5 |- F( }/ o  A& F, Q; p/ n
        (setq dir_tri (if (> (cos (angle point_ref point_tri)) 0) -1 1))/ }* y; I( V' E. b0 P
        (setq corner_1st (polar point_tri) X# I/ @/ t6 T7 Y; P
                                (+ 1.570796327 (* -1.570796327 dir_tri))
( ~, q2 q. u+ q4 x                                length_tri
" o' \" ?9 M0 s. \7 T9 a                         )
5 B; N# B0 [0 ]9 a' ^        )
/ |3 h6 C% i) G, |        (setq corner_2nd (polar point_tri' U+ L0 p# G  ?6 @4 j# Z+ J8 A4 F9 Y
                                (+ 1.570796327 (* -0.523598775 dir_tri))2 I9 _& x0 B7 J( }
                                length_tri1 s7 o' {( k: r
                         )
$ Y, {% E8 r* o        ), }" u+ s. ^. k, M! W1 y1 w7 U
        (setvar "CECOLOR" "2")6 J/ r9 E4 A% \( Y* h: B
        (command "_.pline" point_tri corner_1st corner_2nd "c" )
2 [: S$ p6 ]* U" D5 H& Q        (setq textstyle (getvar "TEXTSTYLE"))7 J8 i+ y: `& q
        (command "_.style" "stdtext" "simplex" "0" "1.0" "0" "n" "n" "n")
+ Q3 X! b2 L% H6 I2 j5 N" }        (setvar "CECOLOR" "7")2 u/ ?. U; I- _
        (command "_.text" "j" "mc" (polar corner_2nd 4.71238898 (* 0.576 length_tri))9 C9 R" Q! q. [/ u& r9 O) P/ h
                  (* 0.4 length_tri) "0" (itoa number_rev))+ _- q1 B+ p* [/ e2 e7 z
        (layres). n/ t$ Z; v4 b
        (err_restore)
6 b7 D5 i- S+ _; _9 g        (princ)
& y% h% }' D6 O- J  C); defun cloud7 j& ]! p7 B9 P: b' A+ {
' h9 O5 m4 I8 I* m7 `- T: f! _
(defun c:cloud () (cloud))
5 N5 b, r5 X  _  v1 Q(defun c:cd () (cloud))
 楼主| 发表于 2007-3-13 08:33 | 显示全部楼层

undo.lsp

;;;  UNDO.LSP made by piggy. _6 l) Z6 ~! j% S
;;;
5 k: q4 q. L/ t* Q* r;;;  DESCRIPTION
) `; H: d) [1 b;;;     These are general error routines which can be called by
; _6 v- W, L' n7 v& H0 s;;;     other routine. See AutoCAD 14 ac_bonus.lsp for reference" g4 U- B7 j, D2 R
;;;# E( G! p* I2 s) A
;;;  SUBROUTINE INCLUDED IN THIS FILE
& r! }. L6 G# }; G% n0 q8 \;;;     UNDO_INIT
- T( l. j2 B% v' G% g+ B  k;;;     UNDO_RESTORE- m5 {2 d. ~$ H6 k
;;;     VAR_SAVE % {( X/ N3 U" _7 S$ u% A; F
;;;     VAR_SET  
- ]/ Q3 J9 w( y$ k;;;     VAR_RESTORE
9 T5 e% x( f1 \;;;     ERR_INIT 7 P& q8 k  i, U6 R: @) |. E6 E
;;;     ERR_MAIN # O% d3 O; }5 o+ k5 }
;;;     ERR_RESTORE' R# K) ], o& K7 d: O: l
;;;1 z& D  I% ~; M2 Q) E: J( U
;;;  DATE: 10/17/98; 03/31/99
& m" T5 W) ]; M3 n/ S;;;" b& y7 T- ~' k! Y
;;;  HISTORY:
* s( T+ D9 [* k0 K;;;    Add routine of mod_att( a, |3 q* \5 k3 {2 x: K  n
;;;5 b1 |' y& W# Z3 X
;;;  USING METHOD
0 n  G# f  \+ G8 e/ j* ~;;;    ERR_INIT:
  Q! K9 w! R- A+ R* x;;;      This routine initialzes the error handler. It should be called as:% a  V. C, n- o% X
;;;
- F1 F6 W7 G$ V5 B( ^;;;      (if (and (not undo_init)3 P* z$ K3 l* ~! j3 \+ R! L
;;;               (equal -1 (load "undo.lsp"  -1))
/ `9 }9 `9 l( o' Y8 {' b;;;          );and
4 W! M% ~, `+ _% E! }9 T( Y  e;;;        (progn (alert "Error:\n     Cannot find UNDO.LSP.")(exit))
8 g( ^2 o' h5 T' G/ k;;;      ); if
  J9 Q0 W' ~' I: z; k8 f;;;
7 u8 H$ m3 L9 I" J% p( n3 g2 \;;;     ARGUMENTS:, s; K% k6 R9 z" f$ a/ ~# u
;;;       err_init Takes 3 arguments. ; d9 N8 u- W$ q" k
;;;     1. - The first element of the argument:. z- P8 f3 I! o4 e7 Y. O3 N
;;;          This is a list of system variables paired with+ w5 y, E" {/ N" g! O
;;;          the values you want to set them to. i.e. '("CMDECHO" "ATTMODE")1 |8 {+ x. w6 K0 Z/ a0 f' Z5 Y
;;;     2. - The second element is a flag. h8 Y7 Z3 D4 ?+ j9 N8 N9 D/ l
;;;          If it is true, then in the event of an error
6 I+ t2 A* }, Q+ X$ o- ];;;          the custom *error* routine will utilize UNDO , x5 l) S6 s9 U/ d" @$ f- P2 x: M
;;;          as a cleanup mechanism.
- e- G6 ~/ Q* i: n# E6 k7 @;;;     3. - The third element is a quoted function call.$ A/ s; t0 x4 n& M" ]
;;;          You pass a quoted call to the function you
  p6 P8 q0 @7 p' ?! K;;;          wish to execute at the end of nomal routine if an error occurs. ' N' w: V; i* C( e/ J) A$ B5 y7 h
;;;          i.e. '(my_special_stuff arg1 arg2...)# a# w+ T" {% P% P8 B7 C
;;;          Use this arg if you want to do some specialized clean up 8 y7 T6 h: D: n5 ^
;;;          things that are not already done by the standard bonus_error 3 M! y! ?) S$ y! o6 O. Y5 r# l
;;;          function.  z$ c6 H6 `( S/ r; }
;;;8 p* t7 O; K0 N7 V: @9 j- J* c  t
;;;    ERR_MAIN: Body of error routine5 w3 W4 L' x: [
;;;% P- A, d& I, T
;;;    ERR_RESTORE: This routine should be called at the end of command to
+ i% {  `5 {' v* X' R7 {) [+ E5 G;;;           restore the VARIABLES, UNDO & *error*.; S' e. Y: p! o7 x4 _% i
;;;
) }: f' K) |* T% q4 U3 x. g;;;    UNDO_INIT: Initialize the UNDO status8 w( N% e# C7 R9 Q- B7 n; Y
;;;
$ D4 o, d0 {5 M: B6 @;;;    UNDO_RESTORE: Restore the UNDO status5 y/ E% s2 @' @; p7 |  L" k
;;;5 v/ C& s, f  T% L) S2 `5 ?
;;;    VAR_SAVE: Save the variables. the argument is like '("CMDECHO" "ATTMODE")  t, g, ?: y- w2 H; o
;;;# O& Y  ?4 }: n& r
;;;    UNDO_set: Set the variables. the argument is like7 `0 g$ ]( J! z6 f' ~
;;;              '(("CMDECHO" 0) ( "ATTMODE" 0))6 E3 n. [' J8 V8 x- _
;;;
2 }$ I/ M& w! P! z! Z;;;    UNDO_RESTORE: Restore the variables
+ W5 `  L* ^: l8 _: D;;;3 W; K$ Z: P: i) o3 ]& l0 d  s* A
;----------------------------------------------------------------------------
( Z( @8 H6 D1 h1 ?( o7 |$ d;  GLOBALS:- y: V. U. D5 q% m2 w' N7 C
;     old_undoctl -- old status of UNDO (voided by UNDO_RESTORE)
( ]! [# W9 w  h! C4 b, ]. R;     m_lst       -- list of variables (voided by VAR_RESTORE)7 \, Z- ^' a8 i: ?, B
;     err_alive   -- indicate error routine is active (voided by ERR_MAIN or
# R0 y+ }5 p5 C: Z3 Z  O' O8 D;                    ERR_OLD)
; H! s; ?! }/ @7 N/ Z0 C. l1 S8 ~;     err_old     -- old handler of *error* (voided by ERR_MAIN or ERR_OLD)' {( |$ B" p) q% Y
;----------------------------------------------------------------------------/ _$ x( y2 z% [' h

4 w. U$ R0 @7 e' p) b; m;----------------------------------------------------------------------------; @" W# s. r  I
; Modify attributes according to entity name, attribute name, dxf_item  X( q  f; b# f1 o
;----------------------------------------------------------------------------( O( Y5 G9 }6 Z- M9 ?# g
(defun mod_att(ent id dxf_item)        + z. B" s7 Q" j" j4 e! b
  (while (and (/= "ATTRIB" (car (entgetf '(0) ent))) (/= id (car (entgetf '(2) ent))))
" n3 F; ~! n$ h3 v( V  V    (setq ent (entnext ent))( K) u4 H8 @+ X! v  }9 V. R
  ); while  
& O. |! K) C/ [7 B0 z& w& J  ((lambda (x)5 ]0 b! {1 `: L( @9 l
        (mapcar '(lambda (y)
- n" V* x- H/ j6 o/ m! \                   (setq x (subst y (assoc (car y) x) x))( H- v  |7 D- K: O
                 ); lambda; Q) m7 X$ Y6 e3 n% S
                 dxf_item3 V+ }: ~. ~% p8 O
        ); mapcar
6 |& D- d  S8 l4 {     (entmod x)
- t# N: K" H, p7 `% G     (entupd ent)
. i+ [; ?) \% T8 p- ^   ); lambda- n- T' F' L0 u4 _3 m' e
   (entget ent)
" Z- j- U; D8 P: o. O; g) }4 c2 i8 m )- l! Q' b7 E( i8 X! w
); defun mod_att
6 H. [8 S' C& S* W$ k: o- b+ h/ U
;----------------------------------------------------------------------------
# v) r% t4 m4 p" ?# c1 r: h; Check layer status, return a association list which contains layer information
6 [  W5 [1 L3 m3 G8 G. x! a/ `, P;----------------------------------------------------------------------------
2 w2 z9 ]6 O8 u(defun laychk(lay / l_sta)- Y' D; W0 D3 x2 f+ p+ _/ P, b
  ( (lambda (x)
1 F9 @! X" F* \0 A3 j      (if (not l_s)  X( [$ a& u% S, ^( g" M) x* Z
          (setq l_s (list (cons x (logand 5 (cdr (assoc 70 (tblsearch "LAYER" x)))))))+ A/ o- l( O$ g2 v
      ); if6 U" _& |. u9 V" h% T8 T
    ); lambda
* G) X' c9 I2 k* `    (getvar "CLAYER")
8 p8 U9 S; i  ^* j; x  )# C& W* m& F! P( d" J2 P
  (if (not (tblsearch "LAYER" lay))* r( d4 ?. [, X1 X- w% b6 {
    (progn  ( S/ J8 X8 T; o; R
      (initget "Yes No")
; D" u- N8 @" u- \& b* Q; j      (if (= (setq l_sta (getkword "\n图层不存在,是否建立该图层 ?\(Y/N\)")) "Yes")
/ T+ x  {4 R7 J$ ~4 i0 q        (progn
/ f% Y1 i- w9 {* p) L9 w          (command "_.layer" "n" lay "")8 n, j5 E) ?$ A: X& u2 q8 }: S
          (setq l_sta 0)
/ h6 B* ]6 k6 n# W$ w! S( c$ T        ); progn
5 h7 [. v( j* z1 ?5 ?; n% K      ); if
" u3 v8 N+ V! _" @" V    ); progn$ ?2 e! o" u4 g  T6 i+ W5 r
    (progn) R! l% B1 `8 k+ m# l
      (setq l_sta (logand 5 (cdr (assoc 70 (tblsearch "LAYER" lay)))))
- r: P. P7 J( G# `! u( n      (if (= 1 (logand 1 l_sta))
' S0 `, N- o9 }7 |7 Q. y          (progn
) k% a! z" g/ N) C4 j            (initget "Yes No")  d0 i- N* i, ?- J* b- W+ F
            (if (= (getkword "\n该图层被冻结,是否解冻 ?\(Y/N\)") "Yes")
, w7 d0 m) U5 W2 F              (command "_.layer" "t" lay "")
2 u& Q# s/ e1 k$ x: d) F# {              (setq l_sta "No")+ x% H8 S8 V2 C2 i' u, R; g
             ); if
5 O! ^6 b. c& V( v8 _( J          ); progn! V# F  ]# c  u& y3 }8 s2 ~) A
      ); if6 p  K7 M! ~( v* c+ j4 r
      (if (numberp l_sta) ) ~! m" i5 ^9 G. r7 T5 M) A1 r; d
        (if (= 4 (logand 4 l_sta)) (command "_.layer" "u" lay "")); if
+ P. ]3 @$ D7 t9 v8 [6 B      ); if, l2 K( q( ?; j( P2 Z* X: @7 ]
    ); progn
) V* s2 y, \6 c7 K! U6 O# U5 e: K  ); if
' o# o  y( q( T# h  ( (lambda (x)
' A5 b6 ?# H- b- {$ W      (cond 4 K! |: Y4 h; F8 u9 a
        ( (not x)
1 Q3 ~5 `0 A% Q0 V          (setq l_s (cons (cons lay l_sta) l_s))
% L6 S1 N: h( [8 W4 r) F* {        )# d/ Y" k: W$ s0 }
        ( (= "No" (cdr x))) ^3 o0 v( c* q" o6 p! y
          (setq l_s (subst (cons lay l_sta) x l_s))( V; N$ g9 _3 _7 P$ p6 c( X& [
        )5 H( \! T5 T" p, x
        ( T l_s)
0 e2 |! F. f/ [- D" a      ); cond
0 f+ x) h+ v. H6 l$ f. Z+ H: Z     ); lambda/ ^5 V  ?/ y2 g* {
     (assoc lay l_s)
7 m: G3 y& u9 s  [5 c0 y; f  O  )) r" T( X0 M- D! R* M  D7 R

( X! C$ s0 ]0 l* r); defun chklay
& R" U+ L8 g- W& |
/ Z: A$ q. e: @+ J4 J;----------------------------------------------------------------------------0 L, Z7 z+ J% C- j' K8 o* T4 q3 U
; Restore layer status according to association list l_s
. T( }. H0 W; e( p  e. n6 J' o! ~! v9 ];----------------------------------------------------------------------------
- E2 W; q% |: ^3 T(defun layres()
- B, W3 [4 w# W0 M3 }! x' M  (setvar "CLAYER" (car (last l_s)))
: a; X/ T% g- X  (repeat (length l_s)
# x; v" p* Z9 ~+ |) y    ( (lambda(x)  
" U: U& `. p6 I: ]        (if (numberp (cdr x))/ T9 y8 J% B' _" x' C
          (progn 4 \& T5 e  ~  h2 O
            (if (= 4 (logand 4 (cdr x)))
' v) g& s. D% j7 P& K6 ]; v4 [              (command "_.layer" "lo" (car x) ""), v2 p% w6 o# ]. {: t$ n
            ); if
3 |9 d% y1 V4 b9 h" Q8 W5 n# I2 s8 a            (if (= 1 (logand 1 (cdr x)))" j. d1 Q; U  z% Q
              (command "_.layer" "f" (car x) "")2 Z$ {6 @5 r/ e
            ); if
% j6 a" K+ I" D          ); progn
" c% {' C: }/ v6 u( S       ); if  
/ R( R0 N" c) G- S! C* L      ); lambda0 }: Q0 A$ c" Q  \' y+ n
      (car l_s)
& L  {! Y7 x+ a# h& v+ |- c6 U: _  J    )0 U+ E+ O+ ~* l* w( d/ f; S6 E# n, l; ]
    (setq l_s (cdr l_s))
$ [2 O  j- Q1 M4 y/ z" N; V  ); repeat
: k1 p$ C/ N  k' X- f); layres! x7 S+ a) m% b9 ^, x) c# P
) R2 Y, J6 J% y' m  J# v( e
;----------------------------------------------------------------------------: Y) K# f/ [( g1 W
; Get DXF codes
0 _# Y$ q7 Q: e;----------------------------------------------------------------------------3 t5 b7 s  A. f$ Z1 u# m1 S
(defun entgetf (index ent)0 p5 E2 T) _' |; b
  ((lambda (e)
$ D' p0 Q8 n; a4 O/ B* W      (mapcar '(lambda (x)
. h8 R4 O* _' _                 (cdr (assoc x e))
. W* C) F4 {  |: x) {               ); lambda4 S" W4 |5 E! s  K+ `
               index) ; internal lambda function
4 J8 j8 J1 d0 a% B/ ]% b0 i# g1 F" P    ); lambda: e: m1 o- y9 t. L
    (entget ent) - k+ O2 ~9 d) P
  )! m6 Z3 S- `+ N/ F+ C; X
); defun entgetf
" \8 k! Z+ z$ P% t: O3 s. s+ p! d7 _- }3 [8 c9 P# b
;----------------------------------------------------------------------------
2 z$ ]0 |/ v. M1 }, \3 n; Save UNDO status0 ~/ M' V8 H- L1 o
;----------------------------------------------------------------------------
7 r7 M4 ]- H3 ?4 Z. ?9 R6 h& l(defun undo_init (/ cmdecho undo_ctl)   1 s; Y, G) N: Q; L9 N
  (setq cmdecho (getvar "CMDECHO") undo_ctl (getvar "UNDOCTL")) ; Save the value6 _+ N7 V9 ~" ]& {
  (setvar "CMDECHO" 0)
; V4 A" b! V4 t1 a' D) ^# y* `6 T* l5 z
  (if (equal 0 undo_ctl)                ; Make sure undo is fully enable' T6 Z8 R8 ~# B
    (command "_.undo" "_all")
0 x8 ?5 J4 J5 M" y* f    (command "_.undo" "_control" "_all")
/ i# _0 ~3 V* v* F0 Y5 M  )1 g6 q( r  J5 i5 i) m# r  w

8 m) s- o8 n6 D' {0 ^  M  (if (equal 4 (logand 4 (getvar "UNDOCTL")))   ; Ensure undo auto is off
( v& J( a7 [4 X' |    (command "_.undo" "_auto" "_off"). m- [, Y" l. l9 ~
  ), s) n+ v; N7 X

( c5 h) S4 k/ f) h3 I, _5 T  (while (equal 8 (logand 8 (getvar "UNDOCTL"))) ; Place an end mark here- U3 G' q" m# M" y/ g+ r
    (command "_.undo" "_end")
( B# e! A7 o9 V* I0 ]/ w" l' ^  )! S; j( n+ p  w" j

" Y, \. q3 u4 @9 S% l3 a  (while (not (equal 8 (logand 8 (getvar "UNDOCTL"))))
; N( g! `. m7 W$ o/ w( ]( p    (command "_.undo" "_group")
, T3 G7 D: f" L6 s0 b  W) K  )
$ ~) K, w! v' y- B+ ?' M8 y, S) D2 l7 V- w6 Z- r+ P
  (setvar "CMDECHO" cmdecho)
" n9 Q& i" \5 r5 R+ r; {! w5 L  undo_ctl
7 I& O0 }  A' m$ t1 x, z); defun undo_init* }- @* L( N* G$ n9 `
4 C. e# q4 L* M- |
;----------------------------------------------------------------------------
  W/ T; _, f! `' [7 l0 e; Restore UNDO status& n& C5 ?- b4 o1 @3 ?
;----------------------------------------------------------------------------2 t' A2 A) ^: \& C
(defun undo_restore (/ cmdecho)3 c) b* v/ _% W. |
  (if old_undoctl
. Q. X1 Y/ D, G- @- }, j8 Q6 i    (progn0 ~) A/ [6 |, J+ b6 `
      (setq cmdecho (getvar "CMDECHO"))5 Z# K* m/ T- d, x0 b
      (setvar "CMDECHO" 0)1 ^8 @  [! h: _% W  K
' ]- E& s6 b; L" _
      (if (equal 0 (getvar "UNDOCTL")) (command "_.undo" "_all"))
: i. f/ R& U7 \5 z7 S. T      (while (equal 8 (logand 8 (getvar "UNDOCTL")))
, [: k* A( [0 W2 E8 v& w" X! e        (command "_.undo" "_end")
- {$ o; U! _0 ?9 O/ ~& M* W      ); while
* e- J7 q4 z- e
- Q% t8 X% C" z; m  q) o/ B1 p- Y& W& C% I. y' p) A4 W
      (if (not (equal old_undoctl (getvar "UNDOCTL")))
9 p# L" J7 Z# X; h2 c/ ]& g7 d        (progn! M" M) n9 D2 \3 ^: i- D3 T
          (cond! v" G3 v) M! f$ Q0 f" Z5 D, f4 L
            ((equal 0 old_undoctl)! B! i9 Z% L+ m8 Y8 |2 o
              (command "_.undo" "_control" "_none")6 \0 t% |9 y# v
            ), i! L) N2 P, G) {/ \. c
            ((equal 2 (logand 2 old_undoctl))- O9 v* m, K4 e: ^( ]+ L: _
              (command "_.undo" "_control" "_one")( [5 `: W. |3 r' e6 M
            )
1 i0 w+ _5 v1 L3 V) w+ t7 q" j          )
8 T- q, b7 K) X+ W          (if (equal 4 (logand 4 old_undoctl))! T7 o/ \0 c/ b1 Q
              (command "_.undo" "_auto" "_on")
- p6 w3 V  U9 [3 I              (command "_.undo" "_auto" "_off")9 S0 C6 J% T: i8 }6 f
          )0 |& X5 q7 R. t- y& u
        )6 q7 |( E3 R. W. N
      )0 b1 m: e) d% {' x% L
      (setq old_undoctl nil)+ T& Y! T* ~/ U* C
      (setvar "CMDECHO" cmdecho)
: ]" o' `9 U4 b% o  Z    )# y* n5 J  V% [$ p
  )
* z& L" t* o* D# ?: a& r); defun undo_restore: @# w: R! m2 _9 ~3 _* v

, c- z% X7 k9 U+ W& s/ r;----------------------------------------------------------------------------
4 `( R; g" r# `- {  x( l; Save variables5 N% w! I1 ?) h
;----------------------------------------------------------------------------, M6 j7 t$ ?+ A. p/ |
(defun var_save (a)% H6 Z! F, B" F5 ]" Y, K2 z  u: h
  (setq m_lst '())9 d% U% P4 l* m# `8 Q
  (repeat (length a)8 B2 {" h  c% T: z8 P( u' e
    (setq m_lst (append m_lst (list (list (car a) (getvar (car a))))))
! t1 m0 i) }* A8 U# L5 j    (setq a (cdr a))& d/ y6 n, G( h" [
  )
+ M' o6 W6 B( t); defun var_save
6 a  D+ A) j: U- b# ?
! y3 Y' t( {: U$ k- m;----------------------------------------------------------------------------6 g' v! g3 D; ]; k+ c8 ~3 ?5 v
; Set variables
: }, U9 Q1 P7 `. ?4 r;----------------------------------------------------------------------------" W1 ?1 a5 k) d- m- H+ R- W! f( X/ m+ j2 `
(defun var_set (m_lst)
. C8 c1 {/ u  v" ~- a4 K5 Z( C  (repeat (length m_lst)
( R/ P5 x4 p0 T% Z3 x/ m: [    (setvar (caar m_lst) (cadar m_lst))
- }9 `% f7 f. t    (setq m_lst (cdr m_lst))
) x* a% Q$ A( M; M' b2 n' \  )) J2 W9 c/ o. ]; B) s" m3 g3 T* v
); defun var_set9 f2 W- u1 g( C8 g$ f) Z) f* [, H
3 h7 F; U, m" L
;----------------------------------------------------------------------------
  A$ E2 d$ _# d" Z; Restore variables
! F; v7 K8 Z/ |' R7 T/ }  y;----------------------------------------------------------------------------; q. K* D& f8 \; b/ W+ t6 D* {
(defun var_restore ()
+ b1 f, k5 X/ x' {- F, w  (repeat (length m_lst)4 K7 T. {+ l# P
    (setvar (caar m_lst) (cadar m_lst))
) T# n/ _1 K8 D6 l5 F    (setq m_lst (cdr m_lst))
7 L7 K2 b# L( j  )
# c3 a# a$ r4 {0 s0 s1 x); defun var_restore7 h' a4 W: x# t/ J6 p9 D+ _
/ V5 i+ J9 b# }8 t6 v2 ^: q( A8 i
;----------------------------------------------------------------------------$ `  |" V& F' ]) q' e3 J
; Initialize routine ) P) x8 w3 K- A) b( L. `" y
;----------------------------------------------------------------------------7 m! |: j; Q; `6 V! S# ?3 W
(defun err_init(e_lst u_enable add_fun). W, ^; c+ x- \0 N
  (if err_alive (err_restore))          ; To avoid nested call
* S5 l5 T% t# S" L  (setq err_alive T)! Z5 O2 a: ]  m* U. g2 K
  (var_save e_lst)                      ; Save the modes2 R1 l7 O0 F- t. |- G# H8 D: ^: t
  (if u_enable (setq old_undoctl (undo_init))) ; Initialize UNDO status
! g8 [* c, X  j( o9 m5 S3 c  (setq err_old *error* *error* err_main) ; Save the handle of *error*
7 C/ F7 j' u9 l2 f6 m3 P* X  (if add_fun                           ; Add the user cleaner
$ a8 {6 a2 }5 I! j' Z    (setq *error* (append (reverse (cdr (reverse *error*)))* D- k" [6 o$ n0 v
                          (list add_fun (last *error*))1 E$ l4 y! }; s1 Q* k& z
                  ); append
7 x( Y* g5 M# X3 t- k4 |" l    )
7 v1 O3 b8 G) X  )" M' o! D& E- @! U$ B
); defun err_init
 楼主| 发表于 2007-3-13 08:34 | 显示全部楼层

undo.lsp(续)

;----------------------------------------------------------------------------
" j3 e1 f% r( r8 p; Error routine body" K9 P$ B4 ]" {/ ~- S
;----------------------------------------------------------------------------
* ~+ Z8 P+ U$ H7 \. G: g* R(defun err_main( msg / )                ; Body of error routine
: q+ M& w* p1 y0 v/ E3 D2 E& J9 k  (if (/= msg "Function cancelled")     ;If an error (such as CTRL-C) occurs
5 J% \* |' {9 Q6 f    (princ (strcat "\nError: " s))      ;while this command is active...
; [  l0 Q& _; q+ `0 s  )4 o& E. x4 w! e  p( {
  (while (not (equal (getvar "CMDNAMES") "")) (command nil)) ; Get out of any active command1 l) J9 S5 V+ z
6 t( y/ E5 F0 S. v& \6 o
  (if old_undoctl
" w, w6 Y' X7 U/ H    (progn
; Z+ x# s4 ~  \' e      (while (not (wcmatch (getvar "CMDNAMES") "*UNDO*")) ; See  B) x: a' i* y+ Z: ]8 E
        (command "_.undo")              ; if it's in UNOD command
4 k2 l. J( b* B      )
6 `: p1 c  T8 A* F* P* s      (command "_end")
- }% m/ b% @8 k0 y" Z6 y      (command "_.undo" "1")
7 A  L+ t  P! z5 \4 j      (while (not (equal (getvar "CMDNAMES") "")) (command nil))
& ^: [: G" p) j" D8 C      (undo_restore)                    ; Restore the status of UNDO# D' i. @1 s" x! W
    )( B# ^" T) X4 }8 g  a! J' {) M, W
  )
4 t; z+ |( Q* _( B" R7 `! b# ^5 n2 \# `& h
  (var_restore)                         ; Restore the variables% Z! t/ z2 }4 y: i
  (if err_old (setq *error* err_old err_old nil)) ; Restore the handle of error
" g% [3 N. H* X# |8 [% K  (setq err_alive nil)) ~$ `# H" V9 o# {$ L8 D1 ?. @/ ^
  (princ)
8 M3 b+ P8 z+ p  Q); defun err_main% T6 [9 c5 ^: w) O
$ {/ O# z; [8 B8 y3 f7 A
;----------------------------------------------------------------------------
( q  `% k+ Q  E6 h4 }. }- ~; Restore error status- S+ Q6 @+ T1 Y
;----------------------------------------------------------------------------$ J2 m% |; M1 z; D' @: h9 c
(defun err_restore()
5 h3 |# }" r4 ]0 W: H) n' x  (undo_restore)                        ; Restore the status of UNDO
5 |8 P, j# m, L' h9 k8 e  (var_restore)                         ; Restore the variables3 t7 A5 }0 n) X( j" N
  (if err_old (setq *error* err_old err_old nil)) ; Restore the handle of error
: M2 w+ K2 T: z6 R  (setq err_alive nil)+ k! \7 N8 a& |& v2 r' K3 p
  (princ); k4 o/ L* c; t' u( D. u3 m
); 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:30

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

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

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