mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-14 03:14:23 +00:00
77 lines
2.8 KiB
Python
77 lines
2.8 KiB
Python
# BlenderBIM Add-on - OpenBIM Blender Add-on
|
|
# Copyright (C) 2021 Dion Moult <dion@thinkmoult.com>
|
|
#
|
|
# This file is part of BlenderBIM Add-on.
|
|
#
|
|
# BlenderBIM Add-on is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# BlenderBIM Add-on 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 General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with BlenderBIM Add-on. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import bpy
|
|
import blenderbim.core.tool
|
|
import blenderbim.tool as tool
|
|
|
|
|
|
class Library(blenderbim.core.tool.Library):
|
|
@classmethod
|
|
def clear_editing_mode(cls):
|
|
bpy.context.scene.BIMLibraryProperties.editing_mode = ""
|
|
|
|
@classmethod
|
|
def export_library_attributes(cls):
|
|
props = bpy.context.scene.BIMLibraryProperties
|
|
return blenderbim.bim.helper.export_attributes(props.library_attributes)
|
|
|
|
@classmethod
|
|
def export_reference_attributes(cls):
|
|
props = bpy.context.scene.BIMLibraryProperties
|
|
return blenderbim.bim.helper.export_attributes(props.reference_attributes)
|
|
|
|
@classmethod
|
|
def get_active_library(cls):
|
|
return tool.Ifc.get().by_id(bpy.context.scene.BIMLibraryProperties.active_library_id)
|
|
|
|
@classmethod
|
|
def get_active_reference(cls):
|
|
return tool.Ifc.get().by_id(bpy.context.scene.BIMLibraryProperties.active_reference_id)
|
|
|
|
@classmethod
|
|
def import_library_attributes(cls, library):
|
|
props = bpy.context.scene.BIMLibraryProperties
|
|
blenderbim.bim.helper.import_attributes2(library, props.library_attributes)
|
|
|
|
@classmethod
|
|
def import_reference_attributes(cls, reference):
|
|
props = bpy.context.scene.BIMLibraryProperties
|
|
blenderbim.bim.helper.import_attributes2(reference, props.reference_attributes)
|
|
|
|
@classmethod
|
|
def import_references(cls, library):
|
|
props = bpy.context.scene.BIMLibraryProperties
|
|
props.references.clear()
|
|
for reference in library.HasLibraryReferences:
|
|
new = props.references.add()
|
|
new.ifc_definition_id = reference.id()
|
|
new.name = reference.Name or "Unnamed"
|
|
|
|
@classmethod
|
|
def set_active_library(cls, library):
|
|
bpy.context.scene.BIMLibraryProperties.active_library_id = library.id()
|
|
|
|
@classmethod
|
|
def set_active_reference(cls, reference):
|
|
bpy.context.scene.BIMLibraryProperties.active_reference_id = reference.id()
|
|
|
|
@classmethod
|
|
def set_editing_mode(cls, mode):
|
|
bpy.context.scene.BIMLibraryProperties.editing_mode = mode
|