Make an ARC Skill

Example: EZ-Script/Blockly Edit Control

Throughout ARC controls, you will notice an edit usercontrol which allows single-line, multi-line and Blockly editing for EZ-Script. The usercontrol looks like this...

User-inserted image

When holding a single line of Script, it looks like this...

User-inserted image

Multi-line script is generated by either syntax editor or Blockly editor, both of which are accessible by pressing the edit button on the control. When holding multi-lines of script, generated from either Blockly or Syntax editing UI, it looks like this...

User-inserted image

This control can be found as a component within the ARC.exe, and it is called "UCScriptEditInput"

User-inserted image

When the edit button of the UCScriptEditInput is pressed, it will display a new window containing both script syntax editor and Blockly code creator. The default view (blockly/syntax) is based on 1) the user's preferred editor from preferences menu, 2) the last saved edit mode. ARC will decide which view to display to the user.

Blockly Tab Of Editor

User-inserted image

Script Syntax Tab Of Editor

User-inserted image

Loading Saved Code Into UCScriptEditInput Your plugin should be saving code that was created by the user to the project file via the cf.STORAGE option demonstrated in an earlier step of this tutorial. The UCScriptEditInputrequires the loaded data in two formats, the VALUE and XML. The VALUE property contains the raw EZ-Script that was edited using the Syntax Editor. The XML is the Blockly configuration. In the code example below, the UCScriptEditInput is populated by the cf.STORAGE.


public void SetConfiguration(PluginV1 cf) {

      ucScriptEdit1.Value = cf.STORAGE["MyCodeValue"].ToString();
      ucScriptEdit1.XML = cf.STORAGE["MyCodeXML"].ToString();
    }

Saving Code from UCScriptEditInput As you saw from the earlier step, the user code is loaded in two parts, the XML and script. Both of those properties contain the data which will be saved to the cf.STORAGE as well.


    public PluginV1 SaveCode() {

      PluginV1 cf = new PluginV1();

      cf.STORAGE["MyCodeValue"] = ucScriptEdit1.Value;
      cf.STORAGE["MyCodeXML"] = ucScriptEdit1.XML;

      return cf;
    }

Script Editing in DataGridView Having multiple saved scripts in a DataGridView is possible as well. This allows users to create multiple scripts that could be triggered based on an input, for example. Reference of this behavior is the Speech Recognition or Twitter Recognition controls. They each allow the user to add custom scripts that are triggered on an input (Phrase) value.

User-inserted image

When defining an EZ-Script column for the DataGridView, select the UCScriptEditColumn for the type.

User-inserted image

Populating Saved Code Loading user saved code from the project configuration file to UCScriptEditColumn is a little different than loading to a single UCScriptEditInput. The difference is that a UCScriptEditColumn accepts the CODE and XML to be provided in a single class (UCForms.UC.FormScriptEdit.ConfigurationCls) and passed to the VALUE property. In this example below, the saved data is stored as a CustomObjectv2 in the project configuration. As you learned in an earlier step of this tutorial, the CustomObjectv2 will save your custom class using reflection into the project file.

The code below will foreach loop through each item of the saved code class, which contains the Phrase, Code and XML of each user added item in the DataGridView. Notice how the Code and XML are populated to the UCScriptEditColumn within the UCForms.UC.FormScriptEdit.ConfigurationCls class.


using System.Windows.Forms;

namespace EZ_Builder {

  public partial class Testform : Form {

    public class SavedCodeCls {

      public SavedCodeItemCls [] UserCodes = new SavedCodeItemCls[] { };

      public class SavedCodeItemCls {

        public string Phrase = string.Empty;
        public string Code = string.Empty;
        public string XML = string.Empty;
      }
    }

    public Testform() {

      InitializeComponent();
    }

    public void LoadSavedData(Config.Sub.PluginV1 cf) {

      SavedCodeCls savedCode = (SavedCodeCls)cf.GetCustomObjectV2(typeof(SavedCodeCls));

      foreach (var codeItem in savedCode.UserCodes) {

        // Add a new row and get the index of it
        int rowIndex = dataGridView1.Rows.Add();

        // Assign the saved Phrase to column 0
        dataGridView1.Rows[rowIndex].Cells[0].Value = codeItem.Phrase;

        // Assign the saved Code and XML to column 1
        dataGridView1.Rows[rowIndex].Cells[1].Value = new UCForms.UC.FormScriptEdit.ConfigurationCls(codeItem.Code, codeItem.XML);
      }
    }
  }
}

