SimpleGrasshopper 1.7.0

dotnet add package SimpleGrasshopper --version 1.7.0
NuGet\Install-Package SimpleGrasshopper -Version 1.7.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SimpleGrasshopper" Version="1.7.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SimpleGrasshopper --version 1.7.0
#r "nuget: SimpleGrasshopper, 1.7.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install SimpleGrasshopper as a Cake Addin
#addin nuget:?package=SimpleGrasshopper&version=1.7.0

// Install SimpleGrasshopper as a Cake Tool
#tool nuget:?package=SimpleGrasshopper&version=1.7.0

Simple Grasshopper

Hi, this is a repo to simplify your plugin development in Grasshopper.

With this repo, you don't need to understand what a GH_Component is and what a GH_Param is. All you need to do is add attributes!

NOTICE: For some reason, the SimpleGrasshopper.dll and Newtonsoft.Json.dll won't copy to the output directory automatically. If there is any way to make the nuget package only copy this file, please tell me.

Quick Start

Add the package from nuget package.

  <ItemGroup>
    <PackageReference Include="SimpleGrasshopper" Version="1.4.7" />
  <ItemGroup>

Don't forget to copy this SimpleGrasshopper.dll and Newtonsoft.Json.dll file to your output folder!

image-20231124084353080

Notice: if you want to create a plugin in rhino8 with .Net core, please add a Grasshoppper reference to your project!

If you want to see more examples, please go here.

How to use

Component

All the components are methods. to simplify creating these things, a method is a component! To let it know which method should be the component, please tag it with DocObjAttribute with the basic info about it called Name, NickName, and Description!

using SimpleGrasshopper.Attributes;

namespace SimpleGrasshopper.GHTests;

internal class SimpleSubcategory
{
    [DocObj("Addition", "Add", "The addition of the integers.")]
    private static void SimpleMethod(int a, int b, out int c)
    {
        c = a + b;
    }
}

Now, you'll see a component in GH!

image-20231123221923982

The parameters can be in, out, or ref.

The method can be static or not. If it is not static, it'll create an input and an output to the instance of that class.

Component Infos

For some cases, you may want to add more information for this component, there are 3 attributes designed for this. They are SubCategoryAttribute, IconAttribute, and ExposureAttribute. You can also use the attribute ObsoleteAttribute.

using SimpleGrasshopper.Attributes;

namespace SimpleGrasshopper.GHTests;

[SubCategory("Just a test")]
internal class SimpleSubcategory
{
    [Icon("ConstructRenderItemComponent_24-24.png")] // The name of the png that is embedded in your dll or the download link or the local path even the guid of some component to get the icon from it.
    [Exposure(Grasshopper.Kernel.GH_Exposure.secondary)]
    [DocObj("Addition", "Add", "The addition of the integers.")]
    private static void SimpleMethod(int a, int b, out int c)
    {
        c = a + b;
    }
}
Parameters Info

If you want to change the description of the param, please use DocObjAttribute one more time to make it easier to read.

If you want to use some other Parameter with your parameter, please use ParamAttribute.

For the angle parameter, is the AngleAttribute!

For the geometry parameter, if you want to hide it, please use HiddenAttribute!

If your parameter is int or double, you can add RangeAttribute to control the range of it. It'll automatically make the input value in this range, and make a warning to Grasshopper.

using SimpleGrasshopper.Attributes;
using SimpleGrasshopper.Data;

namespace SimpleGrasshopper.GHTests;

[SubCategory("Just a test")]
internal class SimpleSubcategory
{
    [DocObj("Special Param", "Spe", "Special Params")]
    private static void ParamTest(
        [DocObj("Name", "N", "The name of sth.")] string name, 
        [Param(ParamGuids.FilePath)]string path,
        [Angle]out double angle)
    {
        angle = Math.PI;
    }
}

image-20231123223432423

image-20231123223445165

image-20231123223455689

Data Access

If you want your data access to be a list, please set the param type to List<T> or T[].

If you want your data access to be a tree. That would be complex.

If it is a built-in type, please do it like GH_Structure<GH_XXXX>. If it is your type, please do it like GH_Structure<SimpleGoo<XXXXX>>.

Enum Type

You may want to add some enum parameters to your project in some cases, so just do it!

You can also add a default value for making it optional.

using SimpleGrasshopper.Attributes;
using SimpleGrasshopper.Data;

namespace SimpleGrasshopper.GHTests;

[SubCategory("Just a test")]
internal class SimpleSubcategory
{
    [DocObj("Enum Param", "Enu", "Enum testing")]
    private static void EnumTypeTest(out EnumTest type, EnumTest input = EnumTest.First)
    {
        type = EnumTest.First;
    }
}

public enum EnumTest : byte
{
    First,
    Second,
}

image-20231123225356231

Parameters

For parameters, they are just types! doing things like a type!

You can also add IconAttribute , ExposureAttribute, and ObsoleteAttribute.

using SimpleGrasshopper.Attributes;

namespace SimpleGrasshopper.GHTests;

[Icon("CurveRenderAttributeParameter_24-24.png")]
[DocObj("My type", "just a type", "Testing type.")]
public class TypeTest
{
}

image-20231123224941091

And this parameter can also be used in the component!

using SimpleGrasshopper.Attributes;
using SimpleGrasshopper.Data;

namespace SimpleGrasshopper.GHTests;

