ParsePipe.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*-------------------------------------------------------------------------
  2. * 功能描述:ParsePipe
  3. * 作者:xulisong
  4. * 创建时间: 2019/6/13 16:54:19
  5. * 版本号:v1.0
  6. * -------------------------------------------------------------------------*/
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Linq;
  10. using System.Text;
  11. using System.Threading.Tasks;
  12. using Autodesk.Revit.DB.Plumbing;
  13. using JBIM;
  14. using RevitExport;
  15. using JPipe=JBIM.Component.Pipe;
  16. namespace RevitToJBim.ComponentParse
  17. {
  18. public class ParsePipe : ParseBase
  19. {
  20. public override bool Match(ElementWrapper wrapper)
  21. {
  22. return wrapper.RefElement is Pipe;
  23. }
  24. protected override List<BimId> ParseInner(ElementWrapper wrapper, JBimParseContext context)
  25. {
  26. /*
  27. * 解析思路:1、解析当前对象具体信息。
  28. * 2、维护一些构件的关联管理关系,可以放在这个方法中,也可以放在ArrangeRefElements中
  29. *
  30. */
  31. if (!(wrapper.RefElement is Pipe pipe))
  32. {
  33. return null;
  34. }
  35. JPipe jPipe = new JPipe();
  36. return null;
  37. }
  38. public override List<ElementWrapper> ArrangeRefElements(ElementWrapper wrapper, JBimParseContext context)
  39. {
  40. return base.ArrangeRefElements(wrapper, context);
  41. }
  42. }
  43. }