using FeMM.Common.Models;
using FeMM.Grasshopper.DataTypes.FeMM;
using FeMM.Grasshopper.Helpers;
using Grasshopper.Kernel;
using System;
using System.Collections.Generic;
using System.Runtime.Versioning;
namespace FeMM.Grasshopper.Components.Models
{
#if NETCOREAPP
[SupportedOSPlatform("windows")]
#endif
public class DecomposeModelComponent : GH_Component
{
/// <summary>
/// Initializes a new instance of the DecomposeModelComponent class.
/// </summary>
public DecomposeModelComponent()
: base("Decompose Model", "DM", "Decompose a FEM model in his elements", CategoryNameConstants.CATEGORY_FEMM, CategoryNameConstants.SUBCATEGORY_MODEL)
{
}
/// <summary>
/// Registers all the input parameters for this component.
/// </summary>
protected override void RegisterInputParams(GH_InputParamManager pManager)
{
pManager.AddGenericParameter("Model", "M", "The FEM model", GH_ParamAccess.item);
}
/// <summary>
/// Registers all the output parameters for this component.
/// </summary>
protected override void RegisterOutputParams(GH_OutputParamManager pManager)
{
pManager.AddGenericParameter("Nodes", "N", "The nodes results", GH_ParamAccess.list);
pManager.AddGenericParameter("Beams", "B", "The beams results", GH_ParamAccess.list);
pManager.AddGenericParameter("Plates", "P", "The plates results", GH_ParamAccess.list);
pManager.AddGenericParameter("Links", "L", "The links results", GH_ParamAccess.list);
}
/// <summary>
/// This is the method that actually does the work.
/// </summary>
/// <param name="DA">The DA object is used to retrieve from inputs and store in outputs.</param>
protected override void SolveInstance(IGH_DataAccess DA)
{
GH_Model model = null;
if (!DA.GetData("Model", ref model))
return;
if (model.Value == null)
return;
var nodes = new List<GH_Node>();
var beams = new List<GH_Beam>();
var plates = new List<GH_Plate>();
var links = new List<GH_Link>();
try
{
foreach (NodeModel node in model.Value.Nodes)
nodes.Add(new GH_Node(node, model.Guids[node]));
foreach (BeamModel beam in model.Value.Beams)
beams.Add(new GH_Beam(beam, model.Guids[beam]));
foreach (PlateModel plate in model.Value.Plates)
plates.Add(new GH_Plate(plate, model.Guids[plate]));
foreach (LinkModel link in model.Value.Links)
links.Add(new GH_Link(link, model.Guids[link]));
}
catch (Exception e)
{
AddRuntimeMessage(GH_RuntimeMessageLevel.Error, e.Message);
}
DA.SetDataList(0, nodes);
DA.SetDataList(1, beams);
DA.SetDataList(2, plates);
DA.SetDataList(3, links);
}
public override GH_Exposure Exposure => GH_Exposure.tertiary;
/// <summary>
/// Provides an Icon for the component.
/// </summary>
protected override System.Drawing.Bitmap Icon => Properties.Resources.DecomposeModelIcon;
/// <summary>
/// Gets the unique ID for this component. Do not change this ID after release.
/// </summary>
public override Guid ComponentGuid => new("700a15f9-cf8d-4062-9c99-32628b99cda8");
}
}