[SubCategory("Just a test")]
internal class SimpleSubcategory
{
    [DocObj("Type Testing", "T", "Testing for my type")]
    private static void MyTypeTest(TypeTest type)
    {

    }
}

image-20231123225140458

If you want your parameter can be previewed, please add the interface IPreviewData. If you want your data can be baked, please add the interface IGH_BakeAwareData.

If you want your type can be converted, please do it with explicit and implicit conversion operators.

Special Components

For some common components, there are some ez ways to create them.

Property Component

If you create your data type, and you want to modify its property, you can add a tag called PropertyComponentAttribute to your type definition.

image-20231213104531419

[PropertyComponent]
[Icon("CurveRenderAttributeParameter_24-24.png")]
[DocObj("My type", "just a type", "Testing type.")]
public class TypeTest
{
    [DocObj("Value", "V", "")]
    public int FirstValue { get; set; }
}
Type Component

If you are soo lazy to add a lot of tags to every method in one type. You can add a tag called TypeComponentAttribute. It'll create a method component for your plugin, and this component can use all public methods.

image-20231213110009360

[TypeComponent]
[Icon("CurveRenderAttributeParameter_24-24.png")]
[DocObj("My type", "just a type", "Testing type.")]
public class TypeTest
{
    [DocObj("Value", "V", "")]
    public int FirstValue { get; set; }

    public void AddValue(int value)
    {
        FirstValue += value;
    }

    public void ReduceValue(int value)
    {
        FirstValue -= value;
    }
}

Well, good news for all lazy people!

Settings

Well, for some lazy people like me, who don't like to use Instances.Setting.GetValue(XXX), etc. I just want to make it ez.

So, just tag a static field with the attribute SettingAttribute!

using SimpleGrasshopper.Attributes;
using System.Drawing;

namespace SimpleGrasshopper.GHTests;

internal static partial class SettingClass
{
    [Setting]
    private static readonly bool firstSetting = true;

    [Setting]
    private static readonly Color secondSetting = Color.AliceBlue;
}

internal readonly partial struct SettingStruct
{
    [Setting]
    private static readonly string anotherSetting = default!;
}

And you can use it like this.

var a = SettingClass.FirstSetting;
var b = SettingClass.SecondSetting;
var c = SettingStruct.AnotherSetting;

That makes it easier!

DocData

The data that you want to save in the document can be made easier. The DocDataAttribute is here to help you! It is very similar to the Setting things.

Configurations

If you want to add your custom menu to Grasshopper. You can add a tag called ConfigAttribute to your setting or your property.

Undo

An easier way to record undo.

Advanced

So it is making it easier. But if you still want to modify the GH_Component or GH_PersistentParam. You can use the keyword partial to modify the class. For the components, the class is CLASSNAME_METHODNAME_Component. For the parameters, the class is CLASSNAME_Parameter.

Product Compatible and additional computed target framework versions.
.NET Framework net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.7.0 0 4/28/2024
1.6.4 36 4/26/2024
1.6.3 76 4/22/2024
1.6.2 110 3/24/2024
1.6.1 93 3/24/2024
1.6.0 85 3/22/2024
1.5.4 94 3/22/2024
1.5.3 96 3/7/2024
1.5.2 97 2/20/2024
1.5.1 85 1/30/2024
1.5.0 89 1/19/2024
1.4.9 81 1/18/2024
1.4.8 84 1/17/2024
1.4.7 81 1/16/2024
1.4.5 100 1/14/2024
1.4.4 81 1/14/2024
1.4.3 87 1/13/2024
1.4.2 86 1/12/2024
1.4.1 88 1/12/2024
1.4.0 83 1/12/2024
1.3.10 88 1/12/2024
1.3.9 84 1/11/2024
1.3.8 78 1/11/2024
1.3.7 78 1/10/2024
1.3.5 79 1/10/2024
1.3.4 98 1/9/2024
1.3.3 82 1/8/2024
1.3.1 101 1/4/2024
1.3.0 95 1/3/2024
1.2.9 84 1/3/2024
1.2.8 98 1/1/2024
1.2.7 93 12/29/2023
1.2.6 105 12/28/2023
1.2.5 96 12/26/2023
1.2.4 89 12/24/2023
1.2.3 84 12/23/2023
1.2.2 99 12/22/2023
1.2.1 88 12/22/2023
1.2.0 72 12/22/2023
1.1.9 80 12/21/2023
1.1.8 81 12/21/2023
1.1.7 84 12/21/2023
1.1.6 76 12/21/2023
1.1.5 66 12/20/2023
1.1.4 95 12/20/2023
1.1.3 67 12/20/2023
1.1.2 79 12/20/2023
1.1.1 100 12/19/2023
1.1.0 92 12/19/2023
1.0.6 92 12/18/2023
1.0.5 76 12/18/2023
1.0.4 119 12/16/2023
1.0.3 105 12/14/2023
1.0.2 88 12/13/2023
1.0.1 80 12/13/2023
1.0.0 103 12/13/2023
0.10.6 97 12/11/2023
0.10.5 99 12/11/2023
0.10.4 118 12/4/2023
0.10.3 114 11/28/2023
0.10.2 87 11/27/2023
0.10.1 113 11/27/2023
0.10.0 122 11/26/2023
0.9.10 128 11/26/2023
0.9.9 107 11/26/2023
0.9.8 114 11/26/2023
0.9.7 108 11/24/2023