Saving Code We will now expand on the above code example to include a function for saving the user defined rows and code from the DataGridView to the project file.


using System.Windows.Forms;
using System.Collections.Generic;

namespace EZ_Builder {

  public partial class Testform : Form {

    public class SavedCodeCls {

      public SavedCodeItemCls [] UserCodes = new SavedCodeItemCls[] { };

      public class SavedCodeItemCls {

        public string Phrase = string.Empty;
        public string Code = string.Empty;
        public string XML = string.Empty;
      }
    }

    public Testform() {

      InitializeComponent();
    }

    public void LoadSavedData(Config.Sub.PluginV1 cf) {

      SavedCodeCls savedCode = (SavedCodeCls)cf.GetCustomObjectV2(typeof(SavedCodeCls));

      foreach (var codeItem in savedCode.UserCodes) {

        // Add a new row and get the index of it
        int rowIndex = dataGridView1.Rows.Add();

        // Assign the saved Phrase to column 0
        dataGridView1.Rows[rowIndex].Cells[0].Value = codeItem.Phrase;

        // Assign the saved Code and XML to column 1
        dataGridView1.Rows[rowIndex].Cells[1].Value = new UCForms.UC.FormScriptEdit.ConfigurationCls(codeItem.Code, codeItem.XML);
      }
    }

    public Config.Sub.PluginV1 GetSavedData() {

      var cf = new Config.Sub.PluginV1();

      List items = new List();

      foreach (DataGridViewRow dgvr in dataGridView1.Rows) {

        // Check if this row is valid by seeing if any necessary columsn are null
        if (dgvr.Cells[0].Value == null)
          continue;
        else if (dgvr.Cells[1].Value == null)
          continue;

        // Get the values of each column
        var phrase = dgvr.Cells[0].Value.ToString();
        var code = (UCForms.UC.FormScriptEdit.ConfigurationCls)dgvr.Cells[1].Value;

        // Assign the values (code, xml and phrase) to the item
        var codeItem = new SavedCodeCls.SavedCodeItemCls();
        codeItem.Code = code.Code;
        codeItem.XML = code.XML;
        codeItem.Phrase = phrase;

        // Add the item to the list
        items.Add(codeItem);
      }

      // Assign the list of code items to the array within the master clas
      SavedCodeCls savedCode = new SavedCodeCls();
      savedCode.UserCodes = items.ToArray();

      // Add the master config class to the project configuration as a custom object
      cf.SetCustomObjectV2(savedCode);

      return cf;
    }
  }
}


ARC Pro

Upgrade to ARC Pro

Discover the limitless potential of robot programming with Synthiam ARC Pro – where innovation and creativity meet seamlessly.

#17  

The error cannot read the COM file, I downloaded it and when I follow the instructions, I get an error, while other files read normally. .

User-inserted image

#18   — Edited

sorry for me but i tried many different ways but still show the error,I couldn't find EZ_B.dll file even though I downloaded it

PRO
Synthiam
#19  

None of the required references are in your list. Please follow the tutorial. It explains exactly how to click the browse button and navigate to the folder and select the files.

#20  

Sorry, but the reason I can't reference is because there is no file in the EZ_B folder and there is an error : this folder is empty , I am trying to solve it. I would like to thank DJ sure for answering my superfluous questions and I'm sorry for bothering you

Australia
#21   — Edited

I need to playback 5 Serial Bus servos in sequence.

PRO
Synthiam
#22   — Edited

What protocol is it? A "serial bus" is a generic term for anything using a UART that's chained together sharing the same RX line. Also, why did you add a photo with the question text added in your response?

Are you planning on making a skill control to do this? You wrote the question in the skill control thread in a comment - I'd like to make sure your question is in the right place to help you out.

To begin, I would recommend starting with servo Script control so you can make the serial bus protocol work - then consider making a skill control only if you're planning on distributing the effort to others: https://synthiam.com/Products/Controls/Scripting/Servo-Script-19068

#23  

He seems rather demanding as well.  I guess he needs the benefit of the doubt as English may not be his native language....

#24   — Edited

I have installed all the software dependencies and still ARC does not detect that I have Visual Studio installed. OS is Windows 10, .NET 4.8 or newer, Visual Studio Community 2019.