0

Según el código explicado , no puedo obtener los datos de SAfE

using System;
using System.Collections;
using System.Collections.Generic;

using Rhino;
using Rhino.Geometry;

using Grasshopper;
using Grasshopper.Kernel;
using Grasshopper.Kernel.Data;
using Grasshopper.Kernel.Types;

using SAFEv1;
using System.Windows.Forms;

/// <summary>
/// This class will be instantiated on demand by the Script component.
/// </summary>
public class Script_Instance : GH_ScriptInstance
{
#region Utility functions
/// <summary>Print a String to the [Out] Parameter of the Script component.</summary>
/// <param name=”text”>String to print.</param>
private void Print(string text) { /* Implementation hidden. */ }
/// <summary>Print a formatted String to the [Out] Parameter of the Script component.</summary>
/// <param name=”format”>String format.</param>
/// <param name=”args”>Formatting parameters.</param>
private void Print(string format, params object[] args) { /* Implementation hidden. */ }
/// <summary>Print useful information about an object instance to the [Out] Parameter of the Script component. </summary>
/// <param name=”obj”>Object instance to parse.</param>
private void Reflect(object obj) { /* Implementation hidden. */ }
/// <summary>Print the signatures of all the overloads of a specific method to the [Out] Parameter of the Script component. </summary>
/// <param name=”obj”>Object instance to parse.</param>
private void Reflect(object obj, string method_name) { /* Implementation hidden. */ }
#endregion

#region Members
/// <summary>Gets the current Rhino document.</summary>
private readonly RhinoDoc RhinoDocument;
/// <summary>Gets the Grasshopper document that owns this script.</summary>
private readonly GH_Document GrasshopperDocument;
/// <summary>Gets the Grasshopper script component that owns this script.</summary>
private readonly IGH_Component Component;
/// <summary>
/// Gets the current iteration count. The first call to RunScript() is associated with Iteration==0.
/// Any subsequent call within the same solution will increment the Iteration count.
/// </summary>
private readonly int Iteration;
#endregion

/// <summary>
/// This procedure contains the user code. Input parameters are provided as regular arguments,
/// Output parameters as ref arguments. You don’t have to assign output parameters,
/// they will have a default value.
/// </summary>
private void RunScript(bool Conectar, ref object CSIModel_)
{

// Algoritmo
if (Conectar)
{
// Conectar con SAFE
try
{
cHelper myHelper;
cOAPI CSIObject = null;
cSapModel CSIModel = default(cSapModel);

myHelper = new Helper();
CSIObject = myHelper.GetObject(“CSI.SAFE.API.ETABSObject”);

CSIModel = CSIObject.SapModel;
CSIModel_ = CSIModel;
}
catch (Exception ex)
{
MessageBox.Show(“No running instance of the program found or failed to attach.”);
return;
}
}

}

// <Custom additional code>

// </Custom additional code>
}

Según lo avanzado en el panel debería encontrar como modelo el archivo abierto en

safe, se ha vinculado la dll SAFEv1 con el refernced Assemblies,o se debe instalar algún

plugins en grasshopper

Elmer Cusipuma Pregunta respondida 22 abril 2022