mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-26 02:07:36 +00:00
You can now associate annotations with objects for smart annotations in IFC. See #1153.
This commit is contained in:
@@ -20,42 +20,43 @@ import bpy
|
|||||||
from . import ui, prop, operator, handler, gizmos
|
from . import ui, prop, operator, handler, gizmos
|
||||||
|
|
||||||
classes = (
|
classes = (
|
||||||
operator.AddDrawing,
|
|
||||||
operator.CreateDrawing,
|
|
||||||
operator.AddAnnotation,
|
|
||||||
operator.AddSheet,
|
|
||||||
operator.OpenSheet,
|
|
||||||
operator.AddDrawingToSheet,
|
|
||||||
operator.CreateSheets,
|
|
||||||
operator.OpenView,
|
|
||||||
operator.OpenViewCamera,
|
|
||||||
operator.ActivateView,
|
|
||||||
operator.SelectDocIfcFile,
|
|
||||||
operator.GenerateReferences,
|
|
||||||
operator.ResizeText,
|
|
||||||
operator.AddVariable,
|
|
||||||
operator.RemoveVariable,
|
|
||||||
operator.RemoveDrawing,
|
|
||||||
operator.AddDrawingStyle,
|
|
||||||
operator.RemoveDrawingStyle,
|
|
||||||
operator.SaveDrawingStyle,
|
|
||||||
operator.ActivateDrawingStyle,
|
operator.ActivateDrawingStyle,
|
||||||
operator.EditVectorStyle,
|
operator.ActivateView,
|
||||||
operator.RemoveSheet,
|
operator.AddAnnotation,
|
||||||
operator.AddSchedule,
|
operator.AddDrawing,
|
||||||
operator.RemoveSchedule,
|
operator.AddDrawingStyle,
|
||||||
operator.SelectScheduleFile,
|
|
||||||
operator.BuildSchedule,
|
|
||||||
operator.AddScheduleToSheet,
|
|
||||||
operator.AddDrawingStyleAttribute,
|
operator.AddDrawingStyleAttribute,
|
||||||
operator.RemoveDrawingStyleAttribute,
|
operator.AddDrawingToSheet,
|
||||||
operator.RefreshDrawingList,
|
operator.AddSchedule,
|
||||||
|
operator.AddScheduleToSheet,
|
||||||
|
operator.AddSectionsAnnotations,
|
||||||
|
operator.AddSheet,
|
||||||
|
operator.BuildSchedule,
|
||||||
operator.CleanWireframes,
|
operator.CleanWireframes,
|
||||||
operator.CopyGrid,
|
operator.CopyGrid,
|
||||||
operator.AddSectionsAnnotations,
|
operator.CreateDrawing,
|
||||||
operator.EditText,
|
operator.CreateSheets,
|
||||||
operator.DisableEditingText,
|
operator.DisableEditingText,
|
||||||
|
operator.DisableEditingTextProduct,
|
||||||
|
operator.EditText,
|
||||||
|
operator.EditTextProduct,
|
||||||
|
operator.EditVectorStyle,
|
||||||
operator.EnableEditingText,
|
operator.EnableEditingText,
|
||||||
|
operator.EnableEditingTextProduct,
|
||||||
|
operator.GenerateReferences,
|
||||||
|
operator.OpenSheet,
|
||||||
|
operator.OpenView,
|
||||||
|
operator.OpenViewCamera,
|
||||||
|
operator.RefreshDrawingList,
|
||||||
|
operator.RemoveDrawing,
|
||||||
|
operator.RemoveDrawingStyle,
|
||||||
|
operator.RemoveDrawingStyleAttribute,
|
||||||
|
operator.RemoveSchedule,
|
||||||
|
operator.RemoveSheet,
|
||||||
|
operator.ResizeText,
|
||||||
|
operator.SaveDrawingStyle,
|
||||||
|
operator.SelectDocIfcFile,
|
||||||
|
operator.SelectScheduleFile,
|
||||||
prop.Variable,
|
prop.Variable,
|
||||||
prop.Drawing,
|
prop.Drawing,
|
||||||
prop.Schedule,
|
prop.Schedule,
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ class TextData:
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def load(cls):
|
def load(cls):
|
||||||
cls.data = {"attributes": cls.attributes()}
|
cls.data = {"attributes": cls.attributes(), "relating_product": cls.relating_product()}
|
||||||
cls.is_loaded = True
|
cls.is_loaded = True
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
@@ -45,3 +45,12 @@ class TextData:
|
|||||||
{"name": "Literal", "value": text_literal.Literal},
|
{"name": "Literal", "value": text_literal.Literal},
|
||||||
{"name": "BoxAlignment", "value": text_literal.BoxAlignment},
|
{"name": "BoxAlignment", "value": text_literal.BoxAlignment},
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def relating_product(cls):
|
||||||
|
element = tool.Ifc.get_entity(bpy.context.active_object)
|
||||||
|
if not element or not element.is_a("IfcAnnotation") or element.ObjectType not in ["TEXT", "TEXT_LEADER"]:
|
||||||
|
return
|
||||||
|
for rel in element.HasAssignments:
|
||||||
|
if rel.is_a("IfcRelAssignsToProduct"):
|
||||||
|
return rel.RelatingProduct.Name or "Unnamed"
|
||||||
|
|||||||
@@ -894,27 +894,6 @@ class ResizeText(bpy.types.Operator):
|
|||||||
return {"FINISHED"}
|
return {"FINISHED"}
|
||||||
|
|
||||||
|
|
||||||
class AddVariable(bpy.types.Operator):
|
|
||||||
bl_idname = "bim.add_variable"
|
|
||||||
bl_label = "Add Variable"
|
|
||||||
bl_options = {"REGISTER", "UNDO"}
|
|
||||||
|
|
||||||
def execute(self, context):
|
|
||||||
context.active_object.data.BIMTextProperties.variables.add()
|
|
||||||
return {"FINISHED"}
|
|
||||||
|
|
||||||
|
|
||||||
class RemoveVariable(bpy.types.Operator):
|
|
||||||
bl_idname = "bim.remove_variable"
|
|
||||||
bl_label = "Remove Variable"
|
|
||||||
bl_options = {"REGISTER", "UNDO"}
|
|
||||||
index: bpy.props.IntProperty()
|
|
||||||
|
|
||||||
def execute(self, context):
|
|
||||||
context.active_object.data.BIMTextProperties.variables.remove(self.index)
|
|
||||||
return {"FINISHED"}
|
|
||||||
|
|
||||||
|
|
||||||
class RemoveDrawing(bpy.types.Operator):
|
class RemoveDrawing(bpy.types.Operator):
|
||||||
bl_idname = "bim.remove_drawing"
|
bl_idname = "bim.remove_drawing"
|
||||||
bl_label = "Remove Drawing"
|
bl_label = "Remove Drawing"
|
||||||
@@ -1411,3 +1390,33 @@ class DisableEditingText(bpy.types.Operator, Operator):
|
|||||||
|
|
||||||
def _execute(self, context):
|
def _execute(self, context):
|
||||||
core.disable_editing_text(tool.Drawing, obj=context.active_object)
|
core.disable_editing_text(tool.Drawing, obj=context.active_object)
|
||||||
|
|
||||||
|
|
||||||
|
class EditTextProduct(bpy.types.Operator, Operator):
|
||||||
|
bl_idname = "bim.edit_text_product"
|
||||||
|
bl_label = "Edit Text Product"
|
||||||
|
bl_options = {"REGISTER", "UNDO"}
|
||||||
|
|
||||||
|
def _execute(self, context):
|
||||||
|
product = None
|
||||||
|
if context.active_object.BIMTextProperties.relating_product:
|
||||||
|
product = tool.Ifc.get_entity(context.active_object.BIMTextProperties.relating_product)
|
||||||
|
core.edit_text_product(tool.Ifc, tool.Drawing, obj=context.active_object, product=product)
|
||||||
|
|
||||||
|
|
||||||
|
class EnableEditingTextProduct(bpy.types.Operator, Operator):
|
||||||
|
bl_idname = "bim.enable_editing_text_product"
|
||||||
|
bl_label = "Enable Editing Text Product"
|
||||||
|
bl_options = {"REGISTER", "UNDO"}
|
||||||
|
|
||||||
|
def _execute(self, context):
|
||||||
|
core.enable_editing_text_product(tool.Drawing, obj=context.active_object)
|
||||||
|
|
||||||
|
|
||||||
|
class DisableEditingTextProduct(bpy.types.Operator, Operator):
|
||||||
|
bl_idname = "bim.disable_editing_text_product"
|
||||||
|
bl_label = "Disable Editing Text Product"
|
||||||
|
bl_options = {"REGISTER", "UNDO"}
|
||||||
|
|
||||||
|
def _execute(self, context):
|
||||||
|
core.disable_editing_text_product(tool.Drawing, obj=context.active_object)
|
||||||
|
|||||||
@@ -358,6 +358,7 @@ class BIMCameraProperties(PropertyGroup):
|
|||||||
|
|
||||||
class BIMTextProperties(PropertyGroup):
|
class BIMTextProperties(PropertyGroup):
|
||||||
is_editing: BoolProperty(name="Is Editing", default=False)
|
is_editing: BoolProperty(name="Is Editing", default=False)
|
||||||
|
is_editing_product: BoolProperty(name="Is Editing Product", default=False)
|
||||||
attributes: CollectionProperty(name="Attributes", type=Attribute)
|
attributes: CollectionProperty(name="Attributes", type=Attribute)
|
||||||
value: StringProperty(name="Value", default="TEXT")
|
value: StringProperty(name="Value", default="TEXT")
|
||||||
font_size: EnumProperty(
|
font_size: EnumProperty(
|
||||||
@@ -381,5 +382,4 @@ class BIMTextProperties(PropertyGroup):
|
|||||||
update=refreshFontSize,
|
update=refreshFontSize,
|
||||||
name="Symbol",
|
name="Symbol",
|
||||||
)
|
)
|
||||||
related_element: PointerProperty(name="Related Element", type=bpy.types.Object)
|
relating_product: PointerProperty(name="Relating Product", type=bpy.types.Object)
|
||||||
variables: CollectionProperty(name="Variables", type=Variable)
|
|
||||||
|
|||||||
@@ -255,7 +255,6 @@ class BIM_PT_text(Panel):
|
|||||||
if not TextData.is_loaded:
|
if not TextData.is_loaded:
|
||||||
TextData.load()
|
TextData.load()
|
||||||
|
|
||||||
self.layout.use_property_split = True
|
|
||||||
props = context.active_object.BIMTextProperties
|
props = context.active_object.BIMTextProperties
|
||||||
|
|
||||||
if props.is_editing:
|
if props.is_editing:
|
||||||
@@ -272,22 +271,20 @@ class BIM_PT_text(Panel):
|
|||||||
row.label(text=attribute["name"])
|
row.label(text=attribute["name"])
|
||||||
row.label(text=attribute["value"])
|
row.label(text=attribute["value"])
|
||||||
|
|
||||||
|
if props.is_editing_product:
|
||||||
|
row = self.layout.row(align=True)
|
||||||
|
row.prop(props, "relating_product", text="")
|
||||||
|
row.operator("bim.edit_text_product", icon="CHECKMARK", text="")
|
||||||
|
row.operator("bim.disable_editing_text_product", icon="CANCEL", text="")
|
||||||
|
else:
|
||||||
|
row = self.layout.row(align=True)
|
||||||
|
row.label(text=TextData.data["relating_product"] or "No Relating Product", icon="OBJECT_DATA")
|
||||||
|
row.operator("bim.enable_editing_text_product", icon="GREASEPENCIL", text="")
|
||||||
|
|
||||||
row = self.layout.row()
|
row = self.layout.row()
|
||||||
row.prop(props, "font_size")
|
row.prop(props, "font_size")
|
||||||
row = self.layout.row()
|
row = self.layout.row()
|
||||||
row.prop(props, "symbol")
|
row.prop(props, "symbol")
|
||||||
row = self.layout.row()
|
|
||||||
row.prop(props, "related_element")
|
|
||||||
|
|
||||||
row = self.layout.row()
|
|
||||||
row.operator("bim.add_variable")
|
|
||||||
|
|
||||||
for index, variable in enumerate(props.variables):
|
|
||||||
row = self.layout.row(align=True)
|
|
||||||
row.prop(variable, "name")
|
|
||||||
row.operator("bim.remove_variable", icon="X", text="").index = index
|
|
||||||
row = self.layout.row()
|
|
||||||
row.prop(variable, "prop_key")
|
|
||||||
|
|
||||||
|
|
||||||
class BIM_PT_annotation_utilities(Panel):
|
class BIM_PT_annotation_utilities(Panel):
|
||||||
|
|||||||
@@ -34,3 +34,25 @@ def edit_text(ifc, drawing, obj=None):
|
|||||||
)
|
)
|
||||||
drawing.update_text_value(obj)
|
drawing.update_text_value(obj)
|
||||||
drawing.disable_editing_text(obj)
|
drawing.disable_editing_text(obj)
|
||||||
|
|
||||||
|
|
||||||
|
def enable_editing_text_product(drawing, obj=None):
|
||||||
|
drawing.enable_editing_text_product(obj)
|
||||||
|
drawing.import_text_product(obj)
|
||||||
|
|
||||||
|
|
||||||
|
def disable_editing_text_product(drawing, obj=None):
|
||||||
|
drawing.disable_editing_text_product(obj)
|
||||||
|
|
||||||
|
|
||||||
|
def edit_text_product(ifc, drawing, obj=None, product=None):
|
||||||
|
element = ifc.get_entity(obj)
|
||||||
|
existing_product = drawing.get_text_product(element)
|
||||||
|
if existing_product == product:
|
||||||
|
return
|
||||||
|
if existing_product:
|
||||||
|
ifc.run("drawing.unassign_product", relating_product=existing_product, related_object=element)
|
||||||
|
if product:
|
||||||
|
ifc.run("drawing.assign_product", relating_product=product, related_object=element)
|
||||||
|
drawing.update_text_value(obj)
|
||||||
|
drawing.disable_editing_text_product(obj)
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ def add_representation(
|
|||||||
edit_object_placement(ifc, geometry, surveyor, obj=obj)
|
edit_object_placement(ifc, geometry, surveyor, obj=obj)
|
||||||
data = geometry.get_object_data(obj)
|
data = geometry.get_object_data(obj)
|
||||||
|
|
||||||
if not data:
|
if not data and ifc_representation_class != "IfcTextLiteral":
|
||||||
return
|
return
|
||||||
|
|
||||||
representation = ifc.run(
|
representation = ifc.run(
|
||||||
@@ -66,11 +66,12 @@ def add_representation(
|
|||||||
|
|
||||||
ifc.run("geometry.assign_representation", product=element, representation=representation)
|
ifc.run("geometry.assign_representation", product=element, representation=representation)
|
||||||
|
|
||||||
data = geometry.duplicate_object_data(obj)
|
if data:
|
||||||
geometry.change_object_data(obj, data, is_global=True)
|
data = geometry.duplicate_object_data(obj)
|
||||||
name = geometry.get_representation_name(representation)
|
geometry.change_object_data(obj, data, is_global=True)
|
||||||
geometry.rename_object(data, name)
|
name = geometry.get_representation_name(representation)
|
||||||
geometry.link(representation, data)
|
geometry.rename_object(data, name)
|
||||||
|
geometry.link(representation, data)
|
||||||
|
|
||||||
return representation
|
return representation
|
||||||
|
|
||||||
|
|||||||
@@ -99,10 +99,14 @@ class Debug:
|
|||||||
@interface
|
@interface
|
||||||
class Drawing:
|
class Drawing:
|
||||||
def disable_editing_text(cls, obj): pass
|
def disable_editing_text(cls, obj): pass
|
||||||
|
def disable_editing_text_product(cls, obj): pass
|
||||||
def enable_editing_text(cls, obj): pass
|
def enable_editing_text(cls, obj): pass
|
||||||
|
def enable_editing_text_product(cls, obj): pass
|
||||||
def export_text_literal_attributes(cls, obj): pass
|
def export_text_literal_attributes(cls, obj): pass
|
||||||
def get_text_literal(cls, obj): pass
|
def get_text_literal(cls, obj): pass
|
||||||
|
def get_text_product(cls, element): pass
|
||||||
def import_text_attributes(cls, obj): pass
|
def import_text_attributes(cls, obj): pass
|
||||||
|
def import_text_product(cls, obj): pass
|
||||||
def update_text_value(cls, obj): pass
|
def update_text_value(cls, obj): pass
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -27,10 +27,18 @@ class Drawing(blenderbim.core.tool.Drawing):
|
|||||||
def disable_editing_text(cls, obj):
|
def disable_editing_text(cls, obj):
|
||||||
obj.BIMTextProperties.is_editing = False
|
obj.BIMTextProperties.is_editing = False
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def disable_editing_text_product(cls, obj):
|
||||||
|
obj.BIMTextProperties.is_editing_product = False
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def enable_editing_text(cls, obj):
|
def enable_editing_text(cls, obj):
|
||||||
obj.BIMTextProperties.is_editing = True
|
obj.BIMTextProperties.is_editing = True
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def enable_editing_text_product(cls, obj):
|
||||||
|
obj.BIMTextProperties.is_editing_product = True
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def export_text_literal_attributes(cls, obj):
|
def export_text_literal_attributes(cls, obj):
|
||||||
return blenderbim.bim.helper.export_attributes(obj.BIMTextProperties.attributes)
|
return blenderbim.bim.helper.export_attributes(obj.BIMTextProperties.attributes)
|
||||||
@@ -47,6 +55,12 @@ class Drawing(blenderbim.core.tool.Drawing):
|
|||||||
if items:
|
if items:
|
||||||
return items[0]
|
return items[0]
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def get_text_product(cls, element):
|
||||||
|
for rel in element.HasAssignments:
|
||||||
|
if rel.is_a("IfcRelAssignsToProduct"):
|
||||||
|
return rel.RelatingProduct
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def import_text_attributes(cls, obj):
|
def import_text_attributes(cls, obj):
|
||||||
props = obj.BIMTextProperties
|
props = obj.BIMTextProperties
|
||||||
@@ -54,6 +68,15 @@ class Drawing(blenderbim.core.tool.Drawing):
|
|||||||
text = cls.get_text_literal(obj)
|
text = cls.get_text_literal(obj)
|
||||||
blenderbim.bim.helper.import_attributes2(text, props.attributes)
|
blenderbim.bim.helper.import_attributes2(text, props.attributes)
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def import_text_product(cls, obj):
|
||||||
|
element = tool.Ifc.get_entity(obj)
|
||||||
|
product = cls.get_text_product(element)
|
||||||
|
if product:
|
||||||
|
obj.BIMTextProperties.relating_product = tool.Ifc.get_object(product)
|
||||||
|
else:
|
||||||
|
obj.BIMTextProperties.relating_product = None
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def update_text_value(cls, obj):
|
def update_text_value(cls, obj):
|
||||||
element = cls.get_text_literal(obj)
|
element = cls.get_text_literal(obj)
|
||||||
|
|||||||
@@ -41,3 +41,27 @@ class TestEditText:
|
|||||||
drawing.update_text_value("obj").should_be_called()
|
drawing.update_text_value("obj").should_be_called()
|
||||||
drawing.disable_editing_text("obj").should_be_called()
|
drawing.disable_editing_text("obj").should_be_called()
|
||||||
subject.edit_text(ifc, drawing, obj="obj")
|
subject.edit_text(ifc, drawing, obj="obj")
|
||||||
|
|
||||||
|
|
||||||
|
class TestEnableEditingTextProduct:
|
||||||
|
def test_run(self, drawing):
|
||||||
|
drawing.enable_editing_text_product("obj").should_be_called()
|
||||||
|
drawing.import_text_product("obj").should_be_called()
|
||||||
|
subject.enable_editing_text_product(drawing, obj="obj")
|
||||||
|
|
||||||
|
|
||||||
|
class TestDisableEditingTextProduct:
|
||||||
|
def test_run(self, drawing):
|
||||||
|
drawing.disable_editing_text_product("obj").should_be_called()
|
||||||
|
subject.disable_editing_text_product(drawing, obj="obj")
|
||||||
|
|
||||||
|
|
||||||
|
class TestEditTextProduct:
|
||||||
|
def test_run(self, ifc, drawing):
|
||||||
|
ifc.get_entity("obj").should_be_called().will_return("element")
|
||||||
|
drawing.get_text_product("element").should_be_called().will_return("existing_product")
|
||||||
|
ifc.run("drawing.unassign_product", relating_product="existing_product", related_object="element").should_be_called()
|
||||||
|
ifc.run("drawing.assign_product", relating_product="product", related_object="element").should_be_called()
|
||||||
|
drawing.update_text_value("obj").should_be_called()
|
||||||
|
drawing.disable_editing_text_product("obj").should_be_called()
|
||||||
|
subject.edit_text_product(ifc, drawing, obj="obj", product="product")
|
||||||
|
|||||||
@@ -37,6 +37,14 @@ class TestDisableEditingText(NewFile):
|
|||||||
assert obj.BIMTextProperties.is_editing == False
|
assert obj.BIMTextProperties.is_editing == False
|
||||||
|
|
||||||
|
|
||||||
|
class TestDisableEditingTextProduct(NewFile):
|
||||||
|
def test_run(self):
|
||||||
|
obj = bpy.data.objects.new("Object", None)
|
||||||
|
obj.BIMTextProperties.is_editing_product = True
|
||||||
|
subject.disable_editing_text_product(obj)
|
||||||
|
assert obj.BIMTextProperties.is_editing_product == False
|
||||||
|
|
||||||
|
|
||||||
class TestEnableEditingText(NewFile):
|
class TestEnableEditingText(NewFile):
|
||||||
def test_run(self):
|
def test_run(self):
|
||||||
obj = bpy.data.objects.new("Object", None)
|
obj = bpy.data.objects.new("Object", None)
|
||||||
@@ -44,6 +52,13 @@ class TestEnableEditingText(NewFile):
|
|||||||
assert obj.BIMTextProperties.is_editing == True
|
assert obj.BIMTextProperties.is_editing == True
|
||||||
|
|
||||||
|
|
||||||
|
class TestEnableEditingTextProduct(NewFile):
|
||||||
|
def test_run(self):
|
||||||
|
obj = bpy.data.objects.new("Object", None)
|
||||||
|
subject.enable_editing_text_product(obj)
|
||||||
|
assert obj.BIMTextProperties.is_editing_product == True
|
||||||
|
|
||||||
|
|
||||||
class TestExportTextLiteralAttributes(NewFile):
|
class TestExportTextLiteralAttributes(NewFile):
|
||||||
def test_run(self):
|
def test_run(self):
|
||||||
TestImportTextAttributes().test_run()
|
TestImportTextAttributes().test_run()
|
||||||
@@ -69,6 +84,16 @@ class TestGetTextLiteral(NewFile):
|
|||||||
assert subject.get_text_literal(obj) == item
|
assert subject.get_text_literal(obj) == item
|
||||||
|
|
||||||
|
|
||||||
|
class TestGetTextProduct(NewFile):
|
||||||
|
def test_run(self):
|
||||||
|
ifc = ifcopenshell.file()
|
||||||
|
tool.Ifc.set(ifc)
|
||||||
|
wall = ifc.createIfcWall()
|
||||||
|
label = ifc.createIfcAnnotation()
|
||||||
|
ifcopenshell.api.run("drawing.assign_product", ifc, relating_product=wall, related_object=label)
|
||||||
|
assert subject.get_text_product(label) == wall
|
||||||
|
|
||||||
|
|
||||||
class TestImportTextAttributes(NewFile):
|
class TestImportTextAttributes(NewFile):
|
||||||
def test_run(self):
|
def test_run(self):
|
||||||
ifc = ifcopenshell.file()
|
ifc = ifcopenshell.file()
|
||||||
@@ -88,6 +113,30 @@ class TestImportTextAttributes(NewFile):
|
|||||||
assert props.attributes.get("BoxAlignment").string_value == "BoxAlignment"
|
assert props.attributes.get("BoxAlignment").string_value == "BoxAlignment"
|
||||||
|
|
||||||
|
|
||||||
|
class TestImportTextProduct(NewFile):
|
||||||
|
def test_run(self):
|
||||||
|
ifc = ifcopenshell.file()
|
||||||
|
tool.Ifc.set(ifc)
|
||||||
|
wall = ifc.createIfcWall()
|
||||||
|
label = ifc.createIfcAnnotation()
|
||||||
|
ifcopenshell.api.run("drawing.assign_product", ifc, relating_product=wall, related_object=label)
|
||||||
|
wall_obj = bpy.data.objects.new("Object", None)
|
||||||
|
label_obj = bpy.data.objects.new("Object", None)
|
||||||
|
tool.Ifc.link(wall, wall_obj)
|
||||||
|
tool.Ifc.link(label, label_obj)
|
||||||
|
subject.import_text_product(label_obj)
|
||||||
|
assert label_obj.BIMTextProperties.relating_product == wall_obj
|
||||||
|
|
||||||
|
def test_doing_nothing_if_no_product_to_import(self):
|
||||||
|
ifc = ifcopenshell.file()
|
||||||
|
tool.Ifc.set(ifc)
|
||||||
|
label = ifc.createIfcAnnotation()
|
||||||
|
label_obj = bpy.data.objects.new("Object", None)
|
||||||
|
tool.Ifc.link(label, label_obj)
|
||||||
|
subject.import_text_product(label_obj)
|
||||||
|
assert label_obj.BIMTextProperties.relating_product is None
|
||||||
|
|
||||||
|
|
||||||
class TestUpdateTextValue(NewFile):
|
class TestUpdateTextValue(NewFile):
|
||||||
def test_run(self):
|
def test_run(self):
|
||||||
TestGetTextLiteral().test_run()
|
TestGetTextLiteral().test_run()
|
||||||
|
|||||||
@@ -0,0 +1,43 @@
|
|||||||
|
import ifcopenshell
|
||||||
|
import ifcopenshell.api
|
||||||
|
|
||||||
|
|
||||||
|
class Usecase:
|
||||||
|
def __init__(self, file, **settings):
|
||||||
|
self.file = file
|
||||||
|
self.settings = {
|
||||||
|
"relating_product": None,
|
||||||
|
"related_object": None,
|
||||||
|
}
|
||||||
|
for key, value in settings.items():
|
||||||
|
self.settings[key] = value
|
||||||
|
|
||||||
|
def execute(self):
|
||||||
|
if self.settings["related_object"].HasAssignments:
|
||||||
|
for assignment in self.settings["related_object"].HasAssignments:
|
||||||
|
if (
|
||||||
|
assignment.is_a("IfcRelAssignsToProduct")
|
||||||
|
and assignment.RelatingProduct == self.settings["relating_product"]
|
||||||
|
):
|
||||||
|
return
|
||||||
|
|
||||||
|
referenced_by = None
|
||||||
|
if self.settings["relating_product"].ReferencedBy:
|
||||||
|
referenced_by = self.settings["relating_product"].ReferencedBy[0]
|
||||||
|
|
||||||
|
if referenced_by:
|
||||||
|
related_objects = list(referenced_by.RelatedObjects)
|
||||||
|
related_objects.append(self.settings["related_object"])
|
||||||
|
referenced_by.RelatedObjects = related_objects
|
||||||
|
ifcopenshell.api.run("owner.update_owner_history", self.file, **{"element": referenced_by})
|
||||||
|
else:
|
||||||
|
referenced_by = self.file.create_entity(
|
||||||
|
"IfcRelAssignsToProduct",
|
||||||
|
**{
|
||||||
|
"GlobalId": ifcopenshell.guid.new(),
|
||||||
|
"OwnerHistory": ifcopenshell.api.run("owner.create_owner_history", self.file),
|
||||||
|
"RelatedObjects": [self.settings["related_object"]],
|
||||||
|
"RelatingProduct": self.settings["relating_product"],
|
||||||
|
}
|
||||||
|
)
|
||||||
|
return referenced_by
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
import ifcopenshell
|
||||||
|
import ifcopenshell.api
|
||||||
|
|
||||||
|
|
||||||
|
class Usecase:
|
||||||
|
def __init__(self, file, **settings):
|
||||||
|
self.file = file
|
||||||
|
self.settings = {
|
||||||
|
"relating_product": None,
|
||||||
|
"related_object": None,
|
||||||
|
}
|
||||||
|
for key, value in settings.items():
|
||||||
|
self.settings[key] = value
|
||||||
|
|
||||||
|
def execute(self):
|
||||||
|
for rel in self.settings["related_object"].HasAssignments or []:
|
||||||
|
if not rel.is_a("IfcRelAssignsToProduct") or rel.RelatingProduct != self.settings["relating_product"]:
|
||||||
|
continue
|
||||||
|
if len(rel.RelatedObjects) == 1:
|
||||||
|
return self.file.remove(rel)
|
||||||
|
related_objects = list(rel.RelatedObjects)
|
||||||
|
related_objects.remove(self.settings["related_object"])
|
||||||
|
rel.RelatedObjects = related_objects
|
||||||
|
ifcopenshell.api.run("owner.update_owner_history", self.file, **{"element": rel})
|
||||||
|
return rel
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
import test.bootstrap
|
||||||
|
import ifcopenshell.api
|
||||||
|
|
||||||
|
|
||||||
|
class TestAssignProduct(test.bootstrap.IFC4):
|
||||||
|
def test_assigning_a_product(self):
|
||||||
|
wall = self.file.createIfcWall()
|
||||||
|
label = self.file.createIfcAnnotation()
|
||||||
|
label2 = self.file.createIfcAnnotation()
|
||||||
|
ifcopenshell.api.run("drawing.assign_product", self.file, relating_product=wall, related_object=label)
|
||||||
|
assert wall.ReferencedBy[0].RelatedObjects == (label,)
|
||||||
|
ifcopenshell.api.run("drawing.assign_product", self.file, relating_product=wall, related_object=label2)
|
||||||
|
assert wall.ReferencedBy[0].RelatedObjects == (label, label2)
|
||||||
|
|
||||||
|
def test_not_assigning_twice(self):
|
||||||
|
wall = self.file.createIfcWall()
|
||||||
|
label = self.file.createIfcAnnotation()
|
||||||
|
ifcopenshell.api.run("drawing.assign_product", self.file, relating_product=wall, related_object=label)
|
||||||
|
ifcopenshell.api.run("drawing.assign_product", self.file, relating_product=wall, related_object=label)
|
||||||
|
assert wall.ReferencedBy[0].RelatedObjects == (label,)
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
import test.bootstrap
|
||||||
|
import ifcopenshell.api
|
||||||
|
|
||||||
|
|
||||||
|
class TestUnassignProduct(test.bootstrap.IFC4):
|
||||||
|
def test_unassigning_a_product(self):
|
||||||
|
wall = self.file.createIfcWall()
|
||||||
|
label = self.file.createIfcAnnotation()
|
||||||
|
ifcopenshell.api.run("drawing.assign_product", self.file, relating_product=wall, related_object=label)
|
||||||
|
ifcopenshell.api.run("drawing.unassign_product", self.file, relating_product=wall, related_object=label)
|
||||||
|
assert len(self.file.by_type("IfcRelAssignsToProduct")) == 0
|
||||||
Reference in New Issue
Block a user