You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
112 lines
4.5 KiB
Python
112 lines
4.5 KiB
Python
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
# ***************************************************************************
|
|
# * *
|
|
# * Copyright (c) 2024 Yorik van Havre <yorik@uncreated.net> *
|
|
# * *
|
|
# * This file is part of FreeCAD. *
|
|
# * *
|
|
# * FreeCAD 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 2.1 of the *
|
|
# * License, or (at your option) any later version. *
|
|
# * *
|
|
# * FreeCAD 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 FreeCAD. If not, see *
|
|
# * <https://www.gnu.org/licenses/>. *
|
|
# * *
|
|
# ***************************************************************************
|
|
|
|
"""BIM Schedule command"""
|
|
|
|
import FreeCAD
|
|
import FreeCADGui
|
|
|
|
QT_TRANSLATE_NOOP = FreeCAD.Qt.QT_TRANSLATE_NOOP
|
|
translate = FreeCAD.Qt.translate
|
|
|
|
PARAMS = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/BIM")
|
|
|
|
|
|
class Arch_Stairs:
|
|
"the Arch Stairs command definition"
|
|
|
|
def GetResources(self):
|
|
|
|
return {
|
|
"Pixmap": "Arch_Stairs",
|
|
"MenuText": QT_TRANSLATE_NOOP("Arch_Stairs", "Stairs"),
|
|
"Accel": "S, R",
|
|
"ToolTip": QT_TRANSLATE_NOOP("Arch_Stairs", "Creates a flight of stairs"),
|
|
}
|
|
|
|
def IsActive(self):
|
|
|
|
v = hasattr(FreeCADGui.getMainWindow().getActiveWindow(), "getSceneGraph")
|
|
return v
|
|
|
|
def Activated(self):
|
|
|
|
import Draft
|
|
from draftutils import params
|
|
|
|
FreeCAD.ActiveDocument.openTransaction(translate("Arch", "Create Stairs"))
|
|
FreeCADGui.addModule("Arch")
|
|
sel = FreeCADGui.Selection.getSelection()
|
|
if sel:
|
|
n = []
|
|
nStr = ""
|
|
for obj in sel:
|
|
if nStr != "":
|
|
nStr += ","
|
|
nStr += "FreeCAD.ActiveDocument." + obj.Name
|
|
#'obj' in GUI not the same as obj in script,
|
|
# make it 'stairs' to distinguish one from another
|
|
# Create Stairs object with steps numbers in user preference
|
|
FreeCADGui.doCommand(
|
|
"stairs = Arch.makeStairs(baseobj=["
|
|
+ nStr
|
|
+ "],steps="
|
|
+ str(params.get_param_arch("StairsSteps"))
|
|
+ ")"
|
|
)
|
|
FreeCADGui.Selection.clearSelection()
|
|
FreeCADGui.doCommand("FreeCADGui.Selection.addSelection(stairs)")
|
|
|
|
# ArchSketch Support
|
|
if len(sel) == 1 and Draft.getType(obj) == "ArchSketch":
|
|
# Get ArchSketch.FloorHeight as default and assign to Stairs
|
|
try:
|
|
height = str(obj.FloorHeight.Value) # vs obj.FloorHeight
|
|
# Can only use Value to assign to PropertyLength
|
|
FreeCADGui.doCommand("stairs.Height = " + height)
|
|
except:
|
|
pass
|
|
# If base is ArchSketch, ArchSketchObject is already loaded, no
|
|
# need to load again : FreeCADGui.addModule("ArchSketchObject")
|
|
try:
|
|
FreeCADGui.runCommand("EditStairs")
|
|
except:
|
|
pass
|
|
|
|
else:
|
|
FreeCADGui.doCommand(
|
|
"stairs = Arch.makeStairs(steps=" + str(params.get_param_arch("StairsSteps")) + ")"
|
|
)
|
|
FreeCADGui.addModule("Draft")
|
|
|
|
# FreeCADGui.doCommand("Draft.autogroup(obj)")
|
|
FreeCADGui.doCommand("Draft.autogroup(stairs)")
|
|
|
|
FreeCAD.ActiveDocument.commitTransaction()
|
|
FreeCAD.ActiveDocument.recompute()
|
|
print(" ActiveDocument.recompute, done ")
|
|
|
|
|
|
FreeCADGui.addCommand("Arch_Stairs", Arch_Stairs())
|