|
|
|
Contents: Overview, Examining a storyboard, Modifying a layout, Generating an execution trace, Downloading a state machine model, Logging messages and images, Installing the storyboard tool
![]() |
![]() |
The tool produces two types of files, both of which are encoded using XML representation:
Several sample layouts and execution traces are included with the Storyboard tool. In this section you will load a sample layout, and then use it to display a sample execution trace.
Loading Example Files
|
Changing the LogTestMachine Layout
|
Downloading the Bark/Howl/Blink State Machine Model
|
#include "Behaviors/StateMachine.h" #include "Behaviors/Controls/EventLogger.h" #include "Shared/ProjectInterface.h" #include "Vision/JPEGGenerator.h" $nodeclass LogTestMachine : StateNode { $nodeclass Message : StateNode : doStart { std::string const msg = "Hooray for Captain Spaulding!"; EventLogger::logMessage(msg,this); } $nodeclass Image : StateNode : doStart { EventLogger::logImage(*ProjectInterface::defColorJPEGGenerator,ProjectInterface::fullLayer,0,this); sndman->playFile("camera.wav"); } $nodeclass Webcam : StateNode : doStart { EventLogger::logWebcam(this); } $setupmachine{
|
This behavior uses a TextMsgTrans to look for messages from the ControllerGUI and transition to the appropriate state node. If you run this behavior and type "!msg message" in the ControllerGUI's Send Input box, it will log a message to the storyboard, while "!msg image" will log a camera image.
|
|
|