mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-05 23:41:44 +00:00
107 lines
4.2 KiB
Python
107 lines
4.2 KiB
Python
# BIMTester - OpenBIM Auditing Tool
|
|
# Copyright (C) 2021 Dion Moult <dion@thinkmoult.com>
|
|
#
|
|
# This file is part of BIMTester.
|
|
#
|
|
# BIMTester 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.
|
|
#
|
|
# BIMTester 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 BIMTester. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
from behave import step
|
|
from bimtester import util
|
|
from bimtester.ifc import IfcStore
|
|
from bimtester.lang import _
|
|
|
|
|
|
@step('All elements must be under "{number}" polygons')
|
|
def step_impl(context, number):
|
|
number = int(number)
|
|
errors = []
|
|
for element in IfcStore.file.by_type("IfcElement"):
|
|
if not element.Representation:
|
|
continue
|
|
total_polygons = 0
|
|
tree = IfcStore.file.traverse(element.Representation)
|
|
for e in tree:
|
|
if e.is_a("IfcFace"):
|
|
total_polygons += 1
|
|
elif e.is_a("IfcPolygonalFaceSet"):
|
|
total_polygons += len(e.Faces)
|
|
elif e.is_a("IfcTriangulatedFaceSet"):
|
|
total_polygons += len(e.CoordIndex)
|
|
if total_polygons > number:
|
|
errors.append((total_polygons, element))
|
|
if errors:
|
|
message = "The following {} elements are over 500 polygons:\n".format(len(errors))
|
|
for error in errors:
|
|
message += "Polygons: {} - {}\n".format(error[0], error[1])
|
|
assert False, message
|
|
|
|
|
|
@step('All "{ifc_class}" elements have an "{representation_class}" representation')
|
|
def step_impl(context, ifc_class, representation_class):
|
|
eleclass_has_geometric_representation_of_specific_class(context, ifc_class, representation_class)
|
|
|
|
|
|
# ************************************************************************************************
|
|
# helper
|
|
def eleclass_has_geometric_representation_of_specific_class(context, ifc_class, representation_class):
|
|
def is_item_a_representation(item, representation):
|
|
if "/" in representation:
|
|
for cls in representation.split("/"):
|
|
if item.is_a(cls):
|
|
return True
|
|
elif item.is_a(representation):
|
|
return True
|
|
|
|
context.falseelems = []
|
|
context.falseguids = []
|
|
context.falseprops = {}
|
|
rep = None
|
|
|
|
elements = IfcStore.file.by_type(ifc_class)
|
|
for elem in elements:
|
|
if not elem.Representation:
|
|
continue
|
|
has_representation = False
|
|
for representation in elem.Representation.Representations:
|
|
for item in representation.Items:
|
|
if item.is_a("IfcMappedItem"):
|
|
# We only check one more level deep.
|
|
for item2 in item.MappingSource.MappedRepresentation.Items:
|
|
if is_item_a_representation(item2, representation_class):
|
|
has_representation = True
|
|
rep = item2
|
|
else:
|
|
if is_item_a_representation(item, representation_class):
|
|
has_representation = True
|
|
rep = item
|
|
if not has_representation:
|
|
context.falseelems.append(str(elem))
|
|
context.falseguids.append(elem.GlobalId)
|
|
context.falseprops[elem.id()] = str(rep)
|
|
|
|
context.elemcount = len(elements)
|
|
context.falsecount = len(context.falseelems)
|
|
util.assert_elements(
|
|
ifc_class,
|
|
context.elemcount,
|
|
context.falsecount,
|
|
context.falseelems,
|
|
message_all_falseelems=_("All {elemcount} {ifc_class} elements are not a {parameter} representation."),
|
|
message_some_falseelems=_(
|
|
"The following {falsecount} of {elemcount} {ifc_class} elements are not a {parameter} representation: {falseelems}"
|
|
),
|
|
message_no_elems=_("There are no {ifc_class} elements in the IFC file."),
|
|
parameter=representation_class,
|
|
)
|