|
|
|
Contents: Purpose, Compiling the simulator, Running the simulator, Image and posture files, Image/posture sequences, Debugging with GDB, Injecting events, Setting breakpoints
The project/Environment.conf file defines both a target model (TGT_CREATE for the Create/ASUS robot, TGT_ERS7 for the AIBO, etc.) and a default target platform. For Linux-based robots like the Create and Chiara, the target platform is always PLATFORM_LOCAL. The target platform is PLATFORM_APERIOS for the AIBO, but the for the simulator it is PLATFORM_LOCAL, since the simulator runs on your local host. Typing "make sim" forces the target platform to PLATFORM_LOCAL for the current compilation, so that you don't have to edit the Environment.conf file.
Talking to the Simulator
Note: sometimes when the simulator exits abnormally, some of its processes are left lying around. If that happens, the next time you run the simulator you may experience interference from these old processes, e.g., ControllerGUI may be unable to connect. Use the command "ps -a" to check which processes are running, and do "killall -9 tekkotsu-CREATE" to kill any lingering ones.
|
Recording Image and Posture Data
|
By default, logged data (both images and postures) are taken from the ~/project/logged directory. Create a ~?project/logged directory now if you don't already have one.
Using a Single Stored Image with the Simulator
|
If you put multiple files in the project/logged directory, the simulator will loop through them, in alphabetical order, at 30 frames per second. Try it and see. There are ways to slow or stop this process, discussed below.
But for some kinds of experimentation you will want to cycle through a handful of carefully selected images, and for each image, you will need to know the camera pose at the time the image was taken. In this case you want to force the image and sensor streams to stay in synch, and you want to be certain that the corresponding sensor data have been loaded just before each image becomes available for processing. To do this, you will need to adjust the frame rate of the sensor stream so that it matches the image stream, and you will need to set the start time of the sensor stream so that it just precedes the start time of the image stream. Then both streams will remain in synch.
Using Multiple Stored Images with the Simulator
|
Explore more:
set
to see the current settings of all
simulator variables.
set Speed=0.025
using the simulator's command
line interface. What do you see in the Raw Cam window?
In this section we're going to write a program that can crash the robot. Debugging such programs is difficult because there is no way to examine the program's state after Tekkotsu crashes. But with gdb we can examine the execution stack and determine the cause of the crash.
#include <iostream> #include <sstream> #include "Behaviors/StateMachine.h" using namespace std; $nodeclass DstBehavior : StateNode { virtual void doStart() { cout << getName() << " is starting up." << endl; erouter->addListener(this,EventBase::textmsgEGID); } virtual void doEvent() { string* menu[4]; menu[1] = new string("appetizer"); menu[2] = new string("main course"); menu[3] = new string("dessert"); const TextMsgEvent &txtev = *dynamic_cast<const TextMsgEvent*>(&event); const string &userinput = txtev.getText(); istringstream ins(userinput); int item; ins >> item; cout << "Now serving item " << item << "." << " Enjoy your " << *menu[item] << "!" << endl; } } REGISTER_BEHAVIOR(DstBehavior); |
First we'll demonstrate the crash:
Crashing DstBehavior
|
Now we will use gdb to determine the cause of the crash.
Diagnosing Crashes with GDB
|
!post
command, you can manually
inject events into either the AIBO or the simulator. Not all event
types are supported at present. Most importantly, timer events are
not supported. But other simple event types such as button presses,
statemachine events, and audio events are supported.Here's a little demonstration program that responds to head button press events by speaking a digit:
#include "Behaviors/StateMachine.h" $nodeclass DstBehavior : StateNode : counter(0) { int counter; virtual void doStart() { erouter->addListener(this,EventBase::buttonEGID,GreenButOffset,EventBase::activateETID); } virtual void doEvent() { advance_the_counter(); char filename[30]; sprintf(filename,"numbers/%d.wav", counter); sndman->PlayFile(filename); } void advance_the_counter() { if ( ++counter > 9 ) counter = 0; } } |
We will use this sample program to illustrate event posting from
ControllerGUI. The three arguments to the !post
command
are the event generator (buttonEGID), the source (GreenBut for the
green button), and the event type (A for Activate, S for Status, or D
for Deactivate).
Injecting Button Press Events
|
Explore more:
!post
command can take a numeric source id
instead of the symbolic value "GreenBut". Suppose you wanted to send
an event indicating a yellow button press. What numeric value should
you use for the source id? (Hint: look in CreateInfo.h for the
Create, or the corresponding file for whatever robot you are
using.)
|
|
|