Skip to content
Snippets Groups Projects
Commit 570e7222 authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Return save path

parent 70004c55
No related branches found
No related tags found
No related merge requests found
......@@ -47,8 +47,8 @@ MujocoIO::MujocoIO(RobotPtr robot) : robot(robot)
THROW_VR_EXCEPTION_IF(!robot, "Given RobotPtr robot is null.");
}
void MujocoIO::saveMJCF(const std::string& filename, const std::string& basePath,
const std::string& meshRelDir)
std::string MujocoIO::saveMJCF(
const std::string& filename, const std::string& basePath, const std::string& meshRelDir)
{
THROW_VR_EXCEPTION_IF(filename.empty(), "Given filename is empty.");
......@@ -118,8 +118,13 @@ void MujocoIO::saveMJCF(const std::string& filename, const std::string& basePath
}
VR_ASSERT(!outputFileName.empty());
std::cout << "Writing to " << (outputDirectory / outputFileName) << std::endl;
document->saveFile((outputDirectory / outputFileName).string());
const fs::path outputFilePath = outputDirectory / outputFileName;
std::cout << "Writing to " << outputFilePath << std::endl;
document->saveFile(outputFilePath);
return outputFilePath;
}
void MujocoIO::setUseRelativePaths(bool useRelative)
......@@ -127,7 +132,10 @@ void MujocoIO::setUseRelativePaths(bool useRelative)
this->useRelativePaths = useRelative;
}
void MujocoIO::setPaths(const std::string& filename, const std::string& basePath, const std::string& meshRelDir)
void MujocoIO::setPaths(
const std::string& filename,
const std::string& basePath,
const std::string& meshRelDir)
{
outputDirectory = basePath;
outputFileName = filename;
......
......@@ -34,8 +34,9 @@ namespace mujoco
* @param filename the output filename (without directory)
* @param basePath the output directory
* @param meshRelDir the directory relative to basePath where meshes shall be placed
* @return Absolute path to saved robot model file.
*/
void saveMJCF(const std::string& filename, const std::string& basePath,
std::string saveMJCF(const std::string& filename, const std::string& basePath,
const std::string& meshRelDir);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment