Files
2017-01-31 21:30:56 +01:00

93 lines
2.0 KiB
C++

#pragma once
#include <QtCore/QObject>
#include <QtWidgets/QLabel>
#include <nodes/NodeDataModel>
#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 DivisionModel : public MathOperationDataModel
{
public:
virtual
~DivisionModel() {}
public:
QString
caption() const override
{ return QStringLiteral("Division"); }
bool
portCaptionVisible(PortType portType, PortIndex portIndex) const override
{ return true; }
QString
portCaption(PortType portType, PortIndex portIndex) const override
{
switch (portType)
{
case PortType::In:
if (portIndex == 0)
return QStringLiteral("Dividend");
else if (portIndex == 1)
return QStringLiteral("Divisor");
break;
case PortType::Out:
return QStringLiteral("Result");
default:
break;
}
return QString();
}
QString
name() const override
{ return QStringLiteral("Division"); }
std::unique_ptr<NodeDataModel>
clone() const override
{ return std::make_unique<DivisionModel>(); }
private:
void
compute() override
{
PortIndex const outPortIndex = 0;
auto n1 = _number1.lock();
auto n2 = _number2.lock();
if (n2 && (n2->number() == 0.0))
{
modelValidationState = NodeValidationState::Error;
modelValidationError = QStringLiteral("Division by zero error");
_result.reset();
}
else if (n1 && n2)
{
modelValidationState = NodeValidationState::Valid;
modelValidationError = QString();
_result = std::make_shared<DecimalData>(n1->number() /
n2->number());
}
else
{
modelValidationState = NodeValidationState::Warning;
modelValidationError = QStringLiteral("Missing or incorrect inputs");
_result.reset();
}
emit dataUpdated(outPortIndex);
}
};