2018-05-23 11:31:41 -0600 | received badge | ● Famous Question (source) |
2018-05-23 11:31:41 -0600 | received badge | ● Notable Question (source) |
2018-05-23 11:31:41 -0600 | received badge | ● Popular Question (source) |
2018-03-26 10:36:58 -0600 | received badge | ● Famous Question (source) |
2016-07-21 02:42:13 -0600 | answered a question | Using Boost::boost::asio::ip::udp from a model plugin The solution is to move the receiver to a thread (tested) or use the IO_service of gazebo (access via IOManager) (non-tested) The porblem is that the same thread cannot access io_services via two different boost::io_services |
2016-07-20 04:47:48 -0600 | asked a question | Using Boost::boost::asio::ip::udp from a model plugin Hi everyone, I'm trying top use a custom UDP socket to control a model. The outgoing (from Plugin) messages are received but the plugins doesn't receive anything from the source. The messages are being queued. It's not the port because I tried to use the code outside gazebo and it works. Any idea why, and how to fix this? Thx! XB32Z |
2016-07-08 09:56:14 -0600 | received badge | ● Notable Question (source) |
2016-07-08 04:44:43 -0600 | received badge | ● Famous Question (source) |
2016-07-06 01:00:14 -0600 | commented answer | Windows 7 64bit install problem Hi happy it works! Indeed I configured the thing to work with Visual Studio and not the command-lined nmake. About altimeter I remember having this error but not how to fix it. But in a general way, I remember that only Release worked. Good luck |
2016-07-06 00:57:48 -0600 | received badge | ● Popular Question (source) |
2016-07-05 09:42:45 -0600 | answered a question | Windows 7 64bit install problem Hi, Which version of gazebo did you use ? -- Try the fork: https://bitbucket.org/XB32Z/windows_g... I managed to compile gazebo 7.1 on Windows using Visual Studio Community 12 (2013) using this fork, but it really depends on so many things that I can't help you more than that. Good luck |
2016-07-05 09:34:43 -0600 | asked a question | Mordern CMake for Gazebo Hi everyone! I was wondering if the "modern" cmake implementation for configuration file was implemented somewhere on gazebo? By modern cmake I'm talking of this. So to use add_library(gazebo STATIC IMPORTED) instead of the traditional GAZEBO_LIBRARIES cmake varibales. It would just required to install the EXPORT target in the CMakeLists and to include the output files into the gazebo-config.cmake I saw that ignition-math2 has this mechanism. If it doesn't exist, would it be interesting to do it ? All the best :D XB32Z |
2016-06-13 21:59:06 -0600 | received badge | ● Notable Question (source) |
2016-06-13 21:59:06 -0600 | received badge | ● Popular Question (source) |
2016-04-15 01:38:24 -0600 | received badge | ● Enthusiast |
2016-04-14 06:50:24 -0600 | received badge | ● Supporter (source) |
2016-04-08 08:35:27 -0600 | commented answer | Models doesn't appear when setting up gazebo programmatically Hi! I'm planing to make something cleaner soon :) |
2016-04-01 13:00:14 -0600 | received badge | ● Self-Learner (source) |
2016-04-01 13:00:14 -0600 | received badge | ● Teacher (source) |
2016-04-01 10:56:09 -0600 | received badge | ● Famous Question (source) |
2016-03-31 01:51:31 -0600 | commented answer | SDF files and collada dataa Hi, thx for your answer! This solution looks more clean than adding COLLADA to SDF! What do you mean by passing two strings? |
2016-03-30 22:56:47 -0600 | received badge | ● Notable Question (source) |
2016-03-30 10:08:40 -0600 | received badge | ● Popular Question (source) |
2016-03-30 01:20:44 -0600 | commented question | SDF files and collada dataa Yes I mean to paste the COLLADA's XML directly into the .sdf file instead of referencing the .dae files. My use case would be to send complex shaped models to a server through a message without copying the COLLADA files to the model repo I didn't looked into the code how the COLLADA files are parsed when referenced but I was thinking to just use a new flag like <collada_data> //here is the COLLADA XML </collada_data> and consider things in between as a string. |
2016-03-29 10:08:30 -0600 | asked a question | SDF files and collada dataa Hi, I'd like to know if it is possible to incorporate the collada files directly in the SDF files instead of calling models or files? If not, would it be interesting to add this functionality, as a pull request? Thank you, |
2016-03-29 10:06:20 -0600 | asked a question | World Plugin, callback function ConnectWorldUpdateBegin is not called Hey! I think everything is in the title, I made a world plugin using gazebo 7 (on Windows). I'm using the Event ConnectWorldUpdateBegin to send the poses of the links to another program I made (to control the robots in the simulation) but the callback doesn't work. and the .cc I can't use Debug (too hard on Windows) but I'm sure the plugin is loaded as I can print stuff from Load function. But the UPDATE string never appears and the code after is not executed. I also changed the register by its value: Could it be related? The subscriber and publisher works perfectly well from a stand alone server, so it shouldn't. However I guess that the scope is somehow wrong. Thx for your help! |
2016-03-29 09:52:56 -0600 | received badge | ● Scholar (source) |
2016-03-29 09:52:41 -0600 | answered a question | Models doesn't appear when setting up gazebo programmatically Sorry for the very late answer :/ I made my own branch available here: https://bitbucket.org/XB32Z/windows_g... It hasn't been merged with the main because it doesn't compile under linux anymore. I guess that Gazebo is just not made for Windows ... However I got it to work: launch the client before adding any models ! Thx for your help. |
2016-03-29 09:49:46 -0600 | received badge | ● Famous Question (source) |
2016-03-14 09:01:04 -0600 | received badge | ● Notable Question (source) |
2016-03-12 20:46:33 -0600 | received badge | ● Student (source) |
2016-03-12 20:39:24 -0600 | received badge | ● Popular Question (source) |
2016-03-10 10:57:00 -0600 | commented question | Models doesn't appear when setting up gazebo programmatically it appears when gzclient is launch before publishing |
2016-03-10 10:56:57 -0600 | asked a question | Models doesn't appear when setting up gazebo programmatically Hi everyone, I tried the example animated_box which setup the server with a box inside.Then I launch the gzclient, it connect to the server and the box appears in the "models" but not on the render. I also tried to setup other models programmatically but they don't move (it's like they're not being simulated): they don't fall down for example (gravity flag is true in the model). Is there a way to make this work? I'm working on Windows with gazebo 7 compiled in 32bits with Visual Studio 2013. Also unlike the tutorial I use the latest version of OGRE. Thank you! XB32Z |