Skip to content

Commit eeb3009

Browse files
author
Hugo Boyer
committed
max 80 chars
1 parent c8d516a commit eeb3009

File tree

1 file changed

+31
-11
lines changed

1 file changed

+31
-11
lines changed

gazebojs_pubsub/tutorial.md

+31-11
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
11
# Introduction
22

3-
This page explains how to create publishers and subscribers to Gazebo topics in javascript using GazeboJs. Publish / Subscribe is the communication pattern used between the Gazebo server and its clients.
3+
This page explains how to create publishers and subscribers to Gazebo topics
4+
in javascript using GazeboJs. Publish / Subscribe is the communication pattern
5+
used between the Gazebo server and its clients.
46

57

68
## Project setup
79

8-
Unlike software packages that are installed once per machine, NodeJs packages like Gazebojs are installed inside each node project. Create a NodeJS project for this tutorial, and install a local copy of the gazebojs package with npm:
10+
Unlike software packages that are installed once per machine, NodeJs packages
11+
like Gazebojs are installed inside each node project. Create a NodeJS project
12+
for this tutorial, and install a local copy of the gazebojs package with npm:
913

1014
mkdir gazeboJsPubSub
1115
cd gazeboJsPubSub
1216
npm init
1317

14-
Just press enter to get the default values. This operation generates a package.json file. Add gazeboJs to your package file:
18+
Just press enter to get the default values. This operation generates a
19+
package.json file. Add gazeboJs to your package file:
1520

1621
npm install gazebojs --save
1722

@@ -20,21 +25,30 @@ Now you can create javascript files and execute them by invoking node.
2025

2126
## Publishers and subscribers
2227

23-
Publishers allow clients and servers to initiate communication, using typed messages. The messages are defined in Gazebo using Protobuf, and they are accessed in javascript via a JSON representation. Publishers can be created in the Gazebo server or the Node client, and messages are sent to unique topics that subscribers can listen to. Messages can be published to existing topics, or new topics can be created for future subscribers.
28+
Publishers allow clients and servers to initiate communication, using typed
29+
messages.The messages are defined in Gazebo using Protobuf, and they are
30+
accessed in javascript via a JSON representation. Publishers can be created
31+
in the Gazebo server or the Node client, and messages are sent to unique topics
32+
that subscribers can listen to. Messages can be published to existing topics,
33+
or new topics can be created for future subscribers.
2434

2535

2636
### Node session
2737

28-
Because the code tries to connect to the running simulation server, launch Gazebo in a separate terminal (if it is not already running) and verify that the simulation is running (and Sim Time is increasing):
38+
Because the code tries to connect to the running simulation server, launch
39+
Gazebo in a separate terminal (if it is not already running) and verify that
40+
the simulation is running (and Sim Time is increasing):
2941

3042
gazebo
3143

32-
In a separate terminal, from the gazeboJsPubSub directory, start a node interactive session:
44+
In a separate terminal, from the gazeboJsPubSub directory, start a node
45+
interactive session:
3346

3447
cd gazeboJsPubSub
3548
node
3649

37-
And type in the following two lines to load the Gazebo C++ module into the Node V8 script engine, and crate an instance of the Gazebo class.
50+
And type in the following two lines to load the Gazebo C++ module into the
51+
Node V8 script engine, and crate an instance of the Gazebo class.
3852

3953
~~~
4054
var gazebojs = require("gazebojs")
@@ -47,18 +61,24 @@ Type in the following to publish a message:
4761
gazebo.publish('gazebo.msgs.WorldControl', '~/world_control', { pause: true});
4862
~~~
4963

50-
Type the following to subscribe to the `~/world_stats` topic and send the ouput to `console.log`.
64+
Type the following to subscribe to the `~/world_stats` topic and send the
65+
ouput to `console.log`.
5166

5267
~~~
5368
gazebo.subscribe('gazebo.msgs.WorldStatistics', '~/world_stats', console.log)
5469
~~~
5570

5671

57-
The arguments to publish are the message type, the topic name, and the message (in JSON format) . Once published, the message is going to be received by each subscriber for this topic.
72+
The arguments to publish are the message type, the topic name, and the message
73+
(in JSON format) . Once published, the message is going to be received by
74+
each subscriber for this topic.
5875

5976

60-
Subscribers provide a callback function for a specific type of message on a certain topic. Each time a new message is published by a publisher, the callback is invoked for every subscriber to this topic.
77+
Subscribers provide a callback function for a specific type of message on a
78+
certain topic. Each time a new message is published by a publisher, the
79+
callback is invoked for every subscriber to this topic.
6180

62-
It is possible to unsubscribe to a topic. When `unsubscribe` is called, all subscriptions to that topic are removed.
81+
It is possible to unsubscribe to a topic. When `unsubscribe` is called, all
82+
subscriptions to that topic are removed.
6383

6484

0 commit comments

Comments
 (0)