blob: ebfe52422077e5446ed5e300dce9688beabdd363 [file] [log] [blame]
#ifndef _RIVE_CUSTOM_PROPERTY_BOOLEAN_BASE_HPP_
#define _RIVE_CUSTOM_PROPERTY_BOOLEAN_BASE_HPP_
#include "rive/core/field_types/core_bool_type.hpp"
#include "rive/custom_property.hpp"
namespace rive
{
class CustomPropertyBooleanBase : public CustomProperty
{
protected:
typedef CustomProperty Super;
public:
static const uint16_t typeKey = 129;
/// Helper to quickly determine if a core object extends another without RTTI
/// at runtime.
bool isTypeOf(uint16_t typeKey) const override
{
switch (typeKey)
{
case CustomPropertyBooleanBase::typeKey:
case CustomPropertyBase::typeKey:
case ComponentBase::typeKey:
return true;
default:
return false;
}
}
uint16_t coreType() const override { return typeKey; }
static const uint16_t propertyValuePropertyKey = 245;
private:
bool m_PropertyValue = false;
public:
inline bool propertyValue() const { return m_PropertyValue; }
void propertyValue(bool value)
{
if (m_PropertyValue == value)
{
return;
}
m_PropertyValue = value;
propertyValueChanged();
}
Core* clone() const override;
void copy(const CustomPropertyBooleanBase& object)
{
m_PropertyValue = object.m_PropertyValue;
CustomProperty::copy(object);
}
bool deserialize(uint16_t propertyKey, BinaryReader& reader) override
{
switch (propertyKey)
{
case propertyValuePropertyKey:
m_PropertyValue = CoreBoolType::deserialize(reader);
return true;
}
return CustomProperty::deserialize(propertyKey, reader);
}
protected:
virtual void propertyValueChanged() {}
};
} // namespace rive
#endif