2021-06-21 12:21:46 +10:00
|
|
|
import ifcopenshell.util.representation
|
|
|
|
|
|
|
|
|
|
|
2021-04-08 21:03:37 +10:00
|
|
|
class Usecase:
|
|
|
|
|
def __init__(self, file, **settings):
|
|
|
|
|
self.file = file
|
|
|
|
|
self.settings = {"material_profile": None, "profile": None}
|
|
|
|
|
for key, value in settings.items():
|
|
|
|
|
self.settings[key] = value
|
|
|
|
|
|
|
|
|
|
def execute(self):
|
2021-06-21 12:21:46 +10:00
|
|
|
old_profile = self.settings["material_profile"].Profile
|
2021-04-08 21:03:37 +10:00
|
|
|
self.settings["material_profile"].Profile = self.settings["profile"]
|
2021-06-21 12:21:46 +10:00
|
|
|
for profile_set in self.settings["material_profile"].ToMaterialProfileSet:
|
|
|
|
|
for inverse in self.file.get_inverse(profile_set):
|
|
|
|
|
if not inverse.is_a("IfcMaterialProfileSetUsage"):
|
|
|
|
|
continue
|
|
|
|
|
if self.file.schema == "IFC2X3":
|
|
|
|
|
for rel in self.file.get_inverse(inverse):
|
|
|
|
|
if not rel.is_a("IfcRelAssociatesMaterial"):
|
|
|
|
|
continue
|
|
|
|
|
for element in rel.RelatedObjects:
|
|
|
|
|
self.change_profile(element)
|
|
|
|
|
else:
|
|
|
|
|
for rel in inverse.AssociatedTo:
|
|
|
|
|
for element in rel.RelatedObjects:
|
|
|
|
|
self.change_profile(element)
|
|
|
|
|
|
|
|
|
|
if old_profile and len(self.file.get_inverse(old_profile)) == 0:
|
|
|
|
|
self.file.remove(old_profile)
|
|
|
|
|
|
|
|
|
|
def change_profile(self, element):
|
|
|
|
|
representation = ifcopenshell.util.representation.get_representation(element, "Model", "Body", "MODEL_VIEW")
|
|
|
|
|
for subelement in self.file.traverse(representation):
|
|
|
|
|
if subelement.is_a("IfcSweptAreaSolid"):
|
|
|
|
|
subelement.SweptArea = self.settings["profile"]
|