You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
3.1 KiB
C++
76 lines
3.1 KiB
C++
/*
|
|
* All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or
|
|
* its licensors.
|
|
*
|
|
* For complete copyright and license terms please see the LICENSE at the root of this
|
|
* distribution (the "License"). All use of this software is governed by the License,
|
|
* or, if provided, by the license below or the license accompanying this file. Do not
|
|
* remove or modify any license notices. This file is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
*
|
|
*/
|
|
|
|
#include <AzCore/Debug/Trace.h>
|
|
|
|
namespace AZ
|
|
{
|
|
namespace SceneAPI
|
|
{
|
|
namespace Containers
|
|
{
|
|
bool SceneManifest::IsEmpty() const
|
|
{
|
|
// Any of the containers would do as they should be in-sync with each other, so pick one arbitrarily.
|
|
AZ_Assert(m_values.empty() == m_storageLookup.empty(), "SceneManifest values and storage-lookup tables have gone out of lockstep.");
|
|
return m_values.empty();
|
|
}
|
|
|
|
bool SceneManifest::AddEntry(const AZStd::shared_ptr<DataTypes::IManifestObject>& value)
|
|
{
|
|
return AddEntry(AZStd::shared_ptr<DataTypes::IManifestObject>(value));
|
|
}
|
|
|
|
bool SceneManifest::RemoveEntry(const AZStd::shared_ptr<DataTypes::IManifestObject>& value)
|
|
{
|
|
return RemoveEntry(value.get());
|
|
}
|
|
|
|
size_t SceneManifest::GetEntryCount() const
|
|
{
|
|
// Any of the containers would do as they should be in-sync with each other, so pick one randomly.
|
|
AZ_Assert(m_values.size() == m_storageLookup.size(),
|
|
"SceneManifest values and storage-lookup tables have gone out of lockstep. (%i vs. %i)",
|
|
m_values.size(), m_storageLookup.size());
|
|
return m_values.size();
|
|
}
|
|
|
|
AZStd::shared_ptr<DataTypes::IManifestObject> SceneManifest::GetValue(Index index)
|
|
{
|
|
return index < m_values.size() ? m_values[index] : AZStd::shared_ptr<DataTypes::IManifestObject>();
|
|
}
|
|
|
|
AZStd::shared_ptr<const DataTypes::IManifestObject> SceneManifest::GetValue(Index index) const
|
|
{
|
|
return index < m_values.size() ? m_values[index] : AZStd::shared_ptr<const DataTypes::IManifestObject>();
|
|
}
|
|
|
|
SceneManifest::Index SceneManifest::FindIndex(const AZStd::shared_ptr<DataTypes::IManifestObject>& value) const
|
|
{
|
|
return FindIndex(value.get());
|
|
}
|
|
|
|
SceneManifest::ValueStorageData SceneManifest::GetValueStorage()
|
|
{
|
|
return ValueStorageData(m_values.begin(), m_values.end());
|
|
}
|
|
|
|
SceneManifest::ValueStorageConstData SceneManifest::GetValueStorage() const
|
|
{
|
|
return ValueStorageConstData(
|
|
Views::MakeConvertIterator(m_values.cbegin(), SceneManifestConstDataConverter),
|
|
Views::MakeConvertIterator(m_values.cend(), SceneManifestConstDataConverter));
|
|
}
|
|
} // Containers
|
|
} // SceneAPI
|
|
} // AZ
|