174 lines
5.4 KiB
C++
174 lines
5.4 KiB
C++
/***************************************************************************
|
|
* Copyright (c) 2023 David Carter <dcarter@david.carter.ca> *
|
|
* *
|
|
* This file is part of FreeCAD. *
|
|
* *
|
|
* FreeCAD is free software: you can redistribute it and/or modify it *
|
|
* under the terms of the GNU Lesser General Public License as *
|
|
* published by the Free Software Foundation, either version 2.1 of the *
|
|
* License, or (at your option) any later version. *
|
|
* *
|
|
* FreeCAD is distributed in the hope that it will be useful, but *
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
|
|
* Lesser General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Lesser General Public *
|
|
* License along with FreeCAD. If not, see *
|
|
* <https://www.gnu.org/licenses/>. *
|
|
* *
|
|
**************************************************************************/
|
|
|
|
#include "PreCompiled.h"
|
|
|
|
#include "Model.h"
|
|
#include "ModelLibrary.h"
|
|
#include "ModelPropertyPy.h"
|
|
#include "ModelPy.h"
|
|
#include "ModelUuids.h"
|
|
|
|
#include "ModelPy.cpp"
|
|
|
|
using namespace Materials;
|
|
|
|
// returns a string which represents the object e.g. when printed in python
|
|
std::string ModelPy::representation() const
|
|
{
|
|
ModelPy::PointerType ptr = getModelPtr();
|
|
std::stringstream str;
|
|
str << "Property [Name=(";
|
|
str << ptr->getName().toStdString();
|
|
str << "), UUID=(";
|
|
str << ptr->getUUID().toStdString();
|
|
auto library = ptr->getLibrary();
|
|
if (library) {
|
|
str << "), Library Name=(";
|
|
str << ptr->getLibrary()->getName().toStdString();
|
|
str << "), Library Root=(";
|
|
str << ptr->getLibrary()->getDirectoryPath().toStdString();
|
|
str << "), Library Icon=(";
|
|
str << ptr->getLibrary()->getIconPath().toStdString();
|
|
}
|
|
str << "), Directory=(";
|
|
str << ptr->getDirectory().toStdString();
|
|
str << "), URL=(";
|
|
str << ptr->getURL().toStdString();
|
|
str << "), DOI=(";
|
|
str << ptr->getDOI().toStdString();
|
|
str << "), Description=(";
|
|
str << ptr->getDescription().toStdString();
|
|
str << "), Inherits=[";
|
|
auto& inherited = getModelPtr()->getInheritance();
|
|
for (auto it = inherited.begin(); it != inherited.end(); it++) {
|
|
QString uuid = *it;
|
|
if (it != inherited.begin()) {
|
|
str << "), UUID=(";
|
|
}
|
|
else {
|
|
str << "UUID=(";
|
|
}
|
|
str << uuid.toStdString() << ")";
|
|
}
|
|
str << "]]";
|
|
|
|
return str.str();
|
|
}
|
|
|
|
PyObject* ModelPy::PyMake(struct _typeobject*, PyObject*, PyObject*) // Python wrapper
|
|
{
|
|
// never create such objects with the constructor
|
|
return new ModelPy(new Model());
|
|
}
|
|
|
|
// constructor method
|
|
int ModelPy::PyInit(PyObject* /*args*/, PyObject* /*kwd*/)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
Py::String ModelPy::getLibraryName() const
|
|
{
|
|
auto library = getModelPtr()->getLibrary();
|
|
return Py::String(library ? library->getName().toStdString() : "");
|
|
}
|
|
|
|
Py::String ModelPy::getLibraryRoot() const
|
|
{
|
|
auto library = getModelPtr()->getLibrary();
|
|
return Py::String(library ? library->getDirectoryPath().toStdString() : "");
|
|
}
|
|
|
|
Py::String ModelPy::getLibraryIcon() const
|
|
{
|
|
auto library = getModelPtr()->getLibrary();
|
|
return Py::String(library ? library->getIconPath().toStdString() : "");
|
|
}
|
|
|
|
Py::String ModelPy::getName() const
|
|
{
|
|
return Py::String(getModelPtr()->getName().toStdString());
|
|
}
|
|
|
|
Py::String ModelPy::getDirectory() const
|
|
{
|
|
return Py::String(getModelPtr()->getDirectoryPath().toStdString());
|
|
}
|
|
|
|
Py::String ModelPy::getUUID() const
|
|
{
|
|
return Py::String(getModelPtr()->getUUID().toStdString());
|
|
}
|
|
|
|
Py::String ModelPy::getDescription() const
|
|
{
|
|
return Py::String(getModelPtr()->getDescription().toStdString());
|
|
}
|
|
|
|
Py::String ModelPy::getURL() const
|
|
{
|
|
return Py::String(getModelPtr()->getURL().toStdString());
|
|
}
|
|
|
|
Py::String ModelPy::getDOI() const
|
|
{
|
|
return Py::String(getModelPtr()->getDOI().toStdString());
|
|
}
|
|
|
|
Py::List ModelPy::getInherited() const
|
|
{
|
|
auto& inherited = getModelPtr()->getInheritance();
|
|
Py::List list;
|
|
|
|
for (auto it = inherited.begin(); it != inherited.end(); it++) {
|
|
list.append(Py::String(it->toStdString()));
|
|
}
|
|
|
|
return list;
|
|
}
|
|
|
|
Py::Dict ModelPy::getProperties() const
|
|
{
|
|
// std::map<std::string, Model*> *models = getModelPtr()->getModels();
|
|
Py::Dict dict;
|
|
|
|
for (auto it = getModelPtr()->begin(); it != getModelPtr()->end(); it++) {
|
|
QString key = it->first;
|
|
ModelProperty& modelProperty = it->second;
|
|
|
|
PyObject* modelPropertyPy = new ModelPropertyPy(new ModelProperty(modelProperty));
|
|
dict.setItem(Py::String(key.toStdString()), Py::Object(modelPropertyPy, true));
|
|
}
|
|
|
|
return dict;
|
|
}
|
|
|
|
PyObject* ModelPy::getCustomAttributes(const char* /*attr*/) const
|
|
{
|
|
return nullptr;
|
|
}
|
|
|
|
int ModelPy::setCustomAttributes(const char* /*attr*/, PyObject* /*obj*/)
|
|
{
|
|
return 0;
|
|
}
|