mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-21 14:23:53 +00:00
206 lines
7.3 KiB
Python
206 lines
7.3 KiB
Python
import bpy
|
|
import ifcopenshell
|
|
import bimtester
|
|
import os
|
|
import webbrowser
|
|
from pathlib import Path
|
|
from itertools import cycle
|
|
|
|
|
|
class ExecuteBIMTester(bpy.types.Operator):
|
|
bl_idname = "bim.execute_bim_tester"
|
|
bl_label = "Execute BIMTester"
|
|
|
|
def execute(self, context):
|
|
|
|
filename = os.path.join(
|
|
bpy.context.scene.BimTesterProperties.features_dir, bpy.context.scene.BimTesterProperties.features_file + ".feature"
|
|
)
|
|
cwd = os.getcwd()
|
|
os.chdir(bpy.context.scene.BimTesterProperties.features_dir)
|
|
bimtester.run.run_tests({"feature": filename, "advanced_arguments": None, "console": False})
|
|
bimtester.reports.generate_report()
|
|
webbrowser.open(
|
|
"file://"
|
|
+ os.path.join(
|
|
bpy.context.scene.BimTesterProperties.features_dir,
|
|
"report",
|
|
bpy.context.scene.BimTesterProperties.features_file + ".feature.html",
|
|
)
|
|
)
|
|
os.chdir(cwd)
|
|
return {"FINISHED"}
|
|
|
|
class BIMTesterPurge(bpy.types.Operator):
|
|
bl_idname = "bim.bim_tester_purge"
|
|
bl_label = "Purge Tests"
|
|
|
|
def execute(self, context):
|
|
|
|
filename = os.path.join(
|
|
bpy.context.scene.BimTesterProperties.features_dir, bpy.context.scene.BimTesterProperties.features_file + ".feature"
|
|
)
|
|
cwd = os.getcwd()
|
|
os.chdir(bpy.context.scene.BimTesterProperties.features_dir)
|
|
bimtester.clean.TestPurger().purge()
|
|
os.chdir(cwd)
|
|
return {"FINISHED"}
|
|
|
|
class SelectFeaturesDir(bpy.types.Operator):
|
|
bl_idname = "bim.select_features_dir"
|
|
bl_label = "Select Features Directory"
|
|
filepath: bpy.props.StringProperty(subtype="FILE_PATH")
|
|
|
|
def execute(self, context):
|
|
bpy.context.scene.BimTesterProperties.features_dir = (
|
|
os.path.dirname(os.path.abspath(self.filepath)) if "." in self.filepath else self.filepath
|
|
)
|
|
return {"FINISHED"}
|
|
|
|
def invoke(self, context, event):
|
|
context.window_manager.fileselect_add(self)
|
|
return {"RUNNING_MODAL"}
|
|
|
|
class RejectElement(bpy.types.Operator):
|
|
bl_idname = "bim.reject_element"
|
|
bl_label = "Reject Element"
|
|
|
|
def execute(self, context):
|
|
lines = []
|
|
for object in bpy.context.selected_objects:
|
|
lines.append(
|
|
" * The element {} should not exist because {}".format(
|
|
object.BIMObjectProperties.attributes[
|
|
object.BIMObjectProperties.attributes.find("GlobalId")
|
|
].string_value,
|
|
bpy.context.scene.BimTesterProperties.qa_reject_element_reason,
|
|
)
|
|
)
|
|
QAHelper.append_to_scenario(lines)
|
|
return {"FINISHED"}
|
|
|
|
class ColourByClass(bpy.types.Operator):
|
|
bl_idname = "bim.colour_by_class"
|
|
bl_label = "Colour by Class"
|
|
|
|
def execute(self, context):
|
|
colours = cycle(colour_list)
|
|
ifc_classes = {}
|
|
for obj in bpy.context.visible_objects:
|
|
if "/" not in obj.name:
|
|
continue
|
|
ifc_class = obj.name.split("/")[0]
|
|
if ifc_class not in ifc_classes:
|
|
ifc_classes[ifc_class] = next(colours)
|
|
obj.color = ifc_classes[ifc_class]
|
|
area = next(area for area in bpy.context.screen.areas if area.type == "VIEW_3D")
|
|
area.spaces[0].shading.color_type = "OBJECT"
|
|
return {"FINISHED"}
|
|
|
|
class ResetObjectColours(bpy.types.Operator):
|
|
bl_idname = "bim.reset_object_colours"
|
|
bl_label = "Reset Colours"
|
|
|
|
def execute(self, context):
|
|
for object in bpy.context.selected_objects:
|
|
object.color = (1, 1, 1, 1)
|
|
return {"FINISHED"}
|
|
|
|
class ApproveClass(bpy.types.Operator):
|
|
bl_idname = "bim.approve_class"
|
|
bl_label = "Approve Class"
|
|
|
|
def execute(self, context):
|
|
lines = []
|
|
for object in bpy.context.selected_objects:
|
|
index = object.BIMObjectProperties.attributes.find("GlobalId")
|
|
if index != -1:
|
|
lines.append(
|
|
" * The element {} is an {}".format(
|
|
object.BIMObjectProperties.attributes[index].string_value, object.name.split("/")[0]
|
|
)
|
|
)
|
|
QAHelper.append_to_scenario(lines)
|
|
return {"FINISHED"}
|
|
|
|
class RejectClass(bpy.types.Operator):
|
|
bl_idname = "bim.reject_class"
|
|
bl_label = "Reject Class"
|
|
|
|
def execute(self, context):
|
|
lines = []
|
|
for object in bpy.context.selected_objects:
|
|
lines.append(
|
|
" * The element {} is an {}".format(
|
|
object.BIMObjectProperties.attributes[
|
|
object.BIMObjectProperties.attributes.find("GlobalId")
|
|
].string_value,
|
|
bpy.context.scene.BimTesterProperties.audit_ifc_class,
|
|
)
|
|
)
|
|
QAHelper.append_to_scenario(lines)
|
|
return {"FINISHED"}
|
|
|
|
class SelectAudited(bpy.types.Operator):
|
|
bl_idname = "bim.select_audited"
|
|
bl_label = "Select Audited"
|
|
|
|
def execute(self, context):
|
|
audited_global_ids = []
|
|
for filename in Path(bpy.context.scene.BimTesterProperties.features_dir).glob("*.feature"):
|
|
with open(filename, "r") as feature_file:
|
|
lines = feature_file.readlines()
|
|
for line in lines:
|
|
words = line.strip().split()
|
|
for word in words:
|
|
if self.is_a_global_id(word):
|
|
audited_global_ids.append(word)
|
|
for object in bpy.context.visible_objects:
|
|
index = object.BIMObjectProperties.attributes.find("GlobalId")
|
|
if index != -1 and object.BIMObjectProperties.attributes[index].string_value in audited_global_ids:
|
|
object.select_set(True)
|
|
return {"FINISHED"}
|
|
|
|
def is_a_global_id(self, word):
|
|
return word[0] in ["0", "1", "2", "3"] and len(word) == 22
|
|
|
|
class QAHelper:
|
|
@classmethod
|
|
def append_to_scenario(cls, lines):
|
|
filename = os.path.join(
|
|
bpy.context.scene.BimTesterProperties.features_dir, bpy.context.scene.BimTesterProperties.features_file + ".feature"
|
|
)
|
|
if os.path.exists(filename + "~"):
|
|
os.remove(filename + "~")
|
|
os.rename(filename, filename + "~")
|
|
with open(filename, "w") as destination:
|
|
with open(filename + "~", "r") as source:
|
|
is_in_scenario = False
|
|
for source_line in source:
|
|
if (
|
|
"Scenario: " in source_line
|
|
and bpy.context.scene.BimTesterProperties.scenario == source_line.strip()[len("Scenario: ") :]
|
|
):
|
|
is_in_scenario = True
|
|
elif is_in_scenario:
|
|
for line in lines:
|
|
destination.write(line + "\n")
|
|
is_in_scenario = False
|
|
destination.write(source_line)
|
|
os.remove(filename + "~")
|
|
|
|
colour_list = [
|
|
(0.651, 0.81, 0.892, 1),
|
|
(0.121, 0.471, 0.706, 1),
|
|
(0.699, 0.876, 0.54, 1),
|
|
(0.199, 0.629, 0.174, 1),
|
|
(0.983, 0.605, 0.602, 1),
|
|
(0.89, 0.101, 0.112, 1),
|
|
(0.989, 0.751, 0.427, 1),
|
|
(0.986, 0.497, 0.1, 1),
|
|
(0.792, 0.699, 0.839, 1),
|
|
(0.414, 0.239, 0.603, 1),
|
|
(0.993, 0.999, 0.6, 1),
|
|
(0.693, 0.349, 0.157, 1),
|
|
]
|