乐筑天下

搜索
欢迎各位开发者和用户入驻本平台 尊重版权,从我做起,拒绝盗版,拒绝倒卖 签到、发布资源、邀请好友注册,可以获得银币 请注意保管好自己的密码,避免账户资金被盗
查看: 180|回复: 0

[编程交流] 从代码添加到块v1.2

[复制链接]

57

主题

246

帖子

247

银币

后起之秀

Rank: 20Rank: 20Rank: 20Rank: 20

铜币
233
发表于 2022-10-18 17:53:52 | 显示全部楼层 |阅读模式
我有代码,这个问题是从块外添加元素后出现的,有时如果我想从这个新添加的元素中选择块,我不能,它是不可选的。
  1. ;;----------------------=={ Add Objects to Block }==--------------------;;
  2. ;;                                                                      ;;
  3. ;;  This program enables the user to add a selection of objects to the  ;;
  4. ;;  definition of a selected block.                                     ;;
  5. ;;                                                                      ;;
  6. ;;  Upon issuing the command syntax 'addtoblock' at the AutoCAD         ;;
  7. ;;  command line, the program prompts the user for a selection of       ;;
  8. ;;  objects residing on unlocked layers to be added to a chosen block   ;;
  9. ;;  definition.                                                         ;;
  10. ;;                                                                      ;;
  11. ;;  Following a valid selection, the program prompts the user to select ;;
  12. ;;  a reference of a block whose definition is to be modified to        ;;
  13. ;;  incorporate all objects in the selection.                           ;;
  14. ;;                                                                      ;;
  15. ;;  At this prompt, the program will permit selection of any standard   ;;
  16. ;;  (non-dynamic) uniformly scaled block reference which is not         ;;
  17. ;;  referenced within the selection (as a block reference cannot be     ;;
  18. ;;  added to its own definition).                                       ;;
  19. ;;                                                                      ;;
  20. ;;  Every object in the selection will then be transformed relative to  ;;
  21. ;;  the position, scale, rotation, and orientation of the selected      ;;
  22. ;;  block reference, before being copied to the definition of the       ;;
  23. ;;  block and removed from the drawing.                                 ;;
  24. ;;----------------------------------------------------------------------;;
  25. ;;  Author:  Lee Mac, Copyright © 2011  -  www.lee-mac.com              ;;
  26. ;;----------------------------------------------------------------------;;
  27. ;;  Version 1.1    -    2011-05-31                                      ;;
  28. ;;                                                                      ;;
  29. ;;  - First release.                                                    ;;
  30. ;;----------------------------------------------------------------------;;
  31. ;;  Version 1.2    -    2020-11-15                                      ;;
  32. ;;                                                                      ;;
  33. ;;  - Program completely rewritten to incorporate a check for           ;;
  34. ;;    references of the target block within the selected objects.       ;;
  35. ;;----------------------------------------------------------------------;;
  36. (defun c:addtoblock ( / *error* bln bnl btr def ent enx idx lst sel tmp )
  37.     (defun *error* ( msg )
  38.         (LM:endundo (LM:acdoc))
  39.         (if (not (wcmatch (strcase msg t) "*break,*cancel*,*exit*"))
  40.             (princ (strcat "\nError: " msg))
  41.         )
  42.         (princ)
  43.     )
  44.     (LM:startundo (LM:acdoc))
  45.     (cond
  46.         (   (not (setq sel (LM:ssget "\nSelect objects to add to block: " '("_:L")))))
  47.         (   (progn
  48.                 (repeat (setq idx (sslength sel))
  49.                     (setq idx (1- idx)
  50.                           ent (ssname sel idx)
  51.                           enx (entget ent)
  52.                           lst (cons (vlax-ename->vla-object ent) lst)
  53.                     )
  54.                     (if (and (= "INSERT" (cdr (assoc 0 enx)))
  55.                              (not (member (setq bln (strcase (cdr (assoc 2 enx)))) bnl))
  56.                         )
  57.                         (setq bnl (cons bln bnl))
  58.                     )
  59.                 )
  60.                 (while (setq def (tblnext "block" (not def)))
  61.                     (setq ent (tblobjname "block" (cdr (assoc 2 def))))
  62.                     (while (setq ent (entnext ent))
  63.                         (if (= "INSERT" (cdr (assoc 0 (setq enx (entget ent)))))
  64.                             (setq tmp (cons (strcase (cdr (assoc 2 enx))) tmp))
  65.                         )
  66.                     )
  67.                     (if tmp
  68.                         (setq btr (cons (cons (strcase (cdr (assoc 2 def))) tmp) btr)
  69.                               tmp nil
  70.                         )
  71.                     )
  72.                 )
  73.                 (while
  74.                     (progn (setvar 'errno 0) (setq ent (car (entsel "\nSelect block: ")))
  75.                         (cond
  76.                             (   (= 7 (getvar 'errno))
  77.                                 (princ "\nMissed, try again.")
  78.                             )
  79.                             (   (null ent)
  80.                                 nil
  81.                             )
  82.                             (   (/= "INSERT" (cdr (assoc 0 (setq enx (entget ent)))))
  83.                                 (princ "\nThe selected object is not a block.")
  84.                             )
  85.                             (   (not
  86.                                     (and
  87.                                         (equal (abs (cdr (assoc 41 enx))) (abs (cdr (assoc 42 enx))) 1e-8)
  88.                                         (equal (abs (cdr (assoc 41 enx))) (abs (cdr (assoc 43 enx))) 1e-8)
  89.                                     )
  90.                                 )
  91.                                 (princ "\nThis program is not currently compatible with non-uniformly scaled blocks - sorry.")
  92.                             )
  93.                             (   (= :vlax-true (vla-get-isdynamicblock (vlax-ename->vla-object ent)))
  94.                                 (princ "\nThis program is not currently compatible with dynamic blocks - sorry.")
  95.                             )
  96.                             (   (vl-some '(lambda ( bln ) (member bln bnl))
  97.                                     (
  98.                                         (lambda ( / rtn )
  99.                                             (setq bln (strcase (cdr (assoc 2 enx))))
  100.                                             (foreach def btr
  101.                                                 (cond
  102.                                                     (   (= bln (car def)))
  103.                                                     (   (member (car def) rtn))
  104.                                                     (   (addtoblock:referenced-p bln (cdr def) btr) (setq rtn (cons (car def) rtn)))
  105.                                                 )
  106.                                             )
  107.                                             (cons bln rtn)
  108.                                         )
  109.                                     )
  110.                                 )
  111.                                 (princ "\nThe selected block is referenced by a block in the selection.")
  112.                             )
  113.                         )
  114.                     )
  115.                 )
  116.                 ent
  117.             )
  118.             (   (lambda ( mat )
  119.                     (foreach obj lst (vla-transformby obj mat))
  120.                     (vla-copyobjects (LM:acdoc)
  121.                         (vlax-make-variant
  122.                             (vlax-safearray-fill
  123.                                 (vlax-make-safearray vlax-vbobject (cons 0 (1- (length lst))))
  124.                                 lst
  125.                             )
  126.                         )
  127.                         (vla-item (vla-get-blocks (LM:acdoc)) (cdr (assoc 2 (entget ent))))
  128.                     )
  129.                     (foreach obj lst (vla-delete obj))
  130.                     (vla-regen (LM:acdoc) acallviewports)
  131.                 )
  132.                 (apply
  133.                     (function
  134.                         (lambda ( mat vec )
  135.                             (vlax-tmatrix
  136.                                 (append
  137.                                     (mapcar
  138.                                         (function
  139.                                             (lambda ( x v )
  140.                                                 (append x (list v))
  141.                                             )
  142.                                         )
  143.                                         mat vec
  144.                                     )
  145.                                    '((0.0 0.0 0.0 1.0))
  146.                                 )
  147.                             )
  148.                         )
  149.                     )
  150.                     (revrefgeom ent)
  151.                 )
  152.             )
  153.         )
  154.     )
  155.     (LM:endundo (LM:acdoc))
  156.     (princ)
  157. )
  158. (defun addtoblock:referenced-p ( bln def lst )
  159.     (or (member bln def)
  160.         (vl-some '(lambda ( nst ) (addtoblock:referenced-p bln (cdr (assoc nst lst)) lst)) def)
  161.     )
  162. )
  163. ;; RevRefGeom (gile)
  164. ;; The inverse of RefGeom
  165. (defun revrefgeom ( ent / ang enx mat ocs )
  166.     (setq enx (entget ent)
  167.           ang (cdr (assoc 050 enx))
  168.           ocs (cdr (assoc 210 enx))
  169.     )
  170.     (list
  171.         (setq mat
  172.             (mxm
  173.                 (list
  174.                     (list (/ 1.0 (cdr (assoc 41 enx))) 0.0 0.0)
  175.                     (list 0.0 (/ 1.0 (cdr (assoc 42 enx))) 0.0)
  176.                     (list 0.0 0.0 (/ 1.0 (cdr (assoc 43 enx))))
  177.                 )
  178.                 (mxm
  179.                     (list
  180.                         (list (cos ang)     (sin ang) 0.0)
  181.                         (list (- (sin ang)) (cos ang) 0.0)
  182.                        '(0.0 0.0 1.0)
  183.                     )
  184.                     (mapcar '(lambda ( v ) (trans v ocs 0 t))
  185.                         '(
  186.                              (1.0 0.0 0.0)
  187.                              (0.0 1.0 0.0)
  188.                              (0.0 0.0 1.0)
  189.                          )
  190.                     )
  191.                 )
  192.             )
  193.         )
  194.         (mapcar '- (cdr (assoc 10 (tblsearch "block" (cdr (assoc 2 enx)))))
  195.             (mxv mat (trans (cdr (assoc 10 enx)) ocs 0))
  196.         )
  197.     )
  198. )
  199. ;; Matrix Transpose  -  Doug Wilson
  200. ;; Args: m - nxn matrix
  201. (defun trp ( m )
  202.     (apply 'mapcar (cons 'list m))
  203. )
  204. ;; Matrix x Matrix  -  Vladimir Nesterovsky
  205. ;; Args: m,n - nxn matrices
  206. (defun mxm ( m n )
  207.     ((lambda ( a ) (mapcar '(lambda ( r ) (mxv a r)) m)) (trp n))
  208. )
  209. ;; Matrix x Vector  -  Vladimir Nesterovsky
  210. ;; Args: m - nxn matrix, v - vector in R^n
  211. (defun mxv ( m v )
  212.     (mapcar '(lambda ( r ) (apply '+ (mapcar '* r v))) m)
  213. )
  214. ;; ssget  -  Lee Mac
  215. ;; A wrapper for the ssget function to permit the use of a custom selection prompt
  216. ;; msg - [str] selection prompt
  217. ;; arg - [lst] list of ssget arguments
  218. (defun LM:ssget ( msg arg / sel )
  219.     (princ msg)
  220.     (setvar 'nomutt 1)
  221.     (setq sel (vl-catch-all-apply 'ssget arg))
  222.     (setvar 'nomutt 0)
  223.     (if (not (vl-catch-all-error-p sel)) sel)
  224. )
  225. ;; Start Undo  -  Lee Mac
  226. ;; Opens an Undo Group.
  227. (defun LM:startundo ( doc )
  228.     (LM:endundo doc)
  229.     (vla-startundomark doc)
  230. )
  231. ;; End Undo  -  Lee Mac
  232. ;; Closes an Undo Group.
  233. (defun LM:endundo ( doc )
  234.     (while (= 8 (logand 8 (getvar 'undoctl)))
  235.         (vla-endundomark doc)
  236.     )
  237. )
  238. ;; Active Document  -  Lee Mac
  239. ;; Returns the VLA Active Document Object
  240. (defun LM:acdoc nil
  241.     (eval (list 'defun 'LM:acdoc 'nil (vla-get-activedocument (vlax-get-acad-object))))
  242.     (LM:acdoc)
  243. )
  244. ;;----------------------------------------------------------------------;;
  245. (vl-load-com)
  246. (princ
  247.     (strcat
  248.         "\n:: AddObjectsToBlock.lsp | Version 1.2 | \\U+00A9 Lee Mac "
  249.         ((lambda ( y ) (if (= y (menucmd "m=$(edtime,0,yyyy)")) y (strcat y "-" (menucmd "m=$(edtime,0,yyyy)")))) "2011")
  250.         " www.lee-mac.com ::"
  251.         "\n:: Type "addtoblock" to Invoke ::"
  252.     )
  253. )
  254. (princ)
  255. ;;----------------------------------------------------------------------;;
  256. ;;                             End of File                              ;;
  257. ;;----------------------------------------------------------------------;;


回复

使用道具 举报

发表回复

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

  • 微信公众平台

  • 扫描访问手机版

  • 点击图片下载手机App

QQ|关于我们|小黑屋|乐筑天下 繁体中文

GMT+8, 2024-11-22 01:27 , Processed in 0.191743 second(s), 65 queries .

© 2020-2024 乐筑天下

联系客服 关注微信 帮助中心 下载APP 返回顶部 返回列表