vcglib/wrap/io_trimesh/export_u3d.h

108 lines
2.6 KiB
C++

#ifndef __VCGLIB_EXPORTERU3D
#define __VCGLIB_EXPORTERU3D
#include <cstdlib>
#include <string>
#include <QDir.h>
#include<QString.h>
#include <QProcess.h>
#include "export_idtf.h"
namespace vcg {
namespace tri {
namespace io {
template<typename SaveMeshType>
class ExporterU3D
{
private:
static void InvokeConverter(const QString& converter_path,const QString& input_idtf,const QString& output_u3d)
{
QProcess p;
p.start(converter_path + "IDTFConverter.exe -input " + input_idtf + " -output " + output_u3d);
//wait for two minutes
bool t = p.waitForFinished(120000);
p.close();
}
static void SaveLatex(SaveMeshType& m,const QString& file)
{
Output_File latex(file.toStdString() + ".tex");
QString u3df = file + ".u3d";
latex.write(0,"\\begin{document}");
latex.write(0,"\\includemovie[");
latex.write(1,"poster,");
latex.write(1,"toolbar, %same as `controls\'");
latex.write(1,"label=" + file.toStdString() + ",");
latex.write(1,"text=(" + u3df.toStdString() + "),");
latex.write(1,"3Daac=60, 3Dcoo=-3.382026195526123 -63.33322525024414 -3.2237343788146973, 3Droo=1.4597717633624103,");
latex.write(1,"3Dlights=File,");
latex.write(0,"]{\\linewidth}{\\linewidth}{" + u3df.toStdString() + "}");
latex.write(0,"\\end{document}");
}
public:
static int Save(SaveMeshType& m,const char* outputfile,const int mask,const char* converter_path)
{
QString curr = QDir::currentPath();
QString tmp(QDir::tempPath());
QString pathout(outputfile);
QStringList pathlist = pathout.split('/');
QString filename;
QString outputcom;
if (pathlist.size() != 0)
{
filename = pathlist.at(pathlist.size() - 1);
if (pathlist.size() > 1)
outputcom = pathout;
else
outputcom = curr + "/" + filename;
}
else return 1;
tmp = tmp + "/" + filename + ".idtf";
vcg::tri::io::ExporterIDTF<SaveMeshType>::Save(m,qPrintable(tmp),mask);
InvokeConverter(converter_path,qPrintable(tmp),qPrintable(outputcom));
QDir::setCurrent(curr);
QString lat (outputfile);
QStringList l = lat.split(".");
SaveLatex(m,l[0]);
QDir dir(QDir::tempPath());
dir.remove(tmp);
return 0;
}
static int GetExportMaskCapability()
{
int capability = 0;
//camera
//capability |= MeshModel::IOM_CAMERA;
//vert
capability |= MeshModel::IOM_VERTNORMAL;
capability |= MeshModel::IOM_VERTTEXCOORD;
//capability |= MeshModel::
////face
////capability |= MeshModel::IOM_FACEFLAGS;
////capability |= MeshModel::IOM_FACECOLOR;
//capability |= MeshModel::IOM_FACENORMAL;
////wedg
capability |= MeshModel::IOM_WEDGTEXCOORD;
capability |= MeshModel::IOM_WEDGNORMAL;
return capability;
}
};
}
}
}
#endif