-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #72 from BIM-Tools/develop
Release version 5.3.1
- Loading branch information
Showing
15 changed files
with
263 additions
and
229 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,116 +1,58 @@ | ||
# frozen_string_literal: true | ||
|
||
|
||
|
||
# IfcPile_su.rb | ||
|
||
# | ||
|
||
# Copyright 2024 Jan Brouwer <[email protected]> | ||
|
||
# | ||
|
||
# This program 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 2 of the License, or | ||
|
||
# (at your option) any later version. | ||
|
||
# | ||
|
||
# This program 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 this program; if not, write to the Free Software | ||
|
||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | ||
|
||
# MA 02110-1301, USA. | ||
|
||
# | ||
|
||
# | ||
|
||
|
||
|
||
module BimTools | ||
|
||
module IfcPile_su | ||
|
||
VALID_CONSTRUCTION_TYPES = %i[ | ||
|
||
CAST_IN_PLACE | ||
|
||
COMPOSITE | ||
|
||
PRECAST_CONCRETE | ||
|
||
PREFAB_STEEL | ||
|
||
USERDEFINED | ||
|
||
NOTDEFINED | ||
|
||
].freeze | ||
|
||
|
||
|
||
attr_reader :constructiontype | ||
|
||
|
||
|
||
def initialize(ifc_model, sketchup, _total_transformation) | ||
|
||
@ifc_version = ifc_model.ifc_version | ||
|
||
super | ||
|
||
end | ||
|
||
|
||
|
||
# ConstructionType attribute deprecated in IFC4 | ||
|
||
def constructiontype=(value) | ||
|
||
return unless @ifc_version == 'IFC 2x3' | ||
|
||
|
||
|
||
# TODO: hacky fix, should be part of PropertyReader | ||
|
||
enum_value = if value.is_a?(String) | ||
|
||
value.upcase.to_sym | ||
|
||
elsif value.respond_to?(:value) | ||
|
||
value.value.upcase.to_sym | ||
|
||
else | ||
|
||
value.to_sym | ||
|
||
end | ||
|
||
|
||
|
||
@constructiontype = VALID_CONSTRUCTION_TYPES.include?(enum_value) ? enum_value : nil | ||
|
||
end | ||
|
||
end | ||
|
||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
# frozen_string_literal: true | ||
|
||
# IfcRoof_su.rb | ||
# | ||
# Copyright 2024 Jan Brouwer <[email protected]> | ||
# | ||
# This program 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 2 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# This program 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 this program; if not, write to the Free Software | ||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | ||
# MA 02110-1301, USA. | ||
# | ||
# | ||
|
||
module BimTools | ||
module IfcRoof_su | ||
def initialize(ifc_model, sketchup, _total_transformation) | ||
@ifc_version = ifc_model.ifc_version | ||
super | ||
end | ||
|
||
# ShapeType attribute renamed to PredefinedType in IFC4 | ||
def predefinedtype=(value) | ||
# TODO: hacky fix, should be part of PropertyReader | ||
enum_value = if value.is_a?(String) | ||
value.upcase.to_sym | ||
elsif value.respond_to?(:value) | ||
value.value.upcase.to_sym | ||
else | ||
value.to_sym | ||
end | ||
|
||
if @ifc_version == 'IFC 2x3' | ||
@shapetype = enum_value | ||
else | ||
@predefinedtype = enum_value | ||
end | ||
end | ||
|
||
# ShapeType attribute renamed to PredefinedType in IFC4 | ||
def shapetype=(value) | ||
# TODO: hacky fix, should be part of PropertyReader | ||
enum_value = if value.is_a?(String) | ||
value.upcase.to_sym | ||
elsif value.respond_to?(:value) | ||
value.value.upcase.to_sym | ||
else | ||
value.to_sym | ||
end | ||
|
||
if @ifc_version == 'IFC 2x3' | ||
@shapetype = enum_value | ||
else | ||
@predefinedtype = enum_value | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.