Continues the work of the material subsystem improvements. This merge covers the continued development of the material editor. The primary improvements are in the handling of 2D and 3D array properties. These properties are now fully editable, and can be saved and restored. The cards now separate the author and license. These were previously saved as a single item. Future support will be provided for standard open source licenses. Saving operations validate the cards to ensure UUIDs of materials are considered. Warnings are given when a save could potentially impact the models, such as saving over a material instead of creating a new instance. The editor is still not complete. There are a number of functional elements, such as drag/drop operations, folder creation, and deletion operations that need to be added to the main tree. State needs to be saved and restored to improve the user experience. The appearance preview also needs significant work. This will be handled in a future PR.
154 lines
5.0 KiB
C++
154 lines
5.0 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"
|
|
#ifndef _PreComp_
|
|
#endif
|
|
|
|
#include <QDirIterator>
|
|
#include <QMutexLocker>
|
|
|
|
#include <Base/Console.h>
|
|
|
|
#include "Model.h"
|
|
#include "ModelLoader.h"
|
|
#include "ModelManager.h"
|
|
|
|
|
|
using namespace Materials;
|
|
|
|
std::shared_ptr<std::list<std::shared_ptr<ModelLibrary>>> ModelManager::_libraryList = nullptr;
|
|
std::shared_ptr<std::map<QString, std::shared_ptr<Model>>> ModelManager::_modelMap = nullptr;
|
|
QMutex ModelManager::_mutex;
|
|
|
|
TYPESYSTEM_SOURCE(Materials::ModelManager, Base::BaseClass)
|
|
|
|
ModelManager::ModelManager()
|
|
{
|
|
initLibraries();
|
|
}
|
|
|
|
void ModelManager::initLibraries()
|
|
{
|
|
QMutexLocker locker(&_mutex);
|
|
|
|
if (_modelMap == nullptr) {
|
|
_modelMap = std::make_shared<std::map<QString, std::shared_ptr<Model>>>();
|
|
if (_libraryList == nullptr) {
|
|
_libraryList = std::make_shared<std::list<std::shared_ptr<ModelLibrary>>>();
|
|
}
|
|
|
|
// Load the libraries
|
|
ModelLoader loader(_modelMap, _libraryList);
|
|
}
|
|
}
|
|
|
|
bool ModelManager::isModel(const QString& file)
|
|
{
|
|
// if (!fs::is_regular_file(p))
|
|
// return false;
|
|
// check file extension
|
|
if (file.endsWith(QString::fromStdString(".yml"))) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void ModelManager::refresh()
|
|
{
|
|
_modelMap->clear();
|
|
_libraryList->clear();
|
|
|
|
// Load the libraries
|
|
ModelLoader loader(_modelMap, _libraryList);
|
|
}
|
|
|
|
std::shared_ptr<Model> ModelManager::getModel(const QString& uuid) const
|
|
{
|
|
try {
|
|
if (_modelMap == nullptr) {
|
|
throw Uninitialized();
|
|
}
|
|
|
|
return _modelMap->at(uuid);
|
|
}
|
|
catch (std::out_of_range const&) {
|
|
throw ModelNotFound();
|
|
}
|
|
}
|
|
|
|
std::shared_ptr<Model> ModelManager::getModelByPath(const QString& path) const
|
|
{
|
|
QString cleanPath = QDir::cleanPath(path);
|
|
|
|
for (auto library : *_libraryList) {
|
|
// Base::Console().Log("ModelManager::getModelByPath() Checking library '%s'->'%s'\n",
|
|
// library->getName().toStdString().c_str(),
|
|
// library->getDirectory().toStdString().c_str());
|
|
|
|
|
|
if (cleanPath.startsWith(library->getDirectory())) {
|
|
// Base::Console().Log("ModelManager::getModelByPath() Library '%s'\n",
|
|
// library->getDirectory().toStdString().c_str());
|
|
// Base::Console().Log("ModelManager::getModelByPath() Path '%s'\n",
|
|
// cleanPath.toStdString().c_str());
|
|
return library->getModelByPath(cleanPath);
|
|
}
|
|
}
|
|
Base::Console().Log("ModelManager::getModelByPath() Library not found for path '%s'\n",
|
|
cleanPath.toStdString().c_str());
|
|
|
|
throw MaterialNotFound();
|
|
}
|
|
|
|
std::shared_ptr<Model> ModelManager::getModelByPath(const QString& path, const QString& lib) const
|
|
{
|
|
auto library = getLibrary(lib); // May throw LibraryNotFound
|
|
return library->getModelByPath(path); // May throw ModelNotFound
|
|
}
|
|
|
|
std::shared_ptr<ModelLibrary> ModelManager::getLibrary(const QString& name) const
|
|
{
|
|
for (auto library : *_libraryList) {
|
|
if (library->getName() == name) {
|
|
return library;
|
|
}
|
|
}
|
|
|
|
throw LibraryNotFound();
|
|
}
|
|
|
|
bool ModelManager::passFilter(ModelFilter filter, Model::ModelType modelType)
|
|
{
|
|
switch (filter) {
|
|
case ModelFilter_None:
|
|
return true;
|
|
|
|
case ModelFilter_Physical:
|
|
return (modelType == Model::ModelType_Physical);
|
|
|
|
case ModelFilter_Appearance:
|
|
return (modelType == Model::ModelType_Appearance);
|
|
}
|
|
|
|
return false;
|
|
}
|