74 lines
2.1 KiB
C++
74 lines
2.1 KiB
C++
// Copyright (C) 2015 Jérôme Leclercq
|
|
// This file is part of the "Nazara Engine - Graphics module"
|
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
|
|
|
#include <Nazara/Core/Error.hpp>
|
|
#include <Nazara/Graphics/Debug.hpp>
|
|
|
|
namespace Nz
|
|
{
|
|
/*!
|
|
* \brief Gets a pointer to iterate through same components
|
|
* \return SparsePtr pointing to same components
|
|
*
|
|
* \param component Component to get in the declaration
|
|
*
|
|
* \remark The same components are not continguous but separated by sizeof(ParticleSize)
|
|
* \remark Produces a NazaraError if component is disabled
|
|
*/
|
|
|
|
template <typename T>
|
|
SparsePtr<T> ParticleMapper::GetComponentPtr(ParticleComponent component)
|
|
{
|
|
// Then the component that are interesting
|
|
bool enabled;
|
|
ComponentType type;
|
|
std::size_t offset;
|
|
m_declaration->GetComponent(component, &enabled, &type, &offset);
|
|
|
|
if (enabled)
|
|
{
|
|
///TODO: Check the ratio between the type of the attribute and the template type ?
|
|
return SparsePtr<T>(m_ptr + offset, m_declaration->GetStride());
|
|
}
|
|
else
|
|
{
|
|
NazaraError("Attribute 0x" + String::Number(component, 16) + " is not enabled");
|
|
return SparsePtr<T>();
|
|
}
|
|
}
|
|
|
|
/*!
|
|
* \brief Gets a pointer to iterate through same components
|
|
* \return SparsePtr pointing to same components
|
|
*
|
|
* \param component Component to get in the declaration
|
|
*
|
|
* \remark The same components are not continguous but separated by sizeof(ParticleSize)
|
|
* \remark Produces a NazaraError if component is disabled
|
|
*/
|
|
|
|
template <typename T>
|
|
SparsePtr<const T> ParticleMapper::GetComponentPtr(ParticleComponent component) const
|
|
{
|
|
// Then the component that are interesting
|
|
bool enabled;
|
|
ComponentType type;
|
|
std::size_t offset;
|
|
m_declaration->GetComponent(component, &enabled, &type, &offset);
|
|
|
|
if (enabled)
|
|
{
|
|
///TODO: Check the ratio between the type of the attribute and the template type ?
|
|
return SparsePtr<const T>(m_ptr + offset, m_declaration->GetStride());
|
|
}
|
|
else
|
|
{
|
|
NazaraError("Attribute 0x" + String::Number(component, 16) + " is not enabled");
|
|
return SparsePtr<const T>();
|
|
}
|
|
}
|
|
}
|
|
|
|
#include <Nazara/Graphics/DebugOff.hpp>
|