blob: e9ecb44ac84f59f72ff494a024e3f9a246fcd10e [file]
#ifndef _RIVE_KEY_FRAME_ID_BASE_HPP_
#define _RIVE_KEY_FRAME_ID_BASE_HPP_
#include "rive/animation/interpolating_keyframe.hpp"
#include "rive/core/field_types/core_id_type.hpp"
#include "rive/core/id.hpp"
namespace rive
{
class KeyFrameIdBase : public InterpolatingKeyFrame
{
protected:
typedef InterpolatingKeyFrame Super;
public:
static const uint16_t typeKey = 50;
/// Helper to quickly determine if a core object extends another without
/// RTTI at runtime.
bool isTypeOf(uint16_t typeKey) const override
{
switch (typeKey)
{
case KeyFrameIdBase::typeKey:
case InterpolatingKeyFrameBase::typeKey:
case KeyFrameBase::typeKey:
return true;
default:
return false;
}
}
uint16_t coreType() const override { return typeKey; }
static const uint16_t valuePropertyKey = 122;
protected:
Id m_Value = kEmptyId;
public:
inline Id value() const { return m_Value; }
void value(Id value)
{
if (m_Value == value)
{
return;
}
RIVE_EDITOR_CHANGING(valuePropertyKey, &m_Value, &value);
m_Value = value;
RIVE_EDITOR_CHANGED(valueChanged());
notifyPropertyChanged(valuePropertyKey);
}
Core* clone() const override;
void copy(const KeyFrameIdBase& object)
{
m_Value = object.m_Value;
InterpolatingKeyFrame::copy(object);
}
bool deserialize(uint16_t propertyKey, BinaryReader& reader) override
{
switch (propertyKey)
{
case valuePropertyKey:
m_Value = CoreIdType::runtimeDeserialize(reader);
return true;
}
return InterpolatingKeyFrame::deserialize(propertyKey, reader);
}
protected:
virtual void valueChanged() {}
#ifdef WITH_RIVE_EDITOR
#include "editor_native/generated/animation/keyframe_id_ext.inl"
#endif
};
} // namespace rive
#endif