public void OnIdling(object sender, IdlingEventArgs e) { if (receiverActivated) { UIApplication uiapp = sender as UIApplication; Document doc = uiapp.ActiveUIDocument.Document; e.SetRaiseWithoutDelay(); string value = RegistryKeyManager.GetRegistryKeyValue("RhinoOutgoing"); if (!string.IsNullOrEmpty(value)) { if (value.ToLower() == "true") { TaskDialog dialog = new TaskDialog("Rhino Receiver"); dialog.MainInstruction = "Rhino Data"; dialog.MainContent = "Analysis data from Rhino is being sent to Revit."; dialog.AddCommandLink(TaskDialogCommandLinkId.CommandLink1, "Visualize Analysis Results"); dialog.AddCommandLink(TaskDialogCommandLinkId.CommandLink2, "Cancel"); TaskDialogResult result = dialog.Show(); if (result == TaskDialogResult.CommandLink1) { //AVF string tempDirectory = RegistryKeyManager.GetRegistryKeyValue("DivaTempDirectory"); string[] gridFiles = Directory.GetFiles(tempDirectory, "*-AnalysisGrid.obj"); if (gridFiles.Length > 0) { List <ObjMesh> objMeshes = new List <ObjMesh>(); bool objImported = ObjImporter.ReadObjFile(gridFiles[0], out objMeshes); string dataPath = RegistryKeyManager.GetRegistryKeyValue("RhinoOutgoingPath"); AnalysisDataManager avf = new AnalysisDataManager(uiapp, objMeshes, dataPath); if (avf.ReadResults()) { if (avf.CreateGeometry()) { if (avf.VisualizeData()) { MessageBox.Show("Result data from Rhino was successfully visualized."); } } } } } RegistryKeyManager.SetRegistryKeyValue("RhinoOutgoing", "False"); } } } }
public bool VisualizeData() { bool result = false; try { string viewIdValue = RegistryKeyManager.GetRegistryKeyValue("RevitOutgoingViewId"); ElementId viewId = new ElementId(int.Parse(viewIdValue)); Autodesk.Revit.DB.View view = m_doc.GetElement(viewId) as Autodesk.Revit.DB.View; if (null != view) { SpatialFieldManager sfm = SpatialFieldManager.GetSpatialFieldManager(view); if (null == sfm) { sfm = SpatialFieldManager.CreateSpatialFieldManager(view, 1); } AnalysisResultSchema resultSchema = new AnalysisResultSchema(analysisType.ToString(), "Imported from DIVA"); int resultIndex = -1; //check order DataContainer tempContainer = dataDictionary[0]; XYZ node = new XYZ(tempContainer.Node.XValue, tempContainer.Node.YValue, tempContainer.Node.ZValue); IntersectionResult intersection = displayingFaces[0].Project(node); if (null == intersection) { displayingFaces.Reverse(); } //reverse the order of faces foreach (int keyIndex in dataDictionary.Keys) { DataContainer container = dataDictionary[keyIndex]; Face face = displayingFaces[keyIndex]; List <double> dblList = new List <double>(); dblList.Add(container.ResultValue); XYZ vectorZ = new XYZ(0, 0, -1); Transform transform = Transform.CreateTranslation(vectorZ); int index = sfm.AddSpatialFieldPrimitive(face, transform); IList <UV> uvPts = new List <UV>(); IList <ValueAtPoint> valList = new List <ValueAtPoint>(); XYZ nodePoint = new XYZ(container.Node.XValue, container.Node.YValue, container.Node.ZValue); IntersectionResult intersect = face.Project(nodePoint); if (null != intersect) { UV nodeUV = intersect.UVPoint; uvPts.Add(nodeUV); valList.Add(new ValueAtPoint(dblList)); FieldDomainPointsByUV domainPoints = new FieldDomainPointsByUV(uvPts); FieldValues values = new FieldValues(valList); FieldValues vals = new FieldValues(valList); if (resultIndex == -1) { resultIndex = sfm.RegisterResult(resultSchema); } else { sfm.SetResultSchema(resultIndex, resultSchema); } sfm.UpdateSpatialFieldPrimitive(index, domainPoints, values, resultIndex); } result = true; } } } catch (Exception ex) { MessageBox.Show("Failed to visualize the result data.\n" + ex.Message, "Analysis Data Manager - Visualize Data", MessageBoxButtons.OK, MessageBoxIcon.Warning); result = false; } return(result); }