-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added all functionality for reading, pushing and pulling rigid constr…
…aints
- Loading branch information
Showing
9 changed files
with
300 additions
and
0 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
101 changes: 101 additions & 0 deletions
101
GSA_Adapter/Convert/FromGsa/Elements/RigidConstraint.cs
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,101 @@ | ||
/* | ||
* This file is part of the Buildings and Habitats object Model (BHoM) | ||
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. | ||
* | ||
* Each contributor holds copyright over their respective contributions. | ||
* The project versioning (Git) records all such contribution source information. | ||
* | ||
* | ||
* The BHoM 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.0 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* The BHoM 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 this code. If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>. | ||
*/ | ||
|
||
#if GSA_10_1 | ||
using Interop.Gsa_10_1; | ||
#else | ||
using Interop.gsa_8_7; | ||
#endif | ||
using BH.Engine.Serialiser; | ||
using BH.Engine.Adapter; | ||
using BH.oM.Adapters.GSA; | ||
using BH.oM.Structure.Elements; | ||
using BH.oM.Structure.Constraints; | ||
using System.Collections.Generic; | ||
using BH.oM.Adapters.GSA.Elements; | ||
using System; | ||
using System.Linq; | ||
|
||
namespace BH.Adapter.GSA | ||
{ | ||
public static partial class Convert | ||
{ | ||
/***************************************************/ | ||
/**** Public Methods ****/ | ||
/***************************************************/ | ||
|
||
public static List<RigidConstraint> FromGsaRigidConstraint(IEnumerable<string> gsaStrings, Dictionary<int, Node> nodes) | ||
{ | ||
List<RigidConstraint> constraintList = new List<RigidConstraint>(); | ||
|
||
foreach (string gsaString in gsaStrings) | ||
{ | ||
string[] tokens = gsaString.Split(','); | ||
|
||
int primaryNodeName = int.Parse(tokens[2]); | ||
string linkTypeString = tokens[3]; | ||
string[] constrainedNodeNames = tokens[4].Split(','); | ||
|
||
Node primaryNode; | ||
nodes.TryGetValue(primaryNodeName, out primaryNode); | ||
|
||
List<Node> constrainedNodes = new List<Node>(); | ||
|
||
foreach (string constrainedNodeName in constrainedNodeNames) | ||
{ | ||
if (int.TryParse(constrainedNodeName, out int constrainedNodeId)) | ||
{ | ||
if (nodes.TryGetValue(constrainedNodeId, out Node constrainedNode)) | ||
constrainedNodes.Add(constrainedNode); | ||
} | ||
} | ||
|
||
RigidConstraintLinkType linkType = RigidConstraintLinkType.ALL; | ||
|
||
if (Enum.TryParse(linkTypeString, out RigidConstraintLinkType parsedLinkType)) | ||
linkType = parsedLinkType; | ||
|
||
RigidConstraint constraint = new RigidConstraint() | ||
{ | ||
PrimaryNode = primaryNode, | ||
ConstrainedNodes = constrainedNodes, | ||
Type = linkType | ||
}; | ||
|
||
constraintList.Add(constraint); | ||
} | ||
|
||
return constraintList; | ||
} | ||
|
||
|
||
|
||
|
||
|
||
/***************************************************/ | ||
|
||
} | ||
} | ||
|
||
|
||
|
||
|
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,71 @@ | ||
/* | ||
* This file is part of the Buildings and Habitats object Model (BHoM) | ||
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. | ||
* | ||
* Each contributor holds copyright over their respective contributions. | ||
* The project versioning (Git) records all such contribution source information. | ||
* | ||
* | ||
* The BHoM 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.0 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* The BHoM 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 this code. If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>. | ||
*/ | ||
|
||
using BH.Engine.Serialiser; | ||
using BH.Engine.Adapter; | ||
using System.Collections.Generic; | ||
using BH.oM.Adapters.GSA; | ||
using BH.oM.Structure.Elements; | ||
using BH.Engine.Adapters.GSA; | ||
using BH.oM.Adapters.GSA.Elements; | ||
|
||
namespace BH.Adapter.GSA | ||
{ | ||
public static partial class Convert | ||
{ | ||
/***************************************************/ | ||
/**** Public Methods ****/ | ||
/***************************************************/ | ||
|
||
public static string ToGsaString(this RigidConstraint rigidConstraint) | ||
{ | ||
string command = "RIGID.2"; | ||
string name = rigidConstraint.TaggedName().ToGSACleanName(); | ||
|
||
string primaryNode = rigidConstraint.PrimaryNode.GSAId().ToString(); | ||
|
||
List<Node> constrainedNodes = rigidConstraint.ConstrainedNodes; | ||
string constrainedNodesIds = ""; | ||
|
||
foreach (Node constrainedNode in constrainedNodes) | ||
{ | ||
string id = constrainedNode.GSAId().ToString(); | ||
constrainedNodesIds = constrainedNodesIds + " " + id; | ||
} | ||
|
||
string type = rigidConstraint.Type.ToString(); | ||
|
||
|
||
//RIGID.2 | name | primary_node | type | constrained_nodes | stage | ||
string str = command + ", " + name + ", " + primaryNode + " , " + type + ", " + constrainedNodesIds; | ||
return str; | ||
} | ||
|
||
|
||
/***************************************************/ | ||
|
||
} | ||
} | ||
|
||
|
||
|
||
|
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
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,54 @@ | ||
/* | ||
* This file is part of the Buildings and Habitats object Model (BHoM) | ||
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. | ||
* | ||
* Each contributor holds copyright over their respective contributions. | ||
* The project versioning (Git) records all such contribution source information. | ||
* | ||
* | ||
* The BHoM 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.0 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* The BHoM 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 this code. If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>. | ||
*/ | ||
|
||
using BH.oM.Base; | ||
using System; | ||
using System.ComponentModel; | ||
using System.Collections.Generic; | ||
using BH.oM.Quantities.Attributes; | ||
using BH.oM.Structure.Elements; | ||
using BH.oM.Adapters.GSA.SpacerProperties; | ||
using BH.oM.Analytical.Elements; | ||
|
||
namespace BH.oM.Adapters.GSA.Elements | ||
{ | ||
[Description("A rigid constraint defining linkage between nodes.")] | ||
public class RigidConstraint : BHoMObject | ||
{ | ||
/***************************************************/ | ||
/**** Properties ****/ | ||
/***************************************************/ | ||
|
||
[Description("Defines the primary node of the rigid constraint.")] | ||
public virtual Node PrimaryNode { get; set; } | ||
|
||
[Description("Defines the constrained nodes of the rigid constraint. Can be a list of nodes.")] | ||
public virtual List<Node> ConstrainedNodes { get; set; } | ||
|
||
[Description("Type of rigid constraint.")] | ||
public virtual RigidConstraintLinkType Type { get; set; } = RigidConstraintLinkType.ALL; | ||
|
||
|
||
} | ||
} | ||
|
||
|
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,47 @@ | ||
/* | ||
* This file is part of the Buildings and Habitats object Model (BHoM) | ||
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved. | ||
* | ||
* Each contributor holds copyright over their respective contributions. | ||
* The project versioning (Git) records all such contribution source information. | ||
* | ||
* | ||
* The BHoM 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.0 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* The BHoM 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 this code. If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>. | ||
*/ | ||
|
||
using System.ComponentModel; | ||
|
||
namespace BH.oM.Adapters.GSA | ||
{ | ||
[Description("Defines type rigid constraint link.")] | ||
public enum RigidConstraintLinkType | ||
{ | ||
ALL, | ||
XY_PLANE, | ||
YZ_PLANE, | ||
ZX_PLANE, | ||
XY_PLATE, | ||
YZ_PLATE, | ||
ZX_PLATE, | ||
PIN, | ||
XY_PLANE_PIN, | ||
YZ_PLANE_PIN, | ||
ZX_PLANE_PIN, | ||
XY_PLATE_PIN, | ||
YZ_PLATE_PIN, | ||
ZX_PLATE_PIN | ||
} | ||
} | ||
|
||
|
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