GithubHelp home page GithubHelp logo

Ros Noetic Support about m3dp-sim HOT 13 OPEN

ai4ce avatar ai4ce commented on May 27, 2024
Ros Noetic Support

from m3dp-sim.

Comments (13)

simbaforrest avatar simbaforrest commented on May 27, 2024 1

It's the final exam season so please give us some time. Hopefully @Rtlyc can look into this in early January.

from m3dp-sim.

simbaforrest avatar simbaforrest commented on May 27, 2024

@uljadberdica1000 @Rtlyc any thoughts?

from m3dp-sim.

marios-stam avatar marios-stam commented on May 27, 2024

I think I have installed everything successfully and I am able to move both the manipulator and turtle bot in Gazebo. But it is not clear to me how one can control the printing action of the manipulator. Is there a ROS Topic that signals the start of extrusion from the manipulator or something similar?

Could you help me with that, please?

from m3dp-sim.

marios-stam avatar marios-stam commented on May 27, 2024

I tried to build splishsplash by following the usual commands
mkdir build
cd build
cmake ..
make

and I get the following error:

In file included from /usr/include/ignition/math6/gz/math.hh:66,
                 from /usr/include/ignition/math6/ignition/math.hh:18,
                 from /usr/include/sdformat-9.8/sdf/Param.hh:33,
                 from /usr/include/sdformat-9.8/sdf/Element.hh:28,
                 from /usr/include/sdformat-9.8/sdf/Actor.hh:25,
                 from /usr/include/sdformat-9.8/sdf/sdf.hh:2,
                 from /home/marios/.local/include/gazebo-11/gazebo/common/Battery.hh:25,
                 from /home/marios/.local/include/gazebo-11/gazebo/common/common.hh:8,
                 from /home/marios/.local/include/gazebo-11/gazebo/gazebo_core.hh:19,
                 from /home/marios/.local/include/gazebo-11/gazebo/gazebo.hh:20,
                 from /home/marios/M3DP-Sim/splisplash/Simulator/GUI/GazeboFluidVisualizer/GazeboFluidVisualizer.h:8,
                 from /home/marios/M3DP-Sim/splisplash/Simulator/GUI/GazeboFluidVisualizer/GazeboFluidVisualizer.cpp:5:
/usr/include/ignition/math6/gz/math/Sphere.hh: At global scope:
/usr/include/ignition/math6/gz/math/Sphere.hh:109:20: error: ‘optional’ in namespace ‘std’ does not name a template type
  109 |       public: std::optional<Vector3<Precision>>
      |                    ^~~~~~~~
/usr/include/ignition/math6/gz/math/Sphere.hh:109:15: note: ‘std::optional’ is only available from C++17 onwards
  109 |       public: std::optional<Vector3<Precision>>
      |               ^~~

I tried to choose the c++17 standard through the CmakeLists.txt but I keep on getting the same error.
The error appears even after I installed the gazebo version you are recommending from bitBucket

Please let me know if this is what should be done or not and if yes how can I solve this error?

Thank you!

from m3dp-sim.

uljad avatar uljad commented on May 27, 2024

This appears to be a splishsplash issue I have not encountered before. The error is in the legacy codebase. I would try using a different vector structure that does not require the optional template. Initializing the vector to bypass the need to use std::optional has worked for me before.

I will try to replicate the error later today and get back to you.

from m3dp-sim.

marios-stam avatar marios-stam commented on May 27, 2024

@simbaforrest I understand 100% and thank you for your help

from m3dp-sim.

marios-stam avatar marios-stam commented on May 27, 2024

@uljadberdica1000 I finally managed to force building through c++17 standard by changing this line set(CMAKE_CXX_FLAGS "-std=c++17") in the CmakeLists.txt and the previous error was fixed. Although now I get the following and I am not able to fix it yet.

- Build files have been written to: /home/marios/M3DP-Sim/splisplash/build/extern/PositionBasedDynamics/src/Ext_PBD-build
/home/marios/M3DP-Sim/splisplash/extern/partio/src/lib/io/ZIP.cpp: In destructor ‘virtual Partio::ZipStreambufCompress::~ZipStreambufCompress()’:
/home/marios/M3DP-Sim/splisplash/extern/partio/src/lib/io/ZIP.cpp:359:23: error: ‘streampos’ is not a member of ‘std::ios’ {aka ‘std::basic_ios<char>’}
  359 |             std::ios::streampos final_position=ostream.tellp();
      |                       ^~~~~~~~~
/home/marios/M3DP-Sim/splisplash/extern/partio/src/lib/io/ZIP.cpp:364:27: error: ‘final_position’ was not declared in this scope
  364 |             ostream.seekp(final_position);}
      |                           ^~~~~~~~~~~~~~
