Australia
Asked — Edited
Resolved Resolved by ptp!

Synchronising Commands In A Custom Behavior Control Plugin In C#

I’ve made a custom robot skill plugin and use the EZ_Builder.Scripting.Executor.StartScriptBlocking method to run commands. However, I can’t get it to properly run the Test Script in Script Manager:

Code in Script Manager - Test:

ControlCommand("Auto Position", AutoPositionAction, "Disco Dance")
ControlCommand("RGB Animator", AutoPositionAction, "Spin")
SayWait("This test will make me dance and light up my eyes then stop.")
ControlCommand("Auto Position", AutoPositionFrame, "STAND", 25, 3, -1)
ControlCommand("RGB Animator", AutoPositionAction, "Idle")

When the above code is played via the Script Manager control, the robot dances and lights its eyes up while speaking through the PC.

Code in robot skill plugin:

EZ_Builder.Scripting.Executor executor = new EZ_Builder.Scripting.Executor();
executor.StartScriptBlocking(EZ_Builder.Scripting.Compiler.Compile("ControlCommand(\"Script Manager\", ScriptStartWait, \"Test\")"));

However, the code in the robot skill plugin only speaks and doesn’t move or change its eye LEDs at all.

Does anyone know how to fix this?

NB: Disco Dance and Spin both repeat so I can’t wait for their status variables to be cleared.


Related Hardware JD Humanoid

ARC Pro

Upgrade to ARC Pro

With ARC Pro, your robot is not just a machine; it's your creative partner in the journey of technological exploration.

PRO
USA
#1  

Hi,

Are you trying to solve the issue: https://synthiam.com/Community/Questions/Waiting-for-Audio-from-Soundboard-PC-to-Finish-18344 with a custom plugin ?

Australia
#2  

Hi,

Yes, but I'd also like to know how to solve this post's problem too. I have a feeling it's got to do with the executor overwriting the previous commands but I'm still not sure why it behaves differently when calling it from the ARC GUI.

PRO
USA
#3  

and if you use executor.StartAsync  ?

PRO
Synthiam
#4   — Edited

None of the commands in your script manager code are blocking commands. Please read how the ControlCommand() works by clicking on the highlighted word in this sentence.

That script will execute all commands one after another super fast. There's nothing waiting for anything to complete.

for example...



ControlCommand("Auto Position", AutoPositionAction, "Disco Dance")

ControlCommand("RGB Animator", AutoPositionAction, "Spin")

Waitfor($AutoPositionStatus = 0)

SayWait("This test will make me dance and light up my eyes then stop.")

ControlCommand("Auto Position", AutoPositionFrame, "STAND", 25, 3, -1)

Waitfor($AutoPositionStatus = 0)

ControlCommand("RGB Animator", AutoPositionAction, "Idle")

Waitfor($AutoPositionStatus = 0)


Australia
#5  

Thanks @ptp, using Executor.StartScriptASync works. I don't know why I didn't try the ASync earlier although I did try the ExecuteScriptSingleLine.

@DJ, the code got stuck at the WaitFor($AutoPositionStatus = 0) line because the Disco Dance action repeats.