fix: dirty system now dirties and cooks descendents of change

This commit is contained in:
parker
2025-07-30 17:12:13 +01:00
parent 83e0977d5d
commit e72e6bce96
6 changed files with 58 additions and 19 deletions

View File

@@ -40,17 +40,17 @@ void nt::GeometryOperator::initParameters()
std::cout << "name: " << t->getName() << "\n";
// create parameter
auto parameter = std::make_shared<prm::Parameter>(*t);
parameter->valueChanged.connect(boost::bind(&GeometryOperator::dirtyNode, this));
parameter->valueChanged.connect([this](){dirtyNode();});
parameters_.push_back(parameter);
}
}
void enzo::nt::GeometryOperator::dirtyNode()
void enzo::nt::GeometryOperator::dirtyNode(bool dirtyDescendents)
{
dirty_=true;
nodeDirtied(opId_);
nodeDirtied(opId_, dirtyDescendents);
}
void enzo::nt::GeometryOperator::cookOp(op::Context context)
@@ -79,11 +79,11 @@ void nt::GeometryOperator::addInputConnection(std::shared_ptr<nt::GeometryConnec
}
}
std::cout << "Input newConnection added\nConnecting ops " << newConnection->getInputOpId() << " -> " << newConnection->getOutputOpId() << "\n";
std::cout << "Connecting index " << newConnection->getInputIndex() << " -> " << newConnection->getOutputIndex() << "\n";
// add new newConnection
inputConnections_.push_back(newConnection);
std::cout << "size: " << inputConnections_.size() << "\n";
IC();
dirtyNode();
}
void nt::GeometryOperator::addOutputConnection(std::shared_ptr<nt::GeometryConnection> connection)

View File

@@ -32,15 +32,15 @@ public:
std::string getTypeName();
void dirtyNode();
void dirtyNode(bool dirtyDescendents=true);
unsigned int getMaxInputs() const;
unsigned int getMinInputs() const;
unsigned int getMaxInputs() const;
unsigned int getMaxOutputs() const;
// signals
boost::signals2::signal<void (nt::OpId)> nodeDirtied;
boost::signals2::signal<void (nt::OpId opId, bool dirtyDescendents)> nodeDirtied;