// Copyright (C) 2023 Jérôme "Lynix" Leclercq (lynix680@gmail.com) // This file is part of the "Nazara Engine - Graphics module" // For conditions of distribution and use, see copyright notice in Config.hpp #pragma once #ifndef NAZARA_GRAPHICS_WORLDINSTANCE_HPP #define NAZARA_GRAPHICS_WORLDINSTANCE_HPP #include #include #include #include #include #include namespace Nz { class CommandBufferBuilder; class RenderBuffer; class UploadPool; class WorldInstance; using WorldInstancePtr = std::shared_ptr; class NAZARA_GRAPHICS_API WorldInstance : public TransferInterface { public: WorldInstance(); WorldInstance(const WorldInstance&) = delete; WorldInstance(WorldInstance&&) noexcept = default; ~WorldInstance() = default; inline std::shared_ptr& GetInstanceBuffer(); inline const std::shared_ptr& GetInstanceBuffer() const; inline const Matrix4f& GetInvWorldMatrix() const; inline const Matrix4f& GetWorldMatrix() const; void OnTransfer(RenderFrame& renderFrame, CommandBufferBuilder& builder) override; inline void UpdateWorldMatrix(const Matrix4f& worldMatrix); inline void UpdateWorldMatrix(const Matrix4f& worldMatrix, const Matrix4f& invWorldMatrix); WorldInstance& operator=(const WorldInstance&) = delete; WorldInstance& operator=(WorldInstance&&) noexcept = default; private: inline void InvalidateData(); std::shared_ptr m_instanceDataBuffer; Matrix4f m_invWorldMatrix; Matrix4f m_worldMatrix; bool m_dataInvalided; }; } #include #endif // NAZARA_GRAPHICS_WORLDINSTANCE_HPP