-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Adding New Node and API Function
Olivier Michel edited this page Oct 4, 2021
·
33 revisions
- Webots Core:
- Add a .wrl file in
webots/resources/nodes/. - Add a .png image of size 128x128 pixels in
webots/resources/nodes/icons/. - Add .cpp and .hpp files in
src/webots/nodes, and add a new entry insrc/webots/Makefile. - Add an enum entry in
webots/include/controller/c/webots/nodes.handwebots/include/controller/cpp/webots/Node.hpp. - Add the node name in
wb_node_get_name()function inwebots/src/controller/c/node.c. - Add a
gen_const()entry inwebots/src/controller/matlab/mgenerate.pyand run it with the-updateoption. - Add the node in
src/webots/nodes/utils/WbConcreteNodeFactory.cpp. - Add the node in
src/webots/nodes/utils/WbNodeUtilities.cpp. - Add the node in
src/webots/core/WbLanguage.cpp.
- Add a .wrl file in
- Documentation:
- Create a new file
webots/docs/references/'node_name'.mdand add it to the menu. - Update
webots/docs/reference/supervisor.md. - Update
webots/docs/reference/nodes-and-keywords.md. - Add the new node in
webots/docs/reference/node-chart.md.
- Create a new file
- If the node is a device:
- Add in
webots/lib/controller/matlab/launcher.mandwebots/lib/controller/matlab/allincludes.hthe entries corresponding to the device node. - Add the C++ controller class in
webots/resources/templates/cpp.vcxprojandcpp.vcxproj.filter. - If the node name is newDevice, declare and define
getNewDevice()andCreateNewDevice()inRobot.hppandRobot.cpp(#include in Robot.hpp needed). - If the node name is new_device, add
extern void wb_new_device_init(WbDevice *)indevice.cand add one more branch to the switch indevice.c::wb_device_init(); - Add a corresponding robot window widget in
webots/resources/projects/plugins/robot_windows/generic/. - If the node name is newDevice, add
RosNewDevice.cppandRosNewDevice.hppfiles inwebots/projects/default/controller/ros/and add a new entry inwebots/projects/default/controller/ros/Makefile. If the new device is a sensor with a ~getValue() function, creates a topic for it. - Add the
RosNewDeviceto the constructor ofRos.cppinwebots/projects/default/controller/ros/. - Go to Adding a new API function
- Add a demo featuring this new device in
webots/projects/samples/devices/and add it in thewebots/projects/guided_tour.txt.
- Add in
- Add it in
/include/controller/c/webots/. - Add it in
/src/controller/c/(don't forget to include a "bad device tag" error message if the function takes a WbDeviceTag). - Add it in
/src/controller/c/Controller.def. - Add it in
/src/webots/nodes/. - Add it in
/include/controller/cpp/webots/. - Add it in
/src/controller/cpp/. - Add it in
/src/controller/java/, i.e. in Makefile and controller.i. - Add it in
/src/controller/python/i.e. in Makefile and controller.i. - Add it in
/src/controller/matlab/mgenerate.py, possibly also inlib/controller/matlab/and runmgenerate.pywith the-updateoption. - Add it in
/src/webots/core/WbLanguage.cpp. - Add it in
/docs/reference/'device_name'.md. - Add a sample usage demo in
/projects/sample/. - Add it in ROS default controller and examples:
- In
webots_rosrepository:- Check if existing messages or standard ROS messages can be used for the new API function.
- If not, create a service or message description file
/resources/webots_ros/srv/<function_name>.srvor/resources/webots_ros/msg/<function_name>.msg. - Try to use as much as possible standard message types, sensor message types or geometry message types.
- Add it in the
/resources/webots_ros/CMakeLists.txtfile.
- In
/projects/default/controller/ros/controller:- Add it in
Ros<Device>class: define a function callback and a service server (for a service) or a topic (for a message). - If the function corresponds to getting a value that changes at each step (e.g. sensor output) prefer a message/topic to a service.
- Add it in
- In
webots_rosrepository:- Add a test in
/resources/webots_ros/src/complete_test.cpp.
- Add a test in
- Commit changes to the
webots_rosrepository. - Sync
webots_rossubmodule.
- In
- Add a new API test in
/tests/api(new world and controller).