/home/marios/M3DP-Sim/splisplash/extern/partio/src/lib/io/ZIP.cpp: In destructor ‘virtual Partio::ZipFileWriter::~ZipFileWriter()’:
/home/marios/M3DP-Sim/splisplash/extern/partio/src/lib/io/ZIP.cpp:454:15: error: ‘streampos’ is not a member of ‘std::ios’ {aka ‘std::basic_ios<char>’}
  454 |     std::ios::streampos final_position=ostream.tellp();
      |               ^~~~~~~~~
/home/marios/M3DP-Sim/splisplash/extern/partio/src/lib/io/ZIP.cpp:456:15: error: ‘streampos’ is not a member of ‘std::ios’ {aka ‘std::basic_ios<char>’}
  456 |     std::ios::streampos central_end=ostream.tellp();
      |               ^~~~~~~~~
/home/marios/M3DP-Sim/splisplash/extern/partio/src/lib/io/ZIP.cpp:463:44: error: ‘central_end’ was not declared in this scope
  463 |     Write_Primitive(ostream,(unsigned int)(central_end-final_position)); // size of header
      |                                            ^~~~~~~~~~~
/home/marios/M3DP-Sim/splisplash/extern/partio/src/lib/io/ZIP.cpp:463:56: error: ‘final_position’ was not declared in this scope
  463 |     Write_Primitive(ostream,(unsigned int)(central_end-final_position)); // size of header
      |                                                        ^~~~~~~~~~~~~~
/home/marios/M3DP-Sim/splisplash/extern/partio/src/lib/io/ZIP.cpp: In member function ‘bool Partio::ZipFileReader::Find_And_Read_Central_Header()’:
/home/marios/M3DP-Sim/splisplash/extern/partio/src/lib/io/ZIP.cpp:505:15: error: ‘streampos’ is not a member of ‘std::ios’ {aka ‘std::basic_ios<char>’}
  505 |     std::ios::streampos end_position=istream.tellg();
      |               ^~~~~~~~~
/home/marios/M3DP-Sim/splisplash/extern/partio/src/lib/io/ZIP.cpp:508:15: error: ‘streamoff’ is not a member of ‘std::ios’ {aka ‘std::basic_ios<char>’}
  508 |     std::ios::streamoff read_start=max_comment_size+read_size_before_comment;
      |               ^~~~~~~~~
/home/marios/M3DP-Sim/splisplash/extern/partio/src/lib/io/ZIP.cpp:509:8: error: ‘read_start’ was not declared in this scope
  509 |     if(read_start>end_position) read_start=end_position;
      |        ^~~~~~~~~~
/home/marios/M3DP-Sim/splisplash/extern/partio/src/lib/io/ZIP.cpp:509:19: error: ‘end_position’ was not declared in this scope
  509 |     if(read_start>end_position) read_start=end_position;
      |                   ^~~~~~~~~~~~
[ 35%] Performing build step for 'Ext_PBD'
/home/marios/M3DP-Sim/splisplash/extern/partio/src/lib/io/ZIP.cpp:510:19: error: ‘end_position’ was not declared in this scope
  510 |     istream.seekg(end_position-read_start);
      |                   ^~~~~~~~~~~~
/home/marios/M3DP-Sim/splisplash/extern/partio/src/lib/io/ZIP.cpp:510:32: error: ‘read_start’ was not declared in this scope
  510 |     istream.seekg(end_position-read_start);

To me, it seems that the problem lies in the fact that some libraries are written based on the c++17 standard and get errors while building for previous standards and vice versa. My expertise in c++ is not that strong so I would appreciate it if you could guide me on how to fix this issue if you do not have time at the moment.
Your plugin is too good for me to stop trying to integrate it! 😁

from m3dp-sim.

marios-stam avatar marios-stam commented on May 27, 2024

I managed to fix all the issues and errors regarding the c++ 17 and ros noetic and got a successful build in a new branch here. Although now I am not sure how should I start a simple simulation but going to create a new issue for that.

from m3dp-sim.

uljad avatar uljad commented on May 27, 2024

Happy you could get it to work. I tried to replicate but was running into other irrelevant issues. I will reply to the other issue as soon as I can

from m3dp-sim.

ssungho98 avatar ssungho98 commented on May 27, 2024

Hi Marios and Uljad! I would like to try the simulation in ROS noetic as well. If you don't mind, can I ask several questions personally to you guys? Please email me to [email protected]. Look forward to hearing from you!

from m3dp-sim.

simbaforrest avatar simbaforrest commented on May 27, 2024

@Rtlyc can you meet with @ssungho98 to help him with his questions? Thank you!

from m3dp-sim.

marios-stam avatar marios-stam commented on May 27, 2024

Please include me in this meeting if possible.
I did not manage to make it work finally

from m3dp-sim.

Rtlyc avatar Rtlyc commented on May 27, 2024

Yes. I am in contact with @ssungho98. For the experiment setup, I think @ uljadberdica1000 has more experience and might be able to help.

from m3dp-sim.

Related Issues (2)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.