Make Application template and responsible for modules init

This commit is contained in:
Lynix 2023-01-06 20:57:45 +01:00 committed by Jérôme Leclercq
parent 04bfa97579
commit 8db1c04568
6 changed files with 130 additions and 50 deletions

View File

@ -1,5 +1,6 @@
// Sources pour https://github.com/NazaraEngine/NazaraEngine/wiki/(FR)-Tutoriel:-%5B01%5D-Hello-World
#include <Nazara/Core/Application.hpp>
#include <Nazara/Core/Systems.hpp>
#include <Nazara/Graphics.hpp>
#include <Nazara/Graphics/Components.hpp>
@ -14,7 +15,7 @@
int main()
{
Nz::Modules<Nz::Graphics> nazara;
Nz::Application<Nz::Graphics> app;
entt::registry registry;
Nz::SystemGraph systemGraph(registry);

View File

@ -8,39 +8,25 @@
#define NAZARA_CORE_APPLICATION_HPP
#include <Nazara/Prerequisites.hpp>
#include <Nazara/Core/ApplicationComponent.hpp>
#include <Nazara/Core/Clock.hpp>
#include <atomic>
#include <vector>
#include <Nazara/Core/ApplicationBase.hpp>
#include <Nazara/Core/Modules.hpp>
namespace Nz
{
class NAZARA_CORE_API Application
template<typename... ModuleList>
class Application : public ApplicationBase
{
public:
inline Application();
inline Application(int argc, char** argv);
Application(int argc, const char** argv);
using ApplicationBase::ApplicationBase;
Application(const Application&) = delete;
Application(Application&&) = delete;
~Application() = default;
template<typename T, typename... Args> T& AddComponent(Args&&... args);
inline void AddComponent(std::unique_ptr<ApplicationComponent>&& component);
int Run();
inline void Quit();
void Update(Time elapsedTime);
Application& operator=(const Application&) = delete;
Application& operator=(Application&&) = delete;
private:
std::atomic_bool m_running;
std::vector<ApplicationComponent> m_components;
HighPrecisionClock m_clock;
Modules<ModuleList...> m_modules;
};
}

View File

@ -7,35 +7,6 @@
namespace Nz
{
template<typename T, typename ...Args>
T& Nz::Application::AddComponent(Args&& ...args)
{
std::unique_ptr<T> component = std::make_unique<T>(std::forward<Args>(args)...);
T& componentRef = *component;
AddComponent(std::move(component));
return componentRef;
}
inline Application::Application() :
Application(0, static_cast<const char**>(nullptr))
{
}
inline Application::Application(int argc, char** argv) :
Application(argc, static_cast<const char**>(argv))
{
}
void Application::AddComponent(std::unique_ptr<ApplicationComponent>&& component)
{
m_components.emplace_back(std::move(component));
}
inline void Application::Quit()
{
m_running = false;
}
}
#include <Nazara/Core/DebugOff.hpp>

View File

@ -0,0 +1,49 @@
// Copyright (C) 2022 Jérôme "Lynix" 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
#pragma once
#ifndef NAZARA_CORE_APPLICATIONBASE_HPP
#define NAZARA_CORE_APPLICATIONBASE_HPP
#include <Nazara/Prerequisites.hpp>
#include <Nazara/Core/ApplicationComponent.hpp>
#include <Nazara/Core/Clock.hpp>
#include <atomic>
#include <vector>
namespace Nz
{
class NAZARA_CORE_API ApplicationBase
{
public:
inline ApplicationBase();
inline ApplicationBase(int argc, char** argv);
ApplicationBase(int argc, const Pointer<const char>* argv);
ApplicationBase(const ApplicationBase&) = delete;
ApplicationBase(ApplicationBase&&) = delete;
~ApplicationBase() = default;
template<typename T, typename... Args> T& AddComponent(Args&&... args);
inline void AddComponent(std::unique_ptr<ApplicationComponent>&& component);
int Run();
inline void Quit();
void Update(Time elapsedTime);
ApplicationBase& operator=(const ApplicationBase&) = delete;
ApplicationBase& operator=(ApplicationBase&&) = delete;
private:
std::atomic_bool m_running;
std::vector<std::unique_ptr<ApplicationComponent>> m_components;
HighPrecisionClock m_clock;
};
}
#include <Nazara/Core/ApplicationBase.inl>
#endif // NAZARA_CORE_APPLICATIONBASE_HPP

View File

@ -0,0 +1,41 @@
// Copyright (C) 2022 Jérôme "Lynix" 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/ApplicationBase.hpp>
#include <Nazara/Core/Debug.hpp>
namespace Nz
{
template<typename T, typename ...Args>
T& Nz::ApplicationBase::AddComponent(Args&& ...args)
{
std::unique_ptr<T> component = std::make_unique<T>(std::forward<Args>(args)...);
T& componentRef = *component;
AddComponent(std::move(component));
return componentRef;
}
inline ApplicationBase::ApplicationBase() :
ApplicationBase(0, static_cast<const char**>(nullptr))
{
}
inline ApplicationBase::ApplicationBase(int argc, char** argv) :
ApplicationBase(argc, const_cast<const Pointer<const char>*>(argv))
{
}
void ApplicationBase::AddComponent(std::unique_ptr<ApplicationComponent>&& component)
{
m_components.emplace_back(std::move(component));
}
inline void ApplicationBase::Quit()
{
m_running = false;
}
}
#include <Nazara/Core/DebugOff.hpp>

View File

@ -0,0 +1,32 @@
// Copyright (C) 2022 Jérôme "Lynix" 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/ApplicationBase.hpp>
#include <Nazara/Core/Debug.hpp>
namespace Nz
{
ApplicationBase::ApplicationBase(int argc, const Pointer<const char>* argv) :
m_running(true)
{
}
int ApplicationBase::Run()
{
// Ignore time between creation and Run() call
m_clock.Restart();
while (m_running)
{
Time elapsedTime = m_clock.Restart();
Update(elapsedTime);
}
return 0;
}
void ApplicationBase::Update(Time elapsedTime)
{
}
}