123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
-
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Autodesk.Revit.DB;
- using JBIM;
- using SAGA.RevitUtils;
- namespace RevitToJBim.MBI
- {
-
-
-
- public class MBIDocument
- {
- public string MBIName { get; set; }
- public string PlanName { get; set; }
- public Dictionary<string, List<BimObject>> Elements { get;private set; }
-
-
-
-
- public void AttachElements(BimDocument document)
- {
- var bimObjects = document.BimObjects;
- var group = bimObjects.GroupBy(bim => bim.ElementType);
- Dictionary<string, List<BimObject>> dic = new Dictionary<string, List<BimObject>>();
- foreach (var collection in group)
- {
- dic[collection.Key + "s"] = collection.ToList();
- }
- Elements = dic;
- }
- public static MBIDocument CreateDocument(Document document)
- {
- MBIDocument dto = new MBIDocument();
- dto.MBIName = "PjXXX_001";
- dto.PlanName = document.GetUseView()?.Name;
- return dto;
- }
- }
- }
|