2022-01-19 12:18:33 +11:00
|
|
|
# IfcOpenShell - IFC toolkit and geometry engine
|
|
|
|
|
# Copyright (C) 2021 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/>.
|
2024-06-28 12:36:31 +10:00
|
|
|
|
|
|
|
|
import ifcopenshell.api.style
|
2021-07-10 11:43:01 +10:00
|
|
|
import ifcopenshell.util.element
|
2024-09-13 14:09:59 +05:00
|
|
|
from typing import Any
|
2021-07-10 11:43:01 +10:00
|
|
|
|
|
|
|
|
|
2024-05-10 11:21:53 +05:00
|
|
|
def remove_style(file: ifcopenshell.file, style: ifcopenshell.entity_instance) -> None:
|
2024-05-06 14:35:39 +10:00
|
|
|
"""Removes a presentation style
|
|
|
|
|
|
|
|
|
|
All of the presentation items of the style will also be removed.
|
2023-01-04 16:09:16 +11:00
|
|
|
|
2024-05-06 14:35:39 +10:00
|
|
|
:param style: The IfcPresentationStyle to remove.
|
|
|
|
|
:return: None
|
2023-01-04 16:09:16 +11:00
|
|
|
|
2024-05-06 14:35:39 +10:00
|
|
|
Example:
|
2023-01-04 16:09:16 +11:00
|
|
|
|
2024-05-06 14:35:39 +10:00
|
|
|
.. code:: python
|
2023-01-10 10:16:28 +11:00
|
|
|
|
2024-05-06 14:35:39 +10:00
|
|
|
# Create a new surface style
|
2024-06-28 12:36:31 +10:00
|
|
|
style = ifcopenshell.api.style.add_style(model)
|
2023-01-04 16:09:16 +11:00
|
|
|
|
2024-05-06 14:35:39 +10:00
|
|
|
# Not anymore!
|
2024-06-28 12:36:31 +10:00
|
|
|
ifcopenshell.api.style.remove_style(model, style=style)
|
2024-05-06 14:35:39 +10:00
|
|
|
"""
|
|
|
|
|
usecase = Usecase()
|
|
|
|
|
usecase.file = file
|
|
|
|
|
usecase.settings = {"style": style}
|
2024-09-30 20:58:16 +05:00
|
|
|
return usecase.execute(style)
|
2023-01-04 16:09:16 +11:00
|
|
|
|
2021-07-10 11:43:01 +10:00
|
|
|
|
2024-05-06 14:35:39 +10:00
|
|
|
class Usecase:
|
2024-09-13 14:09:59 +05:00
|
|
|
file: ifcopenshell.file
|
|
|
|
|
settings: dict[str, Any]
|
|
|
|
|
|
2024-09-30 20:58:16 +05:00
|
|
|
def execute(self, style: ifcopenshell.entity_instance) -> None:
|
|
|
|
|
self.purge_styled_items(style)
|
|
|
|
|
if style.is_a("IfcSurfaceStyle"):
|
|
|
|
|
for style_ in style.Styles:
|
|
|
|
|
ifcopenshell.api.style.remove_surface_style(self.file, style=style_)
|
|
|
|
|
self.file.remove(style)
|
2021-07-10 11:43:01 +10:00
|
|
|
|
2024-09-20 11:34:05 +05:00
|
|
|
def purge_styled_items(self, style: ifcopenshell.entity_instance) -> None:
|
2021-07-10 11:43:01 +10:00
|
|
|
for inverse in self.file.get_inverse(style):
|
|
|
|
|
if inverse.is_a("IfcStyledItem") and len(inverse.Styles) == 1:
|
|
|
|
|
self.purge_styled_representations(inverse)
|
|
|
|
|
self.file.remove(inverse)
|
|
|
|
|
|
2024-09-20 11:34:05 +05:00
|
|
|
def purge_styled_representations(self, styled_item: ifcopenshell.entity_instance) -> None:
|
2021-07-10 11:43:01 +10:00
|
|
|
for inverse in self.file.get_inverse(styled_item):
|
|
|
|
|
if inverse.is_a("IfcStyledRepresentation") and len(inverse.Items) == 1:
|
|
|
|
|
self.purge_material_definition_representations(inverse)
|
|
|
|
|
self.file.remove(inverse)
|
|
|
|
|
|
2024-09-20 11:34:05 +05:00
|
|
|
def purge_material_definition_representations(self, styled_representation: ifcopenshell.entity_instance) -> None:
|
2021-07-10 11:43:01 +10:00
|
|
|
for inverse in self.file.get_inverse(styled_representation):
|
|
|
|
|
if inverse.is_a("IfcMaterialDefinitionRepresentation") and len(inverse.Representations) == 1:
|
|
|
|
|
self.file.remove(inverse)
|