blob: 4c647ed3705108f193bc8fdc5e18b1fe6955c8b8 [file] [log] [blame]
#ifndef _RIVE_EVENT_NUMBER_CHANGE_BASE_HPP_
#define _RIVE_EVENT_NUMBER_CHANGE_BASE_HPP_
#include "rive/animation/event_input_change.hpp"
#include "rive/core/field_types/core_double_type.hpp"
namespace rive {
class EventNumberChangeBase : public EventInputChange {
protected:
typedef EventInputChange Super;
public:
static const uint16_t typeKey = 118;
/// Helper to quickly determine if a core object extends another without RTTI
/// at runtime.
bool isTypeOf(uint16_t typeKey) const override {
switch (typeKey) {
case EventNumberChangeBase::typeKey:
case EventInputChangeBase::typeKey:
return true;
default:
return false;
}
}
uint16_t coreType() const override { return typeKey; }
static const uint16_t valuePropertyKey = 229;
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 EventNumberChangeBase& object) {
m_Value = object.m_Value;
EventInputChange::copy(object);
}
bool deserialize(uint16_t propertyKey, BinaryReader& reader) override {
switch (propertyKey) {
case valuePropertyKey:
m_Value = CoreDoubleType::deserialize(reader);
return true;
}
return EventInputChange::deserialize(propertyKey, reader);
}
protected:
virtual void valueChanged() {}
};
} // namespace rive
#endif