41 lines
1.2 KiB
C++
41 lines
1.2 KiB
C++
#include "XmlExporter.h"
|
|
#include <boost/property_tree/ptree.hpp>
|
|
#include <boost/property_tree/xml_parser.hpp>
|
|
#include <boost/version.hpp>
|
|
#include "exporterTools.h"
|
|
|
|
using std::string;
|
|
using boost::property_tree::ptree;
|
|
|
|
void XmlExporter::exportAnimation(const ExporterInput& input, std::ostream& outputStream) {
|
|
ptree tree;
|
|
|
|
// Add metadata
|
|
tree.put("rhubarbResult.metadata.soundFile", input.inputFilePath.string());
|
|
tree.put(
|
|
"rhubarbResult.metadata.duration",
|
|
formatDuration(input.animation.getRange().getDuration())
|
|
);
|
|
|
|
// Add mouth cues
|
|
for (auto& timedShape : dummyShapeIfEmpty(input.animation, input.targetShapeSet)) {
|
|
ptree& mouthCueElement = tree.add(
|
|
"rhubarbResult.mouthCues.mouthCue",
|
|
timedShape.getValue()
|
|
);
|
|
mouthCueElement.put("<xmlattr>.start", formatDuration(timedShape.getStart()));
|
|
mouthCueElement.put("<xmlattr>.end", formatDuration(timedShape.getEnd()));
|
|
}
|
|
|
|
#ifndef BOOST_VERSION //present in version.hpp
|
|
#error "Could not detect Boost version."
|
|
#endif
|
|
|
|
#if BOOST_VERSION < 105600 // Support legacy syntax
|
|
using writer_setting = boost::property_tree::xml_writer_settings<char>;
|
|
#else
|
|
using writer_setting = boost::property_tree::xml_writer_settings<string>;
|
|
#endif
|
|
write_xml(outputStream, tree, writer_setting(' ', 2));
|
|
}
|