leocad/common/project.cpp

1794 lines
48 KiB
C++
Raw Normal View History

#include "lc_global.h"
2012-03-29 03:10:55 +02:00
#include "lc_math.h"
#include "lc_mesh.h"
2011-09-07 23:06:51 +02:00
#include <locale.h>
#include "pieceinf.h"
#include "camera.h"
#include "project.h"
#include "image.h"
2013-08-16 03:25:51 +02:00
#include "lc_mainwindow.h"
2011-09-07 23:06:51 +02:00
#include "view.h"
2012-10-02 03:23:44 +02:00
#include "lc_library.h"
2011-09-07 23:06:51 +02:00
#include "lc_application.h"
2013-08-09 06:57:18 +02:00
#include "lc_profile.h"
2016-05-02 21:13:54 +02:00
#include "lc_file.h"
2016-08-01 05:44:15 +02:00
#include "lc_qimagedialog.h"
2014-12-13 00:42:09 +01:00
#include "lc_qmodellistdialog.h"
2016-08-01 05:44:15 +02:00
#include "lc_qpovraydialog.h"
2011-09-07 23:06:51 +02:00
Project::Project()
{
mModified = false;
2016-09-09 00:34:51 +02:00
mActiveModel = new lcModel(tr("Model #1.ldr"));
2015-02-22 03:39:15 +01:00
mActiveModel->CreatePieceInfo(this);
2014-12-16 00:55:17 +01:00
mActiveModel->SetSaved();
2014-12-13 00:42:09 +01:00
mModels.Add(mActiveModel);
2011-09-07 23:06:51 +02:00
}
Project::~Project()
{
mModels.DeleteAll();
2011-09-07 23:06:51 +02:00
}
2014-12-13 00:42:09 +01:00
bool Project::IsModified() const
2011-09-07 23:06:51 +02:00
{
2014-12-13 00:42:09 +01:00
if (mModified)
return true;
for (int ModelIdx = 0; ModelIdx < mModels.GetSize(); ModelIdx++)
if (mModels[ModelIdx]->IsModified())
return true;
return false;
}
QString Project::GetTitle() const
{
2015-02-22 03:39:15 +01:00
if (!mFileName.isEmpty())
return QFileInfo(mFileName).fileName();
return mModels.GetSize() == 1 ? tr("New Project.ldr") : tr("New Project.mpd");
2014-12-13 00:42:09 +01:00
}
void Project::SetActiveModel(int ModelIndex)
{
if (ModelIndex < 0 || ModelIndex >= mModels.GetSize())
return;
for (int ModelIdx = 0; ModelIdx < mModels.GetSize(); ModelIdx++)
mModels[ModelIdx]->SetActive(ModelIdx == ModelIndex);
lcArray<lcModel*> UpdatedModels;
UpdatedModels.AllocGrow(mModels.GetSize());
for (int ModelIdx = 0; ModelIdx < mModels.GetSize(); ModelIdx++)
mModels[ModelIdx]->UpdatePieceInfo(UpdatedModels);
2014-12-13 00:42:09 +01:00
mActiveModel = mModels[ModelIndex];
2016-03-06 02:47:00 +01:00
gMainWindow->SetCurrentModelTab(mActiveModel);
2014-12-13 00:42:09 +01:00
mActiveModel->UpdateInterface();
}
2016-09-09 00:34:51 +02:00
QString Project::GetNewModelName(QWidget* ParentWidget, const QString& DialogTitle, const QString& CurrentName, const QStringList& ExistingModels) const
2014-12-13 00:42:09 +01:00
{
2016-09-09 00:34:51 +02:00
QString Name = CurrentName;
2014-12-13 00:42:09 +01:00
2016-09-09 00:34:51 +02:00
if (Name.isEmpty())
2014-12-13 00:42:09 +01:00
{
2016-09-09 00:34:51 +02:00
const QString Prefix = tr("Model #");
int Max = 0;
2014-12-13 00:42:09 +01:00
2016-09-09 00:34:51 +02:00
for (int ModelIdx = 0; ModelIdx < ExistingModels.size(); ModelIdx++)
2014-12-13 00:42:09 +01:00
{
2016-09-09 00:34:51 +02:00
const QString& Name = ExistingModels[ModelIdx];
if (Name.startsWith(Prefix))
{
QString NumberString = Name.mid(Prefix.length());
QTextStream Stream(&NumberString);
int Number;
Stream >> Number;
Max = qMax(Max, Number);
}
2014-12-13 00:42:09 +01:00
}
2016-09-09 00:34:51 +02:00
Name = Prefix + QString::number(Max + 1) + ".ldr";
}
2014-12-13 00:42:09 +01:00
for (;;)
{
bool Ok = false;
2016-09-09 00:34:51 +02:00
Name = QInputDialog::getText(ParentWidget, DialogTitle, tr("Model Name:"), QLineEdit::Normal, Name, &Ok);
2014-12-13 00:42:09 +01:00
if (!Ok)
2016-09-09 00:34:51 +02:00
return QString();
2014-12-13 00:42:09 +01:00
if (Name.isEmpty())
2016-09-09 00:34:51 +02:00
{
QMessageBox::information(ParentWidget, tr("Empty Name"), tr("The model name cannot be empty."));
continue;
}
2014-12-13 00:42:09 +01:00
2016-09-09 00:34:51 +02:00
bool ExtensionValid = false;
2016-09-09 00:34:51 +02:00
if (Name.length() < 5)
ExtensionValid = false;
else
{
QString Extension = Name.right(4);
2016-09-17 22:21:29 +02:00
if (Extension.compare(".dat", Qt::CaseInsensitive) == 0 || Extension.compare(".ldr", Qt::CaseInsensitive) == 0 || Extension.compare(".mpd", Qt::CaseInsensitive) == 0)
2016-09-09 00:34:51 +02:00
ExtensionValid = true;
}
2016-09-09 00:34:51 +02:00
if (!ExtensionValid)
{
2016-09-17 22:21:29 +02:00
QMessageBox::information(ParentWidget, tr("Invalid Extension"), tr("The model name must end with '.ldr', '.dat' or '.mpd'."));
2016-09-09 00:34:51 +02:00
continue;
}
2016-09-09 00:34:51 +02:00
if (ExistingModels.contains(Name, Qt::CaseInsensitive) && Name != CurrentName)
{
QMessageBox::information(ParentWidget, tr("Duplicate Model"), tr("A model named '%1' already exists, please enter an unique name.").arg(Name));
continue;
}
break;
}
return Name;
}
lcModel* Project::CreateNewModel(bool ShowModel)
{
QStringList ModelNames;
for (int ModelIdx = 0; ModelIdx < mModels.GetSize(); ModelIdx++)
ModelNames.append(mModels[ModelIdx]->GetProperties().mName);
QString Name = GetNewModelName(gMainWindow, tr("New Model"), QString(), ModelNames);
if (Name.isEmpty())
return NULL;
mModified = true;
lcModel* Model = new lcModel(Name);
Model->CreatePieceInfo(this);
Model->SetSaved();
mModels.Add(Model);
if (ShowModel)
{
SetActiveModel(mModels.GetSize() - 1);
gMainWindow->UpdateTitle();
2014-12-13 00:42:09 +01:00
}
2016-09-09 00:34:51 +02:00
else
SetActiveModel(mModels.FindIndex(mActiveModel));
return Model;
2014-12-13 00:42:09 +01:00
}
void Project::ShowModelListDialog()
{
QList<QPair<QString, lcModel*>> Models;
2016-09-22 17:04:51 +02:00
#if (QT_VERSION >= QT_VERSION_CHECK(4, 7, 0))
2014-12-13 00:42:09 +01:00
Models.reserve(mModels.GetSize());
2016-09-22 17:04:51 +02:00
#endif
2014-12-13 00:42:09 +01:00
for (int ModelIdx = 0; ModelIdx < mModels.GetSize(); ModelIdx++)
{
lcModel* Model = mModels[ModelIdx];
Models.append(QPair<QString, lcModel*>(Model->GetProperties().mName, Model));
}
2015-01-26 00:04:39 +01:00
lcQModelListDialog Dialog(gMainWindow, Models);
2014-12-13 00:42:09 +01:00
if (Dialog.exec() != QDialog::Accepted || Models.isEmpty())
return;
lcArray<lcModel*> NewModels;
for (QList<QPair<QString, lcModel*>>::iterator it = Models.begin(); it != Models.end(); it++)
{
lcModel* Model = it->second;
if (!Model)
{
Model = new lcModel(it->first);
2015-02-22 03:39:15 +01:00
Model->CreatePieceInfo(this);
2014-12-16 00:55:17 +01:00
Model->SetSaved();
2014-12-13 00:42:09 +01:00
mModified = true;
}
else if (Model->GetProperties().mName != it->first)
{
Model->SetName(it->first);
mModified = true;
}
NewModels.Add(Model);
}
for (int ModelIdx = 0; ModelIdx < mModels.GetSize(); ModelIdx++)
{
lcModel* Model = mModels[ModelIdx];
if (NewModels.FindIndex(Model) == -1)
{
delete Model;
mModified = true;
}
}
mModels = NewModels;
SetActiveModel(Dialog.mActiveModel);
gMainWindow->UpdateTitle();
2011-09-07 23:06:51 +02:00
}
bool Project::Load(const QString& FileName)
2011-09-07 23:06:51 +02:00
{
QFile File(FileName);
2011-09-07 23:06:51 +02:00
if (!File.open(QIODevice::ReadOnly))
2011-09-07 23:06:51 +02:00
{
2015-01-26 00:04:39 +01:00
QMessageBox::warning(gMainWindow, tr("Error"), tr("Error reading file '%1':\n%2").arg(FileName, File.errorString()));
return false;
2011-09-07 23:06:51 +02:00
}
2014-12-13 00:42:09 +01:00
mModels.DeleteAll();
mFileName = FileName;
2015-02-22 03:39:15 +01:00
QFileInfo FileInfo(FileName);
QString Extension = FileInfo.suffix().toLower();
2013-12-19 14:41:49 +01:00
QByteArray FileData = File.readAll();
bool LoadDAT;
if (Extension == QLatin1String("dat") || Extension == QLatin1String("ldr") || Extension == QLatin1String("mpd"))
LoadDAT = true;
else if (Extension == QLatin1String("lcd") || Extension == QLatin1String("leocad"))
LoadDAT = false;
else
LoadDAT = memcmp(FileData, "LeoCAD ", 7);
if (LoadDAT)
2013-01-06 20:24:25 +01:00
{
QBuffer Buffer(&FileData);
Buffer.open(QIODevice::ReadOnly);
2011-09-07 23:06:51 +02:00
while (!Buffer.atEnd())
2011-09-07 23:06:51 +02:00
{
2014-12-24 16:52:52 +01:00
lcModel* Model = new lcModel(QString());
Model->SplitMPD(Buffer);
if (mModels.IsEmpty() || !Model->GetProperties().mName.isEmpty())
mModels.Add(Model);
else
delete Model;
2011-09-07 23:06:51 +02:00
}
Buffer.seek(0);
for (int ModelIdx = 0; ModelIdx < mModels.GetSize(); ModelIdx++)
{
lcModel* Model = mModels[ModelIdx];
Model->LoadLDraw(Buffer, this);
Model->SetSaved();
}
2011-09-07 23:06:51 +02:00
}
else
{
lcMemFile MemFile;
MemFile.WriteBuffer(FileData.constData(), FileData.size());
MemFile.Seek(0, SEEK_SET);
2011-09-07 23:06:51 +02:00
2014-12-24 16:52:52 +01:00
lcModel* Model = new lcModel(QString());
2011-09-07 23:06:51 +02:00
if (Model->LoadBinary(&MemFile))
2014-12-16 00:55:17 +01:00
{
mModels.Add(Model);
2014-12-16 00:55:17 +01:00
Model->SetSaved();
}
else
delete Model;
2011-09-07 23:06:51 +02:00
}
if (mModels.IsEmpty())
return false;
2011-09-07 23:06:51 +02:00
2015-02-22 03:39:15 +01:00
if (mModels.GetSize() == 1)
2014-12-24 16:52:52 +01:00
{
2015-02-22 03:39:15 +01:00
lcModel* Model = mModels[0];
2014-12-24 16:52:52 +01:00
if (Model->GetProperties().mName.isEmpty())
2015-02-22 03:39:15 +01:00
Model->SetName(FileInfo.fileName());
2014-12-24 16:52:52 +01:00
}
2015-02-22 03:39:15 +01:00
for (int ModelIdx = 0; ModelIdx < mModels.GetSize(); ModelIdx++)
mModels[ModelIdx]->CreatePieceInfo(this);
lcArray<lcModel*> UpdatedModels;
UpdatedModels.AllocGrow(mModels.GetSize());
for (int ModelIdx = 0; ModelIdx < mModels.GetSize(); ModelIdx++)
mModels[ModelIdx]->UpdatePieceInfo(UpdatedModels);
2014-12-13 00:42:09 +01:00
mModified = false;
2011-09-07 23:06:51 +02:00
return true;
}
bool Project::Save(const QString& FileName)
2011-09-07 23:06:51 +02:00
{
QFile File(FileName);
2011-09-07 23:06:51 +02:00
if (!File.open(QIODevice::WriteOnly))
2012-03-23 00:44:56 +01:00
{
2015-01-26 00:04:39 +01:00
QMessageBox::warning(gMainWindow, tr("Error"), tr("Error writing to file '%1':\n%2").arg(FileName, File.errorString()));
return false;
2012-03-23 00:44:56 +01:00
}
2011-09-07 23:06:51 +02:00
QTextStream Stream(&File);
bool Success = Save(Stream);
mFileName = FileName;
mModified = false;
return Success;
}
bool Project::Save(QTextStream& Stream)
{
bool MPD = mModels.GetSize() > 1;
2011-09-07 23:06:51 +02:00
for (int ModelIdx = 0; ModelIdx < mModels.GetSize(); ModelIdx++)
2011-09-07 23:06:51 +02:00
{
lcModel* Model = mModels[ModelIdx];
if (MPD)
Stream << QLatin1String("0 FILE ") << Model->GetProperties().mName << QLatin1String("\r\n");
2016-02-17 00:11:52 +01:00
Model->SaveLDraw(Stream, false);
Model->SetSaved();
if (MPD)
2014-12-26 18:09:11 +01:00
Stream << QLatin1String("0 NOFILE\r\n");
}
return true;
}
2014-12-23 18:02:23 +01:00
void Project::Merge(Project* Other)
{
for (int ModelIdx = 0; ModelIdx < Other->mModels.GetSize(); ModelIdx++)
2015-02-22 03:39:15 +01:00
{
lcModel* Model = Other->mModels[ModelIdx];
QString Name = Model->GetProperties().mName;
for (;;)
{
bool Duplicate = false;
for (int SearchIdx = 0; SearchIdx < mModels.GetSize(); SearchIdx++)
{
if (mModels[SearchIdx]->GetProperties().mName == Name)
{
Duplicate = true;
break;
}
}
if (!Duplicate)
break;
Name = tr("Merged ") + Name;
Model->SetName(Name);
}
mModels.Add(Model);
}
2014-12-23 18:02:23 +01:00
mModified = true;
}
2014-12-30 17:30:12 +01:00
void Project::GetModelParts(lcArray<lcModelPartsEntry>& ModelParts)
{
if (mModels.IsEmpty())
return;
for (int ModelIdx = 0; ModelIdx < mModels.GetSize(); ModelIdx++)
mModels[ModelIdx]->CalculateStep(LC_STEP_MAX);
mModels[0]->GetModelParts(lcMatrix44Identity(), gDefaultColor, ModelParts);
SetActiveModel(mModels.FindIndex(mActiveModel));
}
QString Project::GetExportFileName(const QString& FileName, const QString& DefaultExtension, const QString& DialogTitle, const QString& DialogFilter) const
{
if (!FileName.isEmpty())
return FileName;
QString SaveFileName;
if (!mFileName.isEmpty())
SaveFileName = mFileName;
else
SaveFileName = GetTitle();
QString Extension = QFileInfo(SaveFileName).suffix().toLower();
if (Extension.isEmpty())
SaveFileName += "." + DefaultExtension;
else if (Extension != DefaultExtension && SaveFileName.length() > 4)
{
SaveFileName = SaveFileName.left(SaveFileName.length() - Extension.length() - 1);
SaveFileName += "." + DefaultExtension;
}
return QFileDialog::getSaveFileName(gMainWindow, DialogTitle, SaveFileName, DialogFilter);
}
void Project::Export3DStudio(const QString& FileName)
2014-12-30 17:30:12 +01:00
{
lcArray<lcModelPartsEntry> ModelParts;
GetModelParts(ModelParts);
if (ModelParts.IsEmpty())
{
2015-01-30 17:30:13 +01:00
QMessageBox::information(gMainWindow, tr("LeoCAD"), tr("Nothing to export."));
2014-12-30 17:30:12 +01:00
return;
}
QString SaveFileName = GetExportFileName(FileName, "3ds", tr("Export 3D Studio"), tr("3DS Files (*.3ds);;All Files (*.*)"));
2014-12-30 17:30:12 +01:00
if (SaveFileName.isEmpty())
return;
2014-12-30 17:30:12 +01:00
lcDiskFile File;
if (!File.Open(SaveFileName, "wb"))
2014-12-30 17:30:12 +01:00
{
2015-01-30 17:30:13 +01:00
QMessageBox::warning(gMainWindow, tr("LeoCAD"), tr("Could not open file '%1' for writing.").arg(FileName));
2014-12-30 17:30:12 +01:00
return;
}
long M3DStart = File.GetPosition();
File.WriteU16(0x4D4D); // CHK_M3DMAGIC
File.WriteU32(0);
File.WriteU16(0x0002); // CHK_M3D_VERSION
File.WriteU32(10);
File.WriteU32(3);
long MDataStart = File.GetPosition();
File.WriteU16(0x3D3D); // CHK_MDATA
File.WriteU32(0);
File.WriteU16(0x3D3E); // CHK_MESH_VERSION
File.WriteU32(10);
File.WriteU32(3);
const int MaterialNameLength = 11;
char MaterialName[32];
for (int ColorIdx = 0; ColorIdx < gColorList.GetSize(); ColorIdx++)
{
lcColor* Color = &gColorList[ColorIdx];
sprintf(MaterialName, "Material%03d", ColorIdx);
long MaterialStart = File.GetPosition();
File.WriteU16(0xAFFF); // CHK_MAT_ENTRY
File.WriteU32(0);
File.WriteU16(0xA000); // CHK_MAT_NAME
File.WriteU32(6 + MaterialNameLength + 1);
File.WriteBuffer(MaterialName, MaterialNameLength + 1);
File.WriteU16(0xA010); // CHK_MAT_AMBIENT
File.WriteU32(24);
File.WriteU16(0x0011); // CHK_COLOR_24
File.WriteU32(9);
File.WriteU8(floor(255.0 * Color->Value[0] + 0.5));
File.WriteU8(floor(255.0 * Color->Value[1] + 0.5));
File.WriteU8(floor(255.0 * Color->Value[2] + 0.5));
File.WriteU16(0x0012); // CHK_LIN_COLOR_24
File.WriteU32(9);
File.WriteU8(floor(255.0 * Color->Value[0] + 0.5));
File.WriteU8(floor(255.0 * Color->Value[1] + 0.5));
File.WriteU8(floor(255.0 * Color->Value[2] + 0.5));
File.WriteU16(0xA020); // CHK_MAT_AMBIENT
File.WriteU32(24);
File.WriteU16(0x0011); // CHK_COLOR_24
File.WriteU32(9);
File.WriteU8(floor(255.0 * Color->Value[0] + 0.5));
File.WriteU8(floor(255.0 * Color->Value[1] + 0.5));
File.WriteU8(floor(255.0 * Color->Value[2] + 0.5));
File.WriteU16(0x0012); // CHK_LIN_COLOR_24
File.WriteU32(9);
File.WriteU8(floor(255.0 * Color->Value[0] + 0.5));
File.WriteU8(floor(255.0 * Color->Value[1] + 0.5));
File.WriteU8(floor(255.0 * Color->Value[2] + 0.5));
File.WriteU16(0xA030); // CHK_MAT_SPECULAR
File.WriteU32(24);
File.WriteU16(0x0011); // CHK_COLOR_24
File.WriteU32(9);
File.WriteU8(floor(255.0 * 0.9f + 0.5));
File.WriteU8(floor(255.0 * 0.9f + 0.5));
File.WriteU8(floor(255.0 * 0.9f + 0.5));
File.WriteU16(0x0012); // CHK_LIN_COLOR_24
File.WriteU32(9);
File.WriteU8(floor(255.0 * 0.9f + 0.5));
File.WriteU8(floor(255.0 * 0.9f + 0.5));
File.WriteU8(floor(255.0 * 0.9f + 0.5));
File.WriteU16(0xA040); // CHK_MAT_SHININESS
File.WriteU32(14);
File.WriteU16(0x0030); // CHK_INT_PERCENTAGE
File.WriteU32(8);
File.WriteS16((lcuint8)floor(100.0 * 0.25 + 0.5));
File.WriteU16(0xA041); // CHK_MAT_SHIN2PCT
File.WriteU32(14);
File.WriteU16(0x0030); // CHK_INT_PERCENTAGE
File.WriteU32(8);
File.WriteS16((lcuint8)floor(100.0 * 0.05 + 0.5));
File.WriteU16(0xA050); // CHK_MAT_TRANSPARENCY
File.WriteU32(14);
File.WriteU16(0x0030); // CHK_INT_PERCENTAGE
File.WriteU32(8);
File.WriteS16((lcuint8)floor(100.0 * (1.0f - Color->Value[3]) + 0.5));
File.WriteU16(0xA052); // CHK_MAT_XPFALL
File.WriteU32(14);
File.WriteU16(0x0030); // CHK_INT_PERCENTAGE
File.WriteU32(8);
File.WriteS16((lcuint8)floor(100.0 * 0.0 + 0.5));
File.WriteU16(0xA053); // CHK_MAT_REFBLUR
File.WriteU32(14);
File.WriteU16(0x0030); // CHK_INT_PERCENTAGE
File.WriteU32(8);
File.WriteS16((lcuint8)floor(100.0 * 0.2 + 0.5));
File.WriteU16(0xA100); // CHK_MAT_SHADING
File.WriteU32(8);
File.WriteS16(3);
File.WriteU16(0xA084); // CHK_MAT_SELF_ILPCT
File.WriteU32(14);
File.WriteU16(0x0030); // CHK_INT_PERCENTAGE
File.WriteU32(8);
File.WriteS16((lcuint8)floor(100.0 * 0.0 + 0.5));
File.WriteU16(0xA081); // CHK_MAT_TWO_SIDE
File.WriteU32(6);
File.WriteU16(0xA087); // CHK_MAT_WIRE_SIZE
File.WriteU32(10);
File.WriteFloat(1.0f);
long MaterialEnd = File.GetPosition();
File.Seek(MaterialStart + 2, SEEK_SET);
File.WriteU32(MaterialEnd - MaterialStart);
File.Seek(MaterialEnd, SEEK_SET);
}
const lcModelProperties& Properties = mModels[0]->GetProperties();
File.WriteU16(0x0100); // CHK_MASTER_SCALE
File.WriteU32(10);
File.WriteFloat(1.0f);
File.WriteU16(0x1400); // CHK_LO_SHADOW_BIAS
File.WriteU32(10);
File.WriteFloat(1.0f);
File.WriteU16(0x1420); // CHK_SHADOW_MAP_SIZE
File.WriteU32(8);
File.WriteS16(512);
File.WriteU16(0x1450); // CHK_SHADOW_FILTER
File.WriteU32(10);
File.WriteFloat(3.0f);
File.WriteU16(0x1460); // CHK_RAY_BIAS
File.WriteU32(10);
File.WriteFloat(1.0f);
File.WriteU16(0x1500); // CHK_O_CONSTS
File.WriteU32(18);
File.WriteFloat(0.0f);
File.WriteFloat(0.0f);
File.WriteFloat(0.0f);
File.WriteU16(0x2100); // CHK_AMBIENT_LIGHT
File.WriteU32(42);
File.WriteU16(0x0010); // CHK_COLOR_F
File.WriteU32(18);
File.WriteFloats(Properties.mAmbientColor, 3);
File.WriteU16(0x0013); // CHK_LIN_COLOR_F
File.WriteU32(18);
File.WriteFloats(Properties.mAmbientColor, 3);
File.WriteU16(0x1200); // CHK_SOLID_BGND
File.WriteU32(42);
File.WriteU16(0x0010); // CHK_COLOR_F
File.WriteU32(18);
File.WriteFloats(Properties.mBackgroundSolidColor, 3);
File.WriteU16(0x0013); // CHK_LIN_COLOR_F
File.WriteU32(18);
File.WriteFloats(Properties.mBackgroundSolidColor, 3);
File.WriteU16(0x1100); // CHK_BIT_MAP
QByteArray BackgroundImage = Properties.mBackgroundImage.toLatin1();
2016-03-06 21:19:02 +01:00
File.WriteU32(6 + 1 + (lcuint32)strlen(BackgroundImage.constData()));
2014-12-30 17:30:12 +01:00
File.WriteBuffer(BackgroundImage.constData(), strlen(BackgroundImage.constData()) + 1);
File.WriteU16(0x1300); // CHK_V_GRADIENT
File.WriteU32(118);
File.WriteFloat(1.0f);
File.WriteU16(0x0010); // CHK_COLOR_F
File.WriteU32(18);
File.WriteFloats(Properties.mBackgroundGradientColor1, 3);
File.WriteU16(0x0013); // CHK_LIN_COLOR_F
File.WriteU32(18);
File.WriteFloats(Properties.mBackgroundGradientColor1, 3);
File.WriteU16(0x0010); // CHK_COLOR_F
File.WriteU32(18);
File.WriteFloats((Properties.mBackgroundGradientColor1 + Properties.mBackgroundGradientColor2) / 2.0f, 3);
File.WriteU16(0x0013); // CHK_LIN_COLOR_F
File.WriteU32(18);
File.WriteFloats((Properties.mBackgroundGradientColor1 + Properties.mBackgroundGradientColor2) / 2.0f, 3);
File.WriteU16(0x0010); // CHK_COLOR_F
File.WriteU32(18);
File.WriteFloats(Properties.mBackgroundGradientColor2, 3);
File.WriteU16(0x0013); // CHK_LIN_COLOR_F
File.WriteU32(18);
File.WriteFloats(Properties.mBackgroundGradientColor2, 3);
if (Properties.mBackgroundType == LC_BACKGROUND_GRADIENT)
{
File.WriteU16(0x1301); // LIB3DS_USE_V_GRADIENT
File.WriteU32(6);
}
else if (Properties.mBackgroundType == LC_BACKGROUND_IMAGE)
{
File.WriteU16(0x1101); // LIB3DS_USE_BIT_MAP
File.WriteU32(6);
}
else
{
File.WriteU16(0x1201); // LIB3DS_USE_SOLID_BGND
File.WriteU32(6);
}
File.WriteU16(0x2200); // CHK_FOG
File.WriteU32(46);
File.WriteFloat(0.0f);
File.WriteFloat(0.0f);
File.WriteFloat(1000.0f);
File.WriteFloat(100.0f);
File.WriteU16(0x0010); // CHK_COLOR_F
File.WriteU32(18);
File.WriteFloats(Properties.mFogColor, 3);
File.WriteU16(0x2210); // CHK_FOG_BGND
File.WriteU32(6);
File.WriteU16(0x2302); // CHK_LAYER_FOG
File.WriteU32(40);
File.WriteFloat(0.0f);
File.WriteFloat(100.0f);
File.WriteFloat(50.0f);
File.WriteU32(0x00100000);
File.WriteU16(0x0010); // CHK_COLOR_F
File.WriteU32(18);
File.WriteFloats(Properties.mFogColor, 3);
File.WriteU16(0x2300); // CHK_DISTANCE_CUE
File.WriteU32(28);
File.WriteFloat(0.0f);
File.WriteFloat(0.0f);
File.WriteFloat(1000.0f);
File.WriteFloat(100.0f);
File.WriteU16(0x2310); // CHK_DICHK_DCUE_BGNDSTANCE_CUE
File.WriteU32(6);
int NumPieces = 0;
for (int PartIdx = 0; PartIdx < ModelParts.GetSize(); PartIdx++)
{
PieceInfo* Info = ModelParts[PartIdx].Info;
lcMesh* Mesh = Info->GetMesh();
2014-12-30 17:30:12 +01:00
if (!Mesh || Mesh->mIndexType == GL_UNSIGNED_INT)
2014-12-30 17:30:12 +01:00
continue;
long NamedObjectStart = File.GetPosition();
File.WriteU16(0x4000); // CHK_NAMED_OBJECT
File.WriteU32(0);
char Name[32];
sprintf(Name, "Piece%.3d", NumPieces);
NumPieces++;
File.WriteBuffer(Name, strlen(Name) + 1);
long TriObjectStart = File.GetPosition();
File.WriteU16(0x4100); // CHK_N_TRI_OBJECT
File.WriteU32(0);
File.WriteU16(0x4110); // CHK_POINT_ARRAY
File.WriteU32(8 + 12 * Mesh->mNumVertices);
File.WriteU16(Mesh->mNumVertices);
2017-02-18 20:12:35 +01:00
lcVertex* Verts = (lcVertex*)Mesh->mVertexData;
2014-12-30 17:30:12 +01:00
const lcMatrix44& ModelWorld = ModelParts[PartIdx].WorldMatrix;
for (int VertexIdx = 0; VertexIdx < Mesh->mNumVertices; VertexIdx++)
{
2017-02-18 20:12:35 +01:00
lcVector3 Pos = lcMul31(Verts[VertexIdx].Position, ModelWorld);
2014-12-30 17:30:12 +01:00
File.WriteFloat(Pos[0]);
File.WriteFloat(Pos[1]);
File.WriteFloat(Pos[2]);
}
File.WriteU16(0x4160); // CHK_MESH_MATRIX
File.WriteU32(54);
lcMatrix44 Matrix = lcMatrix44Identity();
File.WriteFloats(Matrix[0], 3);
File.WriteFloats(Matrix[1], 3);
File.WriteFloats(Matrix[2], 3);
File.WriteFloats(Matrix[3], 3);
File.WriteU16(0x4165); // CHK_MESH_COLOR
File.WriteU32(7);
File.WriteU8(0);
long FaceArrayStart = File.GetPosition();
File.WriteU16(0x4120); // CHK_FACE_ARRAY
File.WriteU32(0);
int NumTriangles = 0;
2015-05-24 06:36:25 +02:00
for (int SectionIdx = 0; SectionIdx < Mesh->mLods[LC_MESH_LOD_HIGH].NumSections; SectionIdx++)
2014-12-30 17:30:12 +01:00
{
2015-05-24 06:36:25 +02:00
lcMeshSection* Section = &Mesh->mLods[LC_MESH_LOD_HIGH].Sections[SectionIdx];
2014-12-30 17:30:12 +01:00
2016-08-22 03:11:32 +02:00
if (Section->PrimitiveType != LC_MESH_TRIANGLES && Section->PrimitiveType != LC_MESH_TEXTURED_TRIANGLES)
2014-12-30 17:30:12 +01:00
continue;
NumTriangles += Section->NumIndices / 3;
}
File.WriteU16(NumTriangles);
2015-05-24 06:36:25 +02:00
for (int SectionIdx = 0; SectionIdx < Mesh->mLods[LC_MESH_LOD_HIGH].NumSections; SectionIdx++)
2014-12-30 17:30:12 +01:00
{
2015-05-24 06:36:25 +02:00
lcMeshSection* Section = &Mesh->mLods[LC_MESH_LOD_HIGH].Sections[SectionIdx];
2014-12-30 17:30:12 +01:00
2016-08-22 03:11:32 +02:00
if (Section->PrimitiveType != LC_MESH_TRIANGLES && Section->PrimitiveType != LC_MESH_TEXTURED_TRIANGLES)
2014-12-30 17:30:12 +01:00
continue;
lcuint16* Indices = (lcuint16*)Mesh->mIndexData + Section->IndexOffset / sizeof(lcuint16);
2014-12-30 17:30:12 +01:00
for (int IndexIdx = 0; IndexIdx < Section->NumIndices; IndexIdx += 3)
{
File.WriteU16(Indices[IndexIdx + 0]);
File.WriteU16(Indices[IndexIdx + 1]);
File.WriteU16(Indices[IndexIdx + 2]);
File.WriteU16(7);
}
}
NumTriangles = 0;
2015-05-24 06:36:25 +02:00
for (int SectionIdx = 0; SectionIdx < Mesh->mLods[LC_MESH_LOD_HIGH].NumSections; SectionIdx++)
2014-12-30 17:30:12 +01:00
{
2015-05-24 06:36:25 +02:00
lcMeshSection* Section = &Mesh->mLods[LC_MESH_LOD_HIGH].Sections[SectionIdx];
2014-12-30 17:30:12 +01:00
2016-08-22 03:11:32 +02:00
if (Section->PrimitiveType != LC_MESH_TRIANGLES && Section->PrimitiveType != LC_MESH_TEXTURED_TRIANGLES)
2014-12-30 17:30:12 +01:00
continue;
int MaterialIndex = Section->ColorIndex == gDefaultColor ? ModelParts[PartIdx].ColorIndex : Section->ColorIndex;
File.WriteU16(0x4130); // CHK_MSH_MAT_GROUP
File.WriteU32(6 + MaterialNameLength + 1 + 2 + 2 * Section->NumIndices / 3);
sprintf(MaterialName, "Material%03d", MaterialIndex);
File.WriteBuffer(MaterialName, MaterialNameLength + 1);
File.WriteU16(Section->NumIndices / 3);
for (int IndexIdx = 0; IndexIdx < Section->NumIndices; IndexIdx += 3)
File.WriteU16(NumTriangles++);
}
long FaceArrayEnd = File.GetPosition();
File.Seek(FaceArrayStart + 2, SEEK_SET);
File.WriteU32(FaceArrayEnd - FaceArrayStart);
File.Seek(FaceArrayEnd, SEEK_SET);
long TriObjectEnd = File.GetPosition();
File.Seek(TriObjectStart + 2, SEEK_SET);
File.WriteU32(TriObjectEnd - TriObjectStart);
File.Seek(TriObjectEnd, SEEK_SET);
long NamedObjectEnd = File.GetPosition();
File.Seek(NamedObjectStart + 2, SEEK_SET);
File.WriteU32(NamedObjectEnd - NamedObjectStart);
File.Seek(NamedObjectEnd, SEEK_SET);
}
long MDataEnd = File.GetPosition();
File.Seek(MDataStart + 2, SEEK_SET);
File.WriteU32(MDataEnd - MDataStart);
File.Seek(MDataEnd, SEEK_SET);
long KFDataStart = File.GetPosition();
File.WriteU16(0xB000); // CHK_KFDATA
File.WriteU32(0);
File.WriteU16(0xB00A); // LIB3DS_KFHDR
File.WriteU32(6 + 2 + 1 + 4);
File.WriteS16(5);
File.WriteU8(0);
File.WriteS32(100);
long KFDataEnd = File.GetPosition();
File.Seek(KFDataStart + 2, SEEK_SET);
File.WriteU32(KFDataEnd - KFDataStart);
File.Seek(KFDataEnd, SEEK_SET);
long M3DEnd = File.GetPosition();
File.Seek(M3DStart + 2, SEEK_SET);
File.WriteU32(M3DEnd - M3DStart);
File.Seek(M3DEnd, SEEK_SET);
}
void Project::ExportBrickLink()
{
lcPartsList PartsList;
2014-12-30 17:30:12 +01:00
if (!mModels.IsEmpty())
mModels[0]->GetPartsList(gDefaultColor, PartsList);
if (PartsList.isEmpty())
2014-12-30 17:30:12 +01:00
{
2015-01-30 17:30:13 +01:00
QMessageBox::information(gMainWindow, tr("LeoCAD"), tr("Nothing to export."));
2014-12-30 17:30:12 +01:00
return;
}
QString SaveFileName = GetExportFileName(QString(), "xml", tr("Export BrickLink"), tr("XML Files (*.xml);;All Files (*.*)"));
2014-12-30 17:30:12 +01:00
if (SaveFileName.isEmpty())
2014-12-30 17:30:12 +01:00
return;
lcDiskFile BrickLinkFile;
char Line[1024];
if (!BrickLinkFile.Open(SaveFileName, "wt"))
2014-12-30 17:30:12 +01:00
{
QMessageBox::warning(gMainWindow, tr("LeoCAD"), tr("Could not open file '%1' for writing.").arg(SaveFileName));
2014-12-30 17:30:12 +01:00
return;
}
BrickLinkFile.WriteLine("<INVENTORY>\n");
for (lcPartsList::const_iterator PartIt = PartsList.constBegin(); PartIt != PartsList.constEnd(); PartIt++)
2014-12-30 17:30:12 +01:00
{
const PieceInfo* Info = PartIt.key();
2014-12-30 17:30:12 +01:00
for (QMap<int, int>::const_iterator ColorIt = PartIt.value().constBegin(); ColorIt != PartIt.value().constEnd(); ColorIt++)
2014-12-30 17:30:12 +01:00
{
BrickLinkFile.WriteLine(" <ITEM>\n");
BrickLinkFile.WriteLine(" <ITEMTYPE>P</ITEMTYPE>\n");
2014-12-30 17:30:12 +01:00
sprintf(Line, " <ITEMID>%s</ITEMID>\n", Info->m_strName);
2014-12-30 17:30:12 +01:00
BrickLinkFile.WriteLine(Line);
int Count = ColorIt.value();
if (Count > 1)
{
sprintf(Line, " <MINQTY>%d</MINQTY>\n", Count);
BrickLinkFile.WriteLine(Line);
}
int Color = lcGetBrickLinkColor(ColorIt.key());
if (Color)
{
sprintf(Line, " <COLOR>%d</COLOR>\n", Color);
BrickLinkFile.WriteLine(Line);
}
BrickLinkFile.WriteLine(" </ITEM>\n");
}
2014-12-30 17:30:12 +01:00
}
BrickLinkFile.WriteLine("</INVENTORY>\n");
}
void Project::ExportCSV()
{
lcPartsList PartsList;
2014-12-30 17:30:12 +01:00
if (!mModels.IsEmpty())
mModels[0]->GetPartsList(gDefaultColor, PartsList);
if (PartsList.isEmpty())
2014-12-30 17:30:12 +01:00
{
2015-01-30 17:30:13 +01:00
QMessageBox::information(gMainWindow, tr("LeoCAD"), tr("Nothing to export."));
2014-12-30 17:30:12 +01:00
return;
}
QString SaveFileName = GetExportFileName(QString(), "csv", tr("Export CSV"), tr("CSV Files (*.csv);;All Files (*.*)"));
2014-12-30 17:30:12 +01:00
if (SaveFileName.isEmpty())
2014-12-30 17:30:12 +01:00
return;
lcDiskFile CSVFile;
char Line[1024];
if (!CSVFile.Open(SaveFileName, "wt"))
2014-12-30 17:30:12 +01:00
{
QMessageBox::warning(gMainWindow, tr("LeoCAD"), tr("Could not open file '%1' for writing.").arg(SaveFileName));
2014-12-30 17:30:12 +01:00
return;
}
CSVFile.WriteLine("Part Name,Color,Quantity,Part ID,Color Code\n");
for (lcPartsList::const_iterator PartIt = PartsList.constBegin(); PartIt != PartsList.constEnd(); PartIt++)
2014-12-30 17:30:12 +01:00
{
const PieceInfo* Info = PartIt.key();
for (QMap<int, int>::const_iterator ColorIt = PartIt.value().constBegin(); ColorIt != PartIt.value().constEnd(); ColorIt++)
{
sprintf(Line, "\"%s\",\"%s\",%d,%s,%d\n", Info->m_strDescription, gColorList[ColorIt.key()].Name,
ColorIt.value(), Info->m_strName, gColorList[ColorIt.key()].Code);
CSVFile.WriteLine(Line);
}
2014-12-30 17:30:12 +01:00
}
}
void Project::CreateHTMLPieceList(QTextStream& Stream, lcModel* Model, lcStep Step, bool Images)
2014-12-30 17:30:12 +01:00
{
QVector<int> ColorsUsed(gColorList.GetSize());
2015-01-12 05:49:30 +01:00
int NumColors = 0;
2014-12-30 17:30:12 +01:00
lcPartsList PartsList;
2014-12-30 17:30:12 +01:00
2015-01-12 05:49:30 +01:00
if (Step == 0)
Model->GetPartsList(gDefaultColor, PartsList);
else
Model->GetPartsListForStep(Step, gDefaultColor, PartsList);
2014-12-30 17:30:12 +01:00
for (lcPartsList::const_iterator PartIt = PartsList.constBegin(); PartIt != PartsList.constEnd(); PartIt++)
for (QMap<int, int>::const_iterator ColorIt = PartIt.value().constBegin(); ColorIt != PartIt.value().constEnd(); ColorIt++)
ColorsUsed[ColorIt.key()]++;
2014-12-30 17:30:12 +01:00
2015-01-12 05:49:30 +01:00
Stream << QLatin1String("<br><table border=1><tr><td><center>Piece</center></td>\r\n");
2014-12-30 17:30:12 +01:00
2015-01-12 05:49:30 +01:00
for (int ColorIdx = 0; ColorIdx < gColorList.GetSize(); ColorIdx++)
2014-12-30 17:30:12 +01:00
{
2015-01-12 05:49:30 +01:00
if (ColorsUsed[ColorIdx])
{
ColorsUsed[ColorIdx] = NumColors++;
2015-01-12 05:49:30 +01:00
Stream << QString("<td><center>%1</center></td>\n").arg(gColorList[ColorIdx].Name);
}
2014-12-30 17:30:12 +01:00
}
2015-01-12 05:49:30 +01:00
NumColors++;
Stream << QLatin1String("</tr>\n");
2014-12-30 17:30:12 +01:00
for (lcPartsList::const_iterator PartIt = PartsList.constBegin(); PartIt != PartsList.constEnd(); PartIt++)
2015-01-12 05:49:30 +01:00
{
const PieceInfo* Info = PartIt.key();
2014-12-30 17:30:12 +01:00
if (Images)
Stream << QString("<tr><td><IMG SRC=\"%1.png\" ALT=\"%2\"></td>\n").arg(Info->m_strName, Info->m_strDescription);
else
Stream << QString("<tr><td>%1</td>\r\n").arg(Info->m_strDescription);
2014-12-30 17:30:12 +01:00
int CurrentColumn = 1;
for (QMap<int, int>::const_iterator ColorIt = PartIt.value().constBegin(); ColorIt != PartIt.value().constEnd(); ColorIt++)
2015-01-12 05:49:30 +01:00
{
while (CurrentColumn != ColorsUsed[ColorIt.key()] + 1)
2015-01-12 05:49:30 +01:00
{
Stream << QLatin1String("<td><center>-</center></td>\r\n");
CurrentColumn++;
2015-01-12 05:49:30 +01:00
}
2014-12-30 17:30:12 +01:00
Stream << QString("<td><center>%1</center></td>\r\n").arg(QString::number(ColorIt.value()));
CurrentColumn++;
}
while (CurrentColumn != NumColors)
{
Stream << QLatin1String("<td><center>-</center></td>\r\n");
CurrentColumn++;
2015-01-12 05:49:30 +01:00
}
Stream << QLatin1String("</tr>\r\n");
2015-01-12 05:49:30 +01:00
}
Stream << QLatin1String("</table>\r\n<br>");
}
2014-12-30 17:30:12 +01:00
2015-01-12 05:49:30 +01:00
void Project::ExportHTML()
{
lcHTMLDialogOptions Options;
2014-12-30 17:30:12 +01:00
2015-01-12 05:49:30 +01:00
if (!mFileName.isEmpty())
Options.PathName = QFileInfo(mFileName).canonicalPath();
2014-12-30 17:30:12 +01:00
2015-01-12 05:49:30 +01:00
int ImageOptions = lcGetProfileInt(LC_PROFILE_HTML_IMAGE_OPTIONS);
int HTMLOptions = lcGetProfileInt(LC_PROFILE_HTML_OPTIONS);
2014-12-30 17:30:12 +01:00
2015-01-12 05:49:30 +01:00
Options.TransparentImages = (ImageOptions & LC_IMAGE_TRANSPARENT) != 0;
Options.SubModels = (HTMLOptions & (LC_HTML_SUBMODELS)) != 0;
Options.CurrentOnly = (HTMLOptions & LC_HTML_CURRENT_ONLY) != 0;
2015-01-12 05:49:30 +01:00
Options.SinglePage = (HTMLOptions & LC_HTML_SINGLEPAGE) != 0;
Options.IndexPage = (HTMLOptions & LC_HTML_INDEX) != 0;
Options.StepImagesWidth = lcGetProfileInt(LC_PROFILE_HTML_IMAGE_WIDTH);
Options.StepImagesHeight = lcGetProfileInt(LC_PROFILE_HTML_IMAGE_HEIGHT);
Options.HighlightNewParts = (HTMLOptions & LC_HTML_HIGHLIGHT) != 0;
Options.PartsListStep = (HTMLOptions & LC_HTML_LISTSTEP) != 0;
Options.PartsListEnd = (HTMLOptions & LC_HTML_LISTEND) != 0;
Options.PartsListImages = (HTMLOptions & LC_HTML_IMAGES) != 0;
Options.PartImagesColor = lcGetColorIndex(lcGetProfileInt(LC_PROFILE_HTML_PARTS_COLOR));
Options.PartImagesWidth = lcGetProfileInt(LC_PROFILE_HTML_PARTS_WIDTH);
Options.PartImagesHeight = lcGetProfileInt(LC_PROFILE_HTML_PARTS_HEIGHT);
2014-12-30 17:30:12 +01:00
2015-01-12 05:49:30 +01:00
if (!gMainWindow->DoDialog(LC_DIALOG_EXPORT_HTML, &Options))
return;
2014-12-30 17:30:12 +01:00
2015-01-12 05:49:30 +01:00
HTMLOptions = 0;
2014-12-30 17:30:12 +01:00
if (Options.SubModels)
HTMLOptions |= LC_HTML_SUBMODELS;
if (Options.CurrentOnly)
HTMLOptions |= LC_HTML_CURRENT_ONLY;
2015-01-12 05:49:30 +01:00
if (Options.SinglePage)
HTMLOptions |= LC_HTML_SINGLEPAGE;
if (Options.IndexPage)
HTMLOptions |= LC_HTML_INDEX;
if (Options.HighlightNewParts)
HTMLOptions |= LC_HTML_HIGHLIGHT;
if (Options.PartsListStep)
HTMLOptions |= LC_HTML_LISTSTEP;
if (Options.PartsListEnd)
HTMLOptions |= LC_HTML_LISTEND;
if (Options.PartsListImages)
HTMLOptions |= LC_HTML_IMAGES;
2014-12-30 17:30:12 +01:00
lcSetProfileInt(LC_PROFILE_HTML_IMAGE_OPTIONS, Options.TransparentImages ? LC_IMAGE_TRANSPARENT : 0);
2015-01-12 05:49:30 +01:00
lcSetProfileInt(LC_PROFILE_HTML_OPTIONS, HTMLOptions);
lcSetProfileInt(LC_PROFILE_HTML_IMAGE_WIDTH, Options.StepImagesWidth);
lcSetProfileInt(LC_PROFILE_HTML_IMAGE_HEIGHT, Options.StepImagesHeight);
lcSetProfileInt(LC_PROFILE_HTML_PARTS_COLOR, lcGetColorCode(Options.PartImagesColor));
lcSetProfileInt(LC_PROFILE_HTML_PARTS_WIDTH, Options.PartImagesWidth);
lcSetProfileInt(LC_PROFILE_HTML_PARTS_HEIGHT, Options.PartImagesHeight);
2014-12-30 17:30:12 +01:00
2015-01-12 05:49:30 +01:00
QDir Dir(Options.PathName);
Dir.mkpath(QLatin1String("."));
2014-12-30 17:30:12 +01:00
lcArray<lcModel*> Models;
2014-12-30 17:30:12 +01:00
if (Options.CurrentOnly)
Models.Add(mActiveModel);
else if (Options.SubModels)
2015-01-12 05:49:30 +01:00
{
Models.Add(mActiveModel);
mActiveModel->GetSubModels(Models);
2015-01-12 05:49:30 +01:00
}
else
Models = mModels;
2014-12-30 17:30:12 +01:00
QString ProjectTitle = GetTitle();
2015-01-12 05:49:30 +01:00
for (int ModelIdx = 0; ModelIdx < Models.GetSize(); ModelIdx++)
{
lcModel* Model = mModels[ModelIdx];
QString BaseName = ProjectTitle.left(ProjectTitle.length() - QFileInfo(ProjectTitle).suffix().length() - 1);
lcStep LastStep = Model->GetLastStep();
QString PageTitle;
2014-12-30 17:30:12 +01:00
if (Models.GetSize() > 1)
2015-01-12 05:49:30 +01:00
{
BaseName += '-' + Model->GetProperties().mName;
PageTitle = Model->GetProperties().mName;
2014-12-30 17:30:12 +01:00
}
else
PageTitle = ProjectTitle;
BaseName.replace('#', '_');
2014-12-30 17:30:12 +01:00
if (Options.SinglePage)
2014-12-30 17:30:12 +01:00
{
QString FileName = QFileInfo(Dir, BaseName + QLatin1String(".html")).absoluteFilePath();
2015-01-12 05:49:30 +01:00
QFile File(FileName);
2014-12-30 17:30:12 +01:00
2015-01-12 05:49:30 +01:00
if (!File.open(QIODevice::WriteOnly))
2014-12-30 17:30:12 +01:00
{
2015-01-26 00:04:39 +01:00
QMessageBox::warning(gMainWindow, tr("Error"), tr("Error writing to file '%1':\n%2").arg(FileName, File.errorString()));
2015-01-12 05:49:30 +01:00
return;
}
2014-12-30 17:30:12 +01:00
2015-01-12 05:49:30 +01:00
QTextStream Stream(&File);
2014-12-30 17:30:12 +01:00
Stream << QString::fromLatin1("<HTML>\r\n<HEAD>\r\n<TITLE>Instructions for %1</TITLE>\r\n</HEAD>\r\n<BR>\r\n<CENTER>\r\n").arg(PageTitle);
2014-12-30 17:30:12 +01:00
2015-01-12 05:49:30 +01:00
for (lcStep Step = 1; Step <= LastStep; Step++)
{
QString StepString = QString::fromLatin1("%1").arg(Step, 2, 10, QLatin1Char('0'));
Stream << QString::fromLatin1("<IMG SRC=\"%1-%2.png\" ALT=\"Step %3\" WIDTH=%4 HEIGHT=%5><BR><BR>\r\n").arg(BaseName, StepString, StepString, QString::number(Options.StepImagesWidth), QString::number(Options.StepImagesHeight));
if (Options.PartsListStep)
CreateHTMLPieceList(Stream, Model, Step, Options.PartsListImages);
}
2014-12-30 17:30:12 +01:00
2015-01-12 05:49:30 +01:00
if (Options.PartsListEnd)
CreateHTMLPieceList(Stream, Model, 0, Options.PartsListImages);
2014-12-30 17:30:12 +01:00
Stream << QLatin1String("</CENTER>\n<BR><HR><BR><B><I>Created by <A HREF=\"http://www.leocad.org\">LeoCAD</A></B></I><BR></HTML>\r\n");
2014-12-30 17:30:12 +01:00
}
else
2015-01-12 05:49:30 +01:00
{
if (Options.IndexPage)
{
QString FileName = QFileInfo(Dir, BaseName + QLatin1String("-index.html")).absoluteFilePath();
QFile File(FileName);
2014-12-30 17:30:12 +01:00
if (!File.open(QIODevice::WriteOnly))
{
QMessageBox::warning(gMainWindow, tr("Error"), tr("Error writing to file '%1':\n%2").arg(FileName, File.errorString()));
return;
}
QTextStream Stream(&File);
Stream << QString::fromLatin1("<HTML>\r\n<HEAD>\r\n<TITLE>Instructions for %1</TITLE>\r\n</HEAD>\r\n<BR>\r\n<CENTER>\r\n").arg(PageTitle);
for (lcStep Step = 1; Step <= LastStep; Step++)
Stream << QString::fromLatin1("<A HREF=\"%1-%2.html\">Step %3<BR>\r\n</A>").arg(BaseName, QString("%1").arg(Step, 2, 10, QLatin1Char('0')), QString::number(Step));
if (Options.PartsListEnd)
Stream << QString::fromLatin1("<A HREF=\"%1-pieces.html\">Pieces Used</A><BR>\r\n").arg(BaseName);
Stream << QLatin1String("</CENTER>\r\n<BR><HR><BR><B><I>Created by <A HREF=\"http://www.leocad.org\">LeoCAD</A></B></I><BR></HTML>\r\n");
}
for (lcStep Step = 1; Step <= LastStep; Step++)
2015-01-12 05:49:30 +01:00
{
QString StepString = QString::fromLatin1("%1").arg(Step, 2, 10, QLatin1Char('0'));
QString FileName = QFileInfo(Dir, QString("%1-%2.html").arg(BaseName, StepString)).absoluteFilePath();
QFile File(FileName);
if (!File.open(QIODevice::WriteOnly))
{
QMessageBox::warning(gMainWindow, tr("Error"), tr("Error writing to file '%1':\n%2").arg(FileName, File.errorString()));
return;
}
QTextStream Stream(&File);
Stream << QString::fromLatin1("<HTML>\r\n<HEAD>\r\n<TITLE>%1 - Step %2</TITLE>\r\n</HEAD>\r\n<BR>\r\n<CENTER>\r\n").arg(PageTitle, QString::number(Step));
Stream << QString::fromLatin1("<IMG SRC=\"%1-%2.png\" ALT=\"Step %3\" WIDTH=%4 HEIGHT=%5><BR><BR>\r\n").arg(BaseName, StepString, StepString, QString::number(Options.StepImagesWidth), QString::number(Options.StepImagesHeight));
if (Options.PartsListStep)
CreateHTMLPieceList(Stream, Model, Step, Options.PartsListImages);
Stream << QLatin1String("</CENTER>\r\n<BR><HR><BR>");
if (Step != 1)
Stream << QString::fromLatin1("<A HREF=\"%1-%2.html\">Previous</A> ").arg(BaseName, QString("%1").arg(Step - 1, 2, 10, QLatin1Char('0')));
if (Options.IndexPage)
Stream << QString::fromLatin1("<A HREF=\"%1-index.html\">Index</A> ").arg(BaseName);
if (Step != LastStep)
Stream << QString::fromLatin1("<A HREF=\"%1-%2.html\">Next</A>").arg(BaseName, QString("%1").arg(Step + 1, 2, 10, QLatin1Char('0')));
else if (Options.PartsListEnd)
Stream << QString::fromLatin1("<A HREF=\"%1-pieces.html\">Pieces Used</A>").arg(BaseName);
Stream << QLatin1String("<BR></HTML>\r\n");
2015-01-12 05:49:30 +01:00
}
2014-12-30 17:30:12 +01:00
if (Options.PartsListEnd)
{
QString FileName = QFileInfo(Dir, BaseName + QLatin1String("-pieces.html")).absoluteFilePath();
QFile File(FileName);
if (!File.open(QIODevice::WriteOnly))
{
QMessageBox::warning(gMainWindow, tr("Error"), tr("Error writing to file '%1':\n%2").arg(FileName, File.errorString()));
return;
}
2014-12-30 17:30:12 +01:00
QTextStream Stream(&File);
2014-12-30 17:30:12 +01:00
Stream << QString::fromLatin1("<HTML>\r\n<HEAD>\r\n<TITLE>Pieces used by %1</TITLE>\r\n</HEAD>\r\n<BR>\r\n<CENTER>\n").arg(PageTitle);
2014-12-30 17:30:12 +01:00
CreateHTMLPieceList(Stream, Model, 0, Options.PartsListImages);
2014-12-30 17:30:12 +01:00
Stream << QLatin1String("</CENTER>\n<BR><HR><BR>");
Stream << QString::fromLatin1("<A HREF=\"%1-%2.html\">Previous</A> ").arg(BaseName, QString("%1").arg(LastStep, 2, 10, QLatin1Char('0')));
2014-12-30 17:30:12 +01:00
if (Options.IndexPage)
Stream << QString::fromLatin1("<A HREF=\"%1-index.html\">Index</A> ").arg(BaseName);
2014-12-30 17:30:12 +01:00
Stream << QLatin1String("<BR></HTML>\r\n");
}
2015-01-12 05:49:30 +01:00
}
2014-12-30 17:30:12 +01:00
QString StepImageBaseName = QFileInfo(Dir, BaseName + QLatin1String("-%1.png")).absoluteFilePath();
Model->SaveStepImages(StepImageBaseName, true, false, Options.StepImagesWidth, Options.StepImagesHeight, 1, LastStep);
if (Options.PartsListImages)
2015-01-12 05:49:30 +01:00
{
2016-12-28 22:30:31 +01:00
View* View = gMainWindow->GetActiveView();
View->MakeCurrent();
lcContext* Context = View->mContext;
int Width = Options.PartImagesWidth;
int Height = Options.PartImagesHeight;
2014-12-30 17:30:12 +01:00
if (!Context->BeginRenderToTexture(Width, Height))
2015-01-12 05:49:30 +01:00
{
QMessageBox::warning(gMainWindow, tr("LeoCAD"), tr("Error creating images."));
2015-01-12 05:49:30 +01:00
return;
}
2014-12-30 17:30:12 +01:00
float aspect = (float)Width / (float)Height;
Context->SetViewport(0, 0, Width, Height);
2014-12-30 17:30:12 +01:00
lcPartsList PartsList;
Model->GetPartsList(gDefaultColor, PartsList);
2014-12-30 17:30:12 +01:00
lcMatrix44 ProjectionMatrix = lcMatrix44Perspective(30.0f, aspect, 1.0f, 2500.0f);
lcMatrix44 ViewMatrix;
2014-12-30 17:30:12 +01:00
Context->SetDefaultState();
Context->SetProjectionMatrix(ProjectionMatrix);
2014-12-30 17:30:12 +01:00
for (lcPartsList::const_iterator PartIt = PartsList.constBegin(); PartIt != PartsList.constEnd(); PartIt++)
{
const PieceInfo* Info = PartIt.key();
2014-12-30 17:30:12 +01:00
glClearColor(1.0f, 1.0f, 1.0f, 0.0f);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
2014-12-30 17:30:12 +01:00
lcVector3 CameraPosition(-100.0f, -100.0f, 75.0f);
Info->ZoomExtents(ProjectionMatrix, ViewMatrix, CameraPosition);
2014-12-30 17:30:12 +01:00
lcScene Scene;
Scene.Begin(ViewMatrix);
2014-12-30 17:30:12 +01:00
Info->AddRenderMeshes(Scene, lcMatrix44Identity(), Options.PartImagesColor, false, false);
2015-01-12 05:49:30 +01:00
Scene.End();
2015-01-12 05:49:30 +01:00
Context->SetViewMatrix(ViewMatrix);
2017-03-17 23:53:26 +01:00
Context->DrawScene(Scene);
2015-01-12 05:49:30 +01:00
Context->UnbindMesh(); // context remove
2014-12-30 17:30:12 +01:00
QString FileName = QFileInfo(Dir, QLatin1String(Info->m_strName) + QLatin1String(".png")).absoluteFilePath();
if (!Context->SaveRenderToTextureImage(FileName, Width, Height))
break;
}
Context->EndRenderToTexture();
}
}
2014-12-30 17:30:12 +01:00
if (Models.GetSize() > 1)
{
QString BaseName = ProjectTitle.left(ProjectTitle.length() - QFileInfo(ProjectTitle).suffix().length() - 1);
QString FileName = QFileInfo(Dir, BaseName + QLatin1String("-index.html")).absoluteFilePath();
QFile File(FileName);
2015-01-12 05:49:30 +01:00
if (!File.open(QIODevice::WriteOnly))
{
QMessageBox::warning(gMainWindow, tr("Error"), tr("Error writing to file '%1':\n%2").arg(FileName, File.errorString()));
return;
}
2015-01-12 05:49:30 +01:00
QTextStream Stream(&File);
2015-01-12 05:49:30 +01:00
Stream << QString::fromLatin1("<HTML>\r\n<HEAD>\r\n<TITLE>Instructions for %1</TITLE>\r\n</HEAD>\r\n<BR>\r\n<CENTER>\r\n").arg(ProjectTitle);
2015-01-12 05:49:30 +01:00
for (int ModelIdx = 0; ModelIdx < Models.GetSize(); ModelIdx++)
{
lcModel* Model = Models[ModelIdx];
QString BaseName = ProjectTitle.left(ProjectTitle.length() - QFileInfo(ProjectTitle).suffix().length() - 1) + '-' + Model->GetProperties().mName;
BaseName.replace('#', '_');
2015-01-12 05:49:30 +01:00
if (Options.SinglePage)
FileName = BaseName + QLatin1String(".html");
else
FileName = BaseName + QLatin1String("-index.html");
2015-01-12 05:49:30 +01:00
Stream << QString::fromLatin1("<p><a href=\"%1\">%2</a>").arg(FileName, Model->GetProperties().mName);
2015-01-12 05:49:30 +01:00
}
Stream << QLatin1String("</CENTER>\n<BR><HR><BR><B><I>Created by <A HREF=\"http://www.leocad.org\">LeoCAD</A></B></I><BR></HTML>\r\n");
2014-12-30 17:30:12 +01:00
}
}
2015-01-12 05:49:30 +01:00
void Project::ExportPOVRay()
2014-12-30 17:30:12 +01:00
{
lcArray<lcModelPartsEntry> ModelParts;
GetModelParts(ModelParts);
if (ModelParts.IsEmpty())
{
2015-01-30 17:30:13 +01:00
QMessageBox::information(gMainWindow, tr("LeoCAD"), tr("Nothing to export."));
2014-12-30 17:30:12 +01:00
return;
}
2016-08-01 05:44:15 +02:00
lcQPOVRayDialog Dialog(gMainWindow);
2014-12-30 17:30:12 +01:00
2016-08-01 05:44:15 +02:00
if (Dialog.exec() != QDialog::Accepted)
2014-12-30 17:30:12 +01:00
return;
2015-01-12 05:49:30 +01:00
lcDiskFile POVFile;
2016-08-01 05:44:15 +02:00
if (!POVFile.Open(Dialog.mFileName, "wt"))
2014-12-30 17:30:12 +01:00
{
2016-08-01 05:44:15 +02:00
QMessageBox::warning(gMainWindow, tr("LeoCAD"), tr("Could not open file '%1' for writing.").arg(Dialog.mFileName));
2014-12-30 17:30:12 +01:00
return;
}
2015-01-12 05:49:30 +01:00
char Line[1024];
2014-12-30 17:30:12 +01:00
struct lcPieceTableEntry
{
char Name[LC_PIECE_NAME_LEN];
int Flags;
};
struct lcColorTableEntry
{
char Name[LC_MAX_COLOR_NAME];
};
2015-01-12 05:49:30 +01:00
lcPiecesLibrary* Library = lcGetPiecesLibrary();
QMap<PieceInfo*, lcPieceTableEntry> PieceTable;
2015-01-12 05:49:30 +01:00
int NumColors = gColorList.GetSize();
QVector<lcColorTableEntry> ColorTable(NumColors);
2014-12-30 17:30:12 +01:00
2015-01-12 05:49:30 +01:00
enum
{
LGEO_PIECE_LGEO = 0x01,
LGEO_PIECE_AR = 0x02,
LGEO_PIECE_SLOPE = 0x04
};
2014-12-30 17:30:12 +01:00
2015-01-12 05:49:30 +01:00
enum
2014-12-30 17:30:12 +01:00
{
2015-01-12 05:49:30 +01:00
LGEO_COLOR_SOLID = 0x01,
LGEO_COLOR_TRANSPARENT = 0x02,
LGEO_COLOR_CHROME = 0x04,
LGEO_COLOR_PEARL = 0x08,
LGEO_COLOR_METALLIC = 0x10,
LGEO_COLOR_RUBBER = 0x20,
LGEO_COLOR_GLITTER = 0x40
};
2014-12-30 17:30:12 +01:00
2016-08-01 05:44:15 +02:00
if (!Dialog.mLGEOPath.isEmpty())
2014-12-30 17:30:12 +01:00
{
2015-01-12 05:49:30 +01:00
lcDiskFile TableFile, ColorFile;
2016-08-01 05:44:15 +02:00
if (!TableFile.Open(QFileInfo(QDir(Dialog.mLGEOPath), QLatin1String("lg_elements.lst")).absoluteFilePath(), "rt"))
2014-12-30 17:30:12 +01:00
{
2016-08-01 05:44:15 +02:00
QMessageBox::information(gMainWindow, tr("LeoCAD"), tr("Could not find LGEO files in folder '%1'.").arg(Dialog.mLGEOPath));
2015-01-12 05:49:30 +01:00
return;
2014-12-30 17:30:12 +01:00
}
2015-01-12 05:49:30 +01:00
while (TableFile.ReadLine(Line, sizeof(Line)))
{
2015-01-12 05:49:30 +01:00
char Src[1024], Dst[1024], Flags[1024];
2015-01-12 05:49:30 +01:00
if (*Line == ';')
continue;
2015-01-12 05:49:30 +01:00
if (sscanf(Line,"%s%s%s", Src, Dst, Flags) != 3)
continue;
2011-09-07 23:06:51 +02:00
2015-01-12 05:49:30 +01:00
strupr(Src);
2011-09-07 23:06:51 +02:00
PieceInfo* Info = Library->FindPiece(Src, NULL, false, false);
2015-01-12 05:49:30 +01:00
if (!Info)
continue;
2011-09-07 23:06:51 +02:00
2015-01-12 05:49:30 +01:00
if (strchr(Flags, 'L'))
{
lcPieceTableEntry& Entry = PieceTable[Info];
Entry.Flags |= LGEO_PIECE_LGEO;
sprintf(Entry.Name, "lg_%s", Dst);
2015-01-12 05:49:30 +01:00
}
2014-10-12 01:26:23 +02:00
2015-01-12 05:49:30 +01:00
if (strchr(Flags, 'A'))
{
lcPieceTableEntry& Entry = PieceTable[Info];
Entry.Flags |= LGEO_PIECE_AR;
sprintf(Entry.Name, "ar_%s", Dst);
2015-01-12 05:49:30 +01:00
}
2014-10-12 01:26:23 +02:00
2015-01-12 05:49:30 +01:00
if (strchr(Flags, 'S'))
{
lcPieceTableEntry& Entry = PieceTable[Info];
Entry.Flags |= LGEO_PIECE_SLOPE;
Entry.Name[0] = 0;
}
2015-01-12 05:49:30 +01:00
}
2014-10-12 01:26:23 +02:00
2016-08-01 05:44:15 +02:00
if (!ColorFile.Open(QFileInfo(QDir(Dialog.mLGEOPath), QLatin1String("lg_colors.lst")).absoluteFilePath(), "rt"))
2015-01-12 05:49:30 +01:00
{
2016-08-01 05:44:15 +02:00
QMessageBox::information(gMainWindow, tr("LeoCAD"), tr("Could not find LGEO files in folder '%1'.").arg(Dialog.mLGEOPath));
2015-01-12 05:49:30 +01:00
return;
}
2014-10-12 01:26:23 +02:00
2015-01-12 05:49:30 +01:00
while (ColorFile.ReadLine(Line, sizeof(Line)))
{
char Name[1024], Flags[1024];
int Code;
2014-10-12 01:26:23 +02:00
2015-01-12 05:49:30 +01:00
if (*Line == ';')
continue;
2014-10-12 01:26:23 +02:00
2015-01-12 05:49:30 +01:00
if (sscanf(Line,"%d%s%s", &Code, Name, Flags) != 3)
continue;
2014-10-12 01:26:23 +02:00
2015-01-12 05:49:30 +01:00
int Color = lcGetColorIndex(Code);
if (Color >= NumColors)
continue;
2014-10-12 01:26:23 +02:00
strcpy(ColorTable[Color].Name, Name);
2015-01-12 05:49:30 +01:00
}
}
2011-09-07 23:06:51 +02:00
2016-08-01 05:44:15 +02:00
if (!Dialog.mLGEOPath.isEmpty())
{
2015-01-12 05:49:30 +01:00
POVFile.WriteLine("#include \"lg_defs.inc\"\n#include \"lg_color.inc\"\n\n");
2011-09-07 23:06:51 +02:00
2015-01-12 05:49:30 +01:00
for (int PartIdx = 0; PartIdx < ModelParts.GetSize(); PartIdx++)
{
PieceInfo* Info = ModelParts[PartIdx].Info;
2011-09-07 23:06:51 +02:00
2015-01-12 05:49:30 +01:00
for (int CheckIdx = 0; CheckIdx < ModelParts.GetSize(); CheckIdx++)
{
if (ModelParts[CheckIdx].Info != Info)
continue;
2011-09-07 23:06:51 +02:00
2015-01-12 05:49:30 +01:00
if (CheckIdx != PartIdx)
break;
2011-09-07 23:06:51 +02:00
const lcPieceTableEntry& Entry = PieceTable.value(Info);
2011-09-07 23:06:51 +02:00
if (Entry.Name[0])
2015-01-12 05:49:30 +01:00
{
sprintf(Line, "#include \"%s.inc\"\n", Entry.Name);
2015-01-12 05:49:30 +01:00
POVFile.WriteLine(Line);
}
2011-09-07 23:06:51 +02:00
2015-01-12 05:49:30 +01:00
break;
}
2011-09-07 23:06:51 +02:00
}
2015-01-12 05:49:30 +01:00
POVFile.WriteLine("\n");
}
2015-01-12 05:49:30 +01:00
else
POVFile.WriteLine("#include \"colors.inc\"\n\n");
2011-09-07 23:06:51 +02:00
2015-01-12 05:49:30 +01:00
for (int ColorIdx = 0; ColorIdx < gColorList.GetSize(); ColorIdx++)
2011-09-07 23:06:51 +02:00
{
2015-01-12 05:49:30 +01:00
lcColor* Color = &gColorList[ColorIdx];
2015-01-12 05:49:30 +01:00
if (lcIsColorTranslucent(ColorIdx))
{
2015-01-12 05:49:30 +01:00
sprintf(Line, "#declare lc_%s = texture { pigment { rgb <%f, %f, %f> filter 0.9 } finish { ambient 0.3 diffuse 0.2 reflection 0.25 phong 0.3 phong_size 60 } }\n",
Color->SafeName, Color->Value[0], Color->Value[1], Color->Value[2]);
}
2015-01-12 05:49:30 +01:00
else
{
2015-01-12 05:49:30 +01:00
sprintf(Line, "#declare lc_%s = texture { pigment { rgb <%f, %f, %f> } finish { ambient 0.1 phong 0.2 phong_size 20 } }\n",
Color->SafeName, Color->Value[0], Color->Value[1], Color->Value[2]);
2015-01-12 05:49:30 +01:00
}
2015-01-12 05:49:30 +01:00
POVFile.WriteLine(Line);
if (!ColorTable[ColorIdx].Name[0])
sprintf(ColorTable[ColorIdx].Name, "lc_%s", Color->SafeName);
2015-01-12 05:49:30 +01:00
}
2015-01-12 05:49:30 +01:00
POVFile.WriteLine("\n");
lcArray<const char*> ColorTablePointer;
ColorTablePointer.SetSize(NumColors);
for (int ColorIdx = 0; ColorIdx < NumColors; ColorIdx++)
ColorTablePointer[ColorIdx] = ColorTable[ColorIdx].Name;
2015-01-12 05:49:30 +01:00
for (int PartIdx = 0; PartIdx < ModelParts.GetSize(); PartIdx++)
{
PieceInfo* Info = ModelParts[PartIdx].Info;
lcMesh* Mesh = Info->GetMesh();
lcPieceTableEntry& Entry = PieceTable[Info];
2011-09-07 23:06:51 +02:00
if (!Mesh || Entry.Name[0])
2015-01-12 05:49:30 +01:00
continue;
2011-09-07 23:06:51 +02:00
2015-01-12 05:49:30 +01:00
char Name[LC_PIECE_NAME_LEN];
char* Ptr;
2014-10-13 05:43:33 +02:00
2015-01-12 05:49:30 +01:00
strcpy(Name, Info->m_strName);
while ((Ptr = strchr(Name, '-')))
*Ptr = '_';
2014-10-13 05:43:33 +02:00
sprintf(Entry.Name, "lc_%s", Name);
2014-10-13 05:43:33 +02:00
Mesh->ExportPOVRay(POVFile, Name, &ColorTablePointer[0]);
2014-10-13 05:43:33 +02:00
2015-01-12 05:49:30 +01:00
POVFile.WriteLine("}\n\n");
2014-10-13 05:43:33 +02:00
2015-01-12 05:49:30 +01:00
sprintf(Line, "#declare lc_%s_clear = lc_%s\n\n", Name, Name);
POVFile.WriteLine(Line);
}
2014-10-13 05:43:33 +02:00
2015-01-12 05:49:30 +01:00
lcCamera* Camera = gMainWindow->GetActiveView()->mCamera;
const lcVector3& Position = Camera->mPosition;
const lcVector3& Target = Camera->mTargetPosition;
const lcVector3& Up = Camera->mUpVector;
const lcModelProperties& Properties = mModels[0]->GetProperties();
2014-10-13 05:43:33 +02:00
2015-01-12 05:49:30 +01:00
sprintf(Line, "camera {\n sky<%1g,%1g,%1g>\n location <%1g, %1g, %1g>\n look_at <%1g, %1g, %1g>\n angle %.0f\n}\n\n",
Up[0], Up[1], Up[2], Position[1] / 25.0f, Position[0] / 25.0f, Position[2] / 25.0f, Target[1] / 25.0f, Target[0] / 25.0f, Target[2] / 25.0f, Camera->m_fovy);
POVFile.WriteLine(Line);
sprintf(Line, "background { color rgb <%1g, %1g, %1g> }\n\nlight_source { <0, 0, 20> White shadowless }\n\n",
Properties.mBackgroundSolidColor[0], Properties.mBackgroundSolidColor[1], Properties.mBackgroundSolidColor[2]);
POVFile.WriteLine(Line);
2014-10-13 05:43:33 +02:00
2015-01-12 05:49:30 +01:00
for (int PartIdx = 0; PartIdx < ModelParts.GetSize(); PartIdx++)
{
lcPieceTableEntry& Entry = PieceTable[ModelParts[PartIdx].Info];
2015-01-12 05:49:30 +01:00
int Color;
2014-10-13 05:43:33 +02:00
2015-01-12 05:49:30 +01:00
Color = ModelParts[PartIdx].ColorIndex;
const char* Suffix = lcIsColorTranslucent(Color) ? "_clear" : "";
2014-10-13 05:43:33 +02:00
2015-01-12 05:49:30 +01:00
const float* f = ModelParts[PartIdx].WorldMatrix;
2014-10-13 05:43:33 +02:00
if (Entry.Flags & LGEO_PIECE_SLOPE)
2015-01-12 05:49:30 +01:00
{
sprintf(Line, "merge {\n object {\n %s%s\n texture { %s }\n }\n"
" object {\n %s_slope\n texture { %s normal { bumps 0.3 scale 0.02 } }\n }\n"
" matrix <%.4f, %.4f, %.4f, %.4f, %.4f, %.4f, %.4f, %.4f, %.4f, %.4f, %.4f, %.4f>\n}\n",
Entry.Name, Suffix, ColorTable[Color].Name, Entry.Name, ColorTable[Color].Name,
2015-01-12 05:49:30 +01:00
-f[5], -f[4], -f[6], -f[1], -f[0], -f[2], f[9], f[8], f[10], f[13] / 25.0f, f[12] / 25.0f, f[14] / 25.0f);
}
else
{
sprintf(Line, "object {\n %s%s\n texture { %s }\n matrix <%.4f, %.4f, %.4f, %.4f, %.4f, %.4f, %.4f, %.4f, %.4f, %.4f, %.4f, %.4f>\n}\n",
Entry.Name, Suffix, ColorTable[Color].Name, -f[5], -f[4], -f[6], -f[1], -f[0], -f[2], f[9], f[8], f[10], f[13] / 25.0f, f[12] / 25.0f, f[14] / 25.0f);
2015-01-12 05:49:30 +01:00
}
2014-10-13 05:43:33 +02:00
2015-01-12 05:49:30 +01:00
POVFile.WriteLine(Line);
2014-10-13 05:43:33 +02:00
}
2015-01-12 05:49:30 +01:00
POVFile.Close();
2016-08-01 05:44:15 +02:00
if (Dialog.mRender)
2014-10-13 05:43:33 +02:00
{
2015-01-31 21:38:53 +01:00
QStringList Arguments;
2014-10-13 05:43:33 +02:00
2016-08-01 05:44:15 +02:00
Arguments.append(QString::fromLatin1("+I%1").arg(Dialog.mFileName));
2015-01-12 05:49:30 +01:00
2016-08-01 05:44:15 +02:00
if (!Dialog.mLGEOPath.isEmpty())
2014-10-13 05:43:33 +02:00
{
2016-08-01 05:44:15 +02:00
Arguments.append(QString::fromLatin1("+L%1lg/").arg(Dialog.mLGEOPath));
Arguments.append(QString::fromLatin1("+L%1ar/").arg(Dialog.mLGEOPath));
2014-10-13 05:43:33 +02:00
}
2015-08-08 22:55:10 +02:00
Arguments.append(QString::fromLatin1("/EXIT"));
2014-10-13 05:43:33 +02:00
2017-02-11 21:41:00 +01:00
#ifndef QT_NO_PROCESS
2016-08-01 05:44:15 +02:00
QProcess::execute(Dialog.mPOVRayPath, Arguments);
2017-02-11 21:41:00 +01:00
#endif
2014-10-13 05:43:33 +02:00
}
2015-01-12 05:49:30 +01:00
}
2014-10-13 05:43:33 +02:00
void Project::ExportWavefront(const QString& FileName)
2015-01-12 05:49:30 +01:00
{
lcArray<lcModelPartsEntry> ModelParts;
2014-10-13 05:43:33 +02:00
2015-01-12 05:49:30 +01:00
GetModelParts(ModelParts);
2014-10-13 05:43:33 +02:00
2015-01-12 05:49:30 +01:00
if (ModelParts.IsEmpty())
{
2015-01-30 17:30:13 +01:00
QMessageBox::information(gMainWindow, tr("LeoCAD"), tr("Nothing to export."));
2015-01-12 05:49:30 +01:00
return;
}
2014-10-13 05:43:33 +02:00
QString SaveFileName = GetExportFileName(FileName, "obj", tr("Export Wavefront"), tr("Wavefront Files (*.obj);;All Files (*.*)"));
2014-10-13 05:43:33 +02:00
if (SaveFileName.isEmpty())
return;
2014-10-13 05:43:33 +02:00
2015-01-12 05:49:30 +01:00
lcDiskFile OBJFile;
char Line[1024];
2014-10-13 05:43:33 +02:00
if (!OBJFile.Open(SaveFileName, "wt"))
2015-01-12 05:49:30 +01:00
{
2015-01-30 17:30:13 +01:00
QMessageBox::warning(gMainWindow, tr("LeoCAD"), tr("Could not open file '%1' for writing.").arg(SaveFileName));
2015-01-12 05:49:30 +01:00
return;
}
2014-10-13 05:43:33 +02:00
2015-01-12 05:49:30 +01:00
char buf[LC_MAXPATH], *ptr;
lcuint32 vert = 1;
2014-10-13 05:43:33 +02:00
2015-01-12 05:49:30 +01:00
OBJFile.WriteLine("# Model exported from LeoCAD\n");
2014-10-13 05:43:33 +02:00
strcpy(buf, SaveFileName.toLatin1().constData());
2015-01-12 05:49:30 +01:00
ptr = strrchr(buf, '.');
if (ptr)
*ptr = 0;
2014-10-13 05:43:33 +02:00
2015-01-12 05:49:30 +01:00
strcat(buf, ".mtl");
ptr = strrchr(buf, '\\');
if (ptr)
ptr++;
else
{
ptr = strrchr(buf, '/');
if (ptr)
ptr++;
else
ptr = buf;
}
2014-10-13 05:43:33 +02:00
2015-01-12 05:49:30 +01:00
sprintf(Line, "#\n\nmtllib %s\n\n", ptr);
OBJFile.WriteLine(Line);
2014-10-13 05:43:33 +02:00
2015-01-12 05:49:30 +01:00
FILE* mat = fopen(buf, "wt");
2017-02-15 01:48:19 +01:00
fputs("# Colors used by LeoCAD\n\n", mat);
2015-01-12 05:49:30 +01:00
for (int ColorIdx = 0; ColorIdx < gColorList.GetSize(); ColorIdx++)
{
lcColor* Color = &gColorList[ColorIdx];
2017-02-15 01:48:19 +01:00
if (Color->Translucent)
fprintf(mat, "newmtl %s\nKd %.2f %.2f %.2f\nD %.2f\n\n", Color->SafeName, Color->Value[0], Color->Value[1], Color->Value[2], Color->Value[3]);
2017-02-15 01:48:19 +01:00
else
fprintf(mat, "newmtl %s\nKd %.2f %.2f %.2f\n\n", Color->SafeName, Color->Value[0], Color->Value[1], Color->Value[2]);
2015-01-12 05:49:30 +01:00
}
fclose(mat);
2014-10-13 05:43:33 +02:00
2015-01-12 05:49:30 +01:00
for (int PartIdx = 0; PartIdx < ModelParts.GetSize(); PartIdx++)
{
lcMesh* Mesh = ModelParts[PartIdx].Info->GetMesh();
2014-10-13 05:43:33 +02:00
2015-01-12 05:49:30 +01:00
if (!Mesh)
continue;
2014-10-13 05:43:33 +02:00
2015-01-12 05:49:30 +01:00
const lcMatrix44& ModelWorld = ModelParts[PartIdx].WorldMatrix;
2017-02-18 20:12:35 +01:00
lcVertex* Verts = (lcVertex*)Mesh->mVertexData;
2014-10-13 05:43:33 +02:00
2017-02-18 20:12:35 +01:00
for (int VertexIdx = 0; VertexIdx < Mesh->mNumVertices; VertexIdx++)
2015-01-12 05:49:30 +01:00
{
2017-02-18 20:12:35 +01:00
lcVector3 Vertex = lcMul31(Verts[VertexIdx].Position, ModelWorld);
2015-01-12 05:49:30 +01:00
sprintf(Line, "v %.2f %.2f %.2f\n", Vertex[0], Vertex[1], Vertex[2]);
OBJFile.WriteLine(Line);
}
2014-10-13 05:43:33 +02:00
2015-01-12 05:49:30 +01:00
OBJFile.WriteLine("#\n\n");
}
2014-10-13 05:43:33 +02:00
2015-01-12 05:49:30 +01:00
for (int PartIdx = 0; PartIdx < ModelParts.GetSize(); PartIdx++)
{
PieceInfo* Info = ModelParts[PartIdx].Info;
2014-10-13 05:43:33 +02:00
2015-01-12 05:49:30 +01:00
sprintf(Line, "g Piece%.3d\n", PartIdx);
OBJFile.WriteLine(Line);
2014-10-13 05:43:33 +02:00
2015-01-12 05:49:30 +01:00
lcMesh* Mesh = Info->GetMesh();
2014-10-13 05:43:33 +02:00
2015-01-12 05:49:30 +01:00
if (Mesh)
{
Mesh->ExportWavefrontIndices(OBJFile, ModelParts[PartIdx].ColorIndex, vert);
2015-01-12 05:49:30 +01:00
vert += Mesh->mNumVertices;
2014-10-13 05:43:33 +02:00
}
}
2015-01-12 05:49:30 +01:00
}
2014-10-13 05:43:33 +02:00
2015-01-12 05:49:30 +01:00
void Project::SaveImage()
{
2016-08-01 05:44:15 +02:00
lcQImageDialog Dialog(gMainWindow);
2015-01-12 05:49:30 +01:00
2016-08-01 05:44:15 +02:00
if (Dialog.exec() != QDialog::Accepted)
2015-01-12 05:49:30 +01:00
return;
2016-08-01 05:44:15 +02:00
QString Extension = QFileInfo(Dialog.mFileName).suffix();
2015-01-12 05:49:30 +01:00
if (!Extension.isEmpty())
2016-08-01 05:44:15 +02:00
lcSetProfileString(LC_PROFILE_IMAGE_EXTENSION, Dialog.mFileName.right(Extension.length() + 1));
2015-01-12 05:49:30 +01:00
2016-08-01 05:44:15 +02:00
if (Dialog.mStart != Dialog.mEnd)
Dialog.mFileName = Dialog.mFileName.insert(Dialog.mFileName.length() - Extension.length() - 1, QLatin1String("%1"));
2015-01-12 05:49:30 +01:00
mActiveModel->SaveStepImages(Dialog.mFileName, Dialog.mStart != Dialog.mEnd, false, Dialog.mWidth, Dialog.mHeight, Dialog.mStart, Dialog.mEnd);
2014-10-13 05:43:33 +02:00
}
void Project::UpdatePieceInfo(PieceInfo* Info) const
{
if (!mModels.IsEmpty())
{
lcArray<lcModel*> UpdatedModels;
mModels[0]->UpdatePieceInfo(UpdatedModels);
lcBoundingBox BoundingBox = mModels[0]->GetPieceInfo()->GetBoundingBox();
Info->SetBoundingBox(BoundingBox.Min, BoundingBox.Max);
}
}