2021-01-07 19:09:55 +11:00
|
|
|
import ifcopenshell
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Usecase:
|
2021-03-27 19:14:32 +11:00
|
|
|
def __init__(self, file, **settings):
|
2021-01-07 19:09:55 +11:00
|
|
|
self.file = file
|
2021-05-28 10:59:20 +10:00
|
|
|
self.settings = {"product": None, "name": None}
|
2021-01-07 19:09:55 +11:00
|
|
|
for key, value in settings.items():
|
|
|
|
|
self.settings[key] = value
|
|
|
|
|
|
|
|
|
|
def execute(self):
|
|
|
|
|
if self.settings["product"].is_a("IfcObject"):
|
2021-05-14 15:13:24 +10:00
|
|
|
for rel in self.settings["product"].IsDefinedBy or []:
|
|
|
|
|
if (
|
|
|
|
|
rel.is_a("IfcRelDefinesByProperties")
|
2021-05-28 10:59:20 +10:00
|
|
|
and rel.RelatingPropertyDefinition.Name == self.settings["name"]
|
2021-05-14 15:13:24 +10:00
|
|
|
):
|
|
|
|
|
return rel.RelatingPropertyDefinition
|
|
|
|
|
|
2021-01-07 19:09:55 +11:00
|
|
|
pset = self.file.create_entity(
|
2021-05-28 10:59:20 +10:00
|
|
|
"IfcPropertySet", **{"GlobalId": ifcopenshell.guid.new(), "Name": self.settings["name"]}
|
2021-01-07 19:09:55 +11:00
|
|
|
)
|
|
|
|
|
self.file.create_entity(
|
|
|
|
|
"IfcRelDefinesByProperties",
|
|
|
|
|
**{
|
|
|
|
|
"GlobalId": ifcopenshell.guid.new(),
|
2021-05-28 10:59:20 +10:00
|
|
|
"OwnerHistory": ifcopenshell.api.run("owner.create_owner_history", self.file),
|
2021-01-07 19:09:55 +11:00
|
|
|
"RelatedObjects": [self.settings["product"]],
|
|
|
|
|
"RelatingPropertyDefinition": pset,
|
|
|
|
|
}
|
|
|
|
|
)
|
2021-05-10 09:27:31 +10:00
|
|
|
return pset
|
2021-01-07 19:09:55 +11:00
|
|
|
elif self.settings["product"].is_a("IfcTypeObject"):
|
2021-05-14 15:13:24 +10:00
|
|
|
for definition in self.settings["product"].HasPropertySets or []:
|
2021-05-28 10:59:20 +10:00
|
|
|
if definition.Name == self.settings["name"]:
|
2021-05-14 15:13:24 +10:00
|
|
|
return definition
|
|
|
|
|
|
2021-01-07 19:09:55 +11:00
|
|
|
pset = self.file.create_entity(
|
2021-05-28 10:59:20 +10:00
|
|
|
"IfcPropertySet", **{"GlobalId": ifcopenshell.guid.new(), "Name": self.settings["name"]}
|
2021-01-07 19:09:55 +11:00
|
|
|
)
|
2021-04-07 13:15:16 +10:00
|
|
|
has_property_sets = list(self.settings["product"].HasPropertySets or [])
|
2021-01-07 19:09:55 +11:00
|
|
|
has_property_sets.append(pset)
|
|
|
|
|
self.settings["product"].HasPropertySets = has_property_sets
|
2021-05-10 09:27:31 +10:00
|
|
|
return pset
|
2021-01-07 19:09:55 +11:00
|
|
|
elif self.settings["product"].is_a("IfcMaterialDefinition"):
|
2021-05-30 13:32:59 +02:00
|
|
|
for definition in self.settings["product"].HasProperties or []:
|
2021-06-01 16:33:47 +02:00
|
|
|
if definition.Name == self.settings["name"]:
|
2021-05-14 15:13:24 +10:00
|
|
|
return definition
|
|
|
|
|
|
2021-05-10 09:27:31 +10:00
|
|
|
return self.file.create_entity(
|
2021-01-17 21:53:31 +11:00
|
|
|
"IfcMaterialProperties",
|
2021-01-07 19:09:55 +11:00
|
|
|
**{
|
2021-05-28 10:59:20 +10:00
|
|
|
"Name": self.settings["name"],
|
2021-01-07 19:09:55 +11:00
|
|
|
"Material": self.settings["product"],
|
|
|
|
|
}
|
|
|
|
|
)
|