You've already forked nodeeditor
mirror of
https://github.com/AxioDL/nodeeditor.git
synced 2026-03-30 11:48:31 -07:00
62 lines
1.2 KiB
C++
62 lines
1.2 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 AdditionModel : public MathOperationDataModel
|
|
{
|
|
public:
|
|
|
|
virtual
|
|
~AdditionModel() {}
|
|
|
|
public:
|
|
|
|
QString
|
|
caption() const override
|
|
{ return QStringLiteral("Addition"); }
|
|
|
|
QString
|
|
name() const override
|
|
{ return QStringLiteral("Addition"); }
|
|
|
|
std::unique_ptr<NodeDataModel>
|
|
clone() const override
|
|
{ return std::make_unique<AdditionModel>(); }
|
|
|
|
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("Missing or incorrect inputs");
|
|
_result.reset();
|
|
}
|
|
|
|
emit dataUpdated(outPortIndex);
|
|
}
|
|
};
|