94 lines
2.6 KiB
C++
94 lines
2.6 KiB
C++
#include "MeshThreadBase.h"
|
|
#include "MainWindow/MainWindow.h"
|
|
#include "MainWindow/SubWindowManager.h"
|
|
#include "PythonModule/PyAgent.h"
|
|
#include "MeshData/meshSingleton.h"
|
|
#include "MeshData/meshKernal.h"
|
|
#include "Common/Types.h"
|
|
#include "Common/DebugLogger.h"
|
|
#include <QDebug>
|
|
|
|
namespace MeshData
|
|
{
|
|
MeshThreadBase::MeshThreadBase(const QString &fileName, MeshOperation operation, GUI::MainWindow *mw) : ModuleBase::ThreadTask(mw),
|
|
_fileName(fileName),
|
|
_operation(operation)
|
|
{
|
|
}
|
|
|
|
MeshThreadBase::~MeshThreadBase()
|
|
{
|
|
}
|
|
|
|
void MeshThreadBase::defaultMeshFinished()
|
|
{
|
|
ModuleBase::ThreadTask::threadTaskFinished();
|
|
Py::PythonAgent::getInstance()->unLock();
|
|
qDebug()<<"MeshThreadBase::defaultMeshFinished";
|
|
if (_threadRuning)
|
|
{
|
|
QString information{};
|
|
ModuleBase::Message msg;
|
|
if (_operation == MESH_READ)
|
|
{
|
|
if (_success)
|
|
{
|
|
emit _mainwindow->updateMeshTreeSig();
|
|
emit _mainwindow->updateSetTreeSig();
|
|
emit _mainwindow->updateActionStatesSig();
|
|
// emit _mainwindow->updateActionsStatesSig();
|
|
emit _mainwindow->getSubWindowManager()->openPreWindowSig();
|
|
emit _mainwindow->updatePreMeshActorSig();
|
|
qDebug()<<"MeshThreadBase::defaultMeshFinished";
|
|
information = QString("Successful Import Mesh From \"%1\"").arg(_fileName);
|
|
msg.type = Common::Message::Normal;
|
|
msg.message = information;
|
|
auto meshdata = MeshData::getInstance();
|
|
// meshdata->generateDisplayDataSet();
|
|
const int nk = meshdata->getKernalCount();
|
|
if (nk <= 0)
|
|
return;
|
|
auto k = meshdata->getKernalAt(nk - 1);
|
|
if (k != nullptr)
|
|
k->setPath(_fileName);
|
|
}
|
|
else
|
|
{
|
|
information = QString("Failed Import Mesh From \"%1\"").arg(_fileName);
|
|
msg.type = Common::Message::Error;
|
|
msg.message = information;
|
|
}
|
|
}
|
|
else if (_operation == MESH_WRITE)
|
|
{
|
|
if (_success)
|
|
{
|
|
information = QString("Successful Export Mesh To \"%1\"").arg(_fileName);
|
|
msg.type = Common::Message::Normal;
|
|
msg.message = information;
|
|
}
|
|
else
|
|
{
|
|
information = QString("Failed Export Mesh To \"%1\"").arg(_fileName);
|
|
msg.type = Common::Message::Error;
|
|
msg.message = information;
|
|
}
|
|
}
|
|
emit showInformation(information);
|
|
emit _mainwindow->printMessageToMessageWindow(msg);
|
|
}
|
|
// emit showInformation(information);
|
|
// emit _mainwindow->printMessageToMessageWindow(msg);
|
|
|
|
}
|
|
|
|
void MeshThreadBase::setReadResult(bool result)
|
|
{
|
|
_success = result;
|
|
}
|
|
|
|
void MeshThreadBase::setWriteResult(bool result)
|
|
{
|
|
_success = result;
|
|
}
|
|
} |