-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathServiceResult.cs
159 lines (127 loc) · 5.32 KB
/
ServiceResult.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using Autodesk.Revit.Attributes;
using Autodesk.Revit.DB;
using Autodesk.Revit.DB.ExtensibleStorage;
using Autodesk.Revit.UI;
using Bimbot.Forms;
// ReSharper disable UnusedMember.Global
namespace Bimbot
{
[Transaction(TransactionMode.Manual)]
[Regeneration(RegenerationOption.Manual)]
[Journaling(JournalingMode.NoCommandData)]
public class ServiceResult : IExternalCommand
{
// public static readonly Guid mySchemaGuid = new Guid("a54b4c89-0ee7-4fae-8fbd-94443f5020b3");
// public static readonly Guid myApplicationGuid = new Guid("a694f098-20d5-42c2-a8a0-ac7ae6857c24");
// public static readonly string myVendorId = "nl.tno";
public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)
{
UIDocument uidoc = commandData.Application.ActiveUIDocument;
// A new handler to handle request posting by the dialog
// var handler = new ExtEvntChangeRevitView();
// External Event for the dialog to use (to post requests)
// var extEvent = ExternalEvent.Create(handler);
if (uidoc.Document.PathName.EndsWith(".rfa", StringComparison.InvariantCultureIgnoreCase))
{
throw new Exception("Revit Families are not supported for Bimbot services");
}
try
{
ShowResultsForm form = new ShowResultsForm(commandData.Application.ActiveUIDocument/*, extEvent, handler*/);
form.ShowDialog();
}
catch (Exception ex)
{
string mssg = ex.Message;
MessageBox.Show(mssg, @"Exception in BIMserver Export");
}
// autosucceed for now
return Result.Succeeded;
/*
try
{
Document doc = commandData.Application.ActiveUIDocument.Document;
// Find the Schema
Schema mySchema = Schema.Lookup(mySchemaGuid);
IList<Schema> anySchemas = Schema.ListSchemas();
// Create Schema if not found
if (mySchema == null)
{
Transaction createSchema = new Transaction(doc, "Create Schema");
createSchema.Start();
SchemaBuilder schemaBuilder = new SchemaBuilder(mySchemaGuid);
schemaBuilder.SetReadAccessLevel(AccessLevel.Public);
schemaBuilder.SetWriteAccessLevel(AccessLevel.Application);
schemaBuilder.SetApplicationGUID(myApplicationGuid);
schemaBuilder.SetVendorId(myVendorId);
schemaBuilder.SetSchemaName("TestSchema");
// create a field to store services
FieldBuilder fieldBuilder = schemaBuilder.AddSimpleField("name", typeof(String));
fieldBuilder.SetDocumentation("Just a name for testing");
mySchema = schemaBuilder.Finish();
createSchema.Commit();
}
// Find the DataStorage
FilteredElementCollector collector = new FilteredElementCollector(doc).OfClass(typeof(DataStorage));
DataStorage myDataStorage = null;
foreach (DataStorage ds in collector)
{
if (mySchema != null)
{
Entity ent = ds.GetEntity(mySchema);
if (ent.IsValid())
{
myDataStorage = ds;
break;
}
}
}
// Create DataStorage and add mySchema data to it
if (myDataStorage == null)
{
Transaction createDataStorage = new Transaction(doc, "Create DataStorage");
createDataStorage.Start();
// Create data storage in new document
myDataStorage = DataStorage.Create(doc);
// Create an entity matching mySchema and assing it to myDataStorage
Entity entity = new Entity(mySchema);
Field name = mySchema.GetField("name");
entity.Set<string>(name, "Dit is een Test");
if (myDataStorage != null)
myDataStorage.SetEntity(entity);
doc.ProjectInformation.SetEntity(entity);
createDataStorage.Commit();
}
// Find the Schema after adding
Schema mySchemaAfterAdding = Schema.Lookup(mySchemaGuid);
IList<Schema> anySchemasAfterAdding = Schema.ListSchemas();
// Find the DataStorage after adding
FilteredElementCollector collectorAfterAdding = new FilteredElementCollector(doc).OfClass(typeof(DataStorage));
DataStorage myDataStorageAfterAdding = null;
foreach (DataStorage ds in collectorAfterAdding)
{
if (mySchemaAfterAdding != null)
{
Entity ent = ds.GetEntity(mySchemaAfterAdding);
if (ent.IsValid())
{
myDataStorageAfterAdding = ds;
break;
}
}
}
}
catch (Exception ex)
{
string mssg = ex.Message;
MessageBox.Show(mssg, @"Exception occured");
}
// autosucceed for now
return Result.Succeeded;
*/
}
}
}