62 lines
1.1 KiB
C++
62 lines
1.1 KiB
C++
|
#pragma once
|
|||
|
|
|||
|
#include <QtCore/QObject>
|
|||
|
#include <QtWidgets/QLabel>
|
|||
|
|
|||
|
#include "NodeDataModel.hpp"
|
|||
|
|
|||
|
#include "MathOperationDataModel.hpp"
|
|||
|
|
|||
|
#include "DecimalData.hpp"
|
|||
|
|
|||
|
/// The model dictates the number of inputs and outputs for the Node.
|
|||
|
/// In this example it has no logic.
|
|||
|
class MultiplicationModel : public MathOperationDataModel
|
|||
|
{
|
|||
|
public:
|
|||
|
|
|||
|
virtual
|
|||
|
~MultiplicationModel() {}
|
|||
|
|
|||
|
public:
|
|||
|
|
|||
|
QString
|
|||
|
caption() const override
|
|||
|
{
|
|||
|
return QStringLiteral("乘法");
|
|||
|
}
|
|||
|
|
|||
|
QString
|
|||
|
name() const override
|
|||
|
{
|
|||
|
return QStringLiteral("乘法");
|
|||
|
}
|
|||
|
|
|||
|
private:
|
|||
|
|
|||
|
void
|
|||
|
compute() override
|
|||
|
{
|
|||
|
PortIndex const outPortIndex = 0;
|
|||
|
|
|||
|
auto n1 = _number1.lock();
|
|||
|
auto n2 = _number2.lock();
|
|||
|
|
|||
|
if (n1 && n2)
|
|||
|
{
|
|||
|
modelValidationState = NodeValidationState::Valid;
|
|||
|
modelValidationError = QString();
|
|||
|
_result = std::make_shared<DecimalData>(n1->number() *
|
|||
|
n2->number());
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
modelValidationState = NodeValidationState::Warning;
|
|||
|
modelValidationError = QStringLiteral("未连接或输入错误!");
|
|||
|
_result.reset();
|
|||
|
}
|
|||
|
|
|||
|
Q_EMIT dataUpdated(outPortIndex);
|
|||
|
}
|
|||
|
};
|