Rahul Sharma (Editor)

URBI

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Developer(s)
  
Gostai / Aldebaran

Written in
  
Development status
  
Active

Initial release
  
2003; 14 years ago (2003)

Stable release
  
2.7.4 / November 17, 2011; 5 years ago (2011-11-17)

Operating system
  
Microsoft Windows, Mac OS X, Linux

Urbi is an open source cross-platform software platform in C++ used to develop applications for robotics and complex systems. Urbi is based on the UObject distributed C++ component architecture. It also includes the urbiscript orchestration language which is a parallel and event-driven script language. UObject components can be plugged into urbiscript and appear as native objects that can be scripted to specify their interactions and data exchanges. UObjects can be linked to the urbiscript interpreter, or executed as autonomous processes in "remote" mode.

Contents

The urbiscript Language

The urbiscript language has been created in 2003 by Jean-Christophe Baillie in the Cognitive Robotics Lab of ENSTA, Paris. It has been actively and further developed in the industry through the Gostai company founded in 2006. It is now an open source project, with a BSD license, available at [2].

The urbiscript language can be best described as an orchestration script language: like Lua in video games, urbiscript can be used to glue together C++ components into a functional behavior, the CPU-intensive algorithmic part being left to C++ and the behavior scripting part being left to the script language which is more flexible, easy to maintain and allows dynamic interaction during program execution. As an orchestration language, urbiscript also brings some useful abstractions to the programmer by having parallelism and event-based programming as part of the language semantics. The scripting of parallel behaviors and reactions to events are core requirements of most robotic and complex AI applications, therefore urbiscript (and the whole Urbi platform) is well suited to these applications.

Language attributes

  • Parallelism and event-based programming
  • Prototype-based programming
  • C++ like syntax
  • Java/C++ based component architecture (UObject) with possibility to link objects or run them remotely
  • Client/Server based architecture
  • Cross platform: Linux, Mac, Windows and others.
  • Embeddable, Urbi can run on various processors: x86, ARM, mips, powerPC, etc.
  • Job control via "tags"
  • Functions

  • Parallel Programming and events
  • Programming Prototypes
  • Syntax similar to C ++
  • Architecture Components C ++ / Java (UObject) with the ability to link object or execute remotely.
  • Client / Server
  • Interfaces with customers Java and Matlab (Urbi SDK)
  • Multiple Platforms: Linux, Mac, Windows, and embedded environments (x86, ARM, MIPS, powerPC )
  • Marking orders for their control so asynchronous
  • Integration of ROS directly accessible from urbiscript (version 2.1)
  • Examples

    The example below shows how to write a ball tracking action/perception loop in urbiscript: headYaw/headPitch are two motor objects, and ball is the ball detection object (x and y range from -1/2 to 1/2):

    whenever is used to trigger a piece of code in loops as long as the associated condition is true. The "&" sign is used to specify that both commands should start at the same time, thus running in parallel.

    Other notable event-driven constructs include at, which triggers the associated code once when the event is triggered:

    Every command or group of commands is taggable, which provides a way to stop it later if needed:

    Note in the example above the comma at the end of the command. It will put the preceding command in the background, allowing the flow execution to carry on, in particular the next 'at' command to be executed.

    UObject component architecture

    The UObject component architecture allows developers to interface any Java/C++ object within Urbi, making selected methods and attributes visible in urbiscript, while in fact being compiled code. Special notifiers can be set on any of the object's attributes to notify the C++ side of any change on these attributes on the urbiscript/Urbi side.

    UObject uses C++ templates to transparently map any requested method to an interface machinery that takes care of the type checking.

    A UObject can be used in plugged mode if it is directly linked to Urbi at compile time or with dynamic loading. In that case, the C++ object shares the Urbi memory directly, resulting in efficient integration. This is typically used for time critical components like motor or sensor drivers. The same UObject can also be used without modifications as a remote component. In that case, it will become an autonomous program to be executed with the IP address of the Urbi server as a parameter. In both cases, the object will transparently appear in urbiscript as a native urbiscript object.

    Robotics simulators compatible with Urbi

  • Webots is the official robot simulator compatible with Urbi.
  • Player/Stage integration has been reported, although it is not currently released.
  • "Urbi-fied" robots

    Released:

  • Gostai Open Jazz.
  • Segway
  • Aibo ERS-7/ERS-2xx (Urbi 1.x only, Urbi 2.3 is available as alpha)
  • iRobot Create
  • Lego Mindstorms NXT
  • HRP-2 (restricted release to members of JRL)
  • Nao.
  • Robotis Bioloid.
  • Mobile Robots Pioneer.
  • Announced:

  • Surveyor
  • Khepera III
  • e-puck
  • References

    URBI Wikipedia