blob: 5d4cc796040d7888e495a11e41405af0550d5bc4 [file] [log] [blame]
#ifndef _RIVE_TRANSITION_NUMBER_CONDITION_BASE_HPP_
#define _RIVE_TRANSITION_NUMBER_CONDITION_BASE_HPP_
#include "rive/animation/transition_value_condition.hpp"
#include "rive/core/field_types/core_double_type.hpp"
namespace rive
{
class TransitionNumberConditionBase : public TransitionValueCondition
{
protected:
typedef TransitionValueCondition Super;
public:
static const uint16_t typeKey = 70;
/// Helper to quickly determine if a core object extends another without RTTI
/// at runtime.
bool isTypeOf(uint16_t typeKey) const override
{
switch (typeKey)
{
case TransitionNumberConditionBase::typeKey:
case TransitionValueConditionBase::typeKey:
case TransitionConditionBase::typeKey:
return true;
default:
return false;
}
}
uint16_t coreType() const override { return typeKey; }
static const uint16_t valuePropertyKey = 157;
private:
float m_Value = 0.0f;
public:
inline float value() const { return m_Value; }
void value(float value)
{
if (m_Value == value)
{
return;
}
m_Value = value;
valueChanged();
}
Core* clone() const override;
void copy(const TransitionNumberConditionBase& object)
{
m_Value = object.m_Value;
TransitionValueCondition::copy(object);
}
bool deserialize(uint16_t propertyKey, BinaryReader& reader) override
{
switch (propertyKey)
{
case valuePropertyKey:
m_Value = CoreDoubleType::deserialize(reader);
return true;
}
return TransitionValueCondition::deserialize(propertyKey, reader);
}
protected:
virtual void valueChanged() {}
};
} // namespace rive
#endif