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.
67 lines
2.0 KiB
C++
67 lines
2.0 KiB
C++
/*
|
|
* Copyright (c) Contributors to the Open 3D Engine Project.
|
|
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
#include <AzCore/base.h>
|
|
#include <AzCore/Memory/SystemAllocator.h>
|
|
#include <AzCore/RTTI/ReflectContext.h>
|
|
#include <AzCore/Serialization/SerializeContext.h>
|
|
#include <AzCore/UserSettings/UserSettings.h>
|
|
|
|
//=============================================================================
|
|
|
|
class ComponentPaletteSettings
|
|
: public AZ::UserSettings
|
|
{
|
|
public:
|
|
AZ_CLASS_ALLOCATOR(ComponentPaletteSettings, AZ::SystemAllocator, 0);
|
|
AZ_RTTI(ComponentPaletteSettings, "{BAC3BABA-6DF1-4EEE-AFF1-6A84AD1820A1}", AZ::UserSettings);
|
|
|
|
AZStd::vector<AZ::Uuid> m_favorites;
|
|
|
|
void SetFavorites(AZStd::vector<AZ::Uuid>&& componentIds)
|
|
{
|
|
m_favorites = AZStd::move(componentIds);
|
|
}
|
|
|
|
void RemoveFavorites(const AZStd::vector<AZ::Uuid>& componentIds)
|
|
{
|
|
for (const AZ::Uuid& componentId : componentIds)
|
|
{
|
|
auto favoriteIterator = AZStd::find(m_favorites.begin(), m_favorites.end(), componentId);
|
|
AZ_Assert(favoriteIterator != m_favorites.end(), "Component Palette Favorite not found.");
|
|
|
|
if (favoriteIterator != m_favorites.end())
|
|
{
|
|
m_favorites.erase(favoriteIterator);
|
|
}
|
|
}
|
|
}
|
|
|
|
static const char* GetSettingsFile()
|
|
{
|
|
static const char* settingsFile("@user@/editor/componentpalette.usersettings");
|
|
return settingsFile;
|
|
}
|
|
|
|
static void Reflect(AZ::ReflectContext* context)
|
|
{
|
|
AZ::SerializeContext* serializeContext = azrtti_cast<AZ::SerializeContext*>(context);
|
|
if (serializeContext)
|
|
{
|
|
serializeContext->Class<ComponentPaletteSettings>()
|
|
->Version(1)
|
|
->Field("m_favorites", &ComponentPaletteSettings::m_favorites)
|
|
;
|
|
}
|
|
}
|
|
};
|
|
|