forked from jchristel/SampleCodeRevitBatchProcessor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ModifyRevitLinksWorksetInstanceToType_executeThis.py
159 lines (140 loc) · 5.64 KB
/
ModifyRevitLinksWorksetInstanceToType_executeThis.py
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
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
#License:
#
#
# Revit Batch Processor Sample Code
#
# Copyright (c) 2020 Jan Christel
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#
# sample description
# this sample moves revit link types onto the same workset than the corresponding link instance
import clr
import System
import os.path as path
# flag whether this runs in debug or not
debug_ = False
# --------------------------
#d efault file path locations
# --------------------------
# store output here:
rootPath_ = r'C:\temp'
# path to Common.py
commonlibraryDebugLocation_ = r'C:\temp'
# debug mode revit project file name
debugRevitFileName_ = r'C:\temp\Test_Links.rvt'
# Add batch processor scripting references
if not debug_:
import revit_script_util
import revit_file_util
clr.AddReference('RevitAPI')
clr.AddReference('RevitAPIUI')
# NOTE: these only make sense for batch Revit file processing mode.
doc = revit_script_util.GetScriptDocument()
revitFilePath_ = revit_script_util.GetRevitFilePath()
else:
# get default revit file name
revitFilePath_ = debugRevitFileName_
# set path to common library
import sys
sys.path.append(commonlibraryDebugLocation_)
# import common library
import Common as com
from Common import *
import Result as res
clr.AddReference('System.Core')
clr.ImportExtensions(System.Linq)
from Autodesk.Revit.DB import *
# output messages either to batch processor (debug = False) or console (debug = True)
def Output(message = ''):
if not debug_:
revit_script_util.Output(str(message))
else:
print (message)
# -------------
# my code here:
# -------------
def GetWorksetNamebyId(doc, Id):
name = 'unknown'
for p in FilteredWorksetCollector(doc).OfKind(WorksetKind.UserWorkset):
if(p.Id == Id):
name = p.Name
break
return name
# returns Revit Link Instance data
def GetRevitInstanceDataByName(revitLinkName, doc):
match = False
# default values
instanceWorksetName = 'unknown'
for p in FilteredElementCollector(doc).OfClass(RevitLinkInstance):
# Output('['+str(Element.Name.GetValue(revitLinkName))+'][' + str(Element.Name.GetValue(p))+']')
linkTypeNameParts = Element.Name.GetValue(p).split(':')
if(len(linkTypeNameParts) == 3):
lN = linkTypeNameParts[0]
if(lN[0:-1] == Element.Name.GetValue(revitLinkName)):
match = True
wsparam = p.get_Parameter(BuiltInParameter.ELEM_PARTITION_PARAM)
instanceWorksetName = wsparam.AsValueString()
break
if(match == True):
# Output(instanceWorksetName)
return com.GetWorksetIdbyName(doc, instanceWorksetName)
else:
# Output('no match')
return ElementId.InvalidElementId
# get the revit link instance data
# this also calls GetRevitLinkInstanceDataByName()
def ModifyRevitLinkTypeData(revitLink, doc):
returnvalue = res.Result()
# get the workset
wsparam = revitLink.get_Parameter(BuiltInParameter.ELEM_PARTITION_PARAM)
typeWorksetName = wsparam.AsValueString()
typeWorksetId = com.GetWorksetIdbyName(doc, typeWorksetName)
instanceWorksetId = GetRevitInstanceDataByName(revitLink, doc)
instanceWorksetName = GetWorksetNamebyId(doc, instanceWorksetId)
if(instanceWorksetId!= ElementId.InvalidElementId and instanceWorksetId != typeWorksetId):
Output('Moving '+ str(Element.Name.GetValue(revitLink)) + ' from ' + str(typeWorksetName) + ' to ' + str(instanceWorksetName))
transaction = Transaction(doc, "Changing workset of " + str(Element.Name.GetValue(revitLink)))
returnvalue = com.InTransaction(transaction, com.GetActionChangeElementWorkset(revitLink,instanceWorksetId))
Output(str(Element.Name.GetValue(revitLink)) + ' ' + str(result.status))
else:
returnvalue.message = str(Element.Name.GetValue(revitLink)) + ' is already on default workset ' + str(instanceWorksetName)
return returnvalue
# method changing the workset of Revit link types if not on the same workset than the coresponding Revit link instance
def modifyRevitLinkTypes(doc):
returnvalue = res.Result()
try:
for p in FilteredElementCollector(doc).OfClass(RevitLinkType):
changeLink = ModifyRevitLinkTypeData(p, doc)
returnvalue.Update(changeLink)
except Exception as e:
returnvalue.UpdateSep(False, 'Failed to modify revit link instances with exception: ' + str(e))
return returnvalue
# -------------
# main:
# -------------
# modify revit links
Output('Modifying Revit Link(s).... start')
result_ = modifyRevitLinkTypes(doc)
Output(str(result_.message) + ' ' + str(result_.status))
# sync changes back to central
if (doc.IsWorkshared and debug_ == False):
Output('Syncing to Central: start')
syncing_ = com.SyncFile (doc)
Output('Syncing to Central: finished ' + str(syncing_.status))
Output('Modifying Revit Link(s).... finished ')