NazaraEngine/src/Nazara/Core/EnttSystemGraph.cpp

38 lines
939 B
C++

// Copyright (C) 2024 Jérôme "SirLynix" Leclercq (lynix680@gmail.com)
// This file is part of the "Nazara Engine - Core module"
// For conditions of distribution and use, see copyright notice in Config.hpp
#include <Nazara/Core/EnttSystemGraph.hpp>
#include <Nazara/Core/Debug.hpp>
namespace Nz
{
EnttSystemGraph::NodeBase::~NodeBase() = default;
void EnttSystemGraph::Update()
{
return Update(m_clock.Restart());
}
void EnttSystemGraph::Update(Time elapsedTime)
{
if (!m_systemOrderUpdated)
{
m_orderedNodes.clear();
m_orderedNodes.reserve(m_nodes.size());
for (auto& nodePtr : m_nodes)
m_orderedNodes.emplace_back(nodePtr.get());
std::sort(m_orderedNodes.begin(), m_orderedNodes.end(), [](const NodeBase* a, const NodeBase* b)
{
return a->executionOrder < b->executionOrder;
});
m_systemOrderUpdated = true;
}
for (NodeBase* node : m_orderedNodes)
node->Update(elapsedTime);
}
}