Files
IfcOpenShell/src/ifcopenshell-python/ifcopenshell/api/geometry/connect_path.py
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

85 lines
3.4 KiB
Python
Raw Normal View History

# IfcOpenShell - IFC toolkit and geometry engine
# Copyright (C) 2022 Dion Moult <dion@thinkmoult.com>
#
# This file is part of IfcOpenShell.
#
# IfcOpenShell is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# IfcOpenShell 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 Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with IfcOpenShell. If not, see <http://www.gnu.org/licenses/>.
2025-12-19 18:53:04 +05:00
from typing import Optional
import ifcopenshell
import ifcopenshell.api.owner
2024-05-08 17:21:00 +05:00
import ifcopenshell.guid
import ifcopenshell.util.element
2024-05-15 10:55:29 +05:00
def connect_path(
file: ifcopenshell.file,
relating_element: ifcopenshell.entity_instance,
related_element: ifcopenshell.entity_instance,
relating_connection: str = "NOTDEFINED",
related_connection: str = "NOTDEFINED",
description: Optional[str] = None,
connection_geometry: Optional[ifcopenshell.entity_instance] = None,
2024-05-15 10:55:29 +05:00
) -> ifcopenshell.entity_instance:
2025-02-18 15:18:23 +05:00
incompatible_connections: list[ifcopenshell.entity_instance] = []
for rel in relating_element.ConnectedTo:
if not rel.is_a("IfcRelConnectsPathElements"):
continue
2025-02-18 15:18:23 +05:00
if rel.RelatedElement == related_element:
incompatible_connections.append(rel)
2025-02-18 15:18:23 +05:00
elif rel.RelatingConnectionType in ["ATSTART", "ATEND"] and rel.RelatingConnectionType == relating_connection:
incompatible_connections.append(rel)
2025-02-18 15:18:23 +05:00
for rel in relating_element.ConnectedFrom:
if not rel.is_a("IfcRelConnectsPathElements"):
continue
2025-02-18 15:18:23 +05:00
if rel.RelatedConnectionType in ["ATSTART", "ATEND"] and rel.RelatedConnectionType == relating_connection:
incompatible_connections.append(rel)
2025-02-18 15:18:23 +05:00
for rel in related_element.ConnectedFrom:
if not rel.is_a("IfcRelConnectsPathElements"):
continue
2025-02-18 15:18:23 +05:00
if rel.RelatedConnectionType in ["ATSTART", "ATEND"] and rel.RelatedConnectionType == related_connection:
incompatible_connections.append(rel)
2022-09-16 18:30:57 +10:00
2025-02-18 15:18:23 +05:00
for rel in related_element.ConnectedTo:
if not rel.is_a("IfcRelConnectsPathElements"):
continue
2025-02-18 15:18:23 +05:00
if rel.RelatedElement == relating_element:
incompatible_connections.append(rel)
2025-02-18 15:18:23 +05:00
elif rel.RelatingConnectionType in ["ATSTART", "ATEND"] and rel.RelatingConnectionType == related_connection:
incompatible_connections.append(rel)
2022-09-16 18:30:57 +10:00
if incompatible_connections:
for connection in set(incompatible_connections):
history = connection.OwnerHistory
file.remove(connection)
if history:
ifcopenshell.util.element.remove_deep2(file, history)
2025-02-18 15:18:23 +05:00
return file.create_entity(
"IfcRelConnectsPathElements",
ifcopenshell.guid.new(),
OwnerHistory=ifcopenshell.api.owner.create_owner_history(file),
2025-02-18 15:18:23 +05:00
Description=description,
ConnectionGeometry=connection_geometry,
2025-02-18 15:18:23 +05:00
RelatingElement=relating_element,
RelatedElement=related_element,
RelatingConnectionType=relating_connection,
RelatedConnectionType=related_connection,
RelatingPriorities=[],
RelatedPriorities=[],
)