You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
4
6
5
7
6
8
## Project setup
7
9
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:
9
13
10
14
mkdir gazeboJsPubSub
11
15
cd gazeboJsPubSub
12
16
npm init
13
17
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:
15
20
16
21
npm install gazebojs --save
17
22
@@ -20,21 +25,30 @@ Now you can create javascript files and execute them by invoking node.
20
25
21
26
## Publishers and subscribers
22
27
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.
24
34
25
35
26
36
### Node session
27
37
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):
29
41
30
42
gazebo
31
43
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:
33
46
34
47
cd gazeboJsPubSub
35
48
node
36
49
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.
38
52
39
53
~~~
40
54
var gazebojs = require("gazebojs")
@@ -47,18 +61,24 @@ Type in the following to publish a message:
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.
58
75
59
76
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.
61
80
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
0 commit comments