99 lines
3.0 KiB
C++
99 lines
3.0 KiB
C++
// Copyright (C) 2012 Jérôme Leclercq
|
|
// This file is part of the "Nazara Engine - Utility module"
|
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
|
|
|
#pragma once
|
|
|
|
#ifndef NAZARA_MESH_HPP
|
|
#define NAZARA_MESH_HPP
|
|
|
|
#include <Nazara/Prerequesites.hpp>
|
|
#include <Nazara/Core/InputStream.hpp>
|
|
#include <Nazara/Core/Resource.hpp>
|
|
#include <Nazara/Core/ResourceListener.hpp>
|
|
#include <Nazara/Core/ResourceLoader.hpp>
|
|
#include <Nazara/Core/String.hpp>
|
|
#include <Nazara/Utility/Animation.hpp>
|
|
#include <Nazara/Utility/AxisAlignedBox.hpp>
|
|
#include <Nazara/Utility/SubMesh.hpp>
|
|
|
|
class NzVertexDeclaration;
|
|
|
|
struct NzMeshParams
|
|
{
|
|
NzAnimationParams animation;
|
|
//const NzVertexDeclaration* declaration = nullptr;
|
|
nzBufferStorage storage = nzBufferStorage_Hardware;
|
|
bool loadAnimations = true;
|
|
|
|
bool IsValid() const;
|
|
};
|
|
|
|
class NzMesh;
|
|
|
|
using NzMeshLoader = NzResourceLoader<NzMesh, NzMeshParams>;
|
|
|
|
struct NzMeshImpl;
|
|
|
|
class NAZARA_API NzMesh : public NzResource, NzResourceListener
|
|
{
|
|
friend NzMeshLoader;
|
|
|
|
public:
|
|
NzMesh() = default;
|
|
~NzMesh();
|
|
|
|
bool AddSkin(const NzString& skin, bool setDefault = false);
|
|
bool AddSubMesh(NzSubMesh* subMesh);
|
|
bool AddSubMesh(const NzString& identifier, NzSubMesh* subMesh);
|
|
|
|
void Animate(unsigned int frameA, unsigned int frameB, float interpolation);
|
|
|
|
bool Create(nzAnimationType type);
|
|
void Destroy();
|
|
|
|
const NzAxisAlignedBox& GetAABB() const;
|
|
const NzAnimation* GetAnimation() const;
|
|
nzAnimationType GetAnimationType() const;
|
|
unsigned int GetFrameCount() const;
|
|
NzString GetSkin(unsigned int index = 0) const;
|
|
unsigned int GetSkinCount() const;
|
|
NzSubMesh* GetSubMesh(const NzString& identifier);
|
|
NzSubMesh* GetSubMesh(unsigned int index);
|
|
const NzSubMesh* GetSubMesh(const NzString& identifier) const;
|
|
const NzSubMesh* GetSubMesh(unsigned int index) const;
|
|
unsigned int GetSubMeshCount() const;
|
|
int GetSubMeshIndex(const NzString& identifier) const;
|
|
unsigned int GetVertexCount() const;
|
|
|
|
bool HasAnimation() const;
|
|
bool HasSkin(unsigned int index = 0) const;
|
|
bool HasSubMesh(const NzString& identifier) const;
|
|
bool HasSubMesh(unsigned int index = 0) const;
|
|
|
|
void InvalidateAABB() const;
|
|
|
|
bool IsAnimable() const;
|
|
bool IsValid() const;
|
|
|
|
bool LoadFromFile(const NzString& filePath, const NzMeshParams& params = NzMeshParams());
|
|
bool LoadFromMemory(const void* data, std::size_t size, const NzMeshParams& params = NzMeshParams());
|
|
bool LoadFromStream(NzInputStream& stream, const NzMeshParams& params = NzMeshParams());
|
|
|
|
void RemoveSkin(unsigned int index = 0);
|
|
void RemoveSubMesh(const NzString& identifier);
|
|
void RemoveSubMesh(unsigned int index = 0);
|
|
|
|
bool SetAnimation(const NzAnimation* animation);
|
|
|
|
private:
|
|
void OnResourceCreated(const NzResource* resource, int index) override;
|
|
void OnResourceReleased(const NzResource* resource, int index) override;
|
|
|
|
NzMeshImpl* m_impl = nullptr;
|
|
|
|
static NzMeshLoader::LoaderList s_loaders;
|
|
};
|
|
|
|
#endif // NAZARA_MESH_HPP
|