mirror of
https://github.com/leozide/leocad
synced 2024-12-26 21:58:44 +01:00
Issue #630 - Move the BrickLink export out
This commit is contained in:
parent
08868c7cfa
commit
370791e622
5 changed files with 194 additions and 171 deletions
182
common/lc_bricklink.cpp
Normal file
182
common/lc_bricklink.cpp
Normal file
|
@ -0,0 +1,182 @@
|
|||
|
||||
#include <locale.h>
|
||||
|
||||
#include "lc_colors.h"
|
||||
#include "lc_file.h"
|
||||
#include "lc_mainwindow.h"
|
||||
#include "lc_model.h"
|
||||
#include "pieceinf.h"
|
||||
#include "project.h"
|
||||
|
||||
namespace {
|
||||
|
||||
// The mapping LDraw to BL. Key is LDraw, Value is BL.
|
||||
//
|
||||
// The list is in *alphabetical* order for convenience.
|
||||
std::map<std::string, const char*> Remapping = {
|
||||
{"10201", "2436b"},
|
||||
{"10314", "6191"},
|
||||
{"10830", "10830c01"},
|
||||
{"10830p01", "10830c01"},
|
||||
{"12825", "2555"},
|
||||
{"14395", "2339"},
|
||||
{"14769p07", "14769pb011"},
|
||||
{"15672", "92946"},
|
||||
{"167", "6190"},
|
||||
{"2431p70", "2431pb499"},
|
||||
{"2436a", "2436"},
|
||||
{"2454b", "2454"},
|
||||
{"2654a", "2654"},
|
||||
{"298", "4592"},
|
||||
{"2714", "2714a"},
|
||||
{"30039", "3070b"},
|
||||
{"3005pf0", "3005pb016"},
|
||||
{"30089a", "30089"},
|
||||
{"3039pc9", "3039pb045"},
|
||||
{"30224", "x59"},
|
||||
{"30367", "553a"},
|
||||
{"3039p101", "3039ps1"},
|
||||
{"3040b", "3040"},
|
||||
{"3046", "3046a"},
|
||||
{"3069bp0i", "3069bpb436"},
|
||||
{"3069p25", "3069bp25"},
|
||||
{"32064a", "32064"},
|
||||
{"32123a", "4265c"},
|
||||
{"3245a", "3245c"},
|
||||
{"32532", "40345"},
|
||||
{"32532b", "40345"},
|
||||
{"33299a", "33299"},
|
||||
{"3650c", "3650b"},
|
||||
{"3660b", "3660"},
|
||||
{"3665b", "3665"},
|
||||
{"3747", "3747a"},
|
||||
{"3815b", "970"},
|
||||
{"3816b", "971"},
|
||||
{"3817b", "972"},
|
||||
{"3818", "982"},
|
||||
{"3819", "981"},
|
||||
{"3820", "983"},
|
||||
{"4032a", "4032"},
|
||||
{"4287c", "4287"},
|
||||
{"4345b", "4345"},
|
||||
{"44237", "2456"},
|
||||
{"482", "30553"},
|
||||
{"4865a", "4865"},
|
||||
{"50746", "54200"},
|
||||
{"51011", "42611"},
|
||||
{"577", "64567"},
|
||||
{"577b", "64567"},
|
||||
{"59443", "6538c"},
|
||||
{"59900", "4589b"},
|
||||
{"604547", "11402h"},
|
||||
{"604548", "11402c"},
|
||||
{"604549", "11402b"},
|
||||
{"604550", "11402a"},
|
||||
{"604551", "11402g"},
|
||||
{"604552", "11402i"},
|
||||
{"604553", "11402d"},
|
||||
{"604614", "11402f"},
|
||||
{"604615", "11402e"},
|
||||
{"60470a", "60470"},
|
||||
{"60475", "30241"},
|
||||
{"60475b", "30241b"},
|
||||
{"60616a", "60616"},
|
||||
{"60803", "57895"},
|
||||
{"60897", "4085d"},
|
||||
{"6141", "4073"},
|
||||
{"6143", "3941"},
|
||||
{"6269", "2343"},
|
||||
{"63965a", "63965"},
|
||||
{"71137", "71137b"},
|
||||
{"731", "731c02"},
|
||||
{"76385", "989"},
|
||||
{"88072", "4623b"},
|
||||
{"90194", "48183"},
|
||||
{"92410", "4532"},
|
||||
{"93221", "93221pb01"}, // LDraw has only one version
|
||||
{"93549", "93549pb01"},
|
||||
{"95820", "30237b"},
|
||||
{"973p101", "973ps1"},
|
||||
{"975", "982"},
|
||||
{"976", "981"},
|
||||
{"977", "983"},
|
||||
};
|
||||
|
||||
|
||||
const char* BrickLinkRemap(const char* LDBrick)
|
||||
{
|
||||
auto Remapped = Remapping.find(LDBrick);
|
||||
if (Remapped != Remapping.end())
|
||||
{
|
||||
return Remapped->second;
|
||||
}
|
||||
return LDBrick;
|
||||
}
|
||||
}
|
||||
|
||||
void ExportBrickLink(const Project& project)
|
||||
{
|
||||
lcPartsList PartsList;
|
||||
|
||||
auto Models = project.GetModels();
|
||||
if (!Models.IsEmpty())
|
||||
Models[0]->GetPartsList(gDefaultColor, true, false, PartsList);
|
||||
|
||||
if (PartsList.empty())
|
||||
{
|
||||
QMessageBox::information(gMainWindow, project.tr("LeoCAD"), project.tr("Nothing to export."));
|
||||
return;
|
||||
}
|
||||
|
||||
QString SaveFileName = project.GetExportFileName(QString(), "xml", project.tr("Export BrickLink"), project.tr("XML Files (*.xml);;All Files (*.*)"));
|
||||
|
||||
if (SaveFileName.isEmpty())
|
||||
return;
|
||||
|
||||
lcDiskFile BrickLinkFile(SaveFileName);
|
||||
char Line[1024];
|
||||
|
||||
if (!BrickLinkFile.Open(QIODevice::WriteOnly))
|
||||
{
|
||||
QMessageBox::warning(gMainWindow, project.tr("LeoCAD"), project.tr("Could not open file '%1' for writing.").arg(SaveFileName));
|
||||
return;
|
||||
}
|
||||
|
||||
BrickLinkFile.WriteLine("<INVENTORY>\n");
|
||||
|
||||
for (const auto& PartIt : PartsList)
|
||||
{
|
||||
const PieceInfo* Info = PartIt.first;
|
||||
|
||||
for (const auto& ColorIt : PartIt.second)
|
||||
{
|
||||
BrickLinkFile.WriteLine(" <ITEM>\n");
|
||||
BrickLinkFile.WriteLine(" <ITEMTYPE>P</ITEMTYPE>\n");
|
||||
|
||||
char FileName[LC_PIECE_NAME_LEN];
|
||||
strcpy(FileName, Info->mFileName);
|
||||
char* Ext = strchr(FileName, '.');
|
||||
if (Ext)
|
||||
*Ext = 0;
|
||||
|
||||
const char* Remapped = BrickLinkRemap(FileName);
|
||||
|
||||
sprintf(Line, " <ITEMID>%s</ITEMID>\n", Remapped);
|
||||
BrickLinkFile.WriteLine(Line);
|
||||
|
||||
sprintf(Line, " <MINQTY>%d</MINQTY>\n", ColorIt.second);
|
||||
BrickLinkFile.WriteLine(Line);
|
||||
|
||||
int Color = lcGetBrickLinkColor(ColorIt.first);
|
||||
if (Color)
|
||||
{
|
||||
sprintf(Line, " <COLOR>%d</COLOR>\n", Color);
|
||||
BrickLinkFile.WriteLine(Line);
|
||||
}
|
||||
|
||||
BrickLinkFile.WriteLine(" </ITEM>\n");
|
||||
}
|
||||
}
|
||||
|
||||
BrickLinkFile.WriteLine("</INVENTORY>\n");
|
||||
}
|
6
common/lc_bricklink.h
Normal file
6
common/lc_bricklink.h
Normal file
|
@ -0,0 +1,6 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
class Project;
|
||||
|
||||
void ExportBrickLink(const Project& project);
|
|
@ -16,6 +16,7 @@
|
|||
#include "lc_zipfile.h"
|
||||
#include "lc_qimagedialog.h"
|
||||
#include "lc_qmodellistdialog.h"
|
||||
#include "lc_bricklink.h"
|
||||
|
||||
lcHTMLExportOptions::lcHTMLExportOptions(const Project* Project)
|
||||
{
|
||||
|
@ -1127,178 +1128,9 @@ bool Project::Export3DStudio(const QString& FileName)
|
|||
return true;
|
||||
}
|
||||
|
||||
namespace {
|
||||
// The list is in alphabetical order for convenience.
|
||||
std::map<std::string, const char*> Remapping = {
|
||||
{"10201", "2436b"},
|
||||
{"10314", "6191"},
|
||||
{"10830", "10830c01"},
|
||||
{"10830p01", "10830c01"},
|
||||
{"12825", "2555"},
|
||||
{"14395", "2339"},
|
||||
{"14769p07", "14769pb011"},
|
||||
{"15672", "92946"},
|
||||
{"167", "6190"},
|
||||
{"2431p70", "2431pb499"},
|
||||
{"2436a", "2436"},
|
||||
{"2454b", "2454"},
|
||||
{"2654a", "2654"},
|
||||
{"298", "4592"},
|
||||
{"2714", "2714a"},
|
||||
{"30039", "3070b"},
|
||||
{"3005pf0", "3005pb016"},
|
||||
{"30089a", "30089"},
|
||||
{"3039pc9", "3039pb045"},
|
||||
{"30224", "x59"},
|
||||
{"30367", "553a"},
|
||||
{"3039p101", "3039ps1"},
|
||||
{"3040b", "3040"},
|
||||
{"3046", "3046a"},
|
||||
{"3069bp0i", "3069bpb436"},
|
||||
{"3069p25", "3069bp25"},
|
||||
{"32064a", "32064"},
|
||||
{"32123a", "4265c"},
|
||||
{"3245a", "3245c"},
|
||||
{"32532", "40345"},
|
||||
{"32532b", "40345"},
|
||||
{"33299a", "33299"},
|
||||
{"3650c", "3650b"},
|
||||
{"3660b", "3660"},
|
||||
{"3665b", "3665"},
|
||||
{"3747", "3747a"},
|
||||
{"3815b", "970"},
|
||||
{"3816b", "971"},
|
||||
{"3817b", "972"},
|
||||
{"3818", "982"},
|
||||
{"3819", "981"},
|
||||
{"3820", "983"},
|
||||
{"4032a", "4032"},
|
||||
{"4287c", "4287"},
|
||||
{"4345b", "4345"},
|
||||
{"44237", "2456"},
|
||||
{"482", "30553"},
|
||||
{"4865a", "4865"},
|
||||
{"50746", "54200"},
|
||||
{"51011", "42611"},
|
||||
{"577", "64567"},
|
||||
{"577b", "64567"},
|
||||
{"59443", "6538c"},
|
||||
{"59900", "4589b"},
|
||||
{"604547", "11402h"},
|
||||
{"604548", "11402c"},
|
||||
{"604549", "11402b"},
|
||||
{"604550", "11402a"},
|
||||
{"604551", "11402g"},
|
||||
{"604552", "11402i"},
|
||||
{"604553", "11402d"},
|
||||
{"604614", "11402f"},
|
||||
{"604615", "11402e"},
|
||||
{"60470a", "60470"},
|
||||
{"60475", "30241"},
|
||||
{"60475b", "30241b"},
|
||||
{"60616a", "60616"},
|
||||
{"60803", "57895"},
|
||||
{"60897", "4085d"},
|
||||
{"6141", "4073"},
|
||||
{"6143", "3941"},
|
||||
{"6269", "2343"},
|
||||
{"63965a", "63965"},
|
||||
{"71137", "71137b"},
|
||||
{"731", "731c02"},
|
||||
// Hose
|
||||
// {"750", ""},
|
||||
// {"754", ""},
|
||||
// {"755", ""},
|
||||
// {"756", ""},
|
||||
{"76385", "989"},
|
||||
{"88072", "4623b"},
|
||||
{"90194", "48183"},
|
||||
{"92410", "4532"},
|
||||
{"93221", "93221pb01"}, // LDraw has only one version
|
||||
{"93549", "93549pb01"},
|
||||
{"95820", "30237b"},
|
||||
{"973p101", "973ps1"},
|
||||
// Minifig hands and arm.
|
||||
{"975", "982"}, // Arm Right
|
||||
{"976", "981"}, // Arm Left
|
||||
{"977", "983"}, // Hand
|
||||
};
|
||||
const char* BrickLinkRemap(const char* LDBrick)
|
||||
{
|
||||
auto Remapped = Remapping.find(LDBrick);
|
||||
if (Remapped != Remapping.end())
|
||||
{
|
||||
return Remapped->second;
|
||||
}
|
||||
return LDBrick;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void Project::ExportBrickLink()
|
||||
{
|
||||
lcPartsList PartsList;
|
||||
|
||||
if (!mModels.IsEmpty())
|
||||
mModels[0]->GetPartsList(gDefaultColor, true, false, PartsList);
|
||||
|
||||
if (PartsList.empty())
|
||||
{
|
||||
QMessageBox::information(gMainWindow, tr("LeoCAD"), tr("Nothing to export."));
|
||||
return;
|
||||
}
|
||||
|
||||
QString SaveFileName = GetExportFileName(QString(), "xml", tr("Export BrickLink"), tr("XML Files (*.xml);;All Files (*.*)"));
|
||||
|
||||
if (SaveFileName.isEmpty())
|
||||
return;
|
||||
|
||||
lcDiskFile BrickLinkFile(SaveFileName);
|
||||
char Line[1024];
|
||||
|
||||
if (!BrickLinkFile.Open(QIODevice::WriteOnly))
|
||||
{
|
||||
QMessageBox::warning(gMainWindow, tr("LeoCAD"), tr("Could not open file '%1' for writing.").arg(SaveFileName));
|
||||
return;
|
||||
}
|
||||
|
||||
BrickLinkFile.WriteLine("<INVENTORY>\n");
|
||||
|
||||
for (const auto& PartIt : PartsList)
|
||||
{
|
||||
const PieceInfo* Info = PartIt.first;
|
||||
|
||||
for (const auto& ColorIt : PartIt.second)
|
||||
{
|
||||
BrickLinkFile.WriteLine(" <ITEM>\n");
|
||||
BrickLinkFile.WriteLine(" <ITEMTYPE>P</ITEMTYPE>\n");
|
||||
|
||||
char FileName[LC_PIECE_NAME_LEN];
|
||||
strcpy(FileName, Info->mFileName);
|
||||
char* Ext = strchr(FileName, '.');
|
||||
if (Ext)
|
||||
*Ext = 0;
|
||||
|
||||
const char* Remapped = BrickLinkRemap(FileName);
|
||||
|
||||
sprintf(Line, " <ITEMID>%s</ITEMID>\n", Remapped);
|
||||
BrickLinkFile.WriteLine(Line);
|
||||
|
||||
sprintf(Line, " <MINQTY>%d</MINQTY>\n", ColorIt.second);
|
||||
BrickLinkFile.WriteLine(Line);
|
||||
|
||||
int Color = lcGetBrickLinkColor(ColorIt.first);
|
||||
if (Color)
|
||||
{
|
||||
sprintf(Line, " <COLOR>%d</COLOR>\n", Color);
|
||||
BrickLinkFile.WriteLine(Line);
|
||||
}
|
||||
|
||||
BrickLinkFile.WriteLine(" </ITEM>\n");
|
||||
}
|
||||
}
|
||||
|
||||
BrickLinkFile.WriteLine("</INVENTORY>\n");
|
||||
::ExportBrickLink(*this);
|
||||
}
|
||||
|
||||
bool Project::ExportCOLLADA(const QString& FileName)
|
||||
|
|
|
@ -98,8 +98,9 @@ public:
|
|||
|
||||
void UpdatePieceInfo(PieceInfo* Info) const;
|
||||
|
||||
protected:
|
||||
QString GetExportFileName(const QString& FileName, const QString& DefaultExtension, const QString& DialogTitle, const QString& DialogFilter) const;
|
||||
|
||||
protected:
|
||||
std::vector<lcModelPartsEntry> GetModelParts();
|
||||
void SetFileName(const QString& FileName);
|
||||
|
||||
|
|
|
@ -166,6 +166,7 @@ SOURCES += \
|
|||
common/minifig.cpp \
|
||||
common/light.cpp \
|
||||
common/lc_application.cpp \
|
||||
common/lc_bricklink.cpp \
|
||||
common/lc_category.cpp \
|
||||
common/lc_collapsiblewidget.cpp \
|
||||
common/lc_colors.cpp \
|
||||
|
@ -233,6 +234,7 @@ HEADERS += \
|
|||
common/light.h \
|
||||
common/lc_application.h \
|
||||
common/lc_array.h \
|
||||
common/lc_bricklink.h \
|
||||
common/lc_category.h \
|
||||
common/lc_collapsiblewidget.h \
|
||||
common/lc_colors.h \
|
||||
|
|
Loading…
Reference in a